Dynamic Load Block MATLAB documenation

조회 수: 3 (최근 30일)
Jagdish Mishra
Jagdish Mishra 2024년 4월 26일
이동: Dyuman Joshi 2024년 5월 3일
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
Dyuman Joshi 2024년 4월 26일
It would be best to ask TMW Technical Support regarding this - Contact Support.

댓글을 달려면 로그인하십시오.

답변 (1개)

Piyush Kumar
Piyush Kumar 2024년 4월 29일
  댓글 수: 2
Jagdish Mishra
Jagdish Mishra 2024년 4월 29일
이동: Dyuman Joshi 2024년 5월 3일
Dear Piyush,
Thank you for your response.
Suppose that I am looking for change in load at different power factor, where PF changes substancially in an automated formated. How to use the block you mentioned?
Piyush Kumar
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Power and Energy Systems에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by