The iTesla Power System Library is a Modelica library developed as part of the iTesla project. The library contains a set of power system component models for phasor time domain simulations.
Mozilla Public License 2.0
23
stars
71
forks
source link
Correction of initial equation in ESST1A model #74
After revision of REN SOUTH System by @tinrabuzin
There is a 1.23 value in IFD0 in the initial equation of ESST1A model:
initial equation Efd0 = EFD0; IFD0 = 1.23; VA0 = Efd0 + K_LR * (IFD0 - I_LR); VREF = VA0 / K_A + V_0;
This should be replaced by
initial equation Efd0 = EFD0; IFD0 = XADIFD; VA0 = Efd0 + K_LR * (IFD0 - I_LR); VREF = VA0 / K_A + V_0;