已回答
park transformation for single phase
Can you please attach the model (*.slx) and other files required to run it? Also, which version of Matlab are you using?

5 years 前 | 0

已回答
park transformation for single phase
To transform single phase voltages/currents to shift your voltage/current by 90 degrees and use this value as and your origina...

5 years 前 | 0

| 已接受

已回答
Can simscape battery model (i.e. the equivalent circuit model) be integrated to simulink model?
Yes, they can be be connected. Please see this. That being said, it best to stick to either Simscape or SimPowerSystems.

5 years 前 | 0

| 已接受

已回答
How to give opening and closing logic to mosfet?
I don't have MATLAB 2018a therefore, I'm unable to open the model you've attached. Typically a pulse generator is be used to tur...

5 years 前 | 0

| 已接受

已回答
How to write multiple input into one csv file
Try using the dlmwrite command with '-append'. Syntax is as follows: dlmwrite(filename,M,'-append') The other option is to sto...

5 years 前 | 0

已回答
Matlab is not recognizing sections %%
Did you turn-off the sections in the Autoformatting menu?

5 years 前 | 0

已回答
Data is missing in scope and in output tables when simulating a wind farm
Nils, You'll have to check the Logging in the scope properties. Ensure that you're not limiting the data points. To save to wo...

5 years 前 | 1

| 已接受

已回答
How can apply scatter or plot functions with two xx and yy axis?
Riyadh, Have you tried using the yyaxis command instead of the line?

5 years 前 | 0

| 已接受

已回答
How can I change the language into English
Please see this MATLAB Answers post: https://www.mathworks.com/matlabcentral/answers/196985-how-do-i-change-the-display-language...

5 years 前 | 0

已回答
Get names of the current Simulink Block and then store all the inputs and outptus of the block into a structure ?
Sachin, You can figure out the number of ports of the current block by using the get_param() command. blockPorts = get_param(g...

5 years 前 | 0

| 已接受

已回答
How can I request installation media?
Are you on a standard license/student/home license? If you have a standard license,and the admin for the license you should be a...

5 years 前 | 0

| 已接受

已回答
how to color individual lines in a plot
Josh, You can specify plot color by using the 'color' property and specifying a color or a normalized RGB code when using the p...

5 years 前 | 0

已回答
Indexing and replacing value in a zero matrix based on a table
Is this what you're looking for? ID = 10; Number = 5; Ans = -1; tmat = zeros(11,10); tmat(ID,Number)=Ans;

5 years 前 | 0

已回答
In which ways can Simscape block parameters be defined?
The block parameters could be initialized in the mask's block or in the model callbacks. To view the block's mask, select the ...

5 years 前 | 0

已回答
How to model a three phase delta -wye (star) Transformer using Simulink / Simscape R2018a?
Is there reason you want to model it? You could use the Three-Phase Transformer block from the Power Systems library and choose ...

5 years 前 | 0

| 已接受

已回答
axis function in Appdesigner
The x & y axis limits can be set using the XLim & YLim properties ax=app.UIAxes; ax.XLim = [0 length(tt)]; ax.YLim = [0 1]; ...

5 years 前 | 1

| 已接受

已回答
How can I use matlab GUI to brows specific .html file in the same folder?
You can open html files with the built-in web browser by using the web command. https://www.mathworks.com/help/matlab/ref/web.h...

5 years 前 | 0

| 已接受

已回答
how to save the result of each iteration of 'for' loop in a text file without replacing the previous results in the text file????
Please see my code below. I open file before my for loop and close it after the end of the for loop. fid = fopen('Test.txt','w...

5 years 前 | 0

已回答
How to import an equation that is user defined in GUI into separate m files?
Is your m-file a function? If yes, you can pass the variable containing your equation as input argument. You could also send the...

5 years 前 | 0

已回答
How to tune the PID controller for Simscape Vehicle model ?
Have you tried the PID tuner app? You will to replace your controller with the MATLAB PID Controller to use the app. You could f...

5 years 前 | 0

已回答
How to use Simulink's "Arrange" options programmatically?
I am not aware of ways to align or distribute blocks programmatically but, starting Matlab 2018b you can use Simulink.BlockDiagr...

5 years 前 | 2

| 已接受

已回答
How to covert alpha-beta component to seperate signal quantities?
The output of the abc to Alpha-Beta-Zero block has 3 signals (alpha, beta and zero). Change the number of outputs to 3 on your d...

5 years 前 | 0

| 已接受

已回答
Compatibility issue - SimPowerSystem - 2013a to 2015b - non-existent field error
Wes, there is a option to change the universal bridge to a diode bridge which eliminates the gate port. Please see the Power Ele...

5 years 前 | 0

已回答
How to mimic the wiring resistance in a model based on SimPowerSystem?
Have you tried the Distributed Parameters Line?

5 years 前 | 1

| 已接受