Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BusTool: Input parameters and options #88

Closed
28 tasks
Piranias opened this issue Mar 2, 2022 · 1 comment
Closed
28 tasks

BusTool: Input parameters and options #88

Piranias opened this issue Mar 2, 2022 · 1 comment
Assignees

Comments

@Piranias
Copy link
Collaborator

Piranias commented Mar 2, 2022

BusTool inputs:

a) .cfg

  • input_file (str to csc file)

  • electrified_stations (str, path to json)

  • seed (int, for random, default 1)

  • days (int, number of days)

  • interval (int, minutes of interval)

  • min_soc (float, desired_soc)

  • cs_power_depot (float, maximum power at charging station in depots)

  • cs_power_opp (float, maximum power at charging station in opp stations)

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

  • min_charging_time (int, minimum waiting time in minutes at opp station)

  • rush_hour = {"stop&go": [["07:00", "09:00"], ["15:00", "17:00"]], "dense": [["17:00", "19:00"]]} (dict, rush hour for consumption)

  • preferred_ct (str, "opp" or "depot")

  • battery = [[50, 1, "Betriebshof A"], [50 , 0.5, "Betriebshof Indira-Gandhi-Str."]] (list, [capacity, C-Rate, station])

  • filter_schedule (optional, dict, eg. {"rotations": [1_656, 1_345, 7_890]} or {"line": [64, 78, N19]} or {"depot": ["Betriebshof A", "Betriebshof B"]}

  • include_ext_load_csv (optional)

  • include_ext_csv_option (optional)

  • include_feed_in_csv (optional)

  • include_feed_in_csv_option (optional)

  • include_price_csv (optional)

  • include_price_csv_option (optional)

  • total_number_busses

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

{
  "opp_stations": {
    "S+U Wuhletal" : 2,
    "S Adlershof": 3,
    "S Buch": 5,
    "Alt-Kladow": 3,
    "U Rohrdamm": 4,
    "S+U Hermannstr.": 4,
    "S Grunewald": 5
  },
  "depot_stations": {
    "Betriebshof A": "None",
    "Betriebshof Indira-Gandhi-Str.": "None",
    "Betriebshof Köpenick": "None"
  }
}

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),
        "hc": "winter" (still have to figure that out)
    }

SpiceEV inputs

  • input (str, name of input json, e.g. "examples/scenario.json"
  • strategy (str, name of strategy, default: distributed)
  • strategy_option = [["C_HORIZON = 3], ["ALLOW_NEGATIVE_SOC" = True] etc.] (list)
  • visual (bool)
  • margin (float, give margin for desired SoC [0.0 - 1.0])
  • save_timeseries (str, path to results)
  • save_results (str, path to results)
@Piranias
Copy link
Collaborator Author

see rl-institut/SimBA#2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants