diff --git a/modules/37_industry/fixed_shares/not_used.txt b/modules/37_industry/fixed_shares/not_used.txt index 4157d5d7f0..2073258d55 100644 --- a/modules/37_industry/fixed_shares/not_used.txt +++ b/modules/37_industry/fixed_shares/not_used.txt @@ -33,4 +33,3 @@ vm_costMatPrc, variable, not needed pm_emifacNonEnergy, parameter, not needed pm_incinerationRate, parameter, not needed cm_emiscen, parameter, not needed -vm_demFeSector, variable, not needed diff --git a/modules/37_industry/subsectors/bounds.gms b/modules/37_industry/subsectors/bounds.gms index 0ed9db58f8..83f487331f 100644 --- a/modules/37_industry/subsectors/bounds.gms +++ b/modules/37_industry/subsectors/bounds.gms @@ -114,12 +114,12 @@ vm_cesIO.lo(t,regi_dyn29(regi),in_industry_dyn37(in))$( 0 eq vm_cesIO.lo(t,regi,in) ) = max(sm_eps, abs(pm_cesdata(t,regi,in,"offset_quantity"))); -*' Limit biomass solids use in industry to 25% (or historic shares, if they are higher) -*' of baseline solids +*' Limit biomass solids use in industry to 25% (or historic shares, if they are +*' higher) of baseline solids *' Cement CCS might otherwise become a compelling BioCCS option under very high *' carbon prices due to missing adjustment costs. -if (cm_startyear gt 2005, !! not a scenario, starting in 2005 (e.g. baseline or NPi) - vm_demFeSector.up(t,regi,"sesobio","fesos","indst","ETS") +if (cm_startyear gt 2005, !! not a baeline or NPi scenario + vm_demFeSector_afterTax.up(t,regi,"sesobio","fesos","indst","ETS") = max(0.25 , smax(t2, pm_secBioShare(t2,regi,"fesos","indst") ) ) * p37_BAU_industry_ETS_solids(t,regi); ); diff --git a/modules/37_industry/subsectors/datainput.gms b/modules/37_industry/subsectors/datainput.gms index ad8a37b0e6..dc272a56aa 100644 --- a/modules/37_industry/subsectors/datainput.gms +++ b/modules/37_industry/subsectors/datainput.gms @@ -543,10 +543,10 @@ $offdelim *' load baseline industry ETS solids demand if (cm_startyear ne 2005, !! not a BAU scenario -execute_load "input_ref.gdx", vm_demFeSector; +execute_load "input_ref.gdx", vm_demFeSector_afterTax; p37_BAU_industry_ETS_solids(t,regi) = sum(se2fe(entySe,"fesos",te), - vm_demFeSector.l(t,regi,entySe,"fesos","indst","ETS") + vm_demFeSector_afterTax.l(t,regi,entySe,"fesos","indst","ETS") ); );