Current

class acnportal.acnsim.network.Current(loads: Union[Dict[str, SupportsFloat], str, List[str], pandas.core.series.Series, None] = None)

A simple representation of currents as an extension of pandas Series. Includes addition, subtraction, and multiplication (by scalar) operators.

loads

Dictionary which maps a load_id to its coefficient in

Type:Dict[str, number]
the aggregate current.
Parameters:loads (Dict[str, number], str, or List[str], pd.Series) – If dict, a dictionary mapping load_ids to coefficients. If str a load_id. If list, a list of load_ids. Default None. If None, loads will begin as an empty dict.