-
Dear Andes developers, I have reviewed the "Change Setpoint" example and would like to adjust the power output of the solar module in the ieee14_solar.xlsx file in a similar manner. I have attempted to adjust the real power output of the solar energy in the TDS. However, despite consulting the REPC, REEC, and REGC sections of the manual and adjusting some parameters (such as Plant_ref, Pline0, and Ipcmd0), the output power does not seem to change. In this situation, I would like to inquire about which parameters should be controlled to effectively alter the real power output of the solar energy? Are there any other aspects I should consider or areas I might have overlooked? Thank you very much for your valuable assistance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Thank you for the questions! Changing the reference points for renewable generators are much more involved. I will make you an example in the coming week. |
Beta Was this translation helpful? Give feedback.
-
There isn't an elegant way to change the active power reference. But you can hack it like this: In
|
Beta Was this translation helpful? Give feedback.
There isn't an elegant way to change the active power reference. But you can hack it like this:
In
REGCA1
, the active power outputPe
is computed byIpcmd * v
, andIpcmd = Ipcmd0_LVG
.Ipcmd0_LVG
is a type of constant service. You can impact ' Pe ' by changing the value ofIpcmd0_LVG.v[:]
. At steady-state, the desiredPe
can be achieved by settingIpcmd0_LVG.v[:] = desired_Pe / voltages
.