pypowsybl.dynamic.ModelMapping.add_load_two_transformers#
- ModelMapping.add_load_two_transformers(df=None, **kwargs)[source]#
Add a load with two transformers mapping
- Args:
df: Attributes as a dataframe. kwargs: Attributes as keyword arguments.
- Parameters:
- Return type:
None
Notes
Data may be provided as a dataframe or as keyword arguments. In the latter case, all arguments must have the same length.
Valid attributes are:
static_id: id of the network element to map
parameter_set_id: id of the parameter for this model given in the dynawo configuration
dynamic_model_id: id of the model mapping the network element (if none the static id will be used)
model_name: name of the model used for the mapping (if none the default model will be used)
Examples
Using keyword arguments:
model_mapping.add_load_two_transformers(static_id='LOAD', parameter_set_id='ltt', dynamic_model_id='DM_LTT', model_name='LoadTwoTransformers')