Skip to content

Commit

Permalink
Merge pull request #1486 from katarkow/migrate_EW_data_to_mrremind
Browse files Browse the repository at this point in the history
Move enhanced weathering data to mrremind
  • Loading branch information
katarkow authored Dec 12, 2023
2 parents 5720c47 + b887135 commit 01b0dec
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 248 deletions.
2 changes: 1 addition & 1 deletion config/default.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cfg$regionmapping <- "config/regionmappingH12.csv"
### Additional (optional) region mapping, so that those validation data can be loaded that contain the corresponding additional regions.
cfg$extramappings_historic <- ""
#### Current input data revision (<mainrevision>.<subrevision>) ####
cfg$inputRevision <- "6.606"
cfg$inputRevision <- "6.607"

#### Current CES parameter and GDX revision (commit hash) ####
cfg$CESandGDXversion <- "878ac5d69254efb4eba5c1fa39aba64000307bb1"
Expand Down
13 changes: 10 additions & 3 deletions modules/33_CDR/portfolio/datainput.gms
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ $ondelim
$include "./modules/33_CDR/portfolio/input/f33_maxProdGradeRegiWeathering.cs3r"
$offdelim
;
!! display f33_maxProdGradeRegiWeathering;
!! $include "./modules/33_CDR/portfolio/input/p33_transport_costs.inc"
p33_transport_costs(regi, rlf, rlf) = 0.05; !! KK a temporary fix before p33_transport_costs are moved to mrremind
display f33_maxProdGradeRegiWeathering;

parameter p33_EW_transport_costs(all_regi,rlf,rlf) "transport costs [T$/Gt stone]"
/
$ondelim
$include "./modules/33_CDR/portfolio/input/p33_transportCostsWeathering.cs4r"
$offdelim
/
;
display p33_EW_transport_costs;

s33_step = 2.5;
*** fix costs [T$/Gt stone]. Data from strefler et al. in $/t stone: mining, crushing, grinding (5.0 investment costs, 25.1 O&M costs), spreading (12.1 O&M costs)
Expand Down
1 change: 0 additions & 1 deletion modules/33_CDR/portfolio/declarations.gms
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ s33_step "size of bins in v33_weathering_onfield [Gt stone]"
parameters
p33_fedem(all_te,all_enty) "final energy demand of each technology [EJ/GtC] (for EW the unit is [EJ/Gt stone])"
p33_LimRock(all_regi) "regional share of EW limit [fraction], calculated ex ante for a maximal annual amount of 8 Gt rock in D:\projects\CEMICS\paper_technical\supply_curve_transport_remind_regions.m"
p33_transport_costs(all_regi,rlf,rlf) "transport costs [T$/Gt stone]"
p33_co2_rem_rate(rlf) "carbon removal rate [fraction of annual reduction of total carbon removal potential], multiplied with grade factor"
;

Expand Down
2 changes: 1 addition & 1 deletion modules/33_CDR/portfolio/equations.gms
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ q33_EW_omcosts(t,regi)..
vm_omcosts_cdr(t,regi)
=e=
sum((rlf_cz33, rlf),
(s33_costs_fix + p33_transport_costs(regi,rlf_cz33,rlf)) * v33_EW_onfield(t,regi,rlf_cz33,rlf)
(s33_costs_fix + p33_EW_transport_costs(regi,rlf_cz33,rlf)) * v33_EW_onfield(t,regi,rlf_cz33,rlf)
)
;

Expand Down
1 change: 1 addition & 0 deletions modules/33_CDR/portfolio/input/files
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
f33_maxProdGradeRegiWeathering.cs3r
p33_transportCostsWeathering.cs4r
242 changes: 0 additions & 242 deletions modules/33_CDR/portfolio/input/p33_transport_costs.inc

This file was deleted.

0 comments on commit 01b0dec

Please sign in to comment.