Skip to content

Commit

Permalink
Big fixing szenario 1 finished
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristofBernsteiner committed May 23, 2024
1 parent 15e2311 commit 769768c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions examples/Cell4LifeSimulationExecutorvII.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@


FuelCellPowerW_list = [50000] #Electricity Power of Fuel Cell Power in Watt
BatteryCapkWh_list = [100] #Total Capacity of Battery in kWh
Inverter_Ratio_list = [1, 2]
BatterieFaktorList = [5,10]
BatteryCapkWh_list = [50] #Total Capacity of Battery in kWh
Inverter_Ratio_list = [1,0.5]
BatterieFaktorList = [1,2]

#FuelCellPowerW_list = [200000, 100000, 50000, 25000, 12500] #Electricity Power of Fuel Cell Power in Watt
#Inverter_Ratio_list = [0.5, 0.333, 0.25, 0.2,0.1666] #Means: Inverter_power_demand = Battery capacity multiplied with a factor of the list; Battery Capacity = BatterieFaktor * (electrolyzer_energy + h2 storage)
Expand Down Expand Up @@ -150,7 +150,7 @@

#For economic assessment, create a copy of original excel file
copyfrompath = 'C://Users//Standard//Desktop//hisim//C4LResults//results//'
name2 = 'Sim_Oek_Assessment_v9'
name2 = 'Sim_Oek_Assessment_v10'
filepath2 = copyfrompath + 'OriginalExcelFile//' + name2 + '.xlsx'
copytopath2 = ResultPathProviderSingleton().get_result_directory_name()
copytopath2 = copytopath2 + '//'
Expand Down Expand Up @@ -279,7 +279,7 @@

# #For economic assessment, create a copy of original excel file
# copyfrompath = 'C://Users//Standard//Desktop//hisim//C4LResults//results//'
# name2 = 'Sim_Oek_Assessment_v9'
# name2 = 'Sim_Oek_Assessment_v10'
# filepath2 = copyfrompath + 'OriginalExcelFile//' + name2 + '.xlsx'
# copytopath2 = ResultPathProviderSingleton().get_result_directory_name()
# copytopath2 = copytopath2 + '//'
Expand Down
2 changes: 1 addition & 1 deletion examples/params_to_loop.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PreResultNumber,FuelCellPowerW,BatteryCapkWh,Inverter_Ratio,PreResultNumberUnit,FuelCellPowerWUnit,BatteryCapkWhUnit,Inverter_RatioUnit,szenario,szenarioUnit,prediction_horizon,prediction_horizonUnit
1,50000,1155.0,2.0,-,W,kWh,-,1b,-,0,seconds
1,50000,231.0,0.5,-,W,kWh,-,1b,-,0,seconds
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,10 @@ def electricity_from_CHP_Battery_to_houseFct(CHP_ElectricityDelivery, BatteryAcB
stsv.set_output_value(self.electricity_from_electricity_from_CHP_to_gridOutput, electricity_from_CHP_to_grid)

stsv.set_output_value(self.electricity_frombattery_to_CHP_inStandby, 0)
stsv.set_output_value(self.electricity_from_PV_to_gridOutput, part_pv_to_grid)


[ ] pv integrieren
#[ ] pv integrieren


def write_to_report(self):
Expand Down

0 comments on commit 769768c

Please sign in to comment.