Question about VSG parameters change during the TDS #452
-
Dear Dr. Cui and Jinning,
Can this method successfully modify the parameters of the VSG during the TDS process? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
An easy way to test is that, after altering the parameter, using Model.get method to check if the value is changed. |
Beta Was this translation helpful? Give feedback.
-
Altering Altering At the very beginning of simulations, left-hand-side time constants of differential equations are arranged into First, do
to alter the value and store its per-unit value in Next, modify
Edit: index |
Beta Was this translation helpful? Give feedback.
Altering
D
should work as expected.Altering
M
will not take effect in the current version. It is due to how time constants associated with differential equations are processed. You can tell from https://docs.andes.app/en/latest/groupdoc/RenGen.html#id16 thatM
is the time constant on the left side of differential equationsT x' = f(x, y)
.At the very beginning of simulations, left-hand-side time constants of differential equations are arranged into
dae.Tf
. To modifyM
, for now, you can do it in two steps:First, do
to alter the value and store its per-unit value in
ss.REGCV1.M.v
.Next, modify
dae.Tf
:Edit: index