Dynamic Load Block MATLAB documenation
显示 更早的评论
I am lloking for Dynamic Load change using the block provided in "openExample('simscapeelectricalsps/DynamicLoadExample')"
Can you please provide me proper ducmentaion how to use the block "Three-Phase Dynamic Load"?
Lookking for answer.
1 个评论
Dyuman Joshi
2024-4-26
回答(1 个)
Piyush Kumar
2024-4-29
0 个投票
Hi Jagdish,
Check this documentation - https://www.mathworks.com/help/sps/powersys/ref/threephasedynamicload.html
2 个评论
Jagdish Mishra
2024-4-29
移动:Dyuman Joshi
2024-5-3
Piyush Kumar
2024-5-2
移动:Dyuman Joshi
2024-5-3
Hi Jagdish,
If you click on the block, you will get "Configuration Parameter" dialog box.
Select the check box for "External Control of PQ". Apply this configuration.
You will get one input port for "PQ" in the block.
To automate the process, If you know power factor and active power demand then you can use a "MATLAB function" block containing below script -
function y = fcn(powerFactor, P)
S = P/powerFactor;
Q = sqrt(S^2 - P^2);
y = [P Q];
This MATLAB function takes 'Power factor' and 'Active Power' demand as input.
By providing appropriate values for P and powerfactor, the Three-phase dynamic load can be varied.
类别
在 帮助中心 和 File Exchange 中查找有关 Power and Energy Systems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!