edisgo.network.components.PotentialChargingParks
- class edisgo.network.components.PotentialChargingParks(**kwargs)
Bases:
digraph inheritance60c3a1c72b { bgcolor=transparent; rankdir=LR; size="8.0, 12.0"; "ABC" [URL="https://docs.python.org/3/library/abc.html#abc.ABC",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Helper class that provides a standard way to create an ABC using"]; "BasicComponent" [URL="BasicComponent.html#edisgo.network.components.BasicComponent",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Generic component"]; "ABC" -> "BasicComponent" [arrowsize=0.5,style="setlinewidth(0.5)"]; "PotentialChargingParks" [URL="#edisgo.network.components.PotentialChargingParks",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Charging park (potential charging-point location) for electric vehicles."]; "BasicComponent" -> "PotentialChargingParks" [arrowsize=0.5,style="setlinewidth(0.5)"]; }BasicComponentCharging park (potential charging-point location) for electric vehicles.
A potential charging park is a candidate site, derived from the SimBEV/TracBEV data held in the
Electromobilitycontainer, at which one or more charging points may be connected. It is used byimport_electromobility()to allocate charging demand and integrate the resulting charging points into the grid.See
BasicComponentfor the constructor arguments.- property voltage_level
Voltage level the component is connected to (‘mv’ or ‘lv’).
- Returns:
Voltage level. Returns ‘lv’ if component connected to the low voltage and ‘mv’ if component is connected to the medium voltage.
- Return type:
- property ags
8-digit AGS (Amtlicher Gemeindeschlüssel, eng. Community Identification Number) number the potential charging park is in. Number is given as
intand leading zeros are therefore missing.- Returns:
AGS number
- Return type:
- property use_case
Charging use case (home, work, public or hpc) of the potential charging park.
- Returns:
Charging use case
- Return type:
- property designated_charging_point_capacity
Total gross designated charging park capacity in kW.
This is not necessarily equal to the connection rating.
- Returns:
Total gross designated charging park capacity
- Return type:
- property user_centric_weight
User centric weight of the potential charging park determined by SimBEV.
- Returns:
User centric weight
- Return type:
- property geometry
Location of the potential charging park as Shapely Point object.
- Returns:
Location of the potential charging park.
- Return type:
- property nearest_substation
Determines the nearest LV Grid, substation and distance.
- property edisgo_id
Name of the charging point this charging park was integrated as.
- Returns:
Identifier of the integrated charging point (as in the index of
charging_points_df), or None if the potential charging park has not been integrated into the grid yet.- Return type:
- property charging_processes_df
Determines designated charging processes for the potential charging park.
- Returns:
DataFrame with AGS, car ID, trip destination, charging use case (“hpc”, “home”, “public” or “work”), netto charging capacity, charging demand, charge start, charge end, potential charging park ID and charging point ID.
- Return type:
- property grid_connection_capacity
Required grid connection capacity of the potential charging park in MW.
- Returns:
Grid connection capacity in MW. For high-power charging (
use_case == "hpc") this equals the designated charging-point capacity; for the other use cases it is reduced viadetermine_grid_connection_capacity()to account for simultaneity.- Return type:
- property within_grid
Determines if the potential charging park is located within the grid district.