Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add info that gas electricity is split to ngcc and ngt #1944

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions modules/04_PE_FE_parameters/iea2014/datainput.gms
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ loop(in2enty(all_enty,enty,all_te,te),
);
display pm_IO_input, p04_IO_output;

***------------------ allocate all electricity produced from gas to ngt for initial calculation of average eta ----------------------------------------
***------------------ allocate all electricity produced from gas (x_gas2elec) to ngcc for initial calculation of average eta. Some lines further down it is split to ngcc and ngt (search for "Distribute the initial gas numbers" ----------------------------------------
pm_IO_input(regi,enty,enty2,"ngcc") = pm_IO_input(regi,enty,enty2,"x_gas2elec");
p04_IO_output(regi,enty,enty2,"ngcc") = p04_IO_output(regi,enty,enty2,"x_gas2elec");

Expand Down Expand Up @@ -372,8 +372,9 @@ pm_fuExtrOwnCons(regi, "seel", "peoil") = f04_IO_input("2005", regi, "seel", "
pm_fuExtrOwnCons(regi, "seel", "pegas") = f04_IO_input("2005", regi, "seel", "pegas", "d_elec2gas")/p04_fuExtr(regi, "pegas");
pm_fuExtrOwnCons(regi, "seel", "pecoal") = f04_IO_input("2005", regi, "seel", "pecoal","d_elec2coal")/p04_fuExtr(regi, "pecoal");


*** ----------------------------------------------------------------------------------------------------------
*RP* Distribute the initial gas numbers to ngcc and ngt based on energy values:
*** ----------------------------------------------------------------------------------------------------------
loop(regi,
if( pm_data(regi,"mix0","ngcc") < 0.1 , !! in regions where gas provides < 10% of electricity, distribute 80/20
p04_shareNGTinGas(regi) = 0.15;
Expand Down