Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
remind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jerome Hilaire
remind
Commits
1dc5e7c3
Unverified
Commit
1dc5e7c3
authored
4 years ago
by
Lavinia Baumstark
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #156 from Loisel/greenh2_switch
Add a switch for green hydrogen
parents
81f2c432
f20ca631
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
config/default.cfg
+3
-0
3 additions, 0 deletions
config/default.cfg
core/bounds.gms
+9
-0
9 additions, 0 deletions
core/bounds.gms
core/declarations.gms
+3
-0
3 additions, 0 deletions
core/declarations.gms
core/equations.gms
+14
-1
14 additions, 1 deletion
core/equations.gms
main.gms
+3
-1
3 additions, 1 deletion
main.gms
with
32 additions
and
2 deletions
config/default.cfg
+
3
−
0
View file @
1dc5e7c3
...
...
@@ -273,6 +273,7 @@ cfg$gms$cm_nucscen <- 2 # def <- 2
cfg$gms$cm_ccapturescen
<- 1 # def <- 1
cfg$gms$c_bioliqscen
<- 1 # def <- 1
cfg$gms$c_bioh2scen
<- 1 # def <- 1
cfg$gms$c_shGreenh2
<- 0 # def <- 0
cfg$gms$cm_IndCCSscen
<- 1 # def <- 1
cfg$gms$cm_optimisticMAC
<- 0 # def <- 0
cfg$gms$cm_CCS_cement
<- 1 # def <- 1
...
...
@@ -528,6 +529,8 @@ cfg$RunsUsingTHISgdxAsBAU <- NA
# c_bioh2scen
"switch hydrogen producing technology on or off"
# (0):
no technologies
# (1):
all technologies
# c_shGreenH2
"lower bound on share of green hydrogen in all hydrogen by 2030"
# (a
number between 0 and 1): share
# c_solscen
"solar option choice"
# (1):
yes
# (2):
no solar
...
...
This diff is collapsed.
Click to expand it.
core/bounds.gms
+
9
−
0
View file @
1dc5e7c3
...
...
@@ -496,4 +496,13 @@ loop ((t, regi) $ ( (sameAs(t,"2010") OR sameAs(t,"2015"))
vm_prodSe.up(t,regi,"pegas","sehe","gashp") = 0;
);
);
***----------------------------------------------------------------------------
*** lower bound on share of green hydrogen starting from 2030 (c_greenH2)
***----------------------------------------------------------------------------
v_shGreenH2.lo(t,regi)$(t.val eq 2025) = c_shGreenH2 * 2/3;
v_shGreenH2.lo(t,regi)$(t.val gt 2025) = c_shGreenH2;
*** EOF ./core/bounds.gms
This diff is collapsed.
Click to expand it.
core/declarations.gms
+
3
−
0
View file @
1dc5e7c3
...
...
@@ -300,6 +300,8 @@ vm_otherFEdemand(ttot,all_regi,all_enty) "final energy demand from n
vm_demSeOth(ttot,all_regi,all_enty,all_te) "other sety demand from certain technologies, have to calculated in additional equations [TWa]"
vm_prodSeOth(ttot,all_regi,all_enty,all_te) "other sety production from certain technologies, have to be calculated in additional equations [TWa]"
v_shGreenH2(ttot,all_regi) "share of green hydrogen in all hydrogen by 2030 [0..1]"
*** ES layer variables
vm_demFeForEs(ttot,all_regi,all_enty,all_esty,all_teEs) "Final energy which will be used in the ES layer."
v_prodEs(ttot,all_regi,all_enty,all_esty,all_teEs) "Energy services (unit determined by conversion factor pm_fe2es)."
...
...
@@ -388,6 +390,7 @@ q_transFe2Es(ttot,all_regi,all_enty,all_esty,all_teEs) "Conversion from final
q_es2ppfen(ttot,all_regi,all_in) "Energy services are handed to the CES tree."
q_shFeCes(ttot,all_regi,all_enty,all_in,all_teEs) "Shares of final energies in production factors."
*q_shFeCesNorm(ttot,all_regi,all_in) "Shares have to sum to 1."
q_shGreenH2(ttot,all_regi) "share of green hydrogen in all hydrogen"
***----------------------------------------------------------------------------------------
***----------------------------------------------trade module------------------------------
...
...
This diff is collapsed.
Click to expand it.
core/equations.gms
+
14
−
1
View file @
1dc5e7c3
...
...
@@ -813,6 +813,19 @@ q_PE_histCap(t,regi,entyPe,entySe)$(p_PE_histCap(t,regi,entyPe,entySe))..
=g=
0.9 * p_PE_histCap(t,regi,entyPe,entySe)
;
***---------------------------------------------------------------------------
*' Share of green hydrogen in all hydrogen.
***---------------------------------------------------------------------------
q_shGreenH2(t,regi)..
sum(se2se("seel","seh2",te), vm_prodSe(t,regi,"seel","seh2",te))
=e=
(
sum(pe2se(entyPe,"seh2",te), vm_prodSe(t,regi,entyPe,"seh2",te))
+ sum(se2se(entySe,"seh2",te), vm_prodSe(t,regi,entySe,"seh2",te))
) * v_shGreenH2(t,regi)
;
*** EOF ./core/equations.gms
This diff is collapsed.
Click to expand it.
main.gms
+
3
−
1
View file @
1dc5e7c3
...
...
@@ -84,7 +84,7 @@
*
* Input data revision: 5.942
*
* Last modification (input data): Tu
e
Apr 2
1
1
2:02:3
4 2020
* Last modification (input data): T
h
u Apr 2
3
1
1:28:0
4 2020
*
*###################### R SECTION END (VERSION INFO) ###########################
...
...
@@ -220,6 +220,7 @@ cm_nucscen "nuclear option choice"
cm_ccapturescen "carbon capture option choice"
c_bioliqscen "bioenergy liquids technology choise"
c_bioh2scen "bioenergy hydrogen technology choice"
c_shGreenH2 "share of green hydrogen in all hydrogen by 2030"
cm_IndCCSscen "CCS for Industry"
cm_optimisticMAC "assume optimistic Industry MAC from AR5 Ch. 10?"
cm_CCS_cement "CCS for cement sub-sector"
...
...
@@ -309,6 +310,7 @@ cm_nucscen = 2; !! def = 2
cm_ccapturescen = 1; !! def = 1
c_bioliqscen = 1; !! def = 1
c_bioh2scen = 1; !! def = 1
c_shGreenH2 = 0; !! def = 0
c_solscen = 1; !! def = 1
cm_IndCCSscen = 1; !! def = 1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment