Skip to content

Commit

Permalink
Merge pull request #268 from PyPSA/co2seq_sector_opt
Browse files Browse the repository at this point in the history
update sector opt for co2 seq potential
  • Loading branch information
fneum authored Oct 1, 2022
2 parents f139025 + 9a74e3d commit 7ed88d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ scenario:
# A for agriculture, forestry and fishing
# solar+c0.5 reduces the capital cost of solar to 50\% of reference value
# solar+p3 multiplies the available installable potential by factor 3
# co2 stored+e2 multiplies the potential of CO2 sequestration by a factor 2
# seq400 sets the potential of CO2 sequestration to 400 Mt CO2 per year
# dist{n} includes distribution grids with investment cost of n times cost in data/costs.csv
# for myopic/perfect foresight cb states the carbon budget in GtCO2 (cumulative
# emissions throughout the transition path in the timeframe determined by the
Expand Down
2 changes: 1 addition & 1 deletion scripts/solve_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def add_co2_sequestration_limit(n, sns):
limit = n.config["sector"].get("co2_sequestration_potential", 200) * 1e6
for o in opts:
if not "seq" in o: continue
limit = float(o[o.find("seq")+3:])
limit = float(o[o.find("seq")+3:]) * 1e6
break

name = 'co2_sequestration_limit'
Expand Down

0 comments on commit 7ed88d5

Please sign in to comment.