Skip to content

Commit

Permalink
read in Temperature timeline #6
Browse files Browse the repository at this point in the history
  • Loading branch information
Tk1999s committed Feb 9, 2022
1 parent 9d0a7d2 commit c611dfc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions simbev/main_simbev.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ def run_simbev(region_ctr, region_id, region_data, cfg_dict, charge_prob,
eta_cp = cfg_dict['eta_cp']
rng = cfg_dict['rng']
soc_min = cfg_dict['soc_min']
heating = cfg_dict['heating']
cooling = cfg_dict['cooling']
temp_inside = cfg_dict['temp_inside']

# get temperature timeline
temperature = pd.read_csv("C:/Users/Tim.Kirschner/python_projects/simbev/simbev/simbev/scenarios"
"/Temperature_dummy.csv", sep=";")

# get probabilities
probdata, tseries_purpose, days = simbevMiD.get_prob(
Expand Down
3 changes: 3 additions & 0 deletions simbev/simbevMiD.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ def availability(
soc_min,
tseries_purpose,
carstatus,
cooling,
heating,
temp_inside,
):

# day_mins = 1440
Expand Down

0 comments on commit c611dfc

Please sign in to comment.