You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minimum per unit voltage for which the load model selected and generator model is assumed to apply. Below this value, the load/gen model reverts to a
218
-
constant impedance model. For generator model used, this is used to determine the upper current limit. For example, if Vminpu is 0.90 then the current
219
-
limit is (1/0.90) = 111%.
217
+
Minimum per unit voltage for which the load model selected is assumed to apply. Below this value, the load model reverts to a constant impedance model.
220
218
"""
221
219
222
-
vmax_pu: Optional[float] =None
220
+
load_vmax_pu: Optional[float] =None
223
221
"""
224
-
Maximum per unit voltage for which the load model selected and generator model is assumed to apply. Above this value, the load/gen model reverts to a
225
-
constant impedance model.
222
+
Maximum per unit voltage for which the load model selected is assumed to apply. Above this value, the load model reverts to a constant impedance model.
223
+
"""
224
+
225
+
gen_vmin_pu: Optional[float] =None
226
+
"""
227
+
Minimum per unit voltage for which the generator model is assumed to apply. Below this value, the gen model reverts to a constant impedance model.
228
+
For generator model used, this is used to determine the upper current limit. For example, if Vminpu is 0.90 then the current limit is (1/0.90) = 111%.
229
+
"""
230
+
231
+
gen_vmax_pu: Optional[float] =None
232
+
"""
233
+
Maximum per unit voltage for which the generator model is assumed to apply. Above this value, the gen model reverts to a constant impedance model.
226
234
"""
227
235
228
236
load_model: Optional[int] =None
@@ -438,6 +446,11 @@ class ModelConfig:
438
446
The name of the set of distribution transformer tap settings to be applied to the model from an external source.
439
447
"""
440
448
449
+
ct_prim_scaling_factor: Optional[float] =None
450
+
"""
451
+
Optional setting for scaling factor of calculated CTPrim for zone sub transformers.
0 commit comments