rl-institut / SimBA

GNU Affero General Public License v3.0
2 stars 0 forks source link

Input Parameters #2

Open Piranias opened 2 years ago

Piranias commented 2 years ago

a) .cfg BusTool inputs:

SpiceEV inputs

b) electrified_stations.json with station name and number of pantographs (charging stations) e.g:

{
  "opp_stations": {
    "S+U Wuhletal" : [Anzahl Ladestationen_opp, gc_power],
    "S Adlershof": [Anzahl Ladestationen_opp, gc_power],
    "S Buch": [Anzahl Ladestationen_opp, gc_power],
    "Alt-Kladow": [Anzahl Ladestationen_opp, gc_power],
    "U Rohrdamm": [Anzahl Ladestationen_opp, gc_power],
    "S+U Hermannstr.": [Anzahl Ladestationen_opp, gc_power],
    "S Grunewald": [Anzahl Ladestationen_opp, gc_power]
  },
  "depot_stations": {
    "Betriebshof A": [Anzahl Ladestationen_opp, Anzahl Ladestationen_depot, gc_power],
    "Betriebshof Indira-Gandhi-Str.": [Anzahl Ladestationen_opp, Anzahl Ladestationen_depot, gc_power],
    "Betriebshof Köpenick": [Anzahl Ladestationen_opp, Anzahl Ladestationen_depot, gc_power],
  }
}

c) vehicle_types.json e.g.

"AB_depot": {
    "name": "articulated bus",
    "capacity": 310,
    "charging_curve": [[0, 250], [0.8, 250], [1, 250]],
    "min_charging_power": 0,
    "v2g": false,
    "mileage": (str, path to consumption file), -> hier könnte Hauptverbrauch berechnet werden
    "hc": "winter" (still have to figure that out) -> hier könnte Nebenverbrauch berechnet werden
}
paulboehnke commented 2 years ago

" -> gc_power = number_cs * cs_power (no seperate input parameter. Or is it needed?)"

Are there maybe cases where gc power is smaller than the sum of all cs power stations?

Piranias commented 2 years ago

" -> gc_power = number_cs * cs_power (no seperate input parameter. Or is it needed?)"

Are there maybe cases where gc power is smaller than the sum of all cs power stations?

I don't think there is. Why would someone install charging stations if the gc is not sufficient. But we can also add another parameter, if needed. @j-brendel , what do you prefer?

j-brendel commented 2 years ago

Hej, Indeed there are those cases. The GC is not always desinged to be operated wiht a Gleichzeitigkeitsfaktor of 1. So gc_power = number_cs cs_power Gleichzeitigkeitsfaktor Hence I would like to have gc_power as individual input parameter.