Skip to content

Commit

Permalink
Changed default op_life for trn to 60
Browse files Browse the repository at this point in the history
The default operational life for transmission technologies (hardcoded) was set to 30 years whereas the default operational life for transmission technologies introduced through the user configuration file was set to 30 leading to discrepancies. I've set the default to 60 for both cases since this is more in line with real world application.
  • Loading branch information
maartenbrinkerink committed Sep 10, 2024
1 parent 4c58860 commit 7fe907d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/osemosys_global/powerplant_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ def main():

# transmission technologies
for op_life_tech in op_life_trn:
op_life_out.append([region_name, op_life_tech, 30])
op_life_out.append([region_name, op_life_tech, 60])

df_op_life_Out = pd.DataFrame(op_life_out, columns = ['REGION', 'TECHNOLOGY', 'VALUE'])

Expand Down

0 comments on commit 7fe907d

Please sign in to comment.