├── .Rprofile ├── .gitattributes ├── .github ├── .gitignore ├── GitVersion.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── feature.yml └── workflows │ ├── auto-dev-version.yaml │ ├── check-pr-description.yaml │ ├── size-check │ └── test-code.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CITATION.cff ├── DESCRIPTION ├── LICENSE ├── Makefile ├── README.md ├── config ├── conopt3.op2 ├── conopt3.op3 ├── conopt3.op4 ├── conopt3.op6 ├── conopt3.op9 ├── conopt3.opt ├── default.cfg ├── extramapping_EU27.csv ├── gdx-files │ └── files ├── mappingEDGEtoREMINDsectors.csv ├── mappingMAgPIE2REMIND.csv ├── py_requirements.txt ├── regionmappingH12.csv ├── regionmapping_21_EU11.csv ├── scenario_config.csv ├── scenario_config_21_EU11_2040_target.csv ├── scenario_config_21_EU11_ARIADNE.csv ├── scenario_config_21_EU11_ECEMF.csv ├── scenario_config_DeepEl.csv ├── scenario_config_EL2p0DeepDive.csv ├── scenario_config_ELEVATE2p3.csv ├── scenario_config_ELEVATE4p4.csv ├── scenario_config_JustMIP.csv ├── scenario_config_MitiConsv.csv ├── scenario_config_NGFS_v5.csv ├── scenario_config_RIKEN.csv ├── scenario_config_ScenarioMIP.csv ├── scenario_config_magpie.csv ├── scenario_config_magpie_EL2p0DeepDive.csv ├── scenario_config_magpie_ELEVATE2p3.csv ├── scenario_config_magpie_JustMIP.csv ├── scenario_config_magpie_MitiConsv.csv ├── scenario_config_magpie_NGFS_v5.csv ├── scenario_config_magpie_RIKEN.csv ├── scenario_config_magpie_ScenarioMIP.csv ├── scenario_meta_rcp.csv ├── settings_config.csv └── tests │ ├── scenario_config_default.csv │ ├── scenario_config_empty.csv │ ├── scenario_config_magpie_shortCascade.csv │ ├── scenario_config_quick.csv │ └── scenario_config_shortCascade.csv ├── core ├── bounds.gms ├── datainput.gms ├── declarations.gms ├── equations.gms ├── input │ ├── country │ │ ├── convert_Data_A1_Country_total_population-SSPs.csv.mz │ │ ├── convert_OECD-WB_PPP-MER2005_conversion_rates.xlsx.mz │ │ └── convert_OECD_v9_25-3-13-3.xlsx.mz │ ├── files │ ├── generisdata_emi.prn │ ├── generisdata_emi.xls │ ├── generisdata_tech.prn │ ├── generisdata_trade.prn │ ├── generisdata_varying_eta.prn │ ├── generisdata_varying_eta.xls │ ├── generisdata_vintages.prn │ ├── generisdata_vintages.xls │ ├── grid │ │ ├── EDGAR_CO2.mz │ │ ├── EDGAR_CO2_2010_excl_agr_and_intl_transport.mz │ │ ├── EDGAR_SO2.mz │ │ └── EDGAR_SO2_2005_excl_agr_and_intl_transport.mz │ ├── historical │ │ └── files │ ├── p_costMarkupAdvTech.prn │ └── reporting │ │ └── files ├── loop.gms ├── output.gms ├── postsolve.gms ├── preloop.gms ├── presolve.gms ├── sets.gms └── sets_calculations.gms ├── doc ├── images │ └── MAC_costs.png └── literature.bib ├── main.gms ├── modules ├── 01_macro │ ├── module.gms │ └── singleSectorGr │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 02_welfare │ ├── ineqLognormal │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── module.gms │ └── utilitarian │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms ├── 04_PE_FE_parameters │ ├── iea2014 │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── realization.gms │ │ └── sets.gms │ └── module.gms ├── 05_initialCap │ ├── module.gms │ └── on │ │ ├── declarations.gms │ │ ├── preloop.gms │ │ └── realization.gms ├── 11_aerosols │ ├── exoGAINS2025 │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ ├── files │ │ │ └── mappingGAINS2025toREMIND.csv │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ └── module.gms ├── 15_climate │ ├── magicc7_ar6 │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── module.gms │ └── off │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ ├── data_emi_so2_450.inc │ │ ├── data_emi_so2_550.inc │ │ ├── data_emi_so2_bau.inc │ │ ├── data_oghgf_rcp3pd.inc │ │ ├── data_oghgf_rcp45.inc │ │ ├── data_oghgf_rcp6.inc │ │ ├── data_oghgf_rcp85.inc │ │ ├── pm_emicapglob.inc │ │ ├── pm_emicapglob_450.inc │ │ ├── pm_emicapglob_550.inc │ │ ├── pm_emicapglob_multigas.inc │ │ ├── pm_emicapglob_multigas_450.inc │ │ └── pm_emicapglob_multigas_550.inc │ │ ├── not_used.txt │ │ └── realization.gms ├── 16_downscaleTemperature │ ├── CMIP5 │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ ├── p16_tempGlobal.inc │ │ │ ├── p16_tempGlobal_H12_BSinR_pop2010.inc │ │ │ ├── p16_tempRegional.inc │ │ │ ├── p16_tempRegional2005.inc │ │ │ ├── p16_tempRegional2005_H12.inc │ │ │ ├── p16_tempRegional2005_H12_BSinR_SSPpopgrid_REMINDtimes.inc │ │ │ ├── p16_tempRegional2005_H12_BSinR_pop2010.inc │ │ │ ├── p16_tempRegional_H12.inc │ │ │ ├── p16_tempRegional_H12_BSinR_SSPpopgrid_REMINDtimes.inc │ │ │ ├── p16_tempRegional_H12_BSinR_pop2010.inc │ │ │ └── p25_tempGlobal_H12_BSinR_SSPpopgrid_REMINDtimes.inc │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── module.gms │ └── off │ │ └── realization.gms ├── 20_growth │ ├── exogenous │ │ ├── bounds.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── module.gms │ └── spillover │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── output.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 21_tax │ ├── module.gms │ ├── off │ │ ├── bounds.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ └── on │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 22_subsidizeLearning │ ├── globallyOptimal │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── postsolve.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── module.gms │ └── off │ │ ├── bounds.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms ├── 23_capitalMarket │ ├── debt_limit │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ └── realization.gms │ ├── imperfect │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ └── realization.gms │ └── module.gms ├── 24_trade │ ├── capacity │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ ├── files │ │ │ ├── p24_disallowed.prn │ │ │ └── p24_distance.prn │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── module.gms │ ├── se_trade │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ └── standard │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 26_agCosts │ ├── costs │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ ├── agr_price_index_reg.rem.csv │ │ │ ├── files │ │ │ ├── pm_ag_costsmag.csv │ │ │ └── trade_bal_reg.rem.csv │ │ ├── presolve.gms │ │ └── realization.gms │ ├── costs_trade │ │ ├── datainput.gms │ │ ├── input │ │ │ ├── agr_price_index_reg.rem.csv │ │ │ ├── pm_ag_costsmag.csv │ │ │ └── trade_bal_reg.rem.csv │ │ ├── not_used.txt │ │ └── realization.gms │ ├── module.gms │ └── off │ │ ├── declarations.gms │ │ ├── input │ │ ├── agr_price_index_reg.rem.csv │ │ ├── files │ │ ├── pm_ag_costsmag.csv │ │ └── trade_bal_reg.rem.csv │ │ ├── not_used.txt │ │ └── realization.gms ├── 29_CES_parameters │ ├── calibrate │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── load │ │ ├── datainput.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms │ └── module.gms ├── 30_biomass │ ├── magpie │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ └── module.gms ├── 31_fossil │ ├── MOFEX │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ ├── sets.gms │ │ └── solve.gms │ ├── exogenous │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── grades2poly │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── module.gms │ └── timeDepGrades │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 32_power │ ├── IntC │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ ├── f32_storageCap.prn │ │ │ ├── files │ │ │ └── p32_flex_maxdiscount.cs4r │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ └── realization.gms │ └── module.gms ├── 33_CDR │ ├── module.gms │ └── portfolio │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 35_transport │ ├── edge_esm │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ ├── files │ │ │ ├── mapping_CESnodes_EDGE.csv │ │ │ └── mapping_EDGE_REMIND_transport_categories.csv │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ └── module.gms ├── 36_buildings │ ├── module.gms │ └── simple │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 37_industry │ ├── module.gms │ └── subsectors │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 39_CCU │ ├── module.gms │ ├── off │ │ ├── bounds.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── realization.gms │ │ └── sets.gms │ └── on │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ ├── realization.gms │ │ └── sets.gms ├── 40_techpol │ ├── CombLowCandCoalPO │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── NDC │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ └── realization.gms │ ├── NDCplus │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ └── realization.gms │ ├── NPi2018 │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ └── realization.gms │ ├── NPi2025 │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── realization.gms │ │ └── sets.gms │ ├── coalPhaseout │ │ ├── bounds.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── coalPhaseoutRegional │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── lowCarbonPush │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── module.gms │ └── none │ │ ├── not_used.txt │ │ └── realization.gms ├── 41_emicapregi │ ├── AbilityToPay │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── CandC │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── GDPint │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── POPint │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ ├── preloop.gms │ │ └── realization.gms │ ├── PerCapitaConvergence │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── exog │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── emicapregi.inc │ │ ├── not_used.txt │ │ └── realization.gms │ ├── module.gms │ └── none │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms ├── 45_carbonprice │ ├── NDC │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ └── realization.gms │ ├── NPi │ │ ├── datainput.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── NPi2025 │ │ ├── datainput.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── NPi2025expo │ │ ├── datainput.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── exogenous │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── exogenousExpo │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── expoLinear │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── functionalForm │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── functionalFormRegi │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── module.gms │ ├── none │ │ ├── datainput.gms │ │ ├── not_used.txt │ │ └── realization.gms │ └── temperatureNotToExceed │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms ├── 46_carbonpriceRegi │ ├── NDC │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ └── realization.gms │ ├── module.gms │ ├── netZero │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ └── none │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms ├── 47_regipol │ ├── module.gms │ ├── none │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ └── regiCarbonPrice │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ ├── exogenousFEprices.cs3r │ │ ├── exogenousPEprices.cs3r │ │ └── files │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms ├── 50_damages │ ├── BurkeLike │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── COACCH │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── DiceLike │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KWLike │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KWTCint │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── KW_SE │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KotzWenz │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── Labor │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── TC │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── exogenous │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms │ ├── module.gms │ └── off │ │ ├── bounds.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms ├── 51_internalizeDamages │ ├── BurkeLikeItr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── COACCHitr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── DiceLikeItr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KWTCintItr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KW_SEitr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KWlikeItr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KWlikeItrCPnash │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KWlikeItrCPreg │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KotzWenzCPreg │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── KotzWenzItr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── LabItr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── TCitr │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ └── realization.gms │ ├── module.gms │ └── off │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── not_used.txt │ │ └── realization.gms ├── 52_internalizeLCAimpacts │ ├── coupled │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ └── realization.gms │ ├── module.gms │ └── off │ │ ├── preloop.gms │ │ └── realization.gms ├── 70_water │ ├── heat │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── input │ │ │ └── files │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── realization.gms │ │ └── sets.gms │ ├── module.gms │ └── off │ │ └── realization.gms ├── 80_optimization │ ├── module.gms │ ├── nash │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ │ └── prices_NASH.inc │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ ├── sets.gms │ │ └── solve.gms │ ├── negishi │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── not_used.txt │ │ ├── output.gms │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ └── solve.gms │ └── testOneRegi │ │ ├── bounds.gms │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── equations.gms │ │ ├── input │ │ └── prices_NASH.inc │ │ ├── not_used.txt │ │ ├── postsolve.gms │ │ ├── preloop.gms │ │ ├── realization.gms │ │ ├── sets.gms │ │ └── solve.gms ├── 81_codePerformance │ ├── module.gms │ ├── off │ │ └── realization.gms │ └── on │ │ ├── datainput.gms │ │ ├── declarations.gms │ │ ├── postsolve.gms │ │ ├── presolve.gms │ │ ├── realization.gms │ │ └── sets.gms └── include.gms ├── output.R ├── pull_request_template.md ├── renv ├── .gitignore ├── activate.R ├── archive │ ├── 3.5.0_renv.lock │ ├── 3.5.1_renv.lock │ └── 3.5.2_renv.lock ├── settings.dcf └── settings.json ├── requirements.txt ├── scripts ├── cs2 │ ├── AirPollutantsREMIND-MAgPIE.Rmd │ ├── AirPollutantsREMIND.Rmd │ ├── MAGICC7_AR6.Rmd │ ├── magpie.Rmd │ ├── mySection.Rmd │ ├── profiles.json │ └── run_compareScenarios2.R ├── input │ ├── climateAssessmentImpulseResponse.R │ ├── climateAssessmentInterimRun.R │ ├── create_input_for_45_carbonprice_exogenous.R │ ├── create_input_for_50_damage_exogenous.R │ ├── exoGAINS2025Airpollutants.R │ ├── magpie.R │ ├── prepare_NDC.R │ ├── r_gen_co2_tax.R │ └── run_KotzWenz_damages.R ├── insertheader │ └── insertheader.R ├── output │ ├── comparison │ │ ├── bioenergy.R │ │ ├── bioenergy_SSP.R │ │ ├── checkClimatePercentiles.R │ │ ├── compareCalibrationTargets.R │ │ ├── compareScenarios2.R │ │ ├── plotRemMagNash.R │ │ ├── plotRuntime.R │ │ ├── plot_compare_iterations.R │ │ ├── policyCosts.R │ │ ├── runtime.R │ │ ├── runtimeMAgPIENash.R │ │ ├── selectPlots.R │ │ ├── supplycurves.R │ │ ├── validateScenarios.R │ │ └── varListHtml.R │ ├── export │ │ └── xlsx_IIASA.R │ └── single │ │ ├── .RData │ │ ├── LCOEPlot.R │ │ ├── MAGICC7_AR6.R │ │ ├── checkProjectSummations.R │ │ ├── checkVsCalibData.R │ │ ├── emulator.R │ │ ├── fixOnRef.R │ │ ├── integratedDamageCosts.R │ │ ├── nashConvergenceReport.R │ │ ├── notebook_templates │ │ └── cesCalibrationReport.Rmd │ │ ├── plotIterations.R │ │ ├── plotRemMagNash.R │ │ ├── rds_report.R │ │ ├── reportCEScalib.R │ │ ├── reportEsubs.R │ │ ├── reportLogit.R │ │ ├── reporting.R │ │ ├── reportingREMIND2MAgPIE.R │ │ └── reporting_MOFEX.R ├── start │ ├── addTitletag.R │ ├── calculate_CES_configuration.R │ ├── checkFixCfg.R │ ├── checkSettingsRemMag.R │ ├── choose_slurmConfig.R │ ├── combine_slurmConfig.R │ ├── configureCfg.R │ ├── defineInputData.R │ ├── ensureRequirementsInstalled.R │ ├── isSlurmAvailable.R │ ├── missingInputData.R │ ├── modelSummary.R │ ├── needBau.R │ ├── path_gdx_list.R │ ├── prepare.R │ ├── prepareAndRun.R │ ├── readCheckScenarioConfig.R │ ├── run.R │ ├── runGamsCompile.R │ ├── selectScenarios.R │ ├── selectTestOneRegiRegion.R │ ├── submit.R │ ├── updateInputData.R │ └── updateSets.R ├── utils │ ├── SOFEOF │ ├── checkSetup.R │ ├── create1mif.R │ ├── create1mif_woPlus.R │ ├── create1mifwithoutPlus.R │ ├── postRelease.R │ ├── preserveSettingsWhenDefaultsChange.R │ ├── rds │ ├── readcoupled.R │ ├── release.R │ ├── rs │ ├── set-local-calibration.sh │ └── set-local-calibration │ │ ├── collect_calibration │ │ ├── gitignore │ │ ├── post-commit │ │ └── pre-commit └── vs │ └── run_validateScenarios.R ├── standalone ├── MOFEX │ ├── MOFEX.gms │ ├── config │ │ └── scenario_config_MOFEX.csv │ └── scripts │ │ └── reporting_MOFEX.R ├── template.gms └── trade │ ├── 1-dump-gdx.sh │ ├── 2-plotting.py │ └── trade.gms ├── start.R ├── start_windows.cmd ├── tests └── testthat │ ├── helper_localSystem2.R │ ├── helper_printIfFailed.R │ ├── helper_skipFailed.R │ ├── helper_skipIfFast.R │ ├── setup_loadFunctions.R │ ├── setup_updateRenv.R │ ├── test_01-SOF-EOF.R │ ├── test_01-addTitletag.R │ ├── test_01-checkFixCfg.R │ ├── test_01-checkSettingsRemMag.R │ ├── test_01-citation.R │ ├── test_01-codeCheck.R │ ├── test_01-combine_slurmConfig.R │ ├── test_01-gms_readSettings.R │ ├── test_01-inputdata.R │ ├── test_01-manipulateConfig.R │ ├── test_01-path_gdx_list.R │ ├── test_01-readCheckScenarioConfig.R │ ├── test_01-readDefaultConfig.R │ ├── test_01-runGamsCompile.R │ ├── test_01-selectScenarios.R │ ├── test_01-start.R │ ├── test_02-compile.R │ ├── test_03-quick.R │ ├── test_04-gamscompile.R │ ├── test_04-test-gams-compile.R │ ├── test_05-default.R │ ├── test_06-output.R │ └── validation │ ├── test_01-mifs_exist.R │ ├── test_02-fe_liquids.R │ ├── test_03-negative_electricity.R │ └── test_04-invest_esm.R └── tutorials ├── 00_Git_and_GitHub_workflow.md ├── 01_GettingREMIND.md ├── 02_RunningREMIND.md ├── 02a_RunningREMINDLocally.md ├── 03_RunningBundleOfRuns.md ├── 04_RunningREMINDandMAgPIE.md ├── 05_AnalysingModelOutputs.md ├── 06_Advanced_ChangeInputs.md ├── 07_Advanced_ChangeCode.md ├── 07a_Advanced_ChangeStartingScripts.md ├── 08_Advanced_AnalysingModelOutputs.Rmd ├── 08a_Advanced_CreatingSimpleDashboard.Rmd ├── 09_Advanced_StandaloneModels.md ├── 10_DebuggingREMIND.md ├── 11_ManagingRenv.md ├── 12_Calibrating_CES_Parameters.md ├── 13_Submit_to_IIASA_database.md ├── 14_Calculate_policy_costs.md ├── 15_Using_Python.md ├── 16_taxation_mechanism_toy_model.md ├── 17_Regions.md ├── 18_Abbreviations.md ├── README.md └── figures ├── 4-REMIND-MAgPIE-circle.png ├── REMIND_flow.png ├── REMIND_gams_flow.png ├── Rscript_outputR.png ├── appResults_runselection.png ├── appResults_window.png ├── git-1-setup.png ├── git-10-branching-advanced.PNG ├── git-11-rules.PNG ├── git-2-pushing.PNG ├── git-3-add-upstream.PNG ├── git-4-pull-upstream.PNG ├── git-5-pull-request.PNG ├── git-6-all-in-one.PNG ├── git-7-pull-request-github-1.PNG ├── git-8-pull-request-github-2.PNG ├── git-9-branching.PNG ├── scenario-config-explanation.png ├── scenario_config.png └── technical_structure.png /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.Rprofile -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/GitVersion.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/workflows/auto-dev-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/workflows/auto-dev-version.yaml -------------------------------------------------------------------------------- /.github/workflows/check-pr-description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/workflows/check-pr-description.yaml -------------------------------------------------------------------------------- /.github/workflows/size-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/workflows/size-check -------------------------------------------------------------------------------- /.github/workflows/test-code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.github/workflows/test-code.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/README.md -------------------------------------------------------------------------------- /config/conopt3.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/conopt3.op2 -------------------------------------------------------------------------------- /config/conopt3.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/conopt3.op3 -------------------------------------------------------------------------------- /config/conopt3.op4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/conopt3.op4 -------------------------------------------------------------------------------- /config/conopt3.op6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/conopt3.op6 -------------------------------------------------------------------------------- /config/conopt3.op9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/conopt3.op9 -------------------------------------------------------------------------------- /config/conopt3.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/conopt3.opt -------------------------------------------------------------------------------- /config/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/default.cfg -------------------------------------------------------------------------------- /config/extramapping_EU27.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/extramapping_EU27.csv -------------------------------------------------------------------------------- /config/gdx-files/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/gdx-files/files -------------------------------------------------------------------------------- /config/mappingEDGEtoREMINDsectors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/mappingEDGEtoREMINDsectors.csv -------------------------------------------------------------------------------- /config/mappingMAgPIE2REMIND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/mappingMAgPIE2REMIND.csv -------------------------------------------------------------------------------- /config/py_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/py_requirements.txt -------------------------------------------------------------------------------- /config/regionmappingH12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/regionmappingH12.csv -------------------------------------------------------------------------------- /config/regionmapping_21_EU11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/regionmapping_21_EU11.csv -------------------------------------------------------------------------------- /config/scenario_config.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config.csv -------------------------------------------------------------------------------- /config/scenario_config_21_EU11_2040_target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_21_EU11_2040_target.csv -------------------------------------------------------------------------------- /config/scenario_config_21_EU11_ARIADNE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_21_EU11_ARIADNE.csv -------------------------------------------------------------------------------- /config/scenario_config_21_EU11_ECEMF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_21_EU11_ECEMF.csv -------------------------------------------------------------------------------- /config/scenario_config_DeepEl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_DeepEl.csv -------------------------------------------------------------------------------- /config/scenario_config_EL2p0DeepDive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_EL2p0DeepDive.csv -------------------------------------------------------------------------------- /config/scenario_config_ELEVATE2p3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_ELEVATE2p3.csv -------------------------------------------------------------------------------- /config/scenario_config_ELEVATE4p4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_ELEVATE4p4.csv -------------------------------------------------------------------------------- /config/scenario_config_JustMIP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_JustMIP.csv -------------------------------------------------------------------------------- /config/scenario_config_MitiConsv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_MitiConsv.csv -------------------------------------------------------------------------------- /config/scenario_config_NGFS_v5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_NGFS_v5.csv -------------------------------------------------------------------------------- /config/scenario_config_RIKEN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_RIKEN.csv -------------------------------------------------------------------------------- /config/scenario_config_ScenarioMIP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_ScenarioMIP.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_EL2p0DeepDive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_EL2p0DeepDive.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_ELEVATE2p3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_ELEVATE2p3.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_JustMIP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_JustMIP.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_MitiConsv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_MitiConsv.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_NGFS_v5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_NGFS_v5.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_RIKEN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_RIKEN.csv -------------------------------------------------------------------------------- /config/scenario_config_magpie_ScenarioMIP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_config_magpie_ScenarioMIP.csv -------------------------------------------------------------------------------- /config/scenario_meta_rcp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/scenario_meta_rcp.csv -------------------------------------------------------------------------------- /config/settings_config.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/settings_config.csv -------------------------------------------------------------------------------- /config/tests/scenario_config_default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/tests/scenario_config_default.csv -------------------------------------------------------------------------------- /config/tests/scenario_config_empty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/tests/scenario_config_empty.csv -------------------------------------------------------------------------------- /config/tests/scenario_config_magpie_shortCascade.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/tests/scenario_config_magpie_shortCascade.csv -------------------------------------------------------------------------------- /config/tests/scenario_config_quick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/tests/scenario_config_quick.csv -------------------------------------------------------------------------------- /config/tests/scenario_config_shortCascade.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/config/tests/scenario_config_shortCascade.csv -------------------------------------------------------------------------------- /core/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/bounds.gms -------------------------------------------------------------------------------- /core/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/datainput.gms -------------------------------------------------------------------------------- /core/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/declarations.gms -------------------------------------------------------------------------------- /core/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/equations.gms -------------------------------------------------------------------------------- /core/input/country/convert_OECD_v9_25-3-13-3.xlsx.mz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/country/convert_OECD_v9_25-3-13-3.xlsx.mz -------------------------------------------------------------------------------- /core/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/files -------------------------------------------------------------------------------- /core/input/generisdata_emi.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_emi.prn -------------------------------------------------------------------------------- /core/input/generisdata_emi.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_emi.xls -------------------------------------------------------------------------------- /core/input/generisdata_tech.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_tech.prn -------------------------------------------------------------------------------- /core/input/generisdata_trade.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_trade.prn -------------------------------------------------------------------------------- /core/input/generisdata_varying_eta.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_varying_eta.prn -------------------------------------------------------------------------------- /core/input/generisdata_varying_eta.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_varying_eta.xls -------------------------------------------------------------------------------- /core/input/generisdata_vintages.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_vintages.prn -------------------------------------------------------------------------------- /core/input/generisdata_vintages.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/generisdata_vintages.xls -------------------------------------------------------------------------------- /core/input/grid/EDGAR_CO2.mz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/grid/EDGAR_CO2.mz -------------------------------------------------------------------------------- /core/input/grid/EDGAR_SO2.mz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/grid/EDGAR_SO2.mz -------------------------------------------------------------------------------- /core/input/historical/files: -------------------------------------------------------------------------------- 1 | historical.mif 2 | -------------------------------------------------------------------------------- /core/input/p_costMarkupAdvTech.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/p_costMarkupAdvTech.prn -------------------------------------------------------------------------------- /core/input/reporting/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/input/reporting/files -------------------------------------------------------------------------------- /core/loop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/loop.gms -------------------------------------------------------------------------------- /core/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/output.gms -------------------------------------------------------------------------------- /core/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/postsolve.gms -------------------------------------------------------------------------------- /core/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/preloop.gms -------------------------------------------------------------------------------- /core/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/presolve.gms -------------------------------------------------------------------------------- /core/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/sets.gms -------------------------------------------------------------------------------- /core/sets_calculations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/core/sets_calculations.gms -------------------------------------------------------------------------------- /doc/images/MAC_costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/doc/images/MAC_costs.png -------------------------------------------------------------------------------- /doc/literature.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/doc/literature.bib -------------------------------------------------------------------------------- /main.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/main.gms -------------------------------------------------------------------------------- /modules/01_macro/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/module.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/bounds.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/datainput.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/declarations.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/equations.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/input/files: -------------------------------------------------------------------------------- 1 | p01_boundInvMacro.cs4r 2 | -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/postsolve.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/preloop.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/realization.gms -------------------------------------------------------------------------------- /modules/01_macro/singleSectorGr/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/01_macro/singleSectorGr/sets.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/bounds.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/datainput.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/declarations.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/equations.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/input/files: -------------------------------------------------------------------------------- 1 | f_ineqTheil.cs4r 2 | -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/not_used.txt -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/postsolve.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/realization.gms -------------------------------------------------------------------------------- /modules/02_welfare/ineqLognormal/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/ineqLognormal/sets.gms -------------------------------------------------------------------------------- /modules/02_welfare/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/module.gms -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/bounds.gms -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/datainput.gms -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/declarations.gms -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/equations.gms -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/not_used.txt -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/postsolve.gms -------------------------------------------------------------------------------- /modules/02_welfare/utilitarian/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/02_welfare/utilitarian/realization.gms -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/iea2014/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/iea2014/datainput.gms -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/iea2014/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/iea2014/declarations.gms -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/iea2014/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/iea2014/input/files -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/iea2014/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/iea2014/not_used.txt -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/iea2014/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/iea2014/realization.gms -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/iea2014/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/iea2014/sets.gms -------------------------------------------------------------------------------- /modules/04_PE_FE_parameters/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/04_PE_FE_parameters/module.gms -------------------------------------------------------------------------------- /modules/05_initialCap/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/05_initialCap/module.gms -------------------------------------------------------------------------------- /modules/05_initialCap/on/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/05_initialCap/on/declarations.gms -------------------------------------------------------------------------------- /modules/05_initialCap/on/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/05_initialCap/on/preloop.gms -------------------------------------------------------------------------------- /modules/05_initialCap/on/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/05_initialCap/on/realization.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/datainput.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/declarations.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/equations.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/input/files -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/not_used.txt -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/postsolve.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/presolve.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/realization.gms -------------------------------------------------------------------------------- /modules/11_aerosols/exoGAINS2025/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/exoGAINS2025/sets.gms -------------------------------------------------------------------------------- /modules/11_aerosols/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/11_aerosols/module.gms -------------------------------------------------------------------------------- /modules/15_climate/magicc7_ar6/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/magicc7_ar6/datainput.gms -------------------------------------------------------------------------------- /modules/15_climate/magicc7_ar6/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/magicc7_ar6/declarations.gms -------------------------------------------------------------------------------- /modules/15_climate/magicc7_ar6/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/magicc7_ar6/not_used.txt -------------------------------------------------------------------------------- /modules/15_climate/magicc7_ar6/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/magicc7_ar6/postsolve.gms -------------------------------------------------------------------------------- /modules/15_climate/magicc7_ar6/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/magicc7_ar6/realization.gms -------------------------------------------------------------------------------- /modules/15_climate/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/module.gms -------------------------------------------------------------------------------- /modules/15_climate/off/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/datainput.gms -------------------------------------------------------------------------------- /modules/15_climate/off/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/declarations.gms -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_emi_so2_450.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_emi_so2_450.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_emi_so2_550.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_emi_so2_550.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_emi_so2_bau.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_emi_so2_bau.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_oghgf_rcp3pd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_oghgf_rcp3pd.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_oghgf_rcp45.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_oghgf_rcp45.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_oghgf_rcp6.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_oghgf_rcp6.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/data_oghgf_rcp85.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/data_oghgf_rcp85.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/pm_emicapglob.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/pm_emicapglob.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/pm_emicapglob_450.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/pm_emicapglob_450.inc -------------------------------------------------------------------------------- /modules/15_climate/off/input/pm_emicapglob_550.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/input/pm_emicapglob_550.inc -------------------------------------------------------------------------------- /modules/15_climate/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/not_used.txt -------------------------------------------------------------------------------- /modules/15_climate/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/15_climate/off/realization.gms -------------------------------------------------------------------------------- /modules/16_downscaleTemperature/CMIP5/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/16_downscaleTemperature/CMIP5/datainput.gms -------------------------------------------------------------------------------- /modules/16_downscaleTemperature/CMIP5/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/16_downscaleTemperature/CMIP5/postsolve.gms -------------------------------------------------------------------------------- /modules/16_downscaleTemperature/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/16_downscaleTemperature/module.gms -------------------------------------------------------------------------------- /modules/16_downscaleTemperature/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/16_downscaleTemperature/off/realization.gms -------------------------------------------------------------------------------- /modules/20_growth/exogenous/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/exogenous/bounds.gms -------------------------------------------------------------------------------- /modules/20_growth/exogenous/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/exogenous/declarations.gms -------------------------------------------------------------------------------- /modules/20_growth/exogenous/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/exogenous/not_used.txt -------------------------------------------------------------------------------- /modules/20_growth/exogenous/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/exogenous/realization.gms -------------------------------------------------------------------------------- /modules/20_growth/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/module.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/bounds.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/datainput.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/declarations.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/equations.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/output.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/realization.gms -------------------------------------------------------------------------------- /modules/20_growth/spillover/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/20_growth/spillover/sets.gms -------------------------------------------------------------------------------- /modules/21_tax/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/module.gms -------------------------------------------------------------------------------- /modules/21_tax/off/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/off/bounds.gms -------------------------------------------------------------------------------- /modules/21_tax/off/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/off/declarations.gms -------------------------------------------------------------------------------- /modules/21_tax/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/off/not_used.txt -------------------------------------------------------------------------------- /modules/21_tax/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/off/realization.gms -------------------------------------------------------------------------------- /modules/21_tax/on/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/bounds.gms -------------------------------------------------------------------------------- /modules/21_tax/on/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/datainput.gms -------------------------------------------------------------------------------- /modules/21_tax/on/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/declarations.gms -------------------------------------------------------------------------------- /modules/21_tax/on/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/equations.gms -------------------------------------------------------------------------------- /modules/21_tax/on/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/input/files -------------------------------------------------------------------------------- /modules/21_tax/on/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/not_used.txt -------------------------------------------------------------------------------- /modules/21_tax/on/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/postsolve.gms -------------------------------------------------------------------------------- /modules/21_tax/on/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/preloop.gms -------------------------------------------------------------------------------- /modules/21_tax/on/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/presolve.gms -------------------------------------------------------------------------------- /modules/21_tax/on/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/realization.gms -------------------------------------------------------------------------------- /modules/21_tax/on/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/21_tax/on/sets.gms -------------------------------------------------------------------------------- /modules/22_subsidizeLearning/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/22_subsidizeLearning/module.gms -------------------------------------------------------------------------------- /modules/22_subsidizeLearning/off/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/22_subsidizeLearning/off/bounds.gms -------------------------------------------------------------------------------- /modules/22_subsidizeLearning/off/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/22_subsidizeLearning/off/declarations.gms -------------------------------------------------------------------------------- /modules/22_subsidizeLearning/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/22_subsidizeLearning/off/not_used.txt -------------------------------------------------------------------------------- /modules/22_subsidizeLearning/off/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/22_subsidizeLearning/off/postsolve.gms -------------------------------------------------------------------------------- /modules/22_subsidizeLearning/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/22_subsidizeLearning/off/realization.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/debt_limit/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/debt_limit/datainput.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/debt_limit/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/debt_limit/declarations.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/debt_limit/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/debt_limit/equations.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/debt_limit/input/files: -------------------------------------------------------------------------------- 1 | pm_nfa_start.cs4r 2 | -------------------------------------------------------------------------------- /modules/23_capitalMarket/debt_limit/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/debt_limit/not_used.txt -------------------------------------------------------------------------------- /modules/23_capitalMarket/debt_limit/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/debt_limit/realization.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/imperfect/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/imperfect/datainput.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/imperfect/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/imperfect/declarations.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/imperfect/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/imperfect/equations.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/imperfect/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/imperfect/input/files -------------------------------------------------------------------------------- /modules/23_capitalMarket/imperfect/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/imperfect/realization.gms -------------------------------------------------------------------------------- /modules/23_capitalMarket/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/23_capitalMarket/module.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/bounds.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/datainput.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/declarations.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/equations.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/input/files -------------------------------------------------------------------------------- /modules/24_trade/capacity/input/p24_disallowed.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/input/p24_disallowed.prn -------------------------------------------------------------------------------- /modules/24_trade/capacity/input/p24_distance.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/input/p24_distance.prn -------------------------------------------------------------------------------- /modules/24_trade/capacity/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/not_used.txt -------------------------------------------------------------------------------- /modules/24_trade/capacity/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/postsolve.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/preloop.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/presolve.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/realization.gms -------------------------------------------------------------------------------- /modules/24_trade/capacity/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/capacity/sets.gms -------------------------------------------------------------------------------- /modules/24_trade/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/module.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/bounds.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/datainput.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/declarations.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/input/files -------------------------------------------------------------------------------- /modules/24_trade/se_trade/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/not_used.txt -------------------------------------------------------------------------------- /modules/24_trade/se_trade/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/postsolve.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/preloop.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/presolve.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/realization.gms -------------------------------------------------------------------------------- /modules/24_trade/se_trade/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/se_trade/sets.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/bounds.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/datainput.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/declarations.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/equations.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/input/files -------------------------------------------------------------------------------- /modules/24_trade/standard/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/not_used.txt -------------------------------------------------------------------------------- /modules/24_trade/standard/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/postsolve.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/presolve.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/realization.gms -------------------------------------------------------------------------------- /modules/24_trade/standard/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/24_trade/standard/sets.gms -------------------------------------------------------------------------------- /modules/26_agCosts/costs/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs/datainput.gms -------------------------------------------------------------------------------- /modules/26_agCosts/costs/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs/declarations.gms -------------------------------------------------------------------------------- /modules/26_agCosts/costs/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs/input/files -------------------------------------------------------------------------------- /modules/26_agCosts/costs/input/pm_ag_costsmag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs/input/pm_ag_costsmag.csv -------------------------------------------------------------------------------- /modules/26_agCosts/costs/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs/presolve.gms -------------------------------------------------------------------------------- /modules/26_agCosts/costs/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs/realization.gms -------------------------------------------------------------------------------- /modules/26_agCosts/costs_trade/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs_trade/datainput.gms -------------------------------------------------------------------------------- /modules/26_agCosts/costs_trade/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs_trade/not_used.txt -------------------------------------------------------------------------------- /modules/26_agCosts/costs_trade/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/costs_trade/realization.gms -------------------------------------------------------------------------------- /modules/26_agCosts/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/module.gms -------------------------------------------------------------------------------- /modules/26_agCosts/off/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/off/declarations.gms -------------------------------------------------------------------------------- /modules/26_agCosts/off/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/off/input/files -------------------------------------------------------------------------------- /modules/26_agCosts/off/input/pm_ag_costsmag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/off/input/pm_ag_costsmag.csv -------------------------------------------------------------------------------- /modules/26_agCosts/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/off/not_used.txt -------------------------------------------------------------------------------- /modules/26_agCosts/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/26_agCosts/off/realization.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/bounds.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/datainput.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/input/files -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/not_used.txt -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/output.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/preloop.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/calibrate/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/calibrate/sets.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/load/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/load/datainput.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/load/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/load/input/files -------------------------------------------------------------------------------- /modules/29_CES_parameters/load/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/load/not_used.txt -------------------------------------------------------------------------------- /modules/29_CES_parameters/load/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/load/preloop.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/load/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/load/realization.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/load/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/load/sets.gms -------------------------------------------------------------------------------- /modules/29_CES_parameters/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/29_CES_parameters/module.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/bounds.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/datainput.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/declarations.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/equations.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/input/files -------------------------------------------------------------------------------- /modules/30_biomass/magpie/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/not_used.txt -------------------------------------------------------------------------------- /modules/30_biomass/magpie/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/output.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/postsolve.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/preloop.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/presolve.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/realization.gms -------------------------------------------------------------------------------- /modules/30_biomass/magpie/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/magpie/sets.gms -------------------------------------------------------------------------------- /modules/30_biomass/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/30_biomass/module.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/bounds.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/datainput.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/declarations.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/equations.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/not_used.txt -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/output.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/preloop.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/realization.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/sets.gms -------------------------------------------------------------------------------- /modules/31_fossil/MOFEX/solve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/MOFEX/solve.gms -------------------------------------------------------------------------------- /modules/31_fossil/exogenous/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/exogenous/bounds.gms -------------------------------------------------------------------------------- /modules/31_fossil/exogenous/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/exogenous/datainput.gms -------------------------------------------------------------------------------- /modules/31_fossil/exogenous/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/exogenous/declarations.gms -------------------------------------------------------------------------------- /modules/31_fossil/exogenous/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/exogenous/not_used.txt -------------------------------------------------------------------------------- /modules/31_fossil/exogenous/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/exogenous/realization.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/bounds.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/datainput.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/declarations.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/equations.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/input/files -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/not_used.txt -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/preloop.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/realization.gms -------------------------------------------------------------------------------- /modules/31_fossil/grades2poly/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/grades2poly/sets.gms -------------------------------------------------------------------------------- /modules/31_fossil/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/module.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/bounds.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/datainput.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/declarations.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/equations.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/input/files -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/not_used.txt -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/output.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/preloop.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/realization.gms -------------------------------------------------------------------------------- /modules/31_fossil/timeDepGrades/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/31_fossil/timeDepGrades/sets.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/bounds.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/datainput.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/declarations.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/equations.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/input/f32_storageCap.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/input/f32_storageCap.prn -------------------------------------------------------------------------------- /modules/32_power/IntC/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/input/files -------------------------------------------------------------------------------- /modules/32_power/IntC/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/not_used.txt -------------------------------------------------------------------------------- /modules/32_power/IntC/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/postsolve.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/preloop.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/presolve.gms -------------------------------------------------------------------------------- /modules/32_power/IntC/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/IntC/realization.gms -------------------------------------------------------------------------------- /modules/32_power/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/32_power/module.gms -------------------------------------------------------------------------------- /modules/33_CDR/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/module.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/bounds.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/datainput.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/declarations.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/equations.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/input/files -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/postsolve.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/preloop.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/realization.gms -------------------------------------------------------------------------------- /modules/33_CDR/portfolio/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/33_CDR/portfolio/sets.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/datainput.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/declarations.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/equations.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/input/files -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/not_used.txt -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/postsolve.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/presolve.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/realization.gms -------------------------------------------------------------------------------- /modules/35_transport/edge_esm/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/edge_esm/sets.gms -------------------------------------------------------------------------------- /modules/35_transport/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/35_transport/module.gms -------------------------------------------------------------------------------- /modules/36_buildings/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/module.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/bounds.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/datainput.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/declarations.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/equations.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/input/files -------------------------------------------------------------------------------- /modules/36_buildings/simple/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/not_used.txt -------------------------------------------------------------------------------- /modules/36_buildings/simple/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/postsolve.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/realization.gms -------------------------------------------------------------------------------- /modules/36_buildings/simple/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/36_buildings/simple/sets.gms -------------------------------------------------------------------------------- /modules/37_industry/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/module.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/bounds.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/datainput.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/declarations.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/equations.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/input/files -------------------------------------------------------------------------------- /modules/37_industry/subsectors/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/not_used.txt -------------------------------------------------------------------------------- /modules/37_industry/subsectors/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/postsolve.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/preloop.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/realization.gms -------------------------------------------------------------------------------- /modules/37_industry/subsectors/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/37_industry/subsectors/sets.gms -------------------------------------------------------------------------------- /modules/39_CCU/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/module.gms -------------------------------------------------------------------------------- /modules/39_CCU/off/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/off/bounds.gms -------------------------------------------------------------------------------- /modules/39_CCU/off/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/off/declarations.gms -------------------------------------------------------------------------------- /modules/39_CCU/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/off/not_used.txt -------------------------------------------------------------------------------- /modules/39_CCU/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/off/realization.gms -------------------------------------------------------------------------------- /modules/39_CCU/off/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/off/sets.gms -------------------------------------------------------------------------------- /modules/39_CCU/on/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/bounds.gms -------------------------------------------------------------------------------- /modules/39_CCU/on/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/datainput.gms -------------------------------------------------------------------------------- /modules/39_CCU/on/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/declarations.gms -------------------------------------------------------------------------------- /modules/39_CCU/on/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/equations.gms -------------------------------------------------------------------------------- /modules/39_CCU/on/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/not_used.txt -------------------------------------------------------------------------------- /modules/39_CCU/on/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/realization.gms -------------------------------------------------------------------------------- /modules/39_CCU/on/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/39_CCU/on/sets.gms -------------------------------------------------------------------------------- /modules/40_techpol/CombLowCandCoalPO/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/CombLowCandCoalPO/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/NDC/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/bounds.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDC/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/datainput.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDC/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/declarations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDC/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/equations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDC/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/input/files -------------------------------------------------------------------------------- /modules/40_techpol/NDC/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/NDC/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDC/realization.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/bounds.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/datainput.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/declarations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/equations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/input/files -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/NDCplus/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NDCplus/realization.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2018/bounds.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2018/datainput.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2018/declarations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2018/equations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/input/files: -------------------------------------------------------------------------------- 1 | f40_NDC+REN21+CHN_NUC.cs3r 2 | -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2018/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/NPi2018/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2018/realization.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/bounds.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/datainput.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/declarations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/equations.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/input/files -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/realization.gms -------------------------------------------------------------------------------- /modules/40_techpol/NPi2025/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/NPi2025/sets.gms -------------------------------------------------------------------------------- /modules/40_techpol/coalPhaseout/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/coalPhaseout/bounds.gms -------------------------------------------------------------------------------- /modules/40_techpol/coalPhaseout/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/coalPhaseout/declarations.gms -------------------------------------------------------------------------------- /modules/40_techpol/coalPhaseout/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/coalPhaseout/equations.gms -------------------------------------------------------------------------------- /modules/40_techpol/coalPhaseout/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/coalPhaseout/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/coalPhaseout/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/coalPhaseout/realization.gms -------------------------------------------------------------------------------- /modules/40_techpol/lowCarbonPush/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/lowCarbonPush/datainput.gms -------------------------------------------------------------------------------- /modules/40_techpol/lowCarbonPush/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/lowCarbonPush/declarations.gms -------------------------------------------------------------------------------- /modules/40_techpol/lowCarbonPush/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/lowCarbonPush/equations.gms -------------------------------------------------------------------------------- /modules/40_techpol/lowCarbonPush/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/lowCarbonPush/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/lowCarbonPush/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/lowCarbonPush/realization.gms -------------------------------------------------------------------------------- /modules/40_techpol/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/module.gms -------------------------------------------------------------------------------- /modules/40_techpol/none/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/none/not_used.txt -------------------------------------------------------------------------------- /modules/40_techpol/none/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/40_techpol/none/realization.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/AbilityToPay/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/AbilityToPay/bounds.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/AbilityToPay/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/AbilityToPay/datainput.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/AbilityToPay/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/AbilityToPay/not_used.txt -------------------------------------------------------------------------------- /modules/41_emicapregi/CandC/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/CandC/bounds.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/CandC/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/CandC/datainput.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/CandC/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/CandC/declarations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/CandC/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/CandC/equations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/CandC/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/CandC/not_used.txt -------------------------------------------------------------------------------- /modules/41_emicapregi/CandC/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/CandC/realization.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/GDPint/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/GDPint/datainput.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/GDPint/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/GDPint/declarations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/GDPint/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/GDPint/equations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/GDPint/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/GDPint/not_used.txt -------------------------------------------------------------------------------- /modules/41_emicapregi/GDPint/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/GDPint/realization.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/bounds.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/datainput.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/declarations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/equations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/not_used.txt -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/preloop.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/POPint/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/POPint/realization.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/exog/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/exog/bounds.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/exog/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/exog/datainput.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/exog/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/exog/declarations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/exog/input/emicapregi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/exog/input/emicapregi.inc -------------------------------------------------------------------------------- /modules/41_emicapregi/exog/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/exog/not_used.txt -------------------------------------------------------------------------------- /modules/41_emicapregi/exog/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/exog/realization.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/module.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/none/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/none/bounds.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/none/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/none/datainput.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/none/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/none/declarations.gms -------------------------------------------------------------------------------- /modules/41_emicapregi/none/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/none/not_used.txt -------------------------------------------------------------------------------- /modules/41_emicapregi/none/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/41_emicapregi/none/realization.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/declarations.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/input/files -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/postsolve.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/preloop.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NDC/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NDC/realization.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi/realization.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi2025/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi2025/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi2025/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi2025/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi2025/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi2025/realization.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi2025expo/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi2025expo/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/NPi2025expo/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/NPi2025expo/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/exogenous/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/exogenous/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/exogenous/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/exogenous/declarations.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/exogenous/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/exogenous/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/exogenous/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/exogenous/realization.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/exogenousExpo/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/exogenousExpo/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/expoLinear/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/expoLinear/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/expoLinear/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/expoLinear/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/expoLinear/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/expoLinear/realization.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/module.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/none/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/none/datainput.gms -------------------------------------------------------------------------------- /modules/45_carbonprice/none/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/none/not_used.txt -------------------------------------------------------------------------------- /modules/45_carbonprice/none/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/45_carbonprice/none/realization.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/datainput.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/declarations.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/input/files -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/not_used.txt -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/postsolve.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/preloop.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/NDC/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/NDC/realization.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/module.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/netZero/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/netZero/datainput.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/netZero/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/netZero/not_used.txt -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/netZero/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/netZero/postsolve.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/netZero/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/netZero/sets.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/none/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/none/datainput.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/none/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/none/declarations.gms -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/none/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/none/not_used.txt -------------------------------------------------------------------------------- /modules/46_carbonpriceRegi/none/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/46_carbonpriceRegi/none/realization.gms -------------------------------------------------------------------------------- /modules/47_regipol/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/module.gms -------------------------------------------------------------------------------- /modules/47_regipol/none/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/none/bounds.gms -------------------------------------------------------------------------------- /modules/47_regipol/none/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/none/datainput.gms -------------------------------------------------------------------------------- /modules/47_regipol/none/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/none/declarations.gms -------------------------------------------------------------------------------- /modules/47_regipol/none/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/none/not_used.txt -------------------------------------------------------------------------------- /modules/47_regipol/none/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/none/realization.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/bounds.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/datainput.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/equations.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/input/files -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/postsolve.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/preloop.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/presolve.gms -------------------------------------------------------------------------------- /modules/47_regipol/regiCarbonPrice/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/47_regipol/regiCarbonPrice/sets.gms -------------------------------------------------------------------------------- /modules/50_damages/BurkeLike/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/BurkeLike/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/BurkeLike/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/BurkeLike/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/BurkeLike/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/BurkeLike/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/BurkeLike/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/BurkeLike/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/BurkeLike/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/BurkeLike/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/BurkeLike/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/BurkeLike/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/COACCH/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/COACCH/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/COACCH/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/COACCH/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/COACCH/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/COACCH/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/COACCH/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/COACCH/sets.gms -------------------------------------------------------------------------------- /modules/50_damages/DiceLike/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/DiceLike/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/DiceLike/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/DiceLike/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/DiceLike/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/DiceLike/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/DiceLike/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/DiceLike/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/DiceLike/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/DiceLike/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/DiceLike/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/DiceLike/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/KWLike/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWLike/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/KWLike/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWLike/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/KWLike/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWLike/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/KWLike/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWLike/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/KWLike/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWLike/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/KWLike/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWLike/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/input/files -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/KWTCint/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KWTCint/sets.gms -------------------------------------------------------------------------------- /modules/50_damages/KW_SE/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KW_SE/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/KW_SE/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KW_SE/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/KW_SE/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KW_SE/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/KW_SE/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KW_SE/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/KW_SE/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KW_SE/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/KW_SE/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KW_SE/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/input/files -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/KotzWenz/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/KotzWenz/sets.gms -------------------------------------------------------------------------------- /modules/50_damages/Labor/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/Labor/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/Labor/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/Labor/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/Labor/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/Labor/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/Labor/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/Labor/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/Labor/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/Labor/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/Labor/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/Labor/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/TC/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/TC/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/TC/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/TC/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/input/files -------------------------------------------------------------------------------- /modules/50_damages/TC/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/TC/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/postsolve.gms -------------------------------------------------------------------------------- /modules/50_damages/TC/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/TC/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/TC/sets.gms -------------------------------------------------------------------------------- /modules/50_damages/exogenous/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/exogenous/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/exogenous/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/exogenous/datainput.gms -------------------------------------------------------------------------------- /modules/50_damages/exogenous/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/exogenous/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/exogenous/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/exogenous/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/exogenous/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/exogenous/realization.gms -------------------------------------------------------------------------------- /modules/50_damages/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/module.gms -------------------------------------------------------------------------------- /modules/50_damages/off/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/off/bounds.gms -------------------------------------------------------------------------------- /modules/50_damages/off/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/off/declarations.gms -------------------------------------------------------------------------------- /modules/50_damages/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/off/not_used.txt -------------------------------------------------------------------------------- /modules/50_damages/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/50_damages/off/realization.gms -------------------------------------------------------------------------------- /modules/51_internalizeDamages/LabItr/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/LabItr/not_used.txt -------------------------------------------------------------------------------- /modules/51_internalizeDamages/TCitr/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/TCitr/datainput.gms -------------------------------------------------------------------------------- /modules/51_internalizeDamages/TCitr/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/TCitr/not_used.txt -------------------------------------------------------------------------------- /modules/51_internalizeDamages/TCitr/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/TCitr/postsolve.gms -------------------------------------------------------------------------------- /modules/51_internalizeDamages/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/module.gms -------------------------------------------------------------------------------- /modules/51_internalizeDamages/off/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/off/datainput.gms -------------------------------------------------------------------------------- /modules/51_internalizeDamages/off/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/off/not_used.txt -------------------------------------------------------------------------------- /modules/51_internalizeDamages/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/51_internalizeDamages/off/realization.gms -------------------------------------------------------------------------------- /modules/52_internalizeLCAimpacts/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/52_internalizeLCAimpacts/module.gms -------------------------------------------------------------------------------- /modules/52_internalizeLCAimpacts/off/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/52_internalizeLCAimpacts/off/preloop.gms -------------------------------------------------------------------------------- /modules/70_water/heat/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/datainput.gms -------------------------------------------------------------------------------- /modules/70_water/heat/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/declarations.gms -------------------------------------------------------------------------------- /modules/70_water/heat/input/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/input/files -------------------------------------------------------------------------------- /modules/70_water/heat/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/not_used.txt -------------------------------------------------------------------------------- /modules/70_water/heat/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/output.gms -------------------------------------------------------------------------------- /modules/70_water/heat/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/realization.gms -------------------------------------------------------------------------------- /modules/70_water/heat/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/heat/sets.gms -------------------------------------------------------------------------------- /modules/70_water/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/module.gms -------------------------------------------------------------------------------- /modules/70_water/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/70_water/off/realization.gms -------------------------------------------------------------------------------- /modules/80_optimization/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/module.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/bounds.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/datainput.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/declarations.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/equations.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/not_used.txt -------------------------------------------------------------------------------- /modules/80_optimization/nash/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/output.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/postsolve.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/preloop.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/presolve.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/realization.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/sets.gms -------------------------------------------------------------------------------- /modules/80_optimization/nash/solve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/nash/solve.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/bounds.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/datainput.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/declarations.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/equations.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/not_used.txt -------------------------------------------------------------------------------- /modules/80_optimization/negishi/output.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/output.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/postsolve.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/preloop.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/realization.gms -------------------------------------------------------------------------------- /modules/80_optimization/negishi/solve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/negishi/solve.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/bounds.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/bounds.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/datainput.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/equations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/equations.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/not_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/not_used.txt -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/postsolve.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/preloop.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/preloop.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/sets.gms -------------------------------------------------------------------------------- /modules/80_optimization/testOneRegi/solve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/80_optimization/testOneRegi/solve.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/module.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/module.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/off/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/off/realization.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/on/datainput.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/on/datainput.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/on/declarations.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/on/declarations.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/on/postsolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/on/postsolve.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/on/presolve.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/on/presolve.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/on/realization.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/on/realization.gms -------------------------------------------------------------------------------- /modules/81_codePerformance/on/sets.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/81_codePerformance/on/sets.gms -------------------------------------------------------------------------------- /modules/include.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/modules/include.gms -------------------------------------------------------------------------------- /output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/output.R -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/archive/3.5.0_renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/archive/3.5.0_renv.lock -------------------------------------------------------------------------------- /renv/archive/3.5.1_renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/archive/3.5.1_renv.lock -------------------------------------------------------------------------------- /renv/archive/3.5.2_renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/archive/3.5.2_renv.lock -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/renv/settings.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/cs2/AirPollutantsREMIND-MAgPIE.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/AirPollutantsREMIND-MAgPIE.Rmd -------------------------------------------------------------------------------- /scripts/cs2/AirPollutantsREMIND.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/AirPollutantsREMIND.Rmd -------------------------------------------------------------------------------- /scripts/cs2/MAGICC7_AR6.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/MAGICC7_AR6.Rmd -------------------------------------------------------------------------------- /scripts/cs2/magpie.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/magpie.Rmd -------------------------------------------------------------------------------- /scripts/cs2/mySection.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/mySection.Rmd -------------------------------------------------------------------------------- /scripts/cs2/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/profiles.json -------------------------------------------------------------------------------- /scripts/cs2/run_compareScenarios2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/cs2/run_compareScenarios2.R -------------------------------------------------------------------------------- /scripts/input/climateAssessmentImpulseResponse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/climateAssessmentImpulseResponse.R -------------------------------------------------------------------------------- /scripts/input/climateAssessmentInterimRun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/climateAssessmentInterimRun.R -------------------------------------------------------------------------------- /scripts/input/exoGAINS2025Airpollutants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/exoGAINS2025Airpollutants.R -------------------------------------------------------------------------------- /scripts/input/magpie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/magpie.R -------------------------------------------------------------------------------- /scripts/input/prepare_NDC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/prepare_NDC.R -------------------------------------------------------------------------------- /scripts/input/r_gen_co2_tax.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/r_gen_co2_tax.R -------------------------------------------------------------------------------- /scripts/input/run_KotzWenz_damages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/input/run_KotzWenz_damages.R -------------------------------------------------------------------------------- /scripts/insertheader/insertheader.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/insertheader/insertheader.R -------------------------------------------------------------------------------- /scripts/output/comparison/bioenergy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/bioenergy.R -------------------------------------------------------------------------------- /scripts/output/comparison/bioenergy_SSP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/bioenergy_SSP.R -------------------------------------------------------------------------------- /scripts/output/comparison/compareScenarios2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/compareScenarios2.R -------------------------------------------------------------------------------- /scripts/output/comparison/plotRemMagNash.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/plotRemMagNash.R -------------------------------------------------------------------------------- /scripts/output/comparison/plotRuntime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/plotRuntime.R -------------------------------------------------------------------------------- /scripts/output/comparison/policyCosts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/policyCosts.R -------------------------------------------------------------------------------- /scripts/output/comparison/runtime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/runtime.R -------------------------------------------------------------------------------- /scripts/output/comparison/runtimeMAgPIENash.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/runtimeMAgPIENash.R -------------------------------------------------------------------------------- /scripts/output/comparison/selectPlots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/selectPlots.R -------------------------------------------------------------------------------- /scripts/output/comparison/supplycurves.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/supplycurves.R -------------------------------------------------------------------------------- /scripts/output/comparison/validateScenarios.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/validateScenarios.R -------------------------------------------------------------------------------- /scripts/output/comparison/varListHtml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/comparison/varListHtml.R -------------------------------------------------------------------------------- /scripts/output/export/xlsx_IIASA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/export/xlsx_IIASA.R -------------------------------------------------------------------------------- /scripts/output/single/.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/.RData -------------------------------------------------------------------------------- /scripts/output/single/LCOEPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/LCOEPlot.R -------------------------------------------------------------------------------- /scripts/output/single/MAGICC7_AR6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/MAGICC7_AR6.R -------------------------------------------------------------------------------- /scripts/output/single/checkProjectSummations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/checkProjectSummations.R -------------------------------------------------------------------------------- /scripts/output/single/checkVsCalibData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/checkVsCalibData.R -------------------------------------------------------------------------------- /scripts/output/single/emulator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/emulator.R -------------------------------------------------------------------------------- /scripts/output/single/fixOnRef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/fixOnRef.R -------------------------------------------------------------------------------- /scripts/output/single/integratedDamageCosts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/integratedDamageCosts.R -------------------------------------------------------------------------------- /scripts/output/single/nashConvergenceReport.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/nashConvergenceReport.R -------------------------------------------------------------------------------- /scripts/output/single/plotIterations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/plotIterations.R -------------------------------------------------------------------------------- /scripts/output/single/plotRemMagNash.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/plotRemMagNash.R -------------------------------------------------------------------------------- /scripts/output/single/rds_report.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/rds_report.R -------------------------------------------------------------------------------- /scripts/output/single/reportCEScalib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/reportCEScalib.R -------------------------------------------------------------------------------- /scripts/output/single/reportEsubs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/reportEsubs.R -------------------------------------------------------------------------------- /scripts/output/single/reportLogit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/reportLogit.R -------------------------------------------------------------------------------- /scripts/output/single/reporting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/reporting.R -------------------------------------------------------------------------------- /scripts/output/single/reportingREMIND2MAgPIE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/reportingREMIND2MAgPIE.R -------------------------------------------------------------------------------- /scripts/output/single/reporting_MOFEX.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/output/single/reporting_MOFEX.R -------------------------------------------------------------------------------- /scripts/start/addTitletag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/addTitletag.R -------------------------------------------------------------------------------- /scripts/start/calculate_CES_configuration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/calculate_CES_configuration.R -------------------------------------------------------------------------------- /scripts/start/checkFixCfg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/checkFixCfg.R -------------------------------------------------------------------------------- /scripts/start/checkSettingsRemMag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/checkSettingsRemMag.R -------------------------------------------------------------------------------- /scripts/start/choose_slurmConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/choose_slurmConfig.R -------------------------------------------------------------------------------- /scripts/start/combine_slurmConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/combine_slurmConfig.R -------------------------------------------------------------------------------- /scripts/start/configureCfg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/configureCfg.R -------------------------------------------------------------------------------- /scripts/start/defineInputData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/defineInputData.R -------------------------------------------------------------------------------- /scripts/start/ensureRequirementsInstalled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/ensureRequirementsInstalled.R -------------------------------------------------------------------------------- /scripts/start/isSlurmAvailable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/isSlurmAvailable.R -------------------------------------------------------------------------------- /scripts/start/missingInputData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/missingInputData.R -------------------------------------------------------------------------------- /scripts/start/modelSummary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/modelSummary.R -------------------------------------------------------------------------------- /scripts/start/needBau.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/needBau.R -------------------------------------------------------------------------------- /scripts/start/path_gdx_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/path_gdx_list.R -------------------------------------------------------------------------------- /scripts/start/prepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/prepare.R -------------------------------------------------------------------------------- /scripts/start/prepareAndRun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/prepareAndRun.R -------------------------------------------------------------------------------- /scripts/start/readCheckScenarioConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/readCheckScenarioConfig.R -------------------------------------------------------------------------------- /scripts/start/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/run.R -------------------------------------------------------------------------------- /scripts/start/runGamsCompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/runGamsCompile.R -------------------------------------------------------------------------------- /scripts/start/selectScenarios.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/selectScenarios.R -------------------------------------------------------------------------------- /scripts/start/selectTestOneRegiRegion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/selectTestOneRegiRegion.R -------------------------------------------------------------------------------- /scripts/start/submit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/submit.R -------------------------------------------------------------------------------- /scripts/start/updateInputData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/updateInputData.R -------------------------------------------------------------------------------- /scripts/start/updateSets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/start/updateSets.R -------------------------------------------------------------------------------- /scripts/utils/SOFEOF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/SOFEOF -------------------------------------------------------------------------------- /scripts/utils/checkSetup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/checkSetup.R -------------------------------------------------------------------------------- /scripts/utils/create1mif.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/create1mif.R -------------------------------------------------------------------------------- /scripts/utils/create1mif_woPlus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/create1mif_woPlus.R -------------------------------------------------------------------------------- /scripts/utils/create1mifwithoutPlus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/create1mifwithoutPlus.R -------------------------------------------------------------------------------- /scripts/utils/postRelease.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/postRelease.R -------------------------------------------------------------------------------- /scripts/utils/rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/rds -------------------------------------------------------------------------------- /scripts/utils/readcoupled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/readcoupled.R -------------------------------------------------------------------------------- /scripts/utils/release.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/release.R -------------------------------------------------------------------------------- /scripts/utils/rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/rs -------------------------------------------------------------------------------- /scripts/utils/set-local-calibration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/set-local-calibration.sh -------------------------------------------------------------------------------- /scripts/utils/set-local-calibration/gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | git_info 3 | commit-message.txt 4 | .Rprofile_calibration_results 5 | -------------------------------------------------------------------------------- /scripts/utils/set-local-calibration/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/set-local-calibration/post-commit -------------------------------------------------------------------------------- /scripts/utils/set-local-calibration/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/utils/set-local-calibration/pre-commit -------------------------------------------------------------------------------- /scripts/vs/run_validateScenarios.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/scripts/vs/run_validateScenarios.R -------------------------------------------------------------------------------- /standalone/MOFEX/MOFEX.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/MOFEX/MOFEX.gms -------------------------------------------------------------------------------- /standalone/MOFEX/config/scenario_config_MOFEX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/MOFEX/config/scenario_config_MOFEX.csv -------------------------------------------------------------------------------- /standalone/MOFEX/scripts/reporting_MOFEX.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/MOFEX/scripts/reporting_MOFEX.R -------------------------------------------------------------------------------- /standalone/template.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/template.gms -------------------------------------------------------------------------------- /standalone/trade/1-dump-gdx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/trade/1-dump-gdx.sh -------------------------------------------------------------------------------- /standalone/trade/2-plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/trade/2-plotting.py -------------------------------------------------------------------------------- /standalone/trade/trade.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/standalone/trade/trade.gms -------------------------------------------------------------------------------- /start.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/start.R -------------------------------------------------------------------------------- /start_windows.cmd: -------------------------------------------------------------------------------- 1 | Rscript start.R -------------------------------------------------------------------------------- /tests/testthat/helper_localSystem2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/helper_localSystem2.R -------------------------------------------------------------------------------- /tests/testthat/helper_printIfFailed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/helper_printIfFailed.R -------------------------------------------------------------------------------- /tests/testthat/helper_skipFailed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/helper_skipFailed.R -------------------------------------------------------------------------------- /tests/testthat/helper_skipIfFast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/helper_skipIfFast.R -------------------------------------------------------------------------------- /tests/testthat/setup_loadFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/setup_loadFunctions.R -------------------------------------------------------------------------------- /tests/testthat/setup_updateRenv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/setup_updateRenv.R -------------------------------------------------------------------------------- /tests/testthat/test_01-SOF-EOF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-SOF-EOF.R -------------------------------------------------------------------------------- /tests/testthat/test_01-addTitletag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-addTitletag.R -------------------------------------------------------------------------------- /tests/testthat/test_01-checkFixCfg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-checkFixCfg.R -------------------------------------------------------------------------------- /tests/testthat/test_01-checkSettingsRemMag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-checkSettingsRemMag.R -------------------------------------------------------------------------------- /tests/testthat/test_01-citation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-citation.R -------------------------------------------------------------------------------- /tests/testthat/test_01-codeCheck.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-codeCheck.R -------------------------------------------------------------------------------- /tests/testthat/test_01-combine_slurmConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-combine_slurmConfig.R -------------------------------------------------------------------------------- /tests/testthat/test_01-gms_readSettings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-gms_readSettings.R -------------------------------------------------------------------------------- /tests/testthat/test_01-inputdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-inputdata.R -------------------------------------------------------------------------------- /tests/testthat/test_01-manipulateConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-manipulateConfig.R -------------------------------------------------------------------------------- /tests/testthat/test_01-path_gdx_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-path_gdx_list.R -------------------------------------------------------------------------------- /tests/testthat/test_01-readCheckScenarioConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-readCheckScenarioConfig.R -------------------------------------------------------------------------------- /tests/testthat/test_01-readDefaultConfig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-readDefaultConfig.R -------------------------------------------------------------------------------- /tests/testthat/test_01-runGamsCompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-runGamsCompile.R -------------------------------------------------------------------------------- /tests/testthat/test_01-selectScenarios.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-selectScenarios.R -------------------------------------------------------------------------------- /tests/testthat/test_01-start.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_01-start.R -------------------------------------------------------------------------------- /tests/testthat/test_02-compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_02-compile.R -------------------------------------------------------------------------------- /tests/testthat/test_03-quick.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_03-quick.R -------------------------------------------------------------------------------- /tests/testthat/test_04-gamscompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_04-gamscompile.R -------------------------------------------------------------------------------- /tests/testthat/test_04-test-gams-compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_04-test-gams-compile.R -------------------------------------------------------------------------------- /tests/testthat/test_05-default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_05-default.R -------------------------------------------------------------------------------- /tests/testthat/test_06-output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/test_06-output.R -------------------------------------------------------------------------------- /tests/testthat/validation/test_01-mifs_exist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/validation/test_01-mifs_exist.R -------------------------------------------------------------------------------- /tests/testthat/validation/test_02-fe_liquids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/validation/test_02-fe_liquids.R -------------------------------------------------------------------------------- /tests/testthat/validation/test_04-invest_esm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tests/testthat/validation/test_04-invest_esm.R -------------------------------------------------------------------------------- /tutorials/00_Git_and_GitHub_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/00_Git_and_GitHub_workflow.md -------------------------------------------------------------------------------- /tutorials/01_GettingREMIND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/01_GettingREMIND.md -------------------------------------------------------------------------------- /tutorials/02_RunningREMIND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/02_RunningREMIND.md -------------------------------------------------------------------------------- /tutorials/02a_RunningREMINDLocally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/02a_RunningREMINDLocally.md -------------------------------------------------------------------------------- /tutorials/03_RunningBundleOfRuns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/03_RunningBundleOfRuns.md -------------------------------------------------------------------------------- /tutorials/04_RunningREMINDandMAgPIE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/04_RunningREMINDandMAgPIE.md -------------------------------------------------------------------------------- /tutorials/05_AnalysingModelOutputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/05_AnalysingModelOutputs.md -------------------------------------------------------------------------------- /tutorials/06_Advanced_ChangeInputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/06_Advanced_ChangeInputs.md -------------------------------------------------------------------------------- /tutorials/07_Advanced_ChangeCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/07_Advanced_ChangeCode.md -------------------------------------------------------------------------------- /tutorials/07a_Advanced_ChangeStartingScripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/07a_Advanced_ChangeStartingScripts.md -------------------------------------------------------------------------------- /tutorials/08_Advanced_AnalysingModelOutputs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/08_Advanced_AnalysingModelOutputs.Rmd -------------------------------------------------------------------------------- /tutorials/09_Advanced_StandaloneModels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/09_Advanced_StandaloneModels.md -------------------------------------------------------------------------------- /tutorials/10_DebuggingREMIND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/10_DebuggingREMIND.md -------------------------------------------------------------------------------- /tutorials/11_ManagingRenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/11_ManagingRenv.md -------------------------------------------------------------------------------- /tutorials/12_Calibrating_CES_Parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/12_Calibrating_CES_Parameters.md -------------------------------------------------------------------------------- /tutorials/13_Submit_to_IIASA_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/13_Submit_to_IIASA_database.md -------------------------------------------------------------------------------- /tutorials/14_Calculate_policy_costs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/14_Calculate_policy_costs.md -------------------------------------------------------------------------------- /tutorials/15_Using_Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/15_Using_Python.md -------------------------------------------------------------------------------- /tutorials/16_taxation_mechanism_toy_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/16_taxation_mechanism_toy_model.md -------------------------------------------------------------------------------- /tutorials/17_Regions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/17_Regions.md -------------------------------------------------------------------------------- /tutorials/18_Abbreviations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/18_Abbreviations.md -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/figures/4-REMIND-MAgPIE-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/4-REMIND-MAgPIE-circle.png -------------------------------------------------------------------------------- /tutorials/figures/REMIND_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/REMIND_flow.png -------------------------------------------------------------------------------- /tutorials/figures/REMIND_gams_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/REMIND_gams_flow.png -------------------------------------------------------------------------------- /tutorials/figures/Rscript_outputR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/Rscript_outputR.png -------------------------------------------------------------------------------- /tutorials/figures/appResults_runselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/appResults_runselection.png -------------------------------------------------------------------------------- /tutorials/figures/appResults_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/appResults_window.png -------------------------------------------------------------------------------- /tutorials/figures/git-1-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-1-setup.png -------------------------------------------------------------------------------- /tutorials/figures/git-10-branching-advanced.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-10-branching-advanced.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-11-rules.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-11-rules.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-2-pushing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-2-pushing.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-3-add-upstream.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-3-add-upstream.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-4-pull-upstream.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-4-pull-upstream.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-5-pull-request.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-5-pull-request.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-6-all-in-one.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-6-all-in-one.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-7-pull-request-github-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-7-pull-request-github-1.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-8-pull-request-github-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-8-pull-request-github-2.PNG -------------------------------------------------------------------------------- /tutorials/figures/git-9-branching.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/git-9-branching.PNG -------------------------------------------------------------------------------- /tutorials/figures/scenario-config-explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/scenario-config-explanation.png -------------------------------------------------------------------------------- /tutorials/figures/scenario_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/scenario_config.png -------------------------------------------------------------------------------- /tutorials/figures/technical_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remindmodel/remind/HEAD/tutorials/figures/technical_structure.png --------------------------------------------------------------------------------