Answered
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 ago | 0

Answered
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 ago | 0

| accepted

Answered
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.

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

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

6 years ago | 0

Answered
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...

6 years ago | 1

| accepted

Answered
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?

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

Answered
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;

6 years ago | 0

Answered
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 ...

6 years ago | 0

Answered
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 ...

6 years ago | 0

| accepted

Answered
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]; ...

6 years ago | 1

| accepted

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 0

Answered
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...

6 years ago | 2

| accepted

Answered
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...

6 years ago | 0

| accepted

Answered
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...

6 years ago | 0

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

6 years ago | 1

| accepted