forked from remindmodel/remind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
realization.gms
28 lines (24 loc) · 1.79 KB
/
realization.gms
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
*** | (C) 2006-2023 Potsdam Institute for Climate Impact Research (PIK)
*** | authors, and contributors see CITATION.cff file. This file is part
*** | of REMIND and licensed under AGPL-3.0-or-later. Under Section 7 of
*** | AGPL-3.0, you are granted additional permissions described in the
*** | REMIND License Exception, version 1.0 (see LICENSE file).
*** | Contact: remind@pik-potsdam.de
*** SOF ./modules/47_regipol/regiCarbonPrice/realization.gms
*' @description
*'
*' The `regiCarbonPrice` realization has two purposes. First, it allows to determine region specific year or budget targets for CO2 or GHG emissions.
*' Second, it comprises region-specific adjustments that are always active in this realization and policies that can be activated by specific switches (see bounds file).
*' Please see module description for details.
*' @authors Renato Rodrigues, Felix Schreyer
*####################### R SECTION START (PHASES) ##############################
$Ifi "%phase%" == "sets" $include "./modules/47_regipol/regiCarbonPrice/sets.gms"
$Ifi "%phase%" == "declarations" $include "./modules/47_regipol/regiCarbonPrice/declarations.gms"
$Ifi "%phase%" == "datainput" $include "./modules/47_regipol/regiCarbonPrice/datainput.gms"
$Ifi "%phase%" == "equations" $include "./modules/47_regipol/regiCarbonPrice/equations.gms"
$Ifi "%phase%" == "preloop" $include "./modules/47_regipol/regiCarbonPrice/preloop.gms"
$Ifi "%phase%" == "bounds" $include "./modules/47_regipol/regiCarbonPrice/bounds.gms"
$Ifi "%phase%" == "presolve" $include "./modules/47_regipol/regiCarbonPrice/presolve.gms"
$Ifi "%phase%" == "postsolve" $include "./modules/47_regipol/regiCarbonPrice/postsolve.gms"
*######################## R SECTION END (PHASES) ###############################
*** EOF ./modules/47_regipol/regiCarbonPrice/realization.gms