├── .gitattributes ├── .github ├── CODEOWNERS ├── codecov.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── publish.yaml │ ├── pytest-snapshots.yaml │ ├── pytest.yaml │ └── transport.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── conftest.py ├── doc ├── Makefile ├── _static │ ├── Availability_BE.png │ ├── BiomassSupply.png │ ├── CS-PDFs.png │ ├── GEA_technology_cost_ranges.png │ ├── GLOBIOM_chart_hires.jpg │ ├── GLOBIOM_forage_availability.png │ ├── GLOBIOM_forage_livestock.png │ ├── GLOBIOM_land_cover.png │ ├── GLOBIOM_land_use_product_structure.png │ ├── GlobalResourceSupplyCurves.png │ ├── LanduseEmissions.png │ ├── MESSAGE-Access_groups.png │ ├── MESSAGE_regions.png │ ├── RES_fuel_blending.png │ ├── RES_po_turbine.png │ ├── S1ThermoCosts.png │ ├── S2NonThermoCosts.png │ ├── S3OtherCosts.png │ ├── Shares_HFC.png │ ├── Sources_HFC.png │ ├── combined-logo-white.png │ ├── combined-logo-white.svg │ ├── cooling_implement1.png │ ├── cooling_implement2.png │ ├── costind-nonthermo.png │ ├── costind-other.png │ ├── costind-thermo.png │ ├── css │ │ └── custom.css │ ├── custom.css │ ├── diffusion_constraint_example.png │ ├── electricity_generation_fossil_nuclear.png │ ├── electricity_generation_renewable.png │ ├── emulator_CD_Links_SSP2_v2_Global_Cprice_Temp.png │ ├── emulator_CD_Links_SSP2_v2_Global_LanduseSurface.png │ ├── emulator_CD_Links_SSP2_v2_Global_LanduseSurface_incl_results.png │ ├── emulator_ENGAGE_SSP2_v4.1.2_sens_Global_validation_cprice.png │ ├── emulator_RES.PNG │ ├── emulator_SSP1_Feedback.png │ ├── emulator_Scenario_Matrix.png │ ├── favicon.svg │ ├── global_HFC.png │ ├── global_resources_3.1.png │ ├── iam_framework-1.png │ ├── iiasaiam.png │ ├── industry_end-use.png │ ├── logo-white.png │ ├── logo_blue.png │ ├── logo_white.png │ ├── map_3.3.png │ ├── message-ix-models-logo-white.svg │ ├── nuclear_resources.png │ ├── png_source_files │ │ ├── Land-use_emulator_RES.pptx │ │ ├── Land-use_emulator_figures.ipynb │ │ ├── combined-logo-white.svg │ │ ├── favicon.svg │ │ └── message_doc-logo-white.svg │ ├── ppl_energy_balance.png │ ├── regional_HFC_intensity.png │ ├── residential-commercial_end-use.png │ ├── technology_diffusion_eq_1.png │ ├── technology_diffusion_eq_2.png │ ├── technology_diffusion_eq_2a.png │ ├── technology_diffusion_eq_3.png │ ├── technology_diffusion_eq_4.png │ ├── technology_diffusion_eq_4a.png │ ├── technology_diffusion_eq_4b.png │ ├── technology_diffusion_eq_5.png │ ├── transport_end-use.png │ └── wind_cv.png ├── _template │ ├── autosummary-class.rst │ └── autosummary-module.rst ├── api │ ├── data-sources.rst │ ├── disutility.rst │ ├── model-bare.rst │ ├── model-build.rst │ ├── model-emissions.rst │ ├── model-snapshot.rst │ ├── model.rst │ ├── report │ │ ├── default-config.rst │ │ ├── index.rst │ │ └── legacy.rst │ ├── testing.rst │ ├── tests.rst │ ├── tools-costs.rst │ ├── tools-messagev.rst │ ├── tools.rst │ ├── util.rst │ └── workflow.rst ├── bibliography.rst ├── buildings │ └── index.rst ├── cli.rst ├── conf.py ├── data.rst ├── develop.rst ├── distrib.rst ├── global │ ├── .gitignore │ ├── _extra │ │ ├── climate_indicators.rst │ │ ├── f_gases.rst │ │ ├── imports_and_exports.rst │ │ ├── index.rst │ │ ├── linkage.rst │ │ └── resource.rst │ ├── annex │ │ └── index.rst │ ├── climate │ │ └── index.rst │ ├── emissions │ │ ├── globiom │ │ │ └── index.rst │ │ ├── index.rst │ │ └── message │ │ │ └── index.rst │ ├── energy │ │ ├── conversion │ │ │ ├── electricity.rst │ │ │ ├── grid.rst │ │ │ ├── heat.rst │ │ │ ├── index.rst │ │ │ └── other.rst │ │ ├── demand.rst │ │ ├── enduse │ │ │ ├── index.rst │ │ │ ├── industrial.rst │ │ │ ├── resid_commerc.rst │ │ │ └── transport.rst │ │ ├── fuel_blending.rst │ │ ├── index.rst │ │ ├── policy.rst │ │ ├── resource │ │ │ ├── bioenergy.rst │ │ │ ├── fossilfuel.rst │ │ │ ├── index.rst │ │ │ ├── nuclear.rst │ │ │ └── renewable.rst │ │ ├── tech.rst │ │ └── tech_addon.rst │ ├── external_index.rst │ ├── further-reading.rst │ ├── glossary.rst │ ├── index.rst │ ├── land_use │ │ ├── crop.rst │ │ ├── emulator.rst │ │ ├── food.rst │ │ ├── forest.rst │ │ ├── index.rst │ │ ├── land.rst │ │ ├── livestock.rst │ │ └── spatial.rst │ ├── macro.rst │ ├── overview │ │ ├── index.rst │ │ ├── policy │ │ │ └── index.rst │ │ ├── spatial.rst │ │ └── temporal.rst │ ├── socio_econ │ │ ├── beh_change.rst │ │ ├── index.rst │ │ ├── narratives.rst │ │ └── pop_GDP.rst │ ├── water │ │ └── index.rst │ └── z_bibliography.rst ├── howto │ ├── index.rst │ ├── migrate.rst │ ├── path.rst │ ├── quickstart.rst │ ├── release.rst │ └── unicc.rst ├── index.rst ├── install.rst ├── main.bib ├── make.bat ├── material │ ├── index.rst │ ├── v1.1.0.rst │ └── v1.2.0.rst ├── messageix-globiom.bib ├── messageix-globiom.ris ├── pkg-data │ ├── codelists.rst │ ├── iiasa-se.rst │ ├── node.rst │ ├── relation.rst │ └── year.rst ├── project │ ├── advance.rst │ ├── alps.rst │ ├── carbon-direct.rst │ ├── cfr.rst │ ├── circeular.rst │ ├── ecemf.rst │ ├── edits.rst │ ├── elevate.rst │ ├── engage.rst │ ├── gea.rst │ ├── geidco.rst │ ├── genie.rst │ ├── guide.rst │ ├── hyway.rst │ ├── navigate.rst │ ├── newpathways.rst │ ├── nextgen-carbon.rst │ ├── ngfs.rst │ ├── prisma.rst │ ├── scenariomip.rst │ ├── shape.rst │ ├── sparccle.rst │ ├── ssp.rst │ └── uptake.rst ├── repro.rst ├── requirements.in ├── requirements.txt ├── transport │ ├── disutility.rst │ ├── index.rst │ ├── input.rst │ ├── old.rst │ └── output.rst ├── water │ ├── files.rst │ └── index.rst └── whatsnew.rst ├── message_ix_models ├── __init__.py ├── cli.py ├── data │ ├── alps │ │ ├── granular-techs_cost_comparison_20170831_revAG_SDS_5year.xlsx │ │ ├── solar_wind_intermittency_20170831_5year.xlsx │ │ └── useful_level_fuel_potential_contribution_20170907_5year.xlsx │ ├── buildings │ │ └── set.yaml │ ├── cd_links │ │ └── unit.yaml │ ├── commodity.yaml │ ├── costs │ │ ├── cooling │ │ │ └── tech_map.csv │ │ ├── energy │ │ │ ├── cost_reduction.csv │ │ │ ├── scenarios_reduction.csv │ │ │ └── tech_map.csv │ │ └── materials │ │ │ ├── cost_reduction.csv │ │ │ ├── scenarios_reduction.csv │ │ │ └── tech_map.csv │ ├── edits │ │ ├── messageix-transport-core.yaml │ │ └── messageix-transport-input.yaml │ ├── emission.yaml │ ├── gea │ │ └── model-scenario.json │ ├── iea │ │ ├── WEO_2022_PG_Assumptions_STEPSandNZE_Scenario.xlsb │ │ └── WEO_2023_PG_Assumptions_STEPSandNZE_Scenario.xlsx │ ├── iiasa-se │ │ ├── def-regions.yaml │ │ └── mappings-R12.yaml │ ├── intratec │ │ └── R11 │ │ │ └── indices.csv │ ├── ipcc │ │ └── 1996_v3_t1-2.csv │ ├── level.yaml │ ├── material │ │ ├── UE_dynamic_constraints │ │ │ ├── SSP_UE_dyn_input.xlsx │ │ │ └── SSP_UE_dyn_input_all.xlsx │ │ ├── aluminum │ │ │ ├── alu_ref_int_1985_2023.csv │ │ │ ├── aluminum_trade.csv │ │ │ ├── archived │ │ │ │ └── aluminum_techno_economic.xlsx │ │ │ ├── data_R12.csv │ │ │ ├── demand_2025.csv │ │ │ ├── demand_aluminum.xlsx │ │ │ ├── demand_aluminum.yaml │ │ │ ├── raw │ │ │ │ ├── MetallurgicalAluminaRefiningFuelConsumption_1985-2023.csv │ │ │ │ ├── bgs_production │ │ │ │ │ ├── alumina │ │ │ │ │ │ └── 2015-22.xlsx │ │ │ │ │ └── aluminum │ │ │ │ │ │ ├── 1970-78.xlsx │ │ │ │ │ │ ├── 1979-89.xlsx │ │ │ │ │ │ ├── 1990-2000.xlsx │ │ │ │ │ │ ├── 2001-11.xlsx │ │ │ │ │ │ └── 2010-22.xlsx │ │ │ │ └── smelters-with 2022 projection.xls │ │ │ ├── relations_R12.csv │ │ │ └── timeseries_R12.csv │ │ ├── ammonia │ │ │ ├── cost_conv_nh3.xlsx │ │ │ ├── demand_NH3.yaml │ │ │ ├── fert_techno_economic.xlsx │ │ │ └── nh3_fertilizer_demand.xlsx │ │ ├── buildings │ │ │ ├── LED_LED_report_IAMC_sensitivity_R12.csv │ │ │ ├── report_IRP_SSP2_BL_comm_R12.csv │ │ │ └── report_IRP_SSP2_BL_resid_R12.csv │ │ ├── cement │ │ │ ├── CEMENT.BvR2010.xlsx │ │ │ ├── Global_cement_MESSAGE.xlsx │ │ │ └── demand_cement.yaml │ │ ├── commodity.yaml │ │ ├── iea_mappings │ │ │ ├── all_technologies.csv │ │ │ ├── chemicals.csv │ │ │ └── industry.csv │ │ ├── macro │ │ │ └── macro_calibration_input_SSP2.xlsx │ │ ├── material.tar.gz │ │ ├── methanol │ │ │ ├── collection files │ │ │ │ ├── MTO data collection.xlsx │ │ │ │ └── Methanol production statistics (version 1).xlsx │ │ │ ├── demand_methanol.yaml │ │ │ ├── h2_elec_fs.xlsx │ │ │ ├── h2_elec_fuel.xlsx │ │ │ ├── location factor collection.xlsx │ │ │ ├── meth_bio_techno_economic_new.xlsx │ │ │ ├── meth_bio_techno_economic_new_ccs.xlsx │ │ │ ├── meth_coal_additions.xlsx │ │ │ ├── meth_h2_techno_economic_fs.xlsx │ │ │ ├── meth_h2_techno_economic_fuel.xlsx │ │ │ ├── meth_ng_techno_economic.xlsx │ │ │ ├── meth_ng_techno_economic_fs.xlsx │ │ │ ├── meth_t_d_fuel.xlsx │ │ │ ├── meth_t_d_material_pars.xlsx │ │ │ ├── meth_trade_techno_economic.xlsx │ │ │ ├── meth_trade_techno_economic_fs.xlsx │ │ │ ├── methanol demand.xlsx │ │ │ ├── methanol_sensitivity_pars.xlsx │ │ │ ├── methanol_sensitivity_pars_high.xlsx │ │ │ ├── methanol_techno_economic.xlsx │ │ │ ├── methanol_techno_economic_high_demand.xlsx │ │ │ ├── missing_rels.yaml │ │ │ ├── results_material_SHAPE_comm.csv │ │ │ ├── results_material_SHAPE_residential.csv │ │ │ ├── results_material_SSP2_comm.csv │ │ │ ├── results_material_SSP2_residential.csv │ │ │ └── scenario_list.xlsx │ │ ├── other │ │ │ ├── MESSAGEix-Materials_final_energy_industry.xlsx │ │ │ ├── generic_furnace_boiler_techno_economic.xlsx │ │ │ ├── iamc_db ENGAGE baseline GDP PPP.xlsx │ │ │ ├── mer_to_ppp_default.csv │ │ │ ├── residual_industry_2019.csv │ │ │ └── water_tec_pars.xlsx │ │ ├── petrochemicals │ │ │ ├── demand_HVC.yaml │ │ │ ├── petrochemicals_techno_economic.xlsx │ │ │ ├── steam_cracking_hist_act.csv │ │ │ └── steam_cracking_hist_new_cap.csv │ │ ├── power_sector │ │ │ ├── LCA_commodity_mapping.xlsx │ │ │ ├── LCA_region_mapping.xlsx │ │ │ ├── MESSAGE_global_model_technologies.xlsx │ │ │ └── NTNU_LCA_coefficients.xlsx │ │ ├── set.yaml │ │ ├── steel │ │ │ ├── Global_steel_MESSAGE.xlsx │ │ │ ├── STEEL_database_2012.xlsx │ │ │ ├── demand_steel.yaml │ │ │ └── worldsteel_steel_trade.xlsx │ │ └── technology.yaml │ ├── navigate │ │ └── scenarios.yaml │ ├── node │ │ ├── ADVANCE.yaml │ │ ├── B210-R11.yaml │ │ ├── ISR.yaml │ │ ├── R11.yaml │ │ ├── R12.yaml │ │ ├── R14.yaml │ │ ├── R17.yaml │ │ ├── R20.yaml │ │ ├── R32.yaml │ │ ├── RCP.yaml │ │ └── ZMB.yaml │ ├── relation │ │ ├── A.yaml │ │ ├── B.yaml │ │ └── CD-LINKS.yaml │ ├── report │ │ ├── global.yaml │ │ └── legacy │ │ │ ├── ENGAGE_SSP2_v417_run_config.yaml │ │ │ ├── default_aggregates.csv │ │ │ ├── default_kyoto_hist.csv │ │ │ ├── default_lu_co2_hist.csv │ │ │ ├── default_pop_urban_rural.csv │ │ │ ├── default_run_config.yaml │ │ │ ├── default_units.yaml │ │ │ ├── default_variable_definitions.csv │ │ │ └── fil_files │ │ │ ├── AFR-HFC_fac.fil │ │ │ ├── CHN-HFC_fac.fil │ │ │ ├── CPA-HFC_fac.fil │ │ │ ├── EEU-HFC_fac.fil │ │ │ ├── FSU-HFC_fac.fil │ │ │ ├── GLB-HFC_fac.fil │ │ │ ├── LAM-HFC_fac.fil │ │ │ ├── MEA-HFC_fac.fil │ │ │ ├── NAM-HFC_fac.fil │ │ │ ├── PAO-HFC_fac.fil │ │ │ ├── PAS-HFC_fac.fil │ │ │ ├── RCPA-HFC_fac.fil │ │ │ ├── SAS-HFC_fac.fil │ │ │ └── WEU-HFC_fac.fil │ ├── sdmx │ │ ├── ADVANCE.xml │ │ ├── ICONICS_SSP(2017).xml │ │ ├── ICONICS_SSP(2024).xml │ │ ├── IEA_COUNTRY_IEA(2023).xml │ │ ├── IEA_COUNTRY_IEA(2024).xml │ │ ├── IEA_COUNTRY_OECD(2021).xml │ │ ├── IEA_COUNTRY_OECD(2022).xml │ │ ├── IEA_COUNTRY_OECD(2023).xml │ │ ├── IEA_FLOW_IEA(2023).xml │ │ ├── IEA_FLOW_IEA(2024).xml │ │ ├── IEA_FLOW_OECD(2021).xml │ │ ├── IEA_FLOW_OECD(2022).xml │ │ ├── IEA_FLOW_OECD(2023).xml │ │ ├── IEA_PRODUCT_IEA(2023).xml │ │ ├── IEA_PRODUCT_IEA(2024).xml │ │ ├── IEA_PRODUCT_OECD(2021).xml │ │ ├── IEA_PRODUCT_OECD(2022).xml │ │ ├── IEA_PRODUCT_OECD(2023).xml │ │ ├── IIASA_ECE_AGENCIES(0.1).xml │ │ ├── IIASA_ECE_CL_TRANSPORT_SCENARIO(1.0.0).xml │ │ └── transport-in.xml │ ├── technology.yaml │ ├── test │ │ ├── advance │ │ │ └── advance_compare_20171018-134445.csv.zip │ │ ├── buildings │ │ │ ├── prices.csv │ │ │ └── sturm │ │ │ │ ├── report_NAVIGATE_SSP2_comm_R12.csv │ │ │ │ └── report_NAVIGATE_SSP2_resid_R12.csv │ │ ├── edits │ │ │ └── pasta.csv │ │ ├── gea │ │ │ └── GEADB_ARCHIVE_20171108.zip │ │ ├── iea │ │ │ └── web │ │ │ │ ├── 2024-07-25 │ │ │ │ ├── WBIG1.zip │ │ │ │ └── WBIG2.zip │ │ │ │ ├── 372f7e29-en.zip │ │ │ │ ├── 8624f431-en.zip │ │ │ │ └── cac5fa90-en.zip │ │ ├── macro │ │ │ └── kgdp.csv │ │ ├── report │ │ │ ├── SSP_LED_v2.3.1_baseline.csv │ │ │ └── SSP_dev_SSP2_v0.1_Blv0.18_baseline_prep_lu_bkp_solved_materials_2025_macro.csv │ │ ├── shape │ │ │ ├── gdp_v1p0.mif │ │ │ ├── gdp_v1p1.mif │ │ │ ├── gdp_v1p2.mif │ │ │ ├── gini_v1p0.csv │ │ │ ├── gini_v1p1.csv │ │ │ ├── population_v1p0.mif │ │ │ ├── population_v1p1.mif │ │ │ ├── population_v1p2.mif │ │ │ └── urbanisation_v1p0.csv │ │ ├── snapshot-0 │ │ │ └── MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline │ │ │ │ ├── ACT.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_ALL_MODES_LO.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_ALL_MODES_UP.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_LO.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_UP.csv.gz │ │ │ │ ├── ACTIVITY_BY_RATING.csv.gz │ │ │ │ ├── ACTIVITY_CONSTRAINT_LO.csv.gz │ │ │ │ ├── ACTIVITY_CONSTRAINT_UP.csv.gz │ │ │ │ ├── ACTIVITY_RATING_TOTAL.csv.gz │ │ │ │ ├── ACTIVITY_SOFT_CONSTRAINT_LO.csv.gz │ │ │ │ ├── ACTIVITY_SOFT_CONSTRAINT_UP.csv.gz │ │ │ │ ├── ACT_LO.csv.gz │ │ │ │ ├── ACT_RATING.csv.gz │ │ │ │ ├── ACT_UP.csv.gz │ │ │ │ ├── ADDON_ACTIVITY_LO.csv.gz │ │ │ │ ├── ADDON_ACTIVITY_UP.csv.gz │ │ │ │ ├── CAP.csv.gz │ │ │ │ ├── CAPACITY_CONSTRAINT.csv.gz │ │ │ │ ├── CAPACITY_MAINTENANCE.csv.gz │ │ │ │ ├── CAPACITY_MAINTENANCE_HIST.csv.gz │ │ │ │ ├── CAPACITY_MAINTENANCE_NEW.csv.gz │ │ │ │ ├── CAP_FIRM.csv.gz │ │ │ │ ├── CAP_NEW.csv.gz │ │ │ │ ├── CAP_NEW_LO.csv.gz │ │ │ │ ├── CAP_NEW_UP.csv.gz │ │ │ │ ├── COMMODITY_BALANCE_GT.csv.gz │ │ │ │ ├── COMMODITY_BALANCE_LT.csv.gz │ │ │ │ ├── COMMODITY_USE.csv.gz │ │ │ │ ├── COMMODITY_USE_LEVEL.csv.gz │ │ │ │ ├── COST_ACCOUNTING_NODAL.csv.gz │ │ │ │ ├── COST_NODAL.csv.gz │ │ │ │ ├── COST_NODAL_NET.csv.gz │ │ │ │ ├── DYNAMIC_LAND_SCEN_CONSTRAINT_LO.csv.gz │ │ │ │ ├── DYNAMIC_LAND_SCEN_CONSTRAINT_UP.csv.gz │ │ │ │ ├── DYNAMIC_LAND_TYPE_CONSTRAINT_LO.csv.gz │ │ │ │ ├── DYNAMIC_LAND_TYPE_CONSTRAINT_UP.csv.gz │ │ │ │ ├── EMISS.csv.gz │ │ │ │ ├── EMISSION_CONSTRAINT.csv.gz │ │ │ │ ├── EMISSION_EQUIVALENCE.csv.gz │ │ │ │ ├── EXT.csv.gz │ │ │ │ ├── EXTRACTION_BOUND_UP.csv.gz │ │ │ │ ├── EXTRACTION_EQUIVALENCE.csv.gz │ │ │ │ ├── FIRM_CAPACITY_PROVISION.csv.gz │ │ │ │ ├── GDP.csv.gz │ │ │ │ ├── LAND.csv.gz │ │ │ │ ├── LAND_CONSTRAINT.csv.gz │ │ │ │ ├── MERtoPPP.csv.gz │ │ │ │ ├── MIN_UTILIZATION_CONSTRAINT.csv.gz │ │ │ │ ├── NEW_CAPACITY_BOUND_LO.csv.gz │ │ │ │ ├── NEW_CAPACITY_BOUND_UP.csv.gz │ │ │ │ ├── NEW_CAPACITY_CONSTRAINT_LO.csv.gz │ │ │ │ ├── NEW_CAPACITY_CONSTRAINT_UP.csv.gz │ │ │ │ ├── NEW_CAPACITY_SOFT_CONSTRAINT_LO.csv.gz │ │ │ │ ├── NEW_CAPACITY_SOFT_CONSTRAINT_UP.csv.gz │ │ │ │ ├── OBJ.csv.gz │ │ │ │ ├── OBJECTIVE.csv.gz │ │ │ │ ├── OPERATION_CONSTRAINT.csv.gz │ │ │ │ ├── PRICE_COMMODITY.csv.gz │ │ │ │ ├── PRICE_EMISSION.csv.gz │ │ │ │ ├── REL.csv.gz │ │ │ │ ├── RELATION_CONSTRAINT_LO.csv.gz │ │ │ │ ├── RELATION_CONSTRAINT_UP.csv.gz │ │ │ │ ├── RELATION_EQUIVALENCE.csv.gz │ │ │ │ ├── REN.csv.gz │ │ │ │ ├── RENEWABLES_CAPACITY_REQUIREMENT.csv.gz │ │ │ │ ├── RENEWABLES_EQUIVALENCE.csv.gz │ │ │ │ ├── RENEWABLES_POTENTIAL_CONSTRAINT.csv.gz │ │ │ │ ├── RESOURCE_CONSTRAINT.csv.gz │ │ │ │ ├── RESOURCE_HORIZON.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_COMMODITY_LO.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_COMMODITY_UP.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_MODE_LO.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_MODE_UP.csv.gz │ │ │ │ ├── SLACK_ACT_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_ACT_BOUND_UP.csv.gz │ │ │ │ ├── SLACK_ACT_DYNAMIC_LO.csv.gz │ │ │ │ ├── SLACK_ACT_DYNAMIC_UP.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_BOUND_UP.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_DYNAMIC_LO.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_DYNAMIC_UP.csv.gz │ │ │ │ ├── SLACK_CAP_TOTAL_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_CAP_TOTAL_BOUND_UP.csv.gz │ │ │ │ ├── SLACK_COMMODITY_EQUIVALENCE_LO.csv.gz │ │ │ │ ├── SLACK_COMMODITY_EQUIVALENCE_UP.csv.gz │ │ │ │ ├── SLACK_LAND_SCEN_LO.csv.gz │ │ │ │ ├── SLACK_LAND_SCEN_UP.csv.gz │ │ │ │ ├── SLACK_LAND_TYPE_LO.csv.gz │ │ │ │ ├── SLACK_LAND_TYPE_UP.csv.gz │ │ │ │ ├── SLACK_RELATION_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_RELATION_BOUND_UP.csv.gz │ │ │ │ ├── STOCK.csv.gz │ │ │ │ ├── STOCKS_BALANCE.csv.gz │ │ │ │ ├── STOCK_CHG.csv.gz │ │ │ │ ├── STORAGE.csv.gz │ │ │ │ ├── STORAGE_BALANCE.csv.gz │ │ │ │ ├── STORAGE_BALANCE_INIT.csv.gz │ │ │ │ ├── STORAGE_CHANGE.csv.gz │ │ │ │ ├── STORAGE_CHARGE.csv.gz │ │ │ │ ├── STORAGE_INPUT.csv.gz │ │ │ │ ├── SYSTEM_FLEXIBILITY_CONSTRAINT.csv.gz │ │ │ │ ├── SYSTEM_RELIABILITY_CONSTRAINT.csv.gz │ │ │ │ ├── TOTAL_CAPACITY_BOUND_LO.csv.gz │ │ │ │ ├── TOTAL_CAPACITY_BOUND_UP.csv.gz │ │ │ │ ├── abs_cost_activity_soft_lo.csv.gz │ │ │ │ ├── abs_cost_activity_soft_up.csv.gz │ │ │ │ ├── aeei.csv.gz │ │ │ │ ├── bound_activity_lo.csv.gz │ │ │ │ ├── bound_activity_up.csv.gz │ │ │ │ ├── bound_extraction_up.csv.gz │ │ │ │ ├── bound_new_capacity_lo.csv.gz │ │ │ │ ├── bound_new_capacity_up.csv.gz │ │ │ │ ├── bound_total_capacity_lo.csv.gz │ │ │ │ ├── bound_total_capacity_up.csv.gz │ │ │ │ ├── capacity_factor.csv.gz │ │ │ │ ├── construction_time.csv.gz │ │ │ │ ├── cost_MESSAGE.csv.gz │ │ │ │ ├── demand.csv.gz │ │ │ │ ├── demand_MESSAGE.csv.gz │ │ │ │ ├── depr.csv.gz │ │ │ │ ├── drate.csv.gz │ │ │ │ ├── duration_period.csv.gz │ │ │ │ ├── duration_time.csv.gz │ │ │ │ ├── dynamic_land_up.csv.gz │ │ │ │ ├── emission_factor.csv.gz │ │ │ │ ├── esub.csv.gz │ │ │ │ ├── fix_cost.csv.gz │ │ │ │ ├── gdp_calibrate.csv.gz │ │ │ │ ├── grow.csv.gz │ │ │ │ ├── growth_activity_lo.csv.gz │ │ │ │ ├── growth_activity_up.csv.gz │ │ │ │ ├── growth_land_scen_lo.csv.gz │ │ │ │ ├── growth_land_up.csv.gz │ │ │ │ ├── growth_new_capacity_lo.csv.gz │ │ │ │ ├── growth_new_capacity_up.csv.gz │ │ │ │ ├── historical_activity.csv.gz │ │ │ │ ├── historical_extraction.csv.gz │ │ │ │ ├── historical_gdp.csv.gz │ │ │ │ ├── historical_land.csv.gz │ │ │ │ ├── historical_new_capacity.csv.gz │ │ │ │ ├── initial_activity_lo.csv.gz │ │ │ │ ├── initial_activity_up.csv.gz │ │ │ │ ├── initial_new_capacity_lo.csv.gz │ │ │ │ ├── initial_new_capacity_up.csv.gz │ │ │ │ ├── input.csv.gz │ │ │ │ ├── interestrate.csv.gz │ │ │ │ ├── inv_cost.csv.gz │ │ │ │ ├── kgdp.csv.gz │ │ │ │ ├── kpvs.csv.gz │ │ │ │ ├── lakl.csv.gz │ │ │ │ ├── land_cost.csv.gz │ │ │ │ ├── land_emission.csv.gz │ │ │ │ ├── land_output.csv.gz │ │ │ │ ├── land_use.csv.gz │ │ │ │ ├── level_cost_activity_soft_lo.csv.gz │ │ │ │ ├── level_cost_activity_soft_up.csv.gz │ │ │ │ ├── level_cost_new_capacity_soft_up.csv.gz │ │ │ │ ├── lotol.csv.gz │ │ │ │ ├── lu132042vhm8.tmp │ │ │ │ ├── output.csv.gz │ │ │ │ ├── prfconst.csv.gz │ │ │ │ ├── price_MESSAGE.csv.gz │ │ │ │ ├── relation_activity.csv.gz │ │ │ │ ├── relation_lower.csv.gz │ │ │ │ ├── relation_new_capacity.csv.gz │ │ │ │ ├── relation_total_capacity.csv.gz │ │ │ │ ├── relation_upper.csv.gz │ │ │ │ ├── resource_cost.csv.gz │ │ │ │ ├── resource_remaining.csv.gz │ │ │ │ ├── resource_volume.csv.gz │ │ │ │ ├── sets.xlsx │ │ │ │ ├── soft_activity_lo.csv.gz │ │ │ │ ├── soft_activity_up.csv.gz │ │ │ │ ├── soft_new_capacity_up.csv.gz │ │ │ │ ├── technical_lifetime.csv.gz │ │ │ │ └── var_cost.csv.gz │ │ ├── snapshot-1 │ │ │ └── MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline │ │ │ │ ├── ACT.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_ALL_MODES_LO.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_ALL_MODES_UP.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_LO.csv.gz │ │ │ │ ├── ACTIVITY_BOUND_UP.csv.gz │ │ │ │ ├── ACTIVITY_BY_RATING.csv.gz │ │ │ │ ├── ACTIVITY_CONSTRAINT_LO.csv.gz │ │ │ │ ├── ACTIVITY_CONSTRAINT_UP.csv.gz │ │ │ │ ├── ACTIVITY_RATING_TOTAL.csv.gz │ │ │ │ ├── ACTIVITY_SOFT_CONSTRAINT_LO.csv.gz │ │ │ │ ├── ACTIVITY_SOFT_CONSTRAINT_UP.csv.gz │ │ │ │ ├── ACT_LO.csv.gz │ │ │ │ ├── ACT_RATING.csv.gz │ │ │ │ ├── ACT_UP.csv.gz │ │ │ │ ├── ADDON_ACTIVITY_LO.csv.gz │ │ │ │ ├── ADDON_ACTIVITY_UP.csv.gz │ │ │ │ ├── CAP.csv.gz │ │ │ │ ├── CAPACITY_CONSTRAINT.csv.gz │ │ │ │ ├── CAPACITY_MAINTENANCE.csv.gz │ │ │ │ ├── CAPACITY_MAINTENANCE_HIST.csv.gz │ │ │ │ ├── CAPACITY_MAINTENANCE_NEW.csv.gz │ │ │ │ ├── CAP_FIRM.csv.gz │ │ │ │ ├── CAP_NEW.csv.gz │ │ │ │ ├── CAP_NEW_LO.csv.gz │ │ │ │ ├── CAP_NEW_UP.csv.gz │ │ │ │ ├── COMMODITY_BALANCE_GT.csv.gz │ │ │ │ ├── COMMODITY_BALANCE_LT.csv.gz │ │ │ │ ├── COMMODITY_USE.csv.gz │ │ │ │ ├── COMMODITY_USE_LEVEL.csv.gz │ │ │ │ ├── COST_ACCOUNTING_NODAL.csv.gz │ │ │ │ ├── COST_NODAL.csv.gz │ │ │ │ ├── COST_NODAL_NET.csv.gz │ │ │ │ ├── DYNAMIC_LAND_SCEN_CONSTRAINT_LO.csv.gz │ │ │ │ ├── DYNAMIC_LAND_SCEN_CONSTRAINT_UP.csv.gz │ │ │ │ ├── DYNAMIC_LAND_TYPE_CONSTRAINT_LO.csv.gz │ │ │ │ ├── DYNAMIC_LAND_TYPE_CONSTRAINT_UP.csv.gz │ │ │ │ ├── EMISS.csv.gz │ │ │ │ ├── EMISSION_CONSTRAINT.csv.gz │ │ │ │ ├── EMISSION_CONSTRAINT_RESCALE.csv.gz │ │ │ │ ├── EMISSION_EQUIVALENCE.csv.gz │ │ │ │ ├── EXT.csv.gz │ │ │ │ ├── EXTRACTION_BOUND_UP.csv.gz │ │ │ │ ├── EXTRACTION_EQUIVALENCE.csv.gz │ │ │ │ ├── FIRM_CAPACITY_PROVISION.csv.gz │ │ │ │ ├── GDP.csv.gz │ │ │ │ ├── LAND.csv.gz │ │ │ │ ├── LAND_CONSTRAINT.csv.gz │ │ │ │ ├── MERtoPPP.csv.gz │ │ │ │ ├── MIN_UTILIZATION_CONSTRAINT.csv.gz │ │ │ │ ├── NEW_CAPACITY_BOUND_LO.csv.gz │ │ │ │ ├── NEW_CAPACITY_BOUND_UP.csv.gz │ │ │ │ ├── NEW_CAPACITY_CONSTRAINT_LO.csv.gz │ │ │ │ ├── NEW_CAPACITY_CONSTRAINT_UP.csv.gz │ │ │ │ ├── NEW_CAPACITY_SOFT_CONSTRAINT_LO.csv.gz │ │ │ │ ├── NEW_CAPACITY_SOFT_CONSTRAINT_UP.csv.gz │ │ │ │ ├── OBJ.csv.gz │ │ │ │ ├── OBJECTIVE.csv.gz │ │ │ │ ├── OPERATION_CONSTRAINT.csv.gz │ │ │ │ ├── PRICE_COMMODITY.csv.gz │ │ │ │ ├── PRICE_EMISSION.csv.gz │ │ │ │ ├── PRICE_EMISSION_NEW.csv.gz │ │ │ │ ├── REL.csv.gz │ │ │ │ ├── RELATION_CONSTRAINT_LO.csv.gz │ │ │ │ ├── RELATION_CONSTRAINT_UP.csv.gz │ │ │ │ ├── RELATION_EQUIVALENCE.csv.gz │ │ │ │ ├── REN.csv.gz │ │ │ │ ├── RENEWABLES_CAPACITY_REQUIREMENT.csv.gz │ │ │ │ ├── RENEWABLES_EQUIVALENCE.csv.gz │ │ │ │ ├── RENEWABLES_POTENTIAL_CONSTRAINT.csv.gz │ │ │ │ ├── RESOURCE_CONSTRAINT.csv.gz │ │ │ │ ├── RESOURCE_HORIZON.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_COMMODITY_LO.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_COMMODITY_UP.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_MODE_LO.csv.gz │ │ │ │ ├── SHARE_CONSTRAINT_MODE_UP.csv.gz │ │ │ │ ├── SLACK_ACT_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_ACT_BOUND_UP.csv.gz │ │ │ │ ├── SLACK_ACT_DYNAMIC_LO.csv.gz │ │ │ │ ├── SLACK_ACT_DYNAMIC_UP.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_BOUND_UP.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_DYNAMIC_LO.csv.gz │ │ │ │ ├── SLACK_CAP_NEW_DYNAMIC_UP.csv.gz │ │ │ │ ├── SLACK_CAP_TOTAL_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_CAP_TOTAL_BOUND_UP.csv.gz │ │ │ │ ├── SLACK_COMMODITY_EQUIVALENCE_LO.csv.gz │ │ │ │ ├── SLACK_COMMODITY_EQUIVALENCE_UP.csv.gz │ │ │ │ ├── SLACK_LAND_SCEN_LO.csv.gz │ │ │ │ ├── SLACK_LAND_SCEN_UP.csv.gz │ │ │ │ ├── SLACK_LAND_TYPE_LO.csv.gz │ │ │ │ ├── SLACK_LAND_TYPE_UP.csv.gz │ │ │ │ ├── SLACK_RELATION_BOUND_LO.csv.gz │ │ │ │ ├── SLACK_RELATION_BOUND_UP.csv.gz │ │ │ │ ├── STOCK.csv.gz │ │ │ │ ├── STOCKS_BALANCE.csv.gz │ │ │ │ ├── STOCK_CHG.csv.gz │ │ │ │ ├── STORAGE.csv.gz │ │ │ │ ├── STORAGE_BALANCE.csv.gz │ │ │ │ ├── STORAGE_BALANCE_INIT.csv.gz │ │ │ │ ├── STORAGE_CHANGE.csv.gz │ │ │ │ ├── STORAGE_CHARGE.csv.gz │ │ │ │ ├── STORAGE_INPUT.csv.gz │ │ │ │ ├── SYSTEM_FLEXIBILITY_CONSTRAINT.csv.gz │ │ │ │ ├── SYSTEM_RELIABILITY_CONSTRAINT.csv.gz │ │ │ │ ├── TOTAL_CAPACITY_BOUND_LO.csv.gz │ │ │ │ ├── TOTAL_CAPACITY_BOUND_UP.csv.gz │ │ │ │ ├── _DEMAND.csv.gz │ │ │ │ ├── abs_cost_activity_soft_lo.csv.gz │ │ │ │ ├── abs_cost_activity_soft_up.csv.gz │ │ │ │ ├── aeei.csv.gz │ │ │ │ ├── bound_activity_lo.csv.gz │ │ │ │ ├── bound_activity_up.csv.gz │ │ │ │ ├── bound_extraction_up.csv.gz │ │ │ │ ├── bound_new_capacity_lo.csv.gz │ │ │ │ ├── bound_new_capacity_up.csv.gz │ │ │ │ ├── bound_total_capacity_lo.csv.gz │ │ │ │ ├── bound_total_capacity_up.csv.gz │ │ │ │ ├── capacity_factor.csv.gz │ │ │ │ ├── construction_time.csv.gz │ │ │ │ ├── cost_MESSAGE.csv.gz │ │ │ │ ├── demand_MESSAGE.csv.gz │ │ │ │ ├── depr.csv.gz │ │ │ │ ├── drate.csv.gz │ │ │ │ ├── duration_period.csv.gz │ │ │ │ ├── duration_time.csv.gz │ │ │ │ ├── dynamic_land_up.csv.gz │ │ │ │ ├── emission_factor.csv.gz │ │ │ │ ├── esub.csv.gz │ │ │ │ ├── fix_cost.csv.gz │ │ │ │ ├── gdp_calibrate.csv.gz │ │ │ │ ├── grow.csv.gz │ │ │ │ ├── growth_activity_lo.csv.gz │ │ │ │ ├── growth_activity_up.csv.gz │ │ │ │ ├── growth_land_scen_lo.csv.gz │ │ │ │ ├── growth_land_up.csv.gz │ │ │ │ ├── growth_new_capacity_lo.csv.gz │ │ │ │ ├── growth_new_capacity_up.csv.gz │ │ │ │ ├── historical_activity.csv.gz │ │ │ │ ├── historical_extraction.csv.gz │ │ │ │ ├── historical_gdp.csv.gz │ │ │ │ ├── historical_land.csv.gz │ │ │ │ ├── historical_new_capacity.csv.gz │ │ │ │ ├── initial_activity_lo.csv.gz │ │ │ │ ├── initial_activity_up.csv.gz │ │ │ │ ├── initial_new_capacity_lo.csv.gz │ │ │ │ ├── initial_new_capacity_up.csv.gz │ │ │ │ ├── input.csv.gz │ │ │ │ ├── interestrate.csv.gz │ │ │ │ ├── inv_cost.csv.gz │ │ │ │ ├── kgdp.csv.gz │ │ │ │ ├── kpvs.csv.gz │ │ │ │ ├── lakl.csv.gz │ │ │ │ ├── land_cost.csv.gz │ │ │ │ ├── land_emission.csv.gz │ │ │ │ ├── land_output.csv.gz │ │ │ │ ├── land_use.csv.gz │ │ │ │ ├── level_cost_activity_soft_lo.csv.gz │ │ │ │ ├── level_cost_activity_soft_up.csv.gz │ │ │ │ ├── level_cost_new_capacity_soft_up.csv.gz │ │ │ │ ├── lotol.csv.gz │ │ │ │ ├── output.csv.gz │ │ │ │ ├── prfconst.csv.gz │ │ │ │ ├── price_MESSAGE.csv.gz │ │ │ │ ├── relation_activity.csv.gz │ │ │ │ ├── relation_lower.csv.gz │ │ │ │ ├── relation_new_capacity.csv.gz │ │ │ │ ├── relation_total_capacity.csv.gz │ │ │ │ ├── relation_upper.csv.gz │ │ │ │ ├── resource_cost.csv.gz │ │ │ │ ├── resource_remaining.csv.gz │ │ │ │ ├── resource_volume.csv.gz │ │ │ │ ├── sets.xlsx │ │ │ │ ├── soft_activity_lo.csv.gz │ │ │ │ ├── soft_activity_up.csv.gz │ │ │ │ ├── soft_new_capacity_up.csv.gz │ │ │ │ ├── technical_lifetime.csv.gz │ │ │ │ └── var_cost.csv.gz │ │ ├── ssp │ │ │ ├── SSP-Review-Phase-1.csv.gz │ │ │ └── SspDb_country_data_2013-06-12.csv.zip │ │ └── transport │ │ │ ├── GFEI_FE_by_Powertrain_2017.csv │ │ │ └── MESSAGEix-Transport R12 YB 41eee_baseline.xlsx │ ├── transport │ │ ├── CHN_IND_population.csv │ │ ├── CHN_activity-freight.csv │ │ ├── CHN_activity-passenger.csv │ │ ├── CHN_stock-civil.csv │ │ ├── CHN_stock-private.csv │ │ ├── GFEI_FE_by_Powertrain_2017.csv │ │ ├── R11 │ │ │ ├── config.yaml │ │ │ ├── disutility.csv │ │ │ ├── emi │ │ │ │ ├── 1-emission_factor.csv │ │ │ │ ├── 1-relation_activity.csv │ │ │ │ ├── 2-emission_factor.csv │ │ │ │ ├── 2-relation_activity.csv │ │ │ │ └── 3-relation_activity.csv │ │ │ ├── freight-activity.csv │ │ │ ├── freight-mode-share-ref.csv │ │ │ ├── ldv-activity.csv │ │ │ ├── ldv-class.csv │ │ │ ├── ldv-fix_cost.csv │ │ │ ├── ldv-fuel-economy.csv │ │ │ ├── ldv-inv_cost.csv │ │ │ ├── load-factor-ldv.csv │ │ │ ├── mer-to-ppp.csv │ │ │ ├── mode-share │ │ │ │ ├── A---.csv │ │ │ │ ├── debug.csv │ │ │ │ └── default.csv │ │ │ ├── pdt-cap-ref.csv │ │ │ └── population-suburb-share.csv │ │ ├── R12 │ │ │ ├── act-non_ldv.csv │ │ │ ├── config.yaml │ │ │ ├── disutility.csv │ │ │ ├── elasticity-f.csv │ │ │ ├── elasticity-p.csv │ │ │ ├── energy-other with pipeline.csv │ │ │ ├── energy-other.csv │ │ │ ├── freight-activity.csv │ │ │ ├── freight-mode-share-ref.csv │ │ │ ├── ldv-activity.csv │ │ │ ├── ldv-age.csv │ │ │ ├── ldv-class.csv │ │ │ ├── ldv-input-adj.csv │ │ │ ├── ldv-input-ref.csv │ │ │ ├── ldv-inv_cost.csv │ │ │ ├── ldv-new-capacity.csv │ │ │ ├── ldv-t-share.csv │ │ │ ├── lifetime-ldv.csv │ │ │ ├── load-factor-ldv.csv │ │ │ ├── mer-to-ppp.csv │ │ │ ├── mode-share │ │ │ │ ├── A---.csv │ │ │ │ ├── debug.csv │ │ │ │ └── default.csv │ │ │ ├── pdt-cap-ref.csv │ │ │ ├── pdt-cap.csv │ │ │ ├── population-suburb-share.csv │ │ │ └── speed.csv │ │ ├── R14 │ │ │ ├── config.yaml │ │ │ ├── disutility.csv │ │ │ ├── freight-activity.csv │ │ │ ├── freight-mode-share-ref.csv │ │ │ ├── ldv-activity.csv │ │ │ ├── load-factor-ldv.csv │ │ │ └── pdt-cap-ref.csv │ │ ├── act-non_ldv.csv │ │ ├── constraint-dynamic.csv │ │ ├── demand-scale.csv │ │ ├── elasticity-f.csv │ │ ├── elasticity-p.csv │ │ ├── emi-intensity.csv │ │ ├── fuel-emi-intensity.csv │ │ ├── iea-2017-t4-1.csv │ │ ├── iea-2017-t4-2.csv │ │ ├── iea-2017-t4-3.csv │ │ ├── ikarus │ │ │ ├── availability.csv │ │ │ ├── fix_cost.csv │ │ │ ├── input.csv │ │ │ ├── inv_cost.csv │ │ │ ├── technical_lifetime.csv │ │ │ └── var_cost.csv │ │ ├── input-base.csv │ │ ├── input-share.csv │ │ ├── ldv-age.csv │ │ ├── ldv-input-adj.csv │ │ ├── ldv-t-share.csv │ │ ├── lifetime-ldv.csv │ │ ├── load-factor-nonldv.csv │ │ ├── ma3t │ │ │ ├── attitude.csv │ │ │ ├── driver.csv │ │ │ └── population.csv │ │ ├── migrate │ │ │ ├── report.yaml │ │ │ └── set.yaml │ │ ├── mode-share │ │ │ ├── debug.csv │ │ │ └── default.csv │ │ ├── set.yaml │ │ ├── speed.csv │ │ └── technology.yaml │ ├── ue-shares │ │ ├── trp_gas0.05.xlsx │ │ └── trp_gas0.05_elec0.9.xlsx │ ├── unit.yaml │ ├── unit │ │ ├── snapshot-0.yaml │ │ └── snapshot-1.yaml │ ├── water │ │ ├── .gitattributes │ │ ├── availability │ │ │ ├── e-flow_2p6_R11.csv │ │ │ ├── e-flow_2p6_R12.csv │ │ │ ├── e-flow_2p6_ZMB.csv │ │ │ ├── e-flow_5y_m_2p6_ZMB.csv │ │ │ ├── e-flow_5y_m_7p0_R12.csv │ │ │ ├── e-flow_5y_m_7p0_ZMB.csv │ │ │ ├── e-flow_5y_m_no_climate_R12.csv │ │ │ ├── e-flow_5y_m_no_climate_ZMB.csv │ │ │ ├── e-flow_6p0_R11.csv │ │ │ ├── e-flow_7p0_R11.csv │ │ │ ├── e-flow_7p0_R12.csv │ │ │ ├── e-flow_7p0_ZMB.csv │ │ │ ├── e-flow_no_climate_R11.csv │ │ │ ├── e-flow_no_climate_R12.csv │ │ │ ├── e-flow_no_climate_ZMB.csv │ │ │ ├── gw_energy_intensity_depth_R11.csv │ │ │ ├── gw_energy_intensity_depth_R12.csv │ │ │ ├── gw_energy_intensity_depth_ZMB.csv │ │ │ ├── historical_new_cap_gw_sw_km3_year_R11.csv │ │ │ ├── historical_new_cap_gw_sw_km3_year_R12.csv │ │ │ ├── historical_new_cap_gw_sw_km3_year_ZMB.csv │ │ │ ├── qr_5y_2p6_high_R11.csv │ │ │ ├── qr_5y_2p6_high_R12.csv │ │ │ ├── qr_5y_2p6_high_ZMB.csv │ │ │ ├── qr_5y_2p6_low_R11.csv │ │ │ ├── qr_5y_2p6_low_R12.csv │ │ │ ├── qr_5y_2p6_low_ZMB.csv │ │ │ ├── qr_5y_2p6_med_R11.csv │ │ │ ├── qr_5y_2p6_med_R12.csv │ │ │ ├── qr_5y_2p6_med_ZMB.csv │ │ │ ├── qr_5y_6p0_high_R11.csv │ │ │ ├── qr_5y_6p0_low_R11.csv │ │ │ ├── qr_5y_6p0_med_R11.csv │ │ │ ├── qr_5y_7p0_high_R11.csv │ │ │ ├── qr_5y_7p0_high_R12.csv │ │ │ ├── qr_5y_7p0_high_ZMB.csv │ │ │ ├── qr_5y_7p0_low_R11.csv │ │ │ ├── qr_5y_7p0_low_R12.csv │ │ │ ├── qr_5y_7p0_low_ZMB.csv │ │ │ ├── qr_5y_7p0_med_R11.csv │ │ │ ├── qr_5y_7p0_med_R12.csv │ │ │ ├── qr_5y_7p0_med_ZMB.csv │ │ │ ├── qr_5y_m_2p6_low_R12.csv │ │ │ ├── qr_5y_m_2p6_low_ZMB.csv │ │ │ ├── qr_5y_m_7p0_low_R12.csv │ │ │ ├── qr_5y_m_7p0_low_ZMB.csv │ │ │ ├── qr_5y_m_no_climate_low_R12.csv │ │ │ ├── qr_5y_m_no_climate_low_ZMB.csv │ │ │ ├── qr_5y_no_climate_high_R11.csv │ │ │ ├── qr_5y_no_climate_high_R12.csv │ │ │ ├── qr_5y_no_climate_high_ZMB.csv │ │ │ ├── qr_5y_no_climate_low_R11.csv │ │ │ ├── qr_5y_no_climate_low_R12.csv │ │ │ ├── qr_5y_no_climate_low_ZMB.csv │ │ │ ├── qr_5y_no_climate_med_R11.csv │ │ │ ├── qr_5y_no_climate_med_R12.csv │ │ │ ├── qr_5y_no_climate_med_ZMB.csv │ │ │ ├── qtot_5y_2p6_high_R11.csv │ │ │ ├── qtot_5y_2p6_high_R12.csv │ │ │ ├── qtot_5y_2p6_high_ZMB.csv │ │ │ ├── qtot_5y_2p6_low_R11.csv │ │ │ ├── qtot_5y_2p6_low_R12.csv │ │ │ ├── qtot_5y_2p6_low_ZMB.csv │ │ │ ├── qtot_5y_2p6_med_R11.csv │ │ │ ├── qtot_5y_2p6_med_R12.csv │ │ │ ├── qtot_5y_2p6_med_ZMB.csv │ │ │ ├── qtot_5y_6p0_high_R11.csv │ │ │ ├── qtot_5y_6p0_low_R11.csv │ │ │ ├── qtot_5y_6p0_med_R11.csv │ │ │ ├── qtot_5y_7p0_high_R11.csv │ │ │ ├── qtot_5y_7p0_high_R12.csv │ │ │ ├── qtot_5y_7p0_high_ZMB.csv │ │ │ ├── qtot_5y_7p0_low_R11.csv │ │ │ ├── qtot_5y_7p0_low_R12.csv │ │ │ ├── qtot_5y_7p0_low_ZMB.csv │ │ │ ├── qtot_5y_7p0_med_R11.csv │ │ │ ├── qtot_5y_7p0_med_R12.csv │ │ │ ├── qtot_5y_7p0_med_ZMB.csv │ │ │ ├── qtot_5y_m_2p6_low_R12.csv │ │ │ ├── qtot_5y_m_2p6_low_ZMB.csv │ │ │ ├── qtot_5y_m_7p0_low_R12.csv │ │ │ ├── qtot_5y_m_7p0_low_ZMB.csv │ │ │ ├── qtot_5y_m_no_climate_low_R12.csv │ │ │ ├── qtot_5y_m_no_climate_low_ZMB.csv │ │ │ ├── qtot_5y_no_climate_high_R11.csv │ │ │ ├── qtot_5y_no_climate_high_R12.csv │ │ │ ├── qtot_5y_no_climate_high_ZMB.csv │ │ │ ├── qtot_5y_no_climate_low_R11.csv │ │ │ ├── qtot_5y_no_climate_low_R12.csv │ │ │ ├── qtot_5y_no_climate_low_ZMB.csv │ │ │ ├── qtot_5y_no_climate_med_R11.csv │ │ │ ├── qtot_5y_no_climate_med_R12.csv │ │ │ └── qtot_5y_no_climate_med_ZMB.csv │ │ ├── config.yaml │ │ ├── delineation │ │ │ ├── basins_by_region_simpl_R11.csv │ │ │ ├── basins_by_region_simpl_R12.csv │ │ │ ├── basins_by_region_simpl_ZMB.csv │ │ │ ├── basins_country_R11.csv │ │ │ └── basins_country_ZMB.csv │ │ ├── demands │ │ │ ├── .gitattributes │ │ │ ├── country_region_map_key.csv │ │ │ └── harmonized │ │ │ │ ├── R11 │ │ │ │ ├── all_rates_SSP2.csv │ │ │ │ ├── ssp2_regional_manufacturing_return_baseline.csv │ │ │ │ ├── ssp2_regional_manufacturing_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_return_baseline.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return2_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return_baseline.csv │ │ │ │ ├── ssp2_regional_urban_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal2_baseline.csv │ │ │ │ └── ssp2_regional_urban_withdrawal_baseline.csv │ │ │ │ ├── R12 │ │ │ │ ├── ssp2_regional_manufacturing_return_baseline.csv │ │ │ │ ├── ssp2_regional_manufacturing_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_return_baseline.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return2_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return_baseline.csv │ │ │ │ ├── ssp2_regional_urban_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal2_baseline.csv │ │ │ │ └── ssp2_regional_urban_withdrawal_baseline.csv │ │ │ │ ├── Thumbs.db │ │ │ │ ├── ZMB │ │ │ │ ├── all_rates_SSP2.csv │ │ │ │ ├── ssp2_m_water_demands.csv │ │ │ │ ├── ssp2_regional_manufacturing_return_baseline.csv │ │ │ │ ├── ssp2_regional_manufacturing_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_ambitious.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_improved.csv │ │ │ │ ├── ssp2_regional_rural_return_baseline.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_ambitious.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_improved.csv │ │ │ │ ├── ssp2_regional_rural_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_ambitious.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_improved.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_ambitious.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_improved.csv │ │ │ │ ├── ssp2_regional_urban_return2_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return_baseline.csv │ │ │ │ ├── ssp2_regional_urban_treatment_rate_ambitious.csv │ │ │ │ ├── ssp2_regional_urban_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_treatment_rate_improved.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal2_baseline.csv │ │ │ │ └── ssp2_regional_urban_withdrawal_baseline.csv │ │ │ │ └── old_R11 │ │ │ │ ├── ssp2_regional_irrigation_withdrawal_base.csv │ │ │ │ ├── ssp2_regional_manufacturing_return_base.csv │ │ │ │ ├── ssp2_regional_manufacturing_return_baseline.csv │ │ │ │ ├── ssp2_regional_manufacturing_return_sdg6.csv │ │ │ │ ├── ssp2_regional_manufacturing_withdrawal_base.csv │ │ │ │ ├── ssp2_regional_manufacturing_withdrawal_baseline.csv │ │ │ │ ├── ssp2_regional_manufacturing_withdrawal_sdg6.csv │ │ │ │ ├── ssp2_regional_pop_scarcity_baseline.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_connection_rate_sdg6.csv │ │ │ │ ├── ssp2_regional_rural_return_base.csv │ │ │ │ ├── ssp2_regional_rural_return_baseline.csv │ │ │ │ ├── ssp2_regional_rural_return_sdg6.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_rural_treatment_rate_sdg6.csv │ │ │ │ ├── ssp2_regional_rural_withdrawal_base.csv │ │ │ │ ├── ssp2_regional_rural_withdrawal_baseline_old.csv │ │ │ │ ├── ssp2_regional_rural_withdrawal_sdg6.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_connection_rate_sdg6.csv │ │ │ │ ├── ssp2_regional_urban_desalination_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_recycling_rate_sdg6.csv │ │ │ │ ├── ssp2_regional_urban_return2_base.csv │ │ │ │ ├── ssp2_regional_urban_return2_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return2_sdg6.csv │ │ │ │ ├── ssp2_regional_urban_return_base.csv │ │ │ │ ├── ssp2_regional_urban_return_baseline.csv │ │ │ │ ├── ssp2_regional_urban_return_sdg6.csv │ │ │ │ ├── ssp2_regional_urban_treatment_rate_baseline.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal2_base.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal2_baseline.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal2_sdg6.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal_base.csv │ │ │ │ ├── ssp2_regional_urban_withdrawal_baseline.csv │ │ │ │ └── ssp2_regional_urban_withdrawal_sdg6.csv │ │ ├── infrastructure │ │ │ ├── desalination.xlsx │ │ │ ├── extraction_techs.xlsx │ │ │ ├── historical_capacity_desalination_km3_year_R11.csv │ │ │ ├── historical_capacity_desalination_km3_year_R12.csv │ │ │ ├── historical_capacity_desalination_km3_year_ZMB.csv │ │ │ ├── projected_desalination_potential_km3_year_R11.csv │ │ │ ├── projected_desalination_potential_km3_year_R12.csv │ │ │ ├── projected_desalination_potential_km3_year_ZMB.csv │ │ │ └── water_distribution.xlsx │ │ ├── ppl_cooling_tech │ │ │ ├── cooltech_cost_and_shares_country.csv │ │ │ ├── cooltech_cost_and_shares_ssp_msg.csv │ │ │ ├── cooltech_cost_and_shares_ssp_msg_R11.csv │ │ │ ├── cooltech_cost_and_shares_ssp_msg_R12.csv │ │ │ ├── enhanced_fsu_cool_techs_share.csv │ │ │ ├── power_plant_cooling_impact_MESSAGE.xlsx │ │ │ ├── tech_names_ssp_msg.csv │ │ │ └── tech_water_performance_ssp_msg.csv │ │ ├── set.yaml │ │ ├── ssp.yaml │ │ ├── technology.yaml │ │ └── water.tar.xz │ └── year │ │ ├── A.yaml │ │ └── B.yaml ├── model │ ├── __init__.py │ ├── bare.py │ ├── build.py │ ├── buildings │ │ ├── __init__.py │ │ ├── build.py │ │ ├── cli.py │ │ ├── rc_afofi.py │ │ ├── report.py │ │ └── sturm.py │ ├── cli.py │ ├── config.py │ ├── data.py │ ├── disutility.py │ ├── emissions.py │ ├── macro.py │ ├── material │ │ ├── __init__.py │ │ ├── build.py │ │ ├── cli.py │ │ ├── data_aluminum.py │ │ ├── data_ammonia_new.py │ │ ├── data_cement.py │ │ ├── data_generic.py │ │ ├── data_methanol.py │ │ ├── data_petro.py │ │ ├── data_power_sector.py │ │ ├── data_steel.py │ │ ├── data_util.py │ │ ├── material_demand │ │ │ └── material_demand_calc.py │ │ ├── report │ │ │ ├── Historical Power Sector Stock Reporting-.ipynb │ │ │ └── reporting.py │ │ └── util.py │ ├── snapshot.py │ ├── structure.py │ ├── transport │ │ ├── CHN_IND.py │ │ ├── __init__.py │ │ ├── base.py │ │ ├── build.py │ │ ├── callback.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── constraint.py │ │ ├── data.py │ │ ├── demand.py │ │ ├── disutility.py │ │ ├── emission.py │ │ ├── factor.py │ │ ├── freight.py │ │ ├── groups.py │ │ ├── ikarus.py │ │ ├── key.py │ │ ├── ldv.py │ │ ├── migrate.py │ │ ├── operator.py │ │ ├── other.py │ │ ├── passenger.py │ │ ├── plot.py │ │ ├── report.py │ │ ├── roadmap.py │ │ ├── structure.py │ │ ├── testing.py │ │ ├── ustimes_ma3t.py │ │ ├── util.py │ │ └── workflow.py │ ├── water │ │ ├── __init__.py │ │ ├── build.py │ │ ├── cli.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── demands.py │ │ │ ├── infrastructure.py │ │ │ ├── irrigation.py │ │ │ ├── pre_processing │ │ │ │ ├── calculate_ppl_cooling_technology_shares.R │ │ │ │ ├── desalination.R │ │ │ │ ├── generate_water_constraints.R │ │ │ │ ├── generate_water_constraints_monthly.R │ │ │ │ ├── groundwater_harmonize.R │ │ │ │ ├── hydro_agg_basin.py │ │ │ │ ├── hydro_agg_raster.py │ │ │ │ └── hydro_agg_spatial.R │ │ │ ├── water_for_ppl.py │ │ │ └── water_supply.py │ │ ├── report.py │ │ └── utils.py │ └── workflow.py ├── project │ ├── __init__.py │ ├── advance │ │ ├── __init__.py │ │ └── data.py │ ├── circeular │ │ ├── __init__.py │ │ └── cli.py │ ├── edits │ │ ├── __init__.py │ │ └── cli.py │ ├── engage │ │ ├── __init__.py │ │ └── workflow.py │ ├── gea │ │ ├── __init__.py │ │ └── data.py │ ├── navigate │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── report.py │ │ ├── workflow.py │ │ └── wp2 │ │ │ ├── __init__.py │ │ │ └── util.py │ ├── shape │ │ ├── __init__.py │ │ └── data.py │ ├── ssp │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── data.py │ │ ├── script │ │ │ ├── __init__.py │ │ │ ├── scenarios │ │ │ │ ├── low.py │ │ │ │ └── very_low.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── functions.py │ │ │ │ └── shares.py │ │ ├── structure.py │ │ └── transport.py │ └── transport_futures.py ├── py.typed ├── report │ ├── __init__.py │ ├── cli.py │ ├── compat.py │ ├── computations.py │ ├── config.py │ ├── key.py │ ├── legacy │ │ ├── ENGAGE_SSP2_v417_tables.py │ │ ├── __init__.py │ │ ├── default_tables.py │ │ ├── iamc_report_hackathon.py │ │ ├── iamc_tree.py │ │ ├── postprocess.py │ │ └── pp_utils.py │ ├── operator.py │ ├── plot.py │ ├── sim.py │ └── util.py ├── testing │ ├── __init__.py │ ├── check.py │ └── cli.py ├── tests │ ├── __init__.py │ ├── model │ │ ├── __init__.py │ │ ├── material │ │ │ ├── __init__.py │ │ │ ├── test_build.py │ │ │ ├── test_data_aluminum.py │ │ │ └── test_data_util.py │ │ ├── test_bare.py │ │ ├── test_build.py │ │ ├── test_buildings.py │ │ ├── test_cli.py │ │ ├── test_config.py │ │ ├── test_disutility.py │ │ ├── test_emissions.py │ │ ├── test_macro.py │ │ ├── test_snapshot.py │ │ ├── test_structure.py │ │ ├── transport │ │ │ ├── __init__.py │ │ │ ├── test_base.py │ │ │ ├── test_build.py │ │ │ ├── test_callback.py │ │ │ ├── test_config.py │ │ │ ├── test_data.py │ │ │ ├── test_demand.py │ │ │ ├── test_emission.py │ │ │ ├── test_factor.py │ │ │ ├── test_ikarus.py │ │ │ ├── test_ldv.py │ │ │ ├── test_migrate.py │ │ │ ├── test_operator.py │ │ │ ├── test_report.py │ │ │ ├── test_ustimes_ma3t.py │ │ │ ├── test_util.py │ │ │ └── test_workflow.py │ │ └── water │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── test_demands.py │ │ │ ├── test_infrastructure.py │ │ │ ├── test_irrigation.py │ │ │ ├── test_water_data.py │ │ │ ├── test_water_for_ppl.py │ │ │ └── test_water_supply.py │ │ │ ├── test_build.py │ │ │ ├── test_report.py │ │ │ └── test_utils.py │ ├── project │ │ ├── __init__.py │ │ ├── circeular │ │ │ └── __init__.py │ │ ├── navigate │ │ │ ├── __init__.py │ │ │ └── test_wp2_util.py │ │ ├── ssp │ │ │ ├── __init__.py │ │ │ └── test_transport.py │ │ ├── test_advance.py │ │ ├── test_edits.py │ │ ├── test_gea.py │ │ ├── test_navigate.py │ │ ├── test_shape.py │ │ └── test_ssp.py │ ├── report │ │ ├── __init__.py │ │ ├── test_compat.py │ │ ├── test_config.py │ │ ├── test_legacy.py │ │ └── test_operator.py │ ├── test_cli.py │ ├── test_import.py │ ├── test_report.py │ ├── test_testing.py │ ├── test_tools.py │ ├── test_util.py │ ├── test_workflow.py │ ├── tools │ │ ├── __init__.py │ │ ├── costs │ │ │ ├── __init__.py │ │ │ ├── test_decay.py │ │ │ ├── test_gdp.py │ │ │ ├── test_projections.py │ │ │ └── test_regional_differentiation.py │ │ ├── iea │ │ │ ├── __init__.py │ │ │ ├── test_eei.py │ │ │ └── test_web.py │ │ ├── test_advance.py │ │ ├── test_exo_data.py │ │ ├── test_gfei.py │ │ ├── test_iamc.py │ │ └── test_wb.py │ └── util │ │ ├── __init__.py │ │ ├── test_cache.py │ │ ├── test_click.py │ │ ├── test_common.py │ │ ├── test_config.py │ │ ├── test_context.py │ │ ├── test_importlib.py │ │ ├── test_logging.py │ │ ├── test_node.py │ │ ├── test_scenarioinfo.py │ │ ├── test_sdmx.py │ │ └── test_slurm.py ├── tools │ ├── __init__.py │ ├── add_AFOLU_CO2_accounting.py │ ├── add_CO2_emission_constraint.py │ ├── add_FFI_CO2_accounting.py │ ├── add_alternative_TCE_accounting.py │ ├── add_budget.py │ ├── add_emission_trajectory.py │ ├── add_tax_emission.py │ ├── advance.py │ ├── costs │ │ ├── __init__.py │ │ ├── config.py │ │ ├── decay.py │ │ ├── demo.py │ │ ├── gdp.py │ │ ├── projections.py │ │ └── regional_differentiation.py │ ├── exo_data.py │ ├── gfei.py │ ├── iamc.py │ ├── iea │ │ ├── __init__.py │ │ ├── eei.py │ │ └── web.py │ ├── messagev.py │ ├── remove_emission_bounds.py │ ├── update_h2_blending.py │ └── wb.py ├── types.py ├── util │ ├── __init__.py │ ├── _convert_units.py │ ├── _dataclasses.py │ ├── _logging.py │ ├── cache.py │ ├── click.py │ ├── common.py │ ├── compat │ │ ├── __init__.py │ │ └── message_data │ │ │ ├── __init__.py │ │ │ ├── calibrate_UE_gr_to_demand.py │ │ │ ├── calibrate_UE_share_constraints.py │ │ │ ├── calibrate_vre.py │ │ │ ├── change_technology_lifetime.py │ │ │ ├── check_scenario_fix_and_inv_cost.py │ │ │ ├── get_historical_years.py │ │ │ ├── get_nodes.py │ │ │ ├── get_optimization_years.py │ │ │ ├── manual_updates_ENGAGE_SSP2_v417_to_v418.py │ │ │ ├── update_fix_and_inv_cost.py │ │ │ ├── update_h2_blending.py │ │ │ └── utilities.py │ ├── config.py │ ├── context.py │ ├── genno.py │ ├── graphviz.py │ ├── importlib.py │ ├── ixmp.py │ ├── migrate.py │ ├── node.py │ ├── pooch.py │ ├── pycountry.py │ ├── scenarioinfo.py │ ├── sdmx.py │ └── slurm.py └── workflow.py └── pyproject.toml /.gitattributes: -------------------------------------------------------------------------------- 1 | # Reduce the number of merge conflicts 2 | doc/whatsnew.rst merge=union 3 | # Git LFS 4 | *.gz filter=lfs diff=lfs merge=lfs -text 5 | *.xlsx filter=lfs diff=lfs merge=lfs -text 6 | *.xz filter=lfs diff=lfs merge=lfs -text 7 | *.zip filter=lfs diff=lfs merge=lfs -text 8 | -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | layout: "diff, files" 3 | behavior: once 4 | 5 | coverage: 6 | precision: 1 7 | status: 8 | project: 9 | default: 10 | if_ci_failed: success 11 | # Currently, CI runs on PR branches do not include tests of (a) snapshot 12 | # handling or (b) legacy reporting; these are only run on schedule 13 | # triggers. This resuls in an apparent coverage drop of about 90 lines 14 | # in 7157, or 1.258 percent. Allow this. 15 | threshold: 1.3% 16 | patch: 17 | default: 18 | if_ci_failed: success 19 | -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- 1 | name: Build package / publish 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | tags: [ "v*" ] 7 | release: 8 | types: [ published ] 9 | # Check that package can be built even on PRs 10 | pull_request: 11 | branches: [ main ] 12 | 13 | jobs: 14 | publish: 15 | uses: iiasa/actions/.github/workflows/publish.yaml@main 16 | with: 17 | lfs: true 18 | secrets: 19 | PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} 20 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/pre-commit/mirrors-mypy 3 | rev: v1.14.1 4 | hooks: 5 | - id: mypy 6 | pass_filenames: false 7 | additional_dependencies: 8 | - "ixmp @ git+https://github.com/iiasa/ixmp.git@main" 9 | - "message-ix @ git+https://github.com/iiasa/message_ix.git@main" 10 | - plotnine 11 | - pytest 12 | - sdmx1 13 | - types-PyYAML 14 | - types-tqdm 15 | - repo: https://github.com/astral-sh/ruff-pre-commit 16 | rev: v0.9.1 17 | hooks: 18 | - id: ruff 19 | - id: ruff-format 20 | args: [ --check ] 21 | -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | # Modules containing fixtures to use in testing 2 | pytest_plugins = [ 3 | "genno.testing", 4 | "ixmp.testing", 5 | "message_ix_models.testing", 6 | ] 7 | -------------------------------------------------------------------------------- /doc/_static/Availability_BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/Availability_BE.png -------------------------------------------------------------------------------- /doc/_static/BiomassSupply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/BiomassSupply.png -------------------------------------------------------------------------------- /doc/_static/CS-PDFs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/CS-PDFs.png -------------------------------------------------------------------------------- /doc/_static/GEA_technology_cost_ranges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GEA_technology_cost_ranges.png -------------------------------------------------------------------------------- /doc/_static/GLOBIOM_chart_hires.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GLOBIOM_chart_hires.jpg -------------------------------------------------------------------------------- /doc/_static/GLOBIOM_forage_availability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GLOBIOM_forage_availability.png -------------------------------------------------------------------------------- /doc/_static/GLOBIOM_forage_livestock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GLOBIOM_forage_livestock.png -------------------------------------------------------------------------------- /doc/_static/GLOBIOM_land_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GLOBIOM_land_cover.png -------------------------------------------------------------------------------- /doc/_static/GLOBIOM_land_use_product_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GLOBIOM_land_use_product_structure.png -------------------------------------------------------------------------------- /doc/_static/GlobalResourceSupplyCurves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/GlobalResourceSupplyCurves.png -------------------------------------------------------------------------------- /doc/_static/LanduseEmissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/LanduseEmissions.png -------------------------------------------------------------------------------- /doc/_static/MESSAGE-Access_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/MESSAGE-Access_groups.png -------------------------------------------------------------------------------- /doc/_static/MESSAGE_regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/MESSAGE_regions.png -------------------------------------------------------------------------------- /doc/_static/RES_fuel_blending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/RES_fuel_blending.png -------------------------------------------------------------------------------- /doc/_static/RES_po_turbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/RES_po_turbine.png -------------------------------------------------------------------------------- /doc/_static/S1ThermoCosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/S1ThermoCosts.png -------------------------------------------------------------------------------- /doc/_static/S2NonThermoCosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/S2NonThermoCosts.png -------------------------------------------------------------------------------- /doc/_static/S3OtherCosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/S3OtherCosts.png -------------------------------------------------------------------------------- /doc/_static/Shares_HFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/Shares_HFC.png -------------------------------------------------------------------------------- /doc/_static/Sources_HFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/Sources_HFC.png -------------------------------------------------------------------------------- /doc/_static/combined-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/combined-logo-white.png -------------------------------------------------------------------------------- /doc/_static/cooling_implement1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/cooling_implement1.png -------------------------------------------------------------------------------- /doc/_static/cooling_implement2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/cooling_implement2.png -------------------------------------------------------------------------------- /doc/_static/costind-nonthermo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/costind-nonthermo.png -------------------------------------------------------------------------------- /doc/_static/costind-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/costind-other.png -------------------------------------------------------------------------------- /doc/_static/costind-thermo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/costind-thermo.png -------------------------------------------------------------------------------- /doc/_static/diffusion_constraint_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/diffusion_constraint_example.png -------------------------------------------------------------------------------- /doc/_static/electricity_generation_fossil_nuclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/electricity_generation_fossil_nuclear.png -------------------------------------------------------------------------------- /doc/_static/electricity_generation_renewable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/electricity_generation_renewable.png -------------------------------------------------------------------------------- /doc/_static/emulator_CD_Links_SSP2_v2_Global_Cprice_Temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_CD_Links_SSP2_v2_Global_Cprice_Temp.png -------------------------------------------------------------------------------- /doc/_static/emulator_CD_Links_SSP2_v2_Global_LanduseSurface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_CD_Links_SSP2_v2_Global_LanduseSurface.png -------------------------------------------------------------------------------- /doc/_static/emulator_CD_Links_SSP2_v2_Global_LanduseSurface_incl_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_CD_Links_SSP2_v2_Global_LanduseSurface_incl_results.png -------------------------------------------------------------------------------- /doc/_static/emulator_ENGAGE_SSP2_v4.1.2_sens_Global_validation_cprice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_ENGAGE_SSP2_v4.1.2_sens_Global_validation_cprice.png -------------------------------------------------------------------------------- /doc/_static/emulator_RES.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_RES.PNG -------------------------------------------------------------------------------- /doc/_static/emulator_SSP1_Feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_SSP1_Feedback.png -------------------------------------------------------------------------------- /doc/_static/emulator_Scenario_Matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/emulator_Scenario_Matrix.png -------------------------------------------------------------------------------- /doc/_static/global_HFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/global_HFC.png -------------------------------------------------------------------------------- /doc/_static/global_resources_3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/global_resources_3.1.png -------------------------------------------------------------------------------- /doc/_static/iam_framework-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/iam_framework-1.png -------------------------------------------------------------------------------- /doc/_static/iiasaiam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/iiasaiam.png -------------------------------------------------------------------------------- /doc/_static/industry_end-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/industry_end-use.png -------------------------------------------------------------------------------- /doc/_static/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/logo-white.png -------------------------------------------------------------------------------- /doc/_static/logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/logo_blue.png -------------------------------------------------------------------------------- /doc/_static/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/logo_white.png -------------------------------------------------------------------------------- /doc/_static/map_3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/map_3.3.png -------------------------------------------------------------------------------- /doc/_static/nuclear_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/nuclear_resources.png -------------------------------------------------------------------------------- /doc/_static/png_source_files/Land-use_emulator_RES.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/png_source_files/Land-use_emulator_RES.pptx -------------------------------------------------------------------------------- /doc/_static/ppl_energy_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/ppl_energy_balance.png -------------------------------------------------------------------------------- /doc/_static/regional_HFC_intensity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/regional_HFC_intensity.png -------------------------------------------------------------------------------- /doc/_static/residential-commercial_end-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/residential-commercial_end-use.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_1.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_2.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_2a.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_3.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_4.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_4a.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_4b.png -------------------------------------------------------------------------------- /doc/_static/technology_diffusion_eq_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/technology_diffusion_eq_5.png -------------------------------------------------------------------------------- /doc/_static/transport_end-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/transport_end-use.png -------------------------------------------------------------------------------- /doc/_static/wind_cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/doc/_static/wind_cv.png -------------------------------------------------------------------------------- /doc/api/report/default-config.rst: -------------------------------------------------------------------------------- 1 | Default reporting configuration 2 | ******************************* 3 | 4 | .. literalinclude:: ../../../message_ix_models/data/report/global.yaml 5 | :language: yaml 6 | -------------------------------------------------------------------------------- /doc/api/tests.rst: -------------------------------------------------------------------------------- 1 | Test suite (:mod:`.tests`) 2 | ************************** 3 | 4 | The entire test suite is documented here, 5 | recursively and automatically. 6 | 7 | .. autosummary:: 8 | :toctree: _autosummary 9 | :template: autosummary-module.rst 10 | :recursive: 11 | 12 | message_ix_models.tests 13 | -------------------------------------------------------------------------------- /doc/bibliography.rst: -------------------------------------------------------------------------------- 1 | References 2 | ========== 3 | 4 | .. bibliography:: main.bib 5 | :style: plain 6 | :all: 7 | -------------------------------------------------------------------------------- /doc/global/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | #* 3 | *# 4 | *.bak 5 | _build 6 | build 7 | -------------------------------------------------------------------------------- /doc/global/annex/index.rst: -------------------------------------------------------------------------------- 1 | Annex: mathematical formulation 2 | ******************************* 3 | 4 | This mathematical formulation of MESSAGE-GLOBIOM relies on the generalized MESSAGEix energy model framework. 5 | See the :ref:`MESSAGEix documentation ` for a complete description of its formulation. 6 | The equation system of the older MESSAGE V implementation can be found in the `2017 release 7 | `_ of this documentation. 8 | -------------------------------------------------------------------------------- /doc/global/emissions/index.rst: -------------------------------------------------------------------------------- 1 | Emissions 2 | ========== 3 | .. toctree:: 4 | :maxdepth: 1 5 | 6 | message/index 7 | globiom/index 8 | -------------------------------------------------------------------------------- /doc/global/energy/enduse/index.rst: -------------------------------------------------------------------------------- 1 | Energy end-use 2 | ================= 3 | MESSAGEix distinguishes three energy end-use sectors, i.e. transport, residential/commercial (also referred to as the buildings sector) and industry. Given the long-term nature of the scenarios, the model version used for the SSPs, represents these end-use sectors in a stylized way. For more detailed short-term analysis, a model version with a more detailed transport sector module that distinguishes different transport modes, vehicle classes and consumer types exists (McCollum et al., 2017 :cite:`mccollum-2016`). 4 | 5 | .. toctree:: 6 | :maxdepth: 1 7 | 8 | transport 9 | resid_commerc 10 | industrial 11 | -------------------------------------------------------------------------------- /doc/global/energy/resource/index.rst: -------------------------------------------------------------------------------- 1 | Energy resource endowments 2 | ========================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | fossilfuel 8 | nuclear 9 | renewable 10 | bioenergy 11 | -------------------------------------------------------------------------------- /doc/global/external_index.rst: -------------------------------------------------------------------------------- 1 | MESSAGE-GLOBIOM 2 | *************** 3 | 4 | MESSAGE-GLOBIOM combines the global energy systems model MESSAGE and the 5 | land~use model GLOBIOM into a consistent Integrated Assessment Modeling (IAM) 6 | framework. 7 | 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | message_globiom/overview/index 13 | message_globiom/socio_econ/index 14 | message_globiom/energy/index 15 | message_globiom/macro 16 | message_globiom/land_use/index 17 | message_globiom/climate/index 18 | message_globiom/bibliography 19 | message_globiom/annex/index 20 | -------------------------------------------------------------------------------- /doc/global/further-reading.rst: -------------------------------------------------------------------------------- 1 | Further reading 2 | *************** 3 | 4 | .. bibliography:: /main.bib 5 | :list: enumerated 6 | :notcited: 7 | -------------------------------------------------------------------------------- /doc/global/glossary.rst: -------------------------------------------------------------------------------- 1 | Glossary 2 | ******** 3 | 4 | .. glossary:: 5 | :sorted: 6 | 7 | ADVANCE 8 | A project finishing in 2016 designed to update the current generation of IAMs and perform validation exercises. 9 | See the `ADVANCE website `_ for more details. 10 | -------------------------------------------------------------------------------- /doc/global/socio_econ/index.rst: -------------------------------------------------------------------------------- 1 | Socio-economic development 2 | =========================== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | beh_change 8 | narratives 9 | pop_GDP 10 | -------------------------------------------------------------------------------- /doc/global/z_bibliography.rst: -------------------------------------------------------------------------------- 1 | .. only:: html or text 2 | 3 | Bibliography 4 | ************ 5 | 6 | .. bibliography:: /main.bib 7 | :style: plain 8 | :cited: 9 | -------------------------------------------------------------------------------- /doc/project/alps.rst: -------------------------------------------------------------------------------- 1 | ALPS 2 | **** 3 | 4 | “ALternative Pathways toward Sustainable development and climate stabilization” 5 | 6 | For ‘ALPS 15’ 7 | 8 | - Project lead: :gh-user:`byersiiasa` 9 | - Lead modelers: :gh-user:`giacfalk`, :gh-user:`amastrucci`; formerly :gh-user:`measrainsey`. 10 | -------------------------------------------------------------------------------- /doc/project/carbon-direct.rst: -------------------------------------------------------------------------------- 1 | Carbon Direct CDR 2 | ***************** 3 | 4 | Project lead & lead modeler: :gh-user:`ywpratama` 5 | -------------------------------------------------------------------------------- /doc/project/cfr.rst: -------------------------------------------------------------------------------- 1 | Climate Financial Risk 2 | ********************** 3 | 4 | - Lead modeler: :gh-user:`AlKhourdajie` 5 | -------------------------------------------------------------------------------- /doc/project/ecemf.rst: -------------------------------------------------------------------------------- 1 | ECEMF 2 | ***** 3 | 4 | - Lead modeler (WP1, WP2, WP5-1): :gh-user:`behnam-zakeri` 5 | -------------------------------------------------------------------------------- /doc/project/elevate.rst: -------------------------------------------------------------------------------- 1 | ELEVATE (JustMIP) 2 | ***************** 3 | 4 | - Lead modeler (as of 2025-01): :gh-user:`setupelz` 5 | -------------------------------------------------------------------------------- /doc/project/engage.rst: -------------------------------------------------------------------------------- 1 | ENGAGE 2 | ****** 3 | 4 | - Project website: https://engage-climate.org 5 | 6 | .. caution:: |gh-350| 7 | 8 | Code reference 9 | ============== 10 | 11 | .. currentmodule:: message_ix_models.project 12 | 13 | .. autosummary:: 14 | :toctree: _autosummary 15 | :template: autosummary-module.rst 16 | :recursive: 17 | 18 | engage 19 | -------------------------------------------------------------------------------- /doc/project/genie.rst: -------------------------------------------------------------------------------- 1 | GENIE 2 | ***** 3 | 4 | “GeoEngineering and NegatIve Emissions pathways in Europe​” 5 | 6 | As of 2025-01: 7 | 8 | - Lead modeler: :gh-user:`sreyam-sengupta` :gh-user:`ywpratama` 9 | -------------------------------------------------------------------------------- /doc/project/guide.rst: -------------------------------------------------------------------------------- 1 | GUIDE 2 | ***** 3 | 4 | - Project lead & lead modeler: :gh-user:`OFR-IIASA` :gh-user:`SiddharthJoshi-Git` 5 | -------------------------------------------------------------------------------- /doc/project/hyway.rst: -------------------------------------------------------------------------------- 1 | HYway 2 | ***** 3 | 4 | - Project lead: :gh-user:`SiddharthJoshi-Git` 5 | - Lead modeler: :gh-user:`Tyler-lc` 6 | -------------------------------------------------------------------------------- /doc/project/navigate.rst: -------------------------------------------------------------------------------- 1 | NAVIGATE 2 | ******** 3 | 4 | “Next generation of AdVanced InteGrated Assessment modelling to support climaTE policy making” 5 | 6 | - Project website: https://www.navigate-h2020.eu/about-the-project/structure/ 7 | 8 | .. caution:: |gh-350| 9 | 10 | Code reference 11 | ============== 12 | 13 | .. currentmodule:: message_ix_models.project 14 | 15 | .. autosummary:: 16 | :toctree: _autosummary 17 | :template: autosummary-module.rst 18 | :recursive: 19 | 20 | navigate 21 | -------------------------------------------------------------------------------- /doc/project/newpathways.rst: -------------------------------------------------------------------------------- 1 | NEWPATHWAYS 2 | *********** 3 | 4 | - Project lead: :gh-user:`volker-krey` 5 | - Lead modeler: :gh-user:`yiyi1991` :gh-user:`amastrucci` :gh-user:`r-aneeque` :gh-user:`tgasser` 6 | -------------------------------------------------------------------------------- /doc/project/nextgen-carbon.rst: -------------------------------------------------------------------------------- 1 | NextGen Carbon 2 | ************** 3 | -------------------------------------------------------------------------------- /doc/project/ngfs.rst: -------------------------------------------------------------------------------- 1 | NGFS 2 | **** 3 | 4 | For “Phase 6”, as of 2025-01: 5 | 6 | - Project lead: :gh-user:`vruijven` 7 | - Lead modeler: :gh-user:`yiyi1991` 8 | -------------------------------------------------------------------------------- /doc/project/prisma.rst: -------------------------------------------------------------------------------- 1 | PRISMA 2 | ****** 3 | 4 | - Project lead: :gh-user:`volker-krey`, :gh-user:`byersiiasa` 5 | - Lead modeler: :gh-user:`amastrucci` :gh-user:`macflo8` :gh-user:`sreyam-sengupta` :gh-user:`adrivinca` 6 | -------------------------------------------------------------------------------- /doc/project/scenariomip.rst: -------------------------------------------------------------------------------- 1 | ScenarioMIP 2 | *********** 3 | 4 | There is currently no dedicated code in :mod:`message_ix_models` associated with this project. 5 | This page is a place-holder. 6 | 7 | See also :doc:`/project/ssp`. 8 | 9 | Project information 10 | =================== 11 | 12 | - Website: https://wcrp-cmip.org/mips/scenariomip/ 13 | -------------------------------------------------------------------------------- /doc/project/sparccle.rst: -------------------------------------------------------------------------------- 1 | SPARCCLE 2 | ******** 3 | 4 | “Socioeconomic Pathways, Adaptation and Resilience to Changing CLimate in Europe” 5 | 6 | - Project lead: :gh-user:`byersiiasa` 7 | - Lead modeler: :gh-user:`adrivinca` 8 | -------------------------------------------------------------------------------- /doc/project/uptake.rst: -------------------------------------------------------------------------------- 1 | UPTAKE 2 | ****** 3 | 4 | - Lead modeler: :gh-user:`ywpratama` 5 | -------------------------------------------------------------------------------- /doc/requirements.in: -------------------------------------------------------------------------------- 1 | # Input file for pip-compile 2 | # Only specify the packages necessary for [docs] 3 | 4 | sphinx==8.1.3 5 | sphinx-rtd-theme==3.0.2 6 | sphinxcontrib-bibtex==2.6.3 7 | -------------------------------------------------------------------------------- /message_ix_models/data/alps/granular-techs_cost_comparison_20170831_revAG_SDS_5year.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:736c853b4e91179881e1c515b03386457aae768ed2d34e8e7cd299eec45b311e 3 | size 139112 4 | -------------------------------------------------------------------------------- /message_ix_models/data/alps/solar_wind_intermittency_20170831_5year.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4c4edf5bc6883580a8f55289618ccdff4d1ae3e0c90c6d2034fc5220babb24d 3 | size 60412 4 | -------------------------------------------------------------------------------- /message_ix_models/data/alps/useful_level_fuel_potential_contribution_20170907_5year.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49267d11f0e0260cfe99911c931ed4aa9b16adc054505e55684cbaadcb61f92b 3 | size 19279 4 | -------------------------------------------------------------------------------- /message_ix_models/data/costs/materials/cost_reduction.csv: -------------------------------------------------------------------------------- 1 | # Cost reduction in 2100,,,,, 2 | # ,,,,, 3 | # Units: % ,,,,, 4 | message_technology,very_low,low,medium,high,very_high -------------------------------------------------------------------------------- /message_ix_models/data/costs/materials/scenarios_reduction.csv: -------------------------------------------------------------------------------- 1 | message_technology,SSP1,SSP2,SSP3,SSP4,SSP5,LED -------------------------------------------------------------------------------- /message_ix_models/data/iea/WEO_2022_PG_Assumptions_STEPSandNZE_Scenario.xlsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/data/iea/WEO_2022_PG_Assumptions_STEPSandNZE_Scenario.xlsb -------------------------------------------------------------------------------- /message_ix_models/data/iea/WEO_2023_PG_Assumptions_STEPSandNZE_Scenario.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94bc78917d1521fa12c04203c99b004f326f4758cdfe3f2a84338512387f1a92 3 | size 66039 4 | -------------------------------------------------------------------------------- /message_ix_models/data/intratec/R11/indices.csv: -------------------------------------------------------------------------------- 1 | # Indices derived from Intratec, 2 | #, 3 | # Source: IIASA ECE calculation (F. Maczek) based on values from different countries in each region, 4 | # Units: dimensionless, 5 | node,value 6 | R11_NAM,89.83783784 7 | R11_LAM,105.8648649 8 | R11_WEU,103.2162162 9 | R11_EEU,87.24324324 10 | R11_FSU,72.72972973 11 | R11_AFR,115.6486486 12 | R11_MEA,113.027027 13 | R11_SAS,66.02702703 14 | R11_CPA,79.89189189 15 | R11_PAS,76.97683398 16 | R11_PAO,101.1891892 -------------------------------------------------------------------------------- /message_ix_models/data/material/UE_dynamic_constraints/SSP_UE_dyn_input.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5439e476524e27a7a540bba693962f48fc4b9f31b8276b5caeb2854e161e898b 3 | size 20517 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/UE_dynamic_constraints/SSP_UE_dyn_input_all.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ebbf772f365266565cf1cb2a2aa8225e72885d134ab8488aba9b4277db9cb0b 3 | size 23099 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/archived/aluminum_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:087e3fad92e1c9fcf292ea606e3d2ccf510e773bad478a9a650a2e48661267ca 3 | size 121353 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/demand_aluminum.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44d7cf50a6293bc2de97ce165727d2af38d894067ae8e33260730eb130609ebe 3 | size 346206 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/bgs_production/alumina/2015-22.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fed6f864f034f5bfc0161a4f2b9ef341295b761c8d59f56a2d6e8dde7fcda36 3 | size 7204 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/bgs_production/aluminum/1970-78.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39d71fb24b6b9b292ee80564c0fc5cf68e897cdae9bb461c3f346aa58b5b5aad 3 | size 13247 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/bgs_production/aluminum/1979-89.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9e10491ab5987991f54c7c7afc5196d8d8987168f84019261466ee13a9cab48 3 | size 15122 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/bgs_production/aluminum/1990-2000.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:285542e66b342ca362ddbe4bb2d3a003ae64943043f76c28cdc095206a22df7e 3 | size 10484 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/bgs_production/aluminum/2001-11.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3edf2080d7ffc809c025a77fb524ce34e9d2b27f99f312aa5145ebc68ca7372f 3 | size 10342 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/bgs_production/aluminum/2010-22.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c98dfc193d16815f676e254298391a97bb30048f4a5e0718401e457b746d06b6 3 | size 15561 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/aluminum/raw/smelters-with 2022 projection.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/data/material/aluminum/raw/smelters-with 2022 projection.xls -------------------------------------------------------------------------------- /message_ix_models/data/material/ammonia/cost_conv_nh3.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7de516008c80cdf55bb3b7403cbe72e2cc85f6c751d971498619ddb69e7ee450 3 | size 8879 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/ammonia/fert_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b0b2b1f7f5f17bfa868168bd6d86f0382dceca995c9e113c80b6f9817167297 3 | size 55580 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/ammonia/nh3_fertilizer_demand.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2e5934ef4420e3734ad15365b0cd209cfcd0c75619862e8d56d75e43ee38b75 3 | size 114818 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/cement/CEMENT.BvR2010.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26116c0d9a1795a10722dec4db2b873846efe9499f91f50ba0441f5149b1e73e 3 | size 1585074 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/cement/Global_cement_MESSAGE.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b691dc7be0b7e8867dfbedf9357af942fc1ca4bca2a56108908099e92ab40bd6 3 | size 35184 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/macro/macro_calibration_input_SSP2.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:901951bb93a404b904920ff9c615709093764e27037b765a7ed27b3b8b31da41 3 | size 67928 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/material.tar.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4f7eb36a5154794629291060df40dd94835a612b9ab61ce1f1bac2758629daa 3 | size 16777041 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/collection files/MTO data collection.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d602a93ee02929b4052b534311dd3d9437064ad147429b126ae061041d79e307 3 | size 175139 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/collection files/Methanol production statistics (version 1).xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:229bfc7b27e56da90586446bcc8cd0e814639d0c1b412c3f8e91315fe310be37 3 | size 4624970 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/h2_elec_fs.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15c8b80c4346f66e38565493374dee4ce68435c160795b81ead4fb5529edbf9a 3 | size 462513 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/h2_elec_fuel.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6296e379d3d35af74ac789642f7db69bb7f1c3a1eab5a69d39e4cce709e2d34e 3 | size 462800 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/location factor collection.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3967a8f5489c5e8a3a30d11bdb99be478631b07ebe48087ba144189c3ff1c18 3 | size 47949 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_bio_techno_economic_new.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15d994a022f9de1d51a747c7bc05a3824e73f18f9682e2e2c4c2fbdc2b508220 3 | size 1103249 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_bio_techno_economic_new_ccs.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22e1e4c4aae4d106c0aca710ab64fcac02eba25d7e7625969ea0d5e6f0a5b13a 3 | size 1085207 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_coal_additions.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41f00449ceea43d46533e33fad5747f8e2693baf0abff0222fced475902ca5a5 3 | size 100037 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_h2_techno_economic_fs.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e599481c293c6f0b560bcb2c5f0cc2022fe4bceaf71dce5808eae646407f6489 3 | size 188715 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_h2_techno_economic_fuel.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221c0d16c57db184f6ec51a1b31d3f3ff7465441048126fd8ce96e029e1ac9eb 3 | size 245958 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_ng_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75947901238ee89930612efeba0c6120ba08feaaf0aff9bb026f9ff427f14319 3 | size 102245 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_ng_techno_economic_fs.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94a32dc9efebb8c54be4df14f07721827e6ea38a4533165170e3060a97956980 3 | size 89037 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_t_d_fuel.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45a9383481691284e0a308cd5d358065371308ba1dc367375f555c61e4f20c39 3 | size 56837 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_t_d_material_pars.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a46f388f94a6ab77b0168d545f1a92da7034b5a651623dc58d6f0477d2e4cc9e 3 | size 291 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_trade_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:244a41e0b3f91de51916070d209cecc9826e64b9c1b59c314e20062d7313811b 3 | size 180820 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/meth_trade_techno_economic_fs.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc6ac6404810dda477ab6669821c2c1509334952b9a197be2ecc504e019a2f3a 3 | size 99973 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/methanol demand.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47686b74930a007377578da04d0fba92c51ad5a74e974504e71b453070194ca1 3 | size 86629 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/methanol_sensitivity_pars.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43dac9b00496c6d00500f4d14c95ad3bb6678c756039b46ea4db90d27642960f 3 | size 10543 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/methanol_sensitivity_pars_high.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3150f0da033d0faac6f590146a29fd810e220698bc434ba55612c9eb7448c2da 3 | size 10551 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/methanol_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a271ace35b0165a74840c14b2f7bc9e09f01e156444f0de73074625a07a2c324 3 | size 619110 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/methanol_techno_economic_high_demand.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb15022882d45eaed917cec4e3c63130a8e1f2e73759962abff3017a9438415a 3 | size 626787 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/missing_rels.yaml: -------------------------------------------------------------------------------- 1 | - gas_util 2 | - SO2_red_synf 3 | - global_GSO2 4 | - global_GCO2 5 | - OilPrices 6 | - PE_export_total 7 | - PE_import_total 8 | - PE_synliquids 9 | - PE_total_direct 10 | - PE_total_engineering 11 | - FE_transport 12 | - SO2_red_ref 13 | - trp_energy 14 | - total_TCO2 15 | - nuc_lc_in_el 16 | - FE_liquids 17 | - FE_final_energy 18 | -------------------------------------------------------------------------------- /message_ix_models/data/material/methanol/scenario_list.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72f6b1c0c82e33cb1dd491bc3f9327cb1f0851440b86097e62b3cc08f1acb371 3 | size 21484 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/other/MESSAGEix-Materials_final_energy_industry.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b5b72024df8b07d04bef3cfbb161cad49292f616543959286eda87446ca2137 3 | size 518402 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/other/generic_furnace_boiler_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c13eead4389902e83e5461ab3ce87ced5744102b5a26b13b4e4392827d38fee1 3 | size 156621 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/other/iamc_db ENGAGE baseline GDP PPP.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58ed30fb35f06d2f6d109bd6f4411158a3f5bb32b9191f743953e7ea9c163270 3 | size 34879 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/other/water_tec_pars.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bf0882eafa9b184a1e3a44c61c36e1756a91bb60e22d47e999cda6f1b14ca96 3 | size 88386 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/petrochemicals/petrochemicals_techno_economic.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6178b6975ee5444badcf33e5ce1d78eba40478eb599918b4634e29e5f18f362 3 | size 677733 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/power_sector/LCA_commodity_mapping.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4e208c48b1bb2f49f9c9d9e35f710c5e999fc972e18969b541679cd24a65440 3 | size 9883 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/power_sector/LCA_region_mapping.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90c6d316884099eae6033b6713a254dd488cb911695422d84936ee7a3b21e51f 3 | size 9115 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/power_sector/MESSAGE_global_model_technologies.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0648585da99d2c7b4038a9da223ad483fb9cfc9165e9d32379794634c0f1a975 3 | size 40721 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/power_sector/NTNU_LCA_coefficients.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:362360e9edb499d889d7402ac2ca84c9dec46965489d5dbd3fd10bf0883811bb 3 | size 3560471 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/steel/Global_steel_MESSAGE.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cda24624f0d8d9fdc1b8724ff8059f357f311444bf89e71d923ed6976afb06c6 3 | size 106597 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/steel/STEEL_database_2012.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1151a9491e36d951ba243dffbdda2598aa3c0c43c49813daa8d626c5420e2a44 3 | size 568871 4 | -------------------------------------------------------------------------------- /message_ix_models/data/material/steel/worldsteel_steel_trade.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6cb38631f26c4ed34ddd48a0973b73f9df259640fcd58495a08d5f31b8f6086 3 | size 26646 4 | -------------------------------------------------------------------------------- /message_ix_models/data/node/ISR.yaml: -------------------------------------------------------------------------------- 1 | # Codes for the "node" dimension of the MESSAGE-IL model 2 | 3 | World: 4 | name: World 5 | description: MESSAGE-IL regions 6 | 7 | Israel: 8 | name: Israel 9 | parent: World 10 | child: [ISR] 11 | -------------------------------------------------------------------------------- /message_ix_models/data/node/ZMB.yaml: -------------------------------------------------------------------------------- 1 | # Codes for the "node" dimension of the MESSAGE-ZM model 2 | 3 | World: 4 | name: World 5 | description: MESSAGE-ZM regions 6 | 7 | Zambia: 8 | name: Zambia 9 | parent: World 10 | child: [ZMB] 11 | -------------------------------------------------------------------------------- /message_ix_models/data/test/advance/advance_compare_20171018-134445.csv.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b6e855a0ddfc9c7795e390c39118b0656d2642576599cb4ea7a01256f23b2a6 3 | size 18958621 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/gea/GEADB_ARCHIVE_20171108.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffd4510e0e79eb46c78cfff21674b3334b16d927bf8707e390f2e1f02a499762 3 | size 2860676 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/iea/web/2024-07-25/WBIG1.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fee0dbac438e255d0faddb7bc43705678180f06bd738ba8434d24017c2449047 3 | size 8334294 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/iea/web/2024-07-25/WBIG2.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14ff34fbbde1b4105df603571da15cb04be073ece885ee9db5cb9fcb9990e749 3 | size 9897875 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/iea/web/372f7e29-en.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:728bc520af3c130f476c958296178a2e6cf9035816ac2acc8e1f82573ddcd047 3 | size 8732316 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/iea/web/8624f431-en.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abeaf5147efcc4248c4fc7e703f045480ddd26de760ff1a179d2a5386ba3f31d 3 | size 9165125 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/iea/web/cac5fa90-en.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e6096c922bb7324f9f2d010ae5db1c4818b22868b527248de64b45cd5ae2c81 3 | size 8834051 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/macro/kgdp.csv: -------------------------------------------------------------------------------- 1 | # Converted from P:/ene.model/MACRO/python/R12-CHN-5y_macro_data_NGFS_w_rc_ind_adj_mat.xlsx 2 | # 3 | # Units: dimensionless 4 | node,value 5 | R12_AFR,3.0 6 | R12_RCPA,3.0 7 | R12_EEU,3.0 8 | R12_FSU,3.0 9 | R12_LAM,3.0 10 | R12_MEA,3.0 11 | R12_NAM,2.4 12 | R12_PAO,2.8 13 | R12_PAS,3.0 14 | R12_SAS,3.0 15 | R12_WEU,2.8 16 | R12_CHN,3.0 17 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e433c07354b799c820ece98b7138085caf2b8e3d6d8a86539c3da63f89698f4e 3 | size 1119595 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_ALL_MODES_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5aa1010c0dddba54aa1d0a801e89c3192d1f4360bdaf578ec45626eb7fdc316 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_ALL_MODES_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac8693e1c3e9b50551a03d646daf2bdeacc9a38a138a27a11371b0bf01fb6043 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edd096c38db7e0a39e26f5a6af481d66c60ff38007a4e8ed73da7d2f4538749c 3 | size 348853 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75de3ceae9062278c128cb750542dba94c24b6c0d969b0ce06a3cdafd717df96 3 | size 83105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BY_RATING.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:029b808065ecf6e10c16429b99096c331817617442245354d18e4000626fd143 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4a5afeb2f41aaa663d98e5104bf8240b5418929d0cfbbdd5ec4c88c9b3b3974 3 | size 143041 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df73e159a53f1b727a596c2f2bb7444366adaee489981b4e71274b6e9b53d5fe 3 | size 179283 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_RATING_TOTAL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b85f2517fc01c92f57d2ceed3ff733cb9e807e4b42f515354a621a1bbaf1300 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_SOFT_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bf71ddbc84d5a71d79b22dfe02f661aef9a3a5b8cf8cf5badea4f13a81d1741 3 | size 179445 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_SOFT_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6515181be154c86c6157cdf6085ec935c88d0f6836768731e6a78c4858781062 3 | size 193834 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c98deb30aa75efeebe922b4550a924a104b5cde6259bb255fa68f4e5cb6debbd 3 | size 316292 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT_RATING.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a9b8701343252903b66220e11c6c868d3c6b7d1e698dd8bfcb4c1d765454bb8 3 | size 119 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21dc4e66daef3882bb41998528ac734a8e75403789a6dae1367f79c452f36f2c 3 | size 320194 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ADDON_ACTIVITY_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af963fb032e65c2e90283a87d8848dbc00626616d0ca44da1db268c6356c80d0 3 | size 92 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ADDON_ACTIVITY_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab312790ecfecebb21e5944eb7c45bb747e134102aae4c4b80ef60b5e356ebf7 3 | size 92 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27bf53613717d2780f6343bfb6a0db0ef551d679ec0feb94ab10e24b1599f084 3 | size 778593 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17082ce84c47fcabcaef80939de648590492531c13fcb43914cf9f4dfe6aba7d 3 | size 718481 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_MAINTENANCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d86fafb476b64dba76621cb333dc3d37ed1387f5f3dacfa142e1dc700c034772 3 | size 745591 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_MAINTENANCE_HIST.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d2aa3a84b3875d03fb4701c1c061da755e857c338c17ef314f6e88b1ea05f9 3 | size 69622 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_MAINTENANCE_NEW.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1f08163b93db37146c07b26ee12b7a4080552f71c855b8d27f757081df112b9 3 | size 330366 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_FIRM.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a12ae231e2073edf413cd900c2dc544275a23f64b4621aac315d798ad9d9157 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_NEW.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43ef04e1f32d5c7dc76a8874114dc309e16f1f89d8a664c5fccecfe7aec977b4 3 | size 179351 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_NEW_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:891d39e3f37233bd2200112c9c42af2cb0d150e08fe7c28306c501131a5abc55 3 | size 87 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_NEW_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba1b62b75ac4843650fdb7dc7653f4b0e10271e7f5f65b368df1fa6cc9ac4206 3 | size 7283 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_BALANCE_GT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d35dd8ebfdd544dce144373c3c7a0ab00046f51249ebe41e4ec299afbc2a130f 3 | size 84196 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_BALANCE_LT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00531dc0f1938e8eb5cdc190f78d24dfc9c8e5adbac24057a993b6927130c7df 3 | size 95 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_USE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0956f96a9ef4bfdd2288e8bc3fe860233fbd1ed0335b978a3ff888f6428cd6b 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_USE_LEVEL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8275da1b03c128dfb952453f6860ead12701b9314fecb19bf5765ef2506b037 3 | size 94 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COST_ACCOUNTING_NODAL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:824d2f002b4da42a72d0398cfc7b6bfa9c071b38864c3767beec71419603accc 3 | size 879 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COST_NODAL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be0b71e31d74852181a8a71c596d19842eea5959e2eba43948e3f547076815fe 3 | size 2448 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COST_NODAL_NET.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94a339253fea267a1fdfe8b68c395c5380d4fc2d538236114a733cd223ac0fdd 3 | size 2399 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_SCEN_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51ddb8ce9e5d57ad296d8bf6e4f6a42ec7b4dc14a89915a4234b7602e7ce181e 3 | size 53834 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_SCEN_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f66490705a08ff2e1df75fe3aec54116f0cb93c0303bf046316e321aa77a34f7 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_TYPE_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b472c85d718e06d93b1f352fcc96938cb24d53720242b6c3ba1988f3cbdc3a7f 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_TYPE_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba06172def776c57da5c19f25c7fa3898895f85101fc0389854bf114896dc3b3 3 | size 3557 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISS.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be8910fd63cfb04302468f77d4ad6af9b52a2de7defff2b6b91e75948dfd606f 3 | size 326505 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISSION_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67ee01dca27fba3b186ee7b0f335bf738698c8898142b07e2272154f08082f54 3 | size 92 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISSION_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f69facd22f18d5eaca5a46095f7a3b53cdfbe321383ef00e2a79c7058117942 3 | size 283712 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EXT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8365f142aea1114519d2c8bf0979e277b0c4c6856b91bd5d18c77ec45e32a593 3 | size 31593 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EXTRACTION_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7109987a35159af0d85b0371cfc0ffb6c4518022f404dd87a7b246b78217349d 3 | size 1227 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EXTRACTION_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f94beffa45e00f8f32116bd1432f767f8ccb80337d6a6c054d51f00acfe0cf78 3 | size 27099 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/FIRM_CAPACITY_PROVISION.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:825fff5f8d5a69c025503d841ae84d26d45bcface9716a39fc4f699d31ccfc6e 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/GDP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08727680d1a6d4c99188b4db1710690cfc9222865fd1c6a081599e8f8868722a 3 | size 75 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/LAND.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:880a4572c42cb5d0bdf8e836845286729bf311b31024db7dead2bb13c2d411bb 3 | size 146878 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/LAND_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c11d522defc939b33b81ad1415b2978dec2dc069a4b1ad509f1552c2d395b3df 3 | size 2121 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/MERtoPPP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd62eb8a67066d6efb686c26dafcf7e29370e43aefc070431c59f57b9cd74b12 3 | size 1205 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/MIN_UTILIZATION_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edcd485cc4c93ad535a891506267c8eebb57483b9cc9463e703b163b9bf30f96 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0296de1b644c4d4a388595e9576cd2cb684d698908ed3fb6a3e9792bdf6af967 3 | size 1681 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7283ca771db832f55690a1e946af6a243b1c260599d2169e70a662ba429d337b 3 | size 5486 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af32c839021c0d9ffc89b1c0e3010013ba216fbe506572fd2e0b17cd8a15cc45 3 | size 380 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:836fbfa7a70e52ff68edc3f2ce1a0fabb936c3f35194d92f057cc47c3c21d944 3 | size 24127 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_SOFT_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71f5e00d8086605679733ca14fcc4daff7bd401d8e34abdcda658e58d131cb08 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_SOFT_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d40a2063c1f0e6e7e58aeba1b259764b576a7697f359402062c66e6db0e5b45c 3 | size 5763 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/OBJ.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0bf9752137ca3809e668a7c163785b1088f2a8e788382aefa09cac3050c7d19 3 | size 89 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/OBJECTIVE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a259aa6d9c2e3642f4a1125aea5f7dd82f83395af3c5ff2143443ebba069c6b1 3 | size 75 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/OPERATION_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a054afa0bbbb1cbb445974c83c00160b9f2721d34c03347e62c1492290b3dc24 3 | size 93 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/PRICE_COMMODITY.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f8b4f607990bbd14e3f6a427e1ad00fafffb76ddf7b5fb3a3465d5e98f95963 3 | size 69902 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/PRICE_EMISSION.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:849cba6d7ca497aed4b7ce6edf00f587e573c592253beb1cf6da803e0885ba23 3 | size 106 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/REL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd06586d4084feb1f6083bd8764ede1afc9ebeef6cdc5ed129cbfe3d6bd7986e 3 | size 238737 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RELATION_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a87083f2eb1ce3540ddfe6ebe25c7f8f766c68beb47d22ae29e08de4e32f309 3 | size 115234 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RELATION_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e03419d2da28b6cce3b7850eac447e3a081a11634779fcf2f425b777fb9a0042 3 | size 144407 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RELATION_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30383bfef3913fa4a9eb95b6d594d7fc93aff0f85218ec1c438f47c19987ab94 3 | size 176891 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/REN.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b0fb1ffb135d5438408d8562e54cf07391a8a5c665cba52f68aa15963e833d4 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RENEWABLES_CAPACITY_REQUIREMENT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0e25cf252c3cb8091142a13ca71cd8f07c80144322487bb32ebc85e79ec5d23 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RENEWABLES_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:470c55fb094afe673f6ab349311834838fbfb09d933c31ce40c8fa63d5951c88 3 | size 97 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RENEWABLES_POTENTIAL_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5e934da27a5525e5a371359e81b360749f220f7965f77222abcb39cdb3158b5 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RESOURCE_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0543af0b6c6478bcc78d20d185c6ef405751498fce96697464b52c32706d5f23 3 | size 18136 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RESOURCE_HORIZON.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa24d6fb316eb2d89ae4720858b41ccfeb64bada23f4b63b9eaa0573c2dad2b9 3 | size 4428 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_COMMODITY_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cc21d796366cf7809c83a65390b9f5d43248fd0d86d3c6c43e5e7bda4122b77 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_COMMODITY_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7eca51cf2dc8ff606ca94a98a14e589cc4d3482d486558161307cab524a74f1 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_MODE_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:615fc7b3fbf093700d0ac7262668e92753dc521e3f41e1999ecfa81127c198c0 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_MODE_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fc3c3acfeecdb0caf0b54da3d570f8e0181b8fef847fe5634823561b541a29c 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd1aef4b207566c8c86d72651479cd5cb6b163f79ba6e0c42a9dd3f3078bc65b 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb2958a3dd90e4660bca4d7afcc4bee58cef18865ff5688dea89a2d2d2d38a96 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_DYNAMIC_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:218b30b2f8d8572c234974662aa28c6c589b7a468775ad43d6385d6970ba9e18 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_DYNAMIC_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8ed98c5639b593cd01d65cfd0b52fb77757755391f9d8dae78455b97a7cc99c 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:220b671273ddb13ff930818eb30502f6cf102cfe7e6e4b23d3ec230a0a54401e 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27aeba80d88e716cb958f00e090bc1246b189a4fd655d82bad9433e57b0a2d9b 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_DYNAMIC_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09420999b386543c028a616921cd9573c97825551246557c275823b0b59f53cc 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_DYNAMIC_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55657401b4fe17b2b01c037a019677b9aa066c9e0b4e8a6af9c927b81398009b 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_TOTAL_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed09f97168fb57b2bc9a43a3c7436ef3c2f17b9377d0cdfb68b7f7ddad630e45 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_TOTAL_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02d264bcc5e00d21af708d7a2b4b5b24a3af1451ea324b41cd2dc841fd1f1625 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_COMMODITY_EQUIVALENCE_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:207c23f421c6d1cbb293f4c643f7d790a0f5af311a1a2edbec76aa0dbbfb5382 3 | size 124 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_COMMODITY_EQUIVALENCE_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eee76e9e744391ceb4f8d43ecaf79fde17338331cdb22fd5feea7303556392d0 3 | size 124 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_SCEN_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d6ab62a9417667f527fe4b01315c75be66c0a18cd29886035ebd7dd23b0bb4b 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_SCEN_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e7125cc74a7f511a180061d2da69e2188ebc236a3be8a7f71db714d528c6cf0 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_TYPE_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a93a90461bd8bfab9230192dfc44e142cee2059df3a9be7a5c68d871dcb9f5b 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_TYPE_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47dbd459b84da95cef4d260708ea7a2f6b2a371f6aee73cce4396256f1b74fb0 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_RELATION_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:321a45f905880aab52202062d807ab981c980dc6ba5992a1b32731edd14b5a64 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_RELATION_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10d4d0264169ff676431b3aa7102adef68e6dd6ed5f57dbd151e9c138ff579fe 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STOCK.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aaa482b1c53438ec44c3425b34bac206a4918f9018b4fc8f4f369db20186000f 3 | size 2511 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STOCKS_BALANCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce7b9a8c5f9395d121a1b967c18c5f3242c5995d201d3e9db38896aa0ae62ed2 3 | size 2185 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STOCK_CHG.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe5a0a7a0ddc55dea4c63d6e3c9f600c8cb74e95137cc50e011ce9d7e0ecc07d 3 | size 836 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:460b723a702a8392b19a17b82df90965c46f1252e2543c7f9be4490e660a6a65 3 | size 107 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_BALANCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df0a23d0094e687e8447b36b1641eae97bebec81c9352775f0b46e2979e3ffa7 3 | size 98 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_BALANCE_INIT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bea5128e4371709310cf3e844b6c76eceb0f873a4569af2af9a1ceb67647d13 3 | size 103 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_CHANGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c611fed6c89f09e2386bd65f8d86484389b227ef963a96030b05d5e9058f6470 3 | size 95 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_CHARGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32f2530f3969ccc2b73c8dbfe1f4143d1a83390d960508224d695ad73a4c9648 3 | size 114 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_INPUT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1723b15013f140644e2f79606183d570f684abb7a8d5b468ab276df156051953 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SYSTEM_FLEXIBILITY_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69f3eb3aeb2d689231c7ecf213d2ee470cfefd1f510552fd3272f30841439b85 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SYSTEM_RELIABILITY_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fc24520d97e21232afbf3935c545657313f0fe4a86c98ddf9967dbc77e50b41 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/TOTAL_CAPACITY_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f01dc9d892f36f3abfcb400b9ccc5d049851592421bb2fc881f23dd9374cd0c6 3 | size 790 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/TOTAL_CAPACITY_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09fccc0c30213e4b9a14d22e678d4c795eecbee8cf1fafe15e7d065f06d8decf 3 | size 254 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/abs_cost_activity_soft_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e99bfd431f367015bd3a4a090b66afe6d311413a73b821355eeed60a2218715b 3 | size 26590 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/abs_cost_activity_soft_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68c8f6ef11e9a67d7c25a8bdc97ed06083975ed40baee00f0c1fbff421d71425 3 | size 27664 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/aeei.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1ba002f82f34a895c39f446ad2d1540cea9ef83179b39b0f822d40dd1ed049f 3 | size 14331 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47ae034fe962a403e435042abecd31adc7a4dfd7919da3680a5e8b3d38aea5a7 3 | size 110572 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c10e716d6f6091fcf0c4b5ce3b5bf9728d5ff12b8061d9ec14362449e40b28d8 3 | size 121094 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_extraction_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f51a9d057afe87e99ac102bdb3e56539e41c89f9e37680c132cc351d77d70ac3 3 | size 1060 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_new_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6776daaa61575906e68e76bb05af3008b53c7f2ef42248b926d62582ce09b01c 3 | size 5560 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af815ab1a48aa420e03ce9ebee03e7a38fa20cc69f1e2548f2b648483500a425 3 | size 11121 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_total_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba3583bded4396db6e0e613981c82c64d85d29527c3942b373e3a47fea080ce5 3 | size 508 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_total_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c85db9596bf058c032e65400e6ecbfe4e3f2adf34cbaff623bd6cead8bb37c2 3 | size 185 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/capacity_factor.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2312cdbaee4b5cfd6533b0421e668490e5a21d20fe3ae7ab4a7c76b432de4932 3 | size 762396 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/construction_time.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75b3012a84f24c4ecc20826cc92d06af3b5ffbd283506bab7c5c83594062cf48 3 | size 50927 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/cost_MESSAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78edffff5cb63618bf032ce929f67f3d5d93f41b1ecee7d05ed0402e6e706700 3 | size 2632 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/demand.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d88d17cd6ce852e6048926367921b86fe1ed4f9405b7e75b9cca1b231cb1592b 3 | size 14404 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/demand_MESSAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a089f54156ea2fb8c63f0d804cebd3201cf9ca4a07821b561cf827b3b0091e4 3 | size 8505 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/depr.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6458ce460b20e86769b13b70ece8611c17967613038af8ee762df64fb5616c0d 3 | size 138 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/drate.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cff83cd80c120239e086a9dfbecddd85421241aac6abe8f0b18c3a2506d07f2a 3 | size 139 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/duration_period.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2665df71d1816e7e031a57b46de89042fe261518447a028ad89a1ad9d4342fd 3 | size 184 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/duration_time.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59c33f45022540019d47946d42154353d2f8cea582ec0d4236399ca5616e6a15 3 | size 72 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/dynamic_land_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7780139998b084f4a9a0d8d304a7f5c55515a9b8333c28ea462584b45d6018b 3 | size 90163 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/emission_factor.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48d0c3d075d495196ea2a428313fe1e79a5c7cd6cfd99c80da49c63b3b6f3c50 3 | size 16597 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/esub.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00d58275a275b926aa8d556c28efcaab40f3eb4b617199ef9e568b9a766f40c7 3 | size 142 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/fix_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a49a54e61230d8c0dfee24cc5abbd8d945a7ec8ae600d78de0bea10e87e9b5b6 3 | size 376341 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/gdp_calibrate.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73346f69628edcd980cc9e6d25a8ef9e517a961e2dceb7c507f24757df4ac7ce 3 | size 1662 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/grow.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ea856fcabc59b5063c97a5f5df74164baa3370f060b9f958a8e486d95806467 3 | size 2332 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2c3a348de99df54ba71f68cb08cffafda79901461a1da68af55b676e0fad285 3 | size 68959 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7889575d676a906ef4261855daa46ec53610a4bac9f93611fd6b26573705b89 3 | size 107713 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_land_scen_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:440686b6de7d73ff07c302945ff7fb95c1212af4a4a68a84c6207f43ed817585 3 | size 47014 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_land_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b60d75b12687c635f55cfd4c22d216a00dd035e2310c14262738087752d75ca8 3 | size 1418 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_new_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b51f686f3499d1aa990f6e3911d8e142d44f99a689677ca270b28b1b716e939 3 | size 770 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b60a5e3d11870b8710d44bef08e3e925da151410251ec9d405afe8ea19cd92c2 3 | size 21678 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_activity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2f1279de34ac9d3063dc14f215d271e67c7a4866adf2faedfcd9cb685ce5b2a 3 | size 158850 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_extraction.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b82a305392856f4b17ea260aafdc29642ddd075afbbfc07f0f57f0fcdf711a32 3 | size 9655 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_gdp.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c325198440102ef0d48c601b04533886df5acef338e50822e3d78537f27c9a8 3 | size 228 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_land.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e540b4bfcb727a4114167f5d1e434eb3dabf0b152fc2599ebde3df2ad0237c51 3 | size 4851 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_new_capacity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f69bca88c67ee86e25751ebdcc9c32f34705f7ea2795b68c0255bb3e524b73d7 3 | size 62066 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fd2d91d4f6b3cd8605280ac74556429aceddcda0ed3cfb141f714dc3f3d7720 3 | size 77611 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6af0149a5f14b805d515c73992ca0612ff50152528e6092ad8e1399b8377dc7c 3 | size 114008 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_new_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b7dfcf6ef26f150b0379be553c3c2ead78e408bd65b571f56890375bbc6dbfe 3 | size 726 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec8b5ee41dd12e48140ccf584a2bb0149939b1b774b39ed4dc7d14773018aa41 3 | size 20121 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/input.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a28563e1646a31446f07ab1096fc4e4dd65525eda099377485b14bdd1461aae2 3 | size 599921 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/interestrate.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbb557a3550e3cbb21ffd575cd5121b577209d446fd5a114ef809f93a033835d 3 | size 186 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/inv_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edd46b835db7733173eea0d0100ea9319df56a1193ff710e17924077f5e0bd52 3 | size 214855 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/kgdp.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1f4e159e12f94c3f702f541fccf0cc8296b98bf2b36c548d825d26fe5200de2 3 | size 142 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/kpvs.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b9f4574ba93d223511a368ddec158a8181826bce277d95d089e646bd8feb256 3 | size 141 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/lakl.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a727a89276f3abdb1f7563ee6e70aab545224587eae033a6d88b715d7da11c7 3 | size 250 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0a8ec7234fc0fa95236be03bbc4aea26170d4daf34cb8bc9ac0a59521f7b0d9 3 | size 142107 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_emission.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4994b1652b1084a49f68b397e76abbedbcd87cbbfefa67cba75e315e96c3701e 3 | size 3587152 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_output.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a215baffbf7916a090bb1950f670a020e2933a64fb61bb1a5dbfe04e80a80d4e 3 | size 12172514 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_use.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:877aa402beb4e689bd12a4f0e5d0962bec298bc5742f8208f551050925b1a6a5 3 | size 368018 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/level_cost_activity_soft_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fe175e9ae9fe571b24354afc8e9e42eff8626a32b08daa617c7c7795fe73574 3 | size 67854 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/level_cost_activity_soft_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:217e29a761fb685466b970ab424218b59d8da4d111eff15601f61c5a1ce5640d 3 | size 67854 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/level_cost_new_capacity_soft_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bfd780d6548be5664a3243164908da36df48ce1f6d9cb9b304e6f5e69eb39c99 3 | size 2148 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/lotol.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36736697db6976cdcbd9a84d7f574404b50a4f5420ea55954b123f15e5dc398d 3 | size 107 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/lu132042vhm8.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/lu132042vhm8.tmp -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/output.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0ea187c40219deadfc73fa31dec03dcae471ba01724da317cd336c122a370f6 3 | size 511192 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/prfconst.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21b2062ab9ac730c34b23c58128176462f1f1723cbdd9376371c885639fc4b19 3 | size 1049 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/price_MESSAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e65fa94205048dcb14386e3a761aa61a41cb5e9b7b233ad35a09cfa80d506b04 3 | size 13095 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_activity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b316e77501bb92b8d66300906d511541ba1f43e92ac7ba23072517869178448f 3 | size 1939604 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_lower.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbed27baa5f32c4166f773ff0143d5edc1366e832000b3eb153d332eadf34caa 3 | size 55632 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_new_capacity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3275fa51e928e074969a9ba9865c4f53c091ea3c7187e47159b3c8f7769603cd 3 | size 829 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_total_capacity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c47b01b8b4c32f50a55bc3f9aba5c68859a2b6b4b0d79dd4166c6766a3e2dee7 3 | size 38485 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_upper.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dff4ed1cbed405d55ecb4ade0225d11b94dbbdc57b8763afb25f414338be3060 3 | size 77061 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/resource_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22a3aafcf0dc006bd1b6f456ec4fb4901ca440caf88d6b75d84d51162e5c9aab 3 | size 15195 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/resource_remaining.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:399f8e93aaad3345db31dc02811c41b8803f249d8b0572d30b615313b5aa80c8 3 | size 6290 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/resource_volume.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0b8e5201fae1d8e232060826e3016ec0972dd0d3105ce6d36b5d757f9d59b4b 3 | size 2337 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/sets.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bc8da22f37936456e7d0ab1585708fd3a284d42580da0362c5305c2b8afafd5 3 | size 49845 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/soft_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2b96da2cfb7b1421a08514021bebfc541b60c79895db5dc46a05819c0f1fafa 3 | size 80615 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/soft_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98feb601aec9a816190999da88386e3eada3fde037dff2c8dbbd5570e46bb1c0 3 | size 81162 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/soft_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89538e5f7b30b682517daf44cc3c3f67b85844c8faad78ce446bc27a223e154a 3 | size 2114 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/technical_lifetime.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48548ca339ccb76ac46b40b2c61fed124c98f1cebfb9b171fea86de242449490 3 | size 95763 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-0/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/var_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ff79e43d1080e83897f147a95040928836884553ee218c2c1577d0caa360910 3 | size 157343 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4de8448dd28065518a2d40601bf910dbed63ab00ee104151b5dbc28bcf7848e 3 | size 1158798 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_ALL_MODES_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1f16e340e615a07e779e84681febf79408876dce676081503f2cf49f3cba2bf 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_ALL_MODES_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7ac1caeff8914e7333149a63ebc9e0c1b39efc87ea02ba6051199587f70d134 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71730f61a40c9b699a05f6b37893b06d03ec56c836acf4cd5e1c827b3ab57b2b 3 | size 348905 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0aca75c49e09ae33317691f4d2bbf447d276d8e172ada863cf37be909dc8a8a2 3 | size 82977 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_BY_RATING.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c73dca90e828ce23f6ffcfc86475ee03fdc2dba244f355c6567568004a9ba463 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2984b37402f33883c14c95b9718404a35444dcf9fe969b2d683d4968075f76f0 3 | size 142853 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90b35138a78625a6384821055bcec9795d719d31e056fed4afc7c88e0b61fe15 3 | size 178913 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_RATING_TOTAL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1731f954b6a7e84540b914fc333ca1e7b889c4636607c3ab683c0b07c4453079 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_SOFT_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e753fc33f3a6c837753bcc57dec72cb55e1f5908251daeca8a722bba05911e53 3 | size 179606 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACTIVITY_SOFT_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3bcbff2b3a68be1f982dfa6b3d20fc85edc43e44eebeccaff7a3e2277a083b6 3 | size 184664 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78a0526580cb2e5d2a74164d4450e4aeec59468d60346cec6283ff46bb24b6de 3 | size 316436 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT_RATING.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:caf0c9f43bac7e862a0cf6446797fca197f5b3b97127a9fc341e271d4610c381 3 | size 119 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ACT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f812078cc366f69b06dbc09755c71c2adbfb1f4759807841fbaeafe0cdaa2b2c 3 | size 317980 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ADDON_ACTIVITY_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e7b2dcf99215fb1c9e6f3af7f9d3f56b04b1ee9add83dd842eae5f3696c604c 3 | size 92 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/ADDON_ACTIVITY_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe86010b32cc512b69bf359178351b248685efad3c4201f33f5944e8764b30a1 3 | size 92 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80b77dd364d0dc265c5e9ff9657a761530cbc1e6ee5438c90bd8dbc16650a3e2 3 | size 727011 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb88cc699d7c51bd39f5b894187c2b65c6d94e5f9ff5e4ebe90a6bdec34f7ae6 3 | size 749050 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_MAINTENANCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09136903db4364e2a858bd9e3a43427f5d94bff192d8f37128aef1ea782e1965 3 | size 722134 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_MAINTENANCE_HIST.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d9169bf61ce363c56b3d52fd15a4b2827de54806057ffed9ffe86df025049b0 3 | size 69331 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAPACITY_MAINTENANCE_NEW.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b23f214a9031fc6ceeb14af36648bf4a63529c87255d75d28cdc87d144a6f1d 3 | size 330218 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_FIRM.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e218efd40fa525a15594a03783acf7b6f084051b2b2c34fbe4f20e245d1d25f2 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_NEW.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9b4f79bcfb4d2a3f66f56c22dfdce2dcef5895636eadd2069820d62d2e84b9b 3 | size 179210 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_NEW_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:149267ed7630daa7976854f78b0ff2e88aa03630d0bd20f78006cf4d5424ab07 3 | size 87 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/CAP_NEW_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa2fb75ff985c62705965de0656167282a745e7eae17de0e956076459fd3978b 3 | size 7276 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_BALANCE_GT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40a18e7b945626c8164f1118d7f0bd00c97aab3e96b62829879a646181c0f9f4 3 | size 85188 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_BALANCE_LT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c5d2c7b3d075312cf50e1a28062598150c2be0fb1bdb3eaa873c881114b5d35 3 | size 95 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_USE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2d37961ee701b1c3c2be40b61ed2682a1e19f05939839ec97180ed3c4ab7b2f 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COMMODITY_USE_LEVEL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7129aba9eef908024f1965c725cafb5abc8df8db235f8d816b66a60fd5d6012 3 | size 94 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COST_ACCOUNTING_NODAL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ba855c3d4ab9abcf9c18031f15ca1bbc5d2daf25e87fbd357e6a5e63eec044c 3 | size 879 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COST_NODAL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccf7c24d627257af049ddba7af910dcf683851ea82d2d9591c45129f26b39fae 3 | size 2442 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/COST_NODAL_NET.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02fdee2b284863f007c59b0da97de09ee652ac0bdaf1be27318a156226c94db4 3 | size 2414 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_SCEN_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc3b3b91c9a37b9f376be39ead6163497d0ff4d4fc2d9105787d62fe764516db 3 | size 44224 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_SCEN_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b912be0b779381e2726a668b637a2cf54638379acdec4f303da9dacaf5c1d57e 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_TYPE_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d365f8410d658999fa0c57bd34bc16576197e75e3654b2b3bda122cacc5d35bc 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/DYNAMIC_LAND_TYPE_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cd6b14a3a228b409d320c0e18c15d53440f6eeddf6492785c89e39ec158944a 3 | size 3557 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISS.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91674188eb9d12272da9a63f70b323b6a7778b3c408e899ce9cfb963a8d83d7d 3 | size 326518 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISSION_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cea305725cd64e1c024819550772409163cfb0adc5e062ba522c0de38152368d 3 | size 92 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISSION_CONSTRAINT_RESCALE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4f32aafcf1796fa327728981b7cba5f603026221737062d65b80950451adac6 3 | size 115 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EMISSION_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4ea6639a75e2a1d6b8135656234e645ff22ede18a6a15ae8cdb447d47da8607 3 | size 283712 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EXT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c62fd662154ac446b478b8f572347ee9641f2446ad103d05014d12b106819504 3 | size 31649 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EXTRACTION_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6315ae10d5ddef30cb9acafde2d6603cf5c64d0e3f2119bc4352c915274a3efb 3 | size 1229 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/EXTRACTION_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d57b43b31e3c956b49d78b4b9fd7522e0a32dd18bcbfb83d8c4bbfbcf453444f 3 | size 27135 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/FIRM_CAPACITY_PROVISION.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ae7e18375c8a137503d802d6f60fadda9c6cbf068756fa911f1bdb95fb48c5a 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/GDP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3ecda3a98e17102027ef75d1c0aeb68c04d308a54ee9f8ed7397e871e94a3cf 3 | size 75 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/LAND.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ee586dcb2e2e07d1e7284e2a867c4d74c2913514fe62af8fb65d454b831e6a3 3 | size 152970 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/LAND_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85256266c84985105b45e59e1fe5312c55eb38c743cf4f5844685da0b8f1bd65 3 | size 2111 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/MERtoPPP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c68a88b3f773193c942a055ab04ba6aa86e93fb483c22f031bed114548ece260 3 | size 860 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/MIN_UTILIZATION_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52f72ab31e23a7413f3dbba2bdc9480b2c6e2696b5aec30c21bbfc27b0a24ead 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:489c26bfd562929ed97bdb4fe069ff0483a4552e33408c5066fe049d2ea5d170 3 | size 1699 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb2871a6b7fc8755dab11f4ee3c94bfb17c256d7e71b6ec488b8e88d40cd0249 3 | size 5477 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3b4cced9d2811f09f7916bcc377fd7deb4883e71a07f841727ece24c5059a2c 3 | size 376 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cfc9d36fd81f7c1725bb91d492c622eb13adb2589aaaa76acdfd17e46159de2 3 | size 24153 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_SOFT_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a649432cedbd86ad8fc0d917797399bb22bda40d0e13b67a384190ef607c668 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/NEW_CAPACITY_SOFT_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19e90b86cd8fd93a6ef6f03a0501fc13089c4a433e075e90f0937b31e4251fd4 3 | size 5745 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/OBJ.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8dd6dde8abcac79b59ae1227175fedeed05ac5fea7f06418423760ff17a0ce5f 3 | size 89 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/OBJECTIVE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc0bb8973525d6abf89938d547d960bf0ccaee0ad3a3e7b7a8f298cecd5b1f83 3 | size 75 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/OPERATION_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:994fa971e09b20875124a39665ef02588a2aef999c9006fd9b49a1c865fdb55c 3 | size 93 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/PRICE_COMMODITY.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fc201e718cb7b2443d1f3ba5c26fd6c9547533dcabe3629ff8396c5e1237df2 3 | size 71187 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/PRICE_EMISSION.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1e27158eec15c8fa1d3fcec2eb92ac52631ff548cd0402106433dc56e81da6b 3 | size 106 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/PRICE_EMISSION_NEW.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5e8fe2d2b3cfeee5a6b98fb8d2f248c4645273465ee0c96c60d68b31a341c63 3 | size 110 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/REL.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:668b9cf15524a7263b7f3f528a0c982597be1ddf8dda78f332d13ed370b90967 3 | size 238962 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RELATION_CONSTRAINT_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:479d45d61356851e83c1a42673ce1f04bdc05a50fc8f7a551d18ce6495f9cda3 3 | size 114676 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RELATION_CONSTRAINT_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e8dc77c70af3fdd4aa05e6ce744ed4396e0b129e7709ea06ebc42a20a66740d 3 | size 144752 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RELATION_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98cfbc3e64efb735ca3da811c7cfb31d108e87aa211b58a2af70ae16cd1f6dfb 3 | size 176105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/REN.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18efeb2a2edf63c7a86dad00327631b7b40d518cb1e05b0cafab53ae136d8f4a 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RENEWABLES_CAPACITY_REQUIREMENT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:168b1eaaa8fcc9bd7c0f15fec841f2577d9bae574ffb64a83f5b06a58a1c0a3c 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RENEWABLES_EQUIVALENCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83aca7b1b4dff11a4a2b4bfbb50f2195c2e80ba63d260eda4c6a5026b52fe249 3 | size 97 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RENEWABLES_POTENTIAL_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:408450ee7c8420a073e29bc3a5efbc1231567bc64d518f9e482447d0e7377e80 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RESOURCE_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc64d63af95735a78c5d5ee7eefbf6b0ca6cf0f8372bc6fc4986729e8536ec21 3 | size 18173 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/RESOURCE_HORIZON.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c665770560ae445b04feeba1a50520b620323d2c2e1a16ce8bc67313876d5c95 3 | size 4443 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_COMMODITY_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc25cf1c31eacbbc5a89298a0b05c8c9e475316ff04576810c0248b505e67016 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_COMMODITY_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c15e7264dc1d87ad87116013375e4fc3fd7cd1e0e52f03a5200168eada55fc9 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_MODE_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55b3ba500b32634db2b1f0eec4be21838de34f64c0150805d9ed02fe485958c3 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SHARE_CONSTRAINT_MODE_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c40a9c9189f00f28c612ebe9946e25a2a196ce3c03dc6521f92bfde18366c102 3 | size 102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c13a094bfc3dca37cfdc70cb7b7fda19e34c3c681b99e05c0fee72b645eea61 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c9a4fed4485bd827834f1132a80f19364d13d2272872e4bb762ba0b111eb53d 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_DYNAMIC_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02f5098cab24149d257fad95636e0ad23c3827557a0409589bd987b80d09d960 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_ACT_DYNAMIC_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:879527b63ff8ffed29a1e53d897349d515dd707e556fc551f8801da1a04c5495 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c759b7d3f6ff6d5911128cd969ec6b338a4f6a5b79a1e606c9c07e54af776a86 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7f1e253ac762f679b940ac5c70dcab6f01c0be07b7acfda206faaacda579c56 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_DYNAMIC_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3482c53c9797531de53bccd7a7a52bfb8ed4d8fac4f62f0797217ea62edfc77 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_NEW_DYNAMIC_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:046c4e90da4933a9fc91e4077d26ededdba58d4d16d6a2a203fa2015f6db0893 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_TOTAL_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54c356d86f8d743950ff6c05f1b372ca9facb52cae0f479493bca0f8dc9077e4 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_CAP_TOTAL_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42d82e52cd6b41fe69736a70650ed22d280b9774b6ed4ab898d214b3037be1af 3 | size 101 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_COMMODITY_EQUIVALENCE_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8b715e3b269559fd65de9830965170a7ece5e3ad78527b388c13ba0169afb1b 3 | size 124 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_COMMODITY_EQUIVALENCE_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5923a262e990edc8fa5c097db369d4eb4da7d453c00605fc010da3c64ccf008f 3 | size 124 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_SCEN_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e469c9ed9f5dc061e97d7338f9caa6a43bf188f1008657ba332d5fc1522cf8b 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_SCEN_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afffa3d75b66bb89bc56f2b0abf2ef1c578364550c49a74797becad0d214c223 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_TYPE_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfc6b67d7953efac12b3cbc4ed8c6231e6f45df3272b025760e5a114ac13ec23 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_LAND_TYPE_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ff68d9ef15e6fbb58c8cdc338c3d58ac29676f7d577bb84df2e4457d80d7062 3 | size 100 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_RELATION_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac023507b4d5914da760e5f386a4d37d2da192bd7c1f9363a9776af4f6fc435c 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SLACK_RELATION_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9862b28877f03f33b1b4c580ba797ffbc414af17c67b94296e553049f8078c27 3 | size 105 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STOCK.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6a0ed96358fee1857b76a6ab905552289d4670f88caa1c18e6edb3ac295a41d 3 | size 2534 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STOCKS_BALANCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1735c4849866df4cc583fde2fabdc3f02ca80518405c8684a5d3c0d67c73afaa 3 | size 2230 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STOCK_CHG.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:966c0edd2aef789a4a6abd82e904fc074a907c5a4fefd65aaa3aff444dc2c5cd 3 | size 837 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03cc5f1b909c9a4a73aedc44bbd5258a7b764a4847952958db1f4cc8a3478b70 3 | size 107 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_BALANCE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9050828b9d9823070deb603f5fb373092baac50e7f4dbde8f7717d2323b6f429 3 | size 98 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_BALANCE_INIT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:104309da67c4f3556db93f06d7e4ef0f3e81d820a72b5608a9a645b0d6aef6ed 3 | size 103 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_CHANGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ae53e8eb24a86b01b057566ce32e4640262f1976152f44eb52a16f921e1d1b0 3 | size 95 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_CHARGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b31c8747e5b387f1a8ee3d4520245d7ac88687b836b0df164d0ea2abb358694 3 | size 114 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/STORAGE_INPUT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9dca19048fb224d4c9712b76fa8bf5f7028a3190cd5ae6640791fff29071a32e 3 | size 99 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SYSTEM_FLEXIBILITY_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aafe9cb03fef309dd09ef3f742c19f62c00f9d88f575e3b8e3dbff818919088e 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/SYSTEM_RELIABILITY_CONSTRAINT.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d8a3cad11edeb86389d44a2a1f4892741035f490fc05363b81a679f642b726b 3 | size 104 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/TOTAL_CAPACITY_BOUND_LO.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a0039e32f6e7b3110bc71b888e9872e70256e366df3017eb7d39561b78e1d64 3 | size 789 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/TOTAL_CAPACITY_BOUND_UP.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ddd350000530e57632b79c3ce73ee79aac0b04e7e545d8778ae465d93fe01d3 3 | size 254 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/_DEMAND.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c12fbf3b45f1e71002d93133ae5401a675af722a0c1ef45256cff05c4e67ba2 3 | size 7351 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/abs_cost_activity_soft_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc05232e1d7d94de897c3f8d0f47d74668dadfa159651fa7a7a23feec5fb00ae 3 | size 16109 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/abs_cost_activity_soft_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83821d6582b984933d3998e661e61e383330f80459017a640127fa261ff782ef 3 | size 16891 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/aeei.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f501f0bb246b0d988e0ea7d50a6e6fd8742ebd5f7e651ab3a6a4b34cf9ef1ba 3 | size 11677 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ee7669192d2f0df7f5b25f8a929660902e620974d2fa626035a5d9602b13457 3 | size 80593 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b7d15b2ecbc21d30f8ab422b53c385b996a0cf60d4b68f8c7d006e520377c6c 3 | size 89375 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_extraction_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ad897ca0498f1a83f1175ab0879a7c0b4921a295e9c9ceffc371a51a53779d9 3 | size 831 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_new_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59eae5d1fd4d79065aa9753bba19dc2eebf6a6cafb28ce646b42fac3906d9638 3 | size 3938 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09852b67fa8ad242503144480fad0cb0453c8c5358cadf4189e28461027f16b3 3 | size 7583 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_total_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3945c7e8453d24d13adcf348138f558a1b8ab95bd29d88b831ab07343098fcb 3 | size 415 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/bound_total_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f85271bf23a4e24ad86c81b2a640c4b3935e5689bfc811497850e60b200f4f71 3 | size 173 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/capacity_factor.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7a96f5b1ecb1a5400e0945642eaa5bba61d490e66103d8999dfcac17fea1147 3 | size 473693 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/construction_time.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d919cfee8941422506fec0523a464c34d7a1c0077c0767272c9fd9a2bbeb58a1 3 | size 30372 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/cost_MESSAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:687ba420b46b68da1bf400c067de2c2f55a5192d7295599f67396d504079fd75 3 | size 2179 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/demand_MESSAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9284595a08c28c9adf7c5ea7048169a3351fd5b186f03e09b0cfb98c635a032 3 | size 6548 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/depr.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a44f1c7b4f9b1925900c1c3565eb1611edddee0c7d9a9fc154972e77f4918f8f 3 | size 106 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/drate.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d452b2f6ab71852aa57c0b42e201deb64321106ecca2a7d05882e3aa26867db 3 | size 107 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/duration_period.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27a0ebba148509fbe01c9f6134273c9a457870ca224fc7cd5da5da9735cf0b2c 3 | size 140 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/duration_time.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b16a8fb158f7a43575f886d8b5fc0927fbdffc1be89d3b88002932f5c98cce1 3 | size 69 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/dynamic_land_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d876e350055a525bc9b1271158788b4a4d36697121547b2bd0090cad83b7006 3 | size 54744 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/emission_factor.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f33f879d52b08ef17d9e7d84f5a3be319d754f277dcfce5415093f52efb4913e 3 | size 9909 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/esub.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74992161e240c5282dd812d7a67bd8b0cebd1a259a316b243634943d81320fab 3 | size 113 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/fix_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9672f4a29a1e5612d518ac9654ad1790ef894aeb39eacba4b44171fef0527de6 3 | size 249146 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/gdp_calibrate.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3e759d118fe3b6997bb0306910da02dcad5f99fa3029a6c597933db76bc7809 3 | size 1326 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/grow.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41ce2786a51bd512ee1499f7ef9020630d447fa079bfa7b1c1c5850e2b4ba54c 3 | size 1918 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3bb48501f0abd2b61bf6ad483f11d8d7d7dfe91cc33c5678593c69c39dce493c 3 | size 39340 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb4d12f7481bacfb6437199c91ba35f7bc3aa3294686d63e34d420f422557ddd 3 | size 64064 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_land_scen_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ca78e70973320f217df85a9d342541cc65e5b57ecfe9611ccb8deaa81c9fe2a 3 | size 26526 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_land_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22fa14e55457da3c1144f7cdb0185537ee1b7aa0bc0321c7c0fc66fd0413967b 3 | size 849 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_new_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecfc0c296a13a0abb2b2d1967c6418e21e5a0cfc4b09a7dcb4319842e264441a 3 | size 489 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/growth_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa7440a5669fb370ee4019b52fe5d492c0b2157bc8aa0abd2b2836994fc93186 3 | size 12074 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_activity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b2d164912bb107fca25df1dd6789002293eb77189ddc573111ed9987d9ff5acc 3 | size 121809 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_extraction.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b716cf48013bf1f5e4e55967138f06a2cfc34a694c81f960bff931fc74eb72e 3 | size 7368 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_gdp.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab3a9e98918f9273c1aedcc37cf3d90f5c7433d848e58ce07cf7a9a248124454 3 | size 209 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_land.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c381c899ad2be9b8fabf8fe910cf6071efa761f6590451345d99b8ed97403c6 3 | size 2755 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/historical_new_capacity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41e3a224ecd9e07c1746c31f7709a31f0fa10194bab5e319aff0b204ecb7fe06 3 | size 44734 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ed8b5d62e3a2964493a0c369336dc206b9d0b6433ea7e174d3b6d5060014ef5 3 | size 52710 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:324af4ca362d9791da05e68b669edd581eb4257be2ed9bb0b5ca4f01370e2f8f 3 | size 71721 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_new_capacity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bcea617c21de1afe09697bc42da46c54c2effa495403b703731d29fce11ff01 3 | size 506 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/initial_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25b479a6c8edf83651e8288c2f9ae5342ebeebed7607f3bb7336e615df6e6d40 3 | size 12274 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/input.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:249b26ce0b4587588cdbc050958ef0a16bdc49d1da1f8c67c13159ec8ef8e603 3 | size 391470 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/interestrate.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3d0872736d88e00c92ea309ddad97c2201f8fe13d58fe36903b30200c3f1bf8 3 | size 139 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/inv_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e78c8e183157ef1546232dbafa6a447c2de6a970a971509ad10380f9d57f8a70 3 | size 142780 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/kgdp.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:084c386231426e895c8f94bd0353aaad6fa9135a66d961e96f01c5566454d78d 3 | size 115 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/kpvs.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3270c2795f4ed0b629c4fd60ecc8b788953bfa1449a9924153446325e79b77ca 3 | size 114 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/lakl.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51250dd7f4920c6600f3c0d91092024890ad349ff3b8f7026febfdfd160fc83d 3 | size 229 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:628b4ac1048a416d7252316f558b221cad71ca26a4a9eb04e96bbeec3e667258 3 | size 109302 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_emission.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de883ef68c3450d89e6e4c622599a098859611418ca133b999d392ff5c3d590c 3 | size 2401682 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_output.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7e21c09d945634370b8771fdbdd9846399fee95b9d043e52af750c6d973e559 3 | size 12172514 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/land_use.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27dc5828fdf9be8c108090427f00e576b53e8c931a3dcad47d958d3ea9cb2095 3 | size 368018 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/level_cost_activity_soft_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c64233ea5eae5acda53fefe95445a87170270cdb9c20209d661d74fda3bd8f57 3 | size 67854 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/level_cost_activity_soft_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6060947de15c6a0724903bd3cf474fb7689e04df0b923b025a136c24b8eb3685 3 | size 67854 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/level_cost_new_capacity_soft_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:372883b16690ad2c088e9ae852efafd013cdb4cf1f38ff9b096acead501dc2c9 3 | size 2148 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/lotol.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26e775c4886706a81a6377a1e38bb57ea5930418d4c4c510eee435c05781a518 3 | size 107 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/output.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01ef8260969655c1c6f7a60fb14331e0dceea6be09fc2fa0a4f0fb8e607e6a1c 3 | size 510668 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/prfconst.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff712e02b5b293ffa5a0b6ae487b2def556930d6b84e7ecc918d9c8930a3c924 3 | size 1008 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/price_MESSAGE.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22392987e54545a25b883b8b0ec7a053541ffd8f4916c73402ac520adc4a3dcb 3 | size 12595 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_activity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15fe77e6ca276adcd607cfb3b5646770df00b48859a023f668b9542d4ed214d4 3 | size 1923371 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_lower.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:897244dfd94f8de508568cc7f72987c93fb8d83ce1b378009afad761b4a4c26c 3 | size 55617 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_new_capacity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:318a8a49bed85360be2e4e474f6f3cff414714ccec27ff8d5b1dd693f91311f0 3 | size 829 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_total_capacity.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06c92ca1840905512f9e889b02245b2e07b5c09c1d545bd2ddcd501513322a8a 3 | size 38485 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/relation_upper.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b529f26bc0bb2bf719676aba21e01b570c75958f94092365c84d9129ed85f8b0 3 | size 76962 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/resource_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba78bca7f63d585f900bd8f96161b3274dea4c0d8b29f0708135077b78d02280 3 | size 15147 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/resource_remaining.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:147c6a7a6450f5753a9d7e6b61d996f911cfad62c82b8620059e8ee282319bec 3 | size 6284 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/resource_volume.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09315c6372cacc385f3544869e96712d6052f5cf7c3cfc135a570f6a85cf590b 3 | size 2279 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/sets.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6669cdba9a78e36a119986916681512a9118ae0cb1e23704abb1b797412cc0e3 3 | size 49845 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/soft_activity_lo.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aee2a8a1d5204760384333dfe44ce72833952d9f8ab290abbabc8432f45e2e9e 3 | size 80615 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/soft_activity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea0a31348ac9e637ccbca81b9f2dbb6f36fc66ffc90ecefb27117698f9137f83 3 | size 81162 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/soft_new_capacity_up.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79c169d46e1d00637cda95d46d7645315f9604cdd4e24618a03ee27e37ad3ae6 3 | size 2114 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/technical_lifetime.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c31f6d0477dff433d81865cdad0bb354e6d52ea47684ff99ed0922013b3a428d 3 | size 95763 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/snapshot-1/MESSAGEix-GLOBIOM_1.1_R11_no-policy_baseline/var_cost.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7db63451497879d7903d10c933d9e4c41703d5b686c846586df6828e59cbfa98 3 | size 157102 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/ssp/SSP-Review-Phase-1.csv.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a82b38c086510e5162a5681d7bfca489c9ec0189864d8f9394255e8af72c53b8 3 | size 14612126 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/ssp/SspDb_country_data_2013-06-12.csv.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1220e19892a27928af159233f087c2abea4337b2cb73af56913612eea6a0bfc 3 | size 6013242 4 | -------------------------------------------------------------------------------- /message_ix_models/data/test/transport/MESSAGEix-Transport R12 YB 41eee_baseline.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1721a7f774603e85f2afdc84a5d2564d77b7907840aaea9919c965d39080df71 3 | size 23418171 4 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/R11/freight-activity.csv: -------------------------------------------------------------------------------- 1 | # Freight activity 2 | # 3 | # Source: placeholder; extracted from ADVANCE database 4 | # 5 | # Units: Gt km 6 | # 7 | node, value 8 | R11_AFR, 1210.1 9 | R11_CPA, 3088.8 10 | R11_EEU, 388.6 11 | R11_FSU, 810.4 12 | R11_LAM, 3100.6 13 | R11_MEA, 1210.1 14 | R11_NAM, 5148.9 15 | R11_PAO, 763.1 16 | R11_PAS, 2800.3 17 | R11_SAS, 1221.9 18 | R11_WEU, 3497.0 19 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/R11/pdt-cap-ref.csv: -------------------------------------------------------------------------------- 1 | # Passenger distance travelled per capita 2 | # 3 | # Source: placeholder; manually derived from corresponding R12 file. 4 | # 5 | # Units: km / year 6 | # 7 | node, value 8 | R11_AFR, 3410 9 | R11_CPA, 5000 10 | R11_EEU, 18495 11 | R11_FSU, 9120 12 | R11_LAM, 5759 13 | R11_MEA, 3410 14 | R11_NAM, 27896 15 | R11_PAO, 23551 16 | R11_PAS, 4795 17 | R11_SAS, 2663 18 | R11_WEU, 18495 19 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/R14/disutility.csv: -------------------------------------------------------------------------------- 1 | # Empty placeholder 2 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/R14/freight-activity.csv: -------------------------------------------------------------------------------- 1 | # Freight activity 2 | # 3 | # Source: 4 | # - Placeholder. 5 | # - Duplicated manually from the corresponding R11 file. 6 | # - Data for R11_FSU split evenly across R14_{CAS,RUS,SCS,UBM}. 7 | # 8 | # Units: Gt km 9 | # 10 | node, value 11 | R14_AFR, 1210.1 12 | R14_CAS, 202.6 13 | R14_CPA, 3088.8 14 | R14_EEU, 388.6 15 | R14_LAM, 3100.6 16 | R14_MEA, 1210.1 17 | R14_NAM, 5148.9 18 | R14_PAO, 763.1 19 | R14_PAS, 2800.3 20 | R14_RUS, 202.6 21 | R14_SAS, 1221.9 22 | R14_SCS, 202.6 23 | R14_UBM, 202.6 24 | R14_WEU, 3497.0 25 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/R14/pdt-cap-ref.csv: -------------------------------------------------------------------------------- 1 | # Passenger distance travelled per capita 2 | # 3 | # Source: placeholder; manually derived from corresponding R12 file. 4 | # 5 | # Units: km / year 6 | # 7 | node, value 8 | R14_AFR, 3410 9 | R14_CAS, 9120 10 | R14_CPA, 5000 11 | R14_EEU, 18495 12 | R14_FSU, 9120 13 | R14_LAM, 5759 14 | R14_MEA, 3410 15 | R14_NAM, 27896 16 | R14_PAO, 23551 17 | R14_PAS, 4795 18 | R14_SAS, 2663 19 | R14_SCS, 9120 20 | R14_UBM, 9120 21 | R14_WEU, 18495 22 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/act-non_ldv.csv: -------------------------------------------------------------------------------- 1 | # Fixed activity of non-LDV technologies. 2 | # 3 | # Units: dimensionless 4 | # 5 | node, technology, year, value 6 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/elasticity-f.csv: -------------------------------------------------------------------------------- 1 | # ‘Elasticity’ of freight activity with respect to GDP(PPP) 2 | # 3 | # Units: dimensionless 4 | # 5 | scenario, node, year, value 6 | SSP(2024).2, *, 2020, 1.0 7 | SSP(2024).2, *, 2110, 1.0 8 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/elasticity-p.csv: -------------------------------------------------------------------------------- 1 | # “Elasticity” of PDT-capita with respect to GDP 2 | # 3 | # Units: dimensionless 4 | # 5 | scenario, year, value 6 | SSP(2024).2, 2020, 1.0 7 | SSP(2024).2, 2110, 1.0 8 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/input-share.csv: -------------------------------------------------------------------------------- 1 | # Share of input of LDV technologies from each commodity 2 | # 3 | # Units: dimensionless 4 | # 5 | technology, commodity, year, value 6 | PHEV_ptrp, electr, *, 0.4 7 | PHEV_ptrp, lightoil, *, 0.6 8 | # NB the following lines are needed for a balanced output 9 | # from broadcast_wildcard() 10 | *, electr, *, 1.0 11 | *, lightoil, *, 1.0 12 | *, *, *, 1.0 13 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/ldv-age.csv: -------------------------------------------------------------------------------- 1 | # Mean age of LDVs as of the model base period 2 | # 3 | # Source: placeholder 4 | # 5 | # Unit: years 6 | # 7 | technology, year, value 8 | ELC_100, 2020, 12 9 | HFC_ptrp, 2020, 12 10 | IAHe_ptrp, 2020, 12 11 | IAHm_ptrp, 2020, 12 12 | ICAe_ffv, 2020, 12 13 | ICAm_ptrp, 2020, 12 14 | ICE_conv, 2020, 12 15 | ICE_L_ptrp, 2020, 12 16 | ICE_nga, 2020, 12 17 | ICH_chyb, 2020, 12 18 | IGH_ghyb, 2020, 12 19 | PHEV_ptrp, 2020, 12 20 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/ldv-input-adj.csv: -------------------------------------------------------------------------------- 1 | # Calibration factor for LDV fuel economy 2 | # 3 | # Units: dimensionless 4 | # 5 | scenario, value 6 | xx, 1.0 7 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/ldv-t-share.csv: -------------------------------------------------------------------------------- 1 | # Share of LDV technologies 2 | # 3 | # Source: placeholder values for development/debugging 4 | # 5 | # - Values must sum to 1. 6 | # - Technology codes annotated "historical-only: True" (e.g. ICE_L_ptrp) must be 7 | # omitted or have zero values. If not, incompatible/infeasible constraint 8 | # values are created. 9 | # 10 | # Units: dimensionless 11 | # 12 | technology, value 13 | ELC_100, 0.01 14 | HFC_ptrp, 0.01 15 | IAHe_ptrp, 0.01 16 | IAHm_ptrp, 0.01 17 | ICAe_ffv, 0.01 18 | ICAm_ptrp, 0.01 19 | ICE_conv, 0.90 20 | ICE_nga, 0.01 21 | ICH_chyb, 0.01 22 | IGH_ghyb, 0.01 23 | PHEV_ptrp, 0.01 24 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/lifetime-ldv.csv: -------------------------------------------------------------------------------- 1 | # Technical lifetime (maximum age) of LDVs 2 | # 3 | # Units: year 4 | # 5 | scenario, node_loc, technology, year_vtg, value 6 | *, *, *, 1960, 15 7 | *, *, *, 2110, 15 8 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/load-factor-nonldv.csv: -------------------------------------------------------------------------------- 1 | # Load factor (occupancy) of non-LDV vehicles 2 | # 3 | # Source: transcribed from MESSAGE (V) Transport .chn files 4 | # Original source unknown. 5 | # 6 | # Unit: passenger / vehicle 7 | # 8 | technology, value 9 | # Urban public rail transport (agg. of metro, trams, regional trains, etc.) 10 | # rail_pub,80 11 | 2W,1.0 12 | RAIL,200 13 | AIR,115 14 | BUS,20.9 15 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/ma3t/attitude.csv: -------------------------------------------------------------------------------- 1 | # Share of population by technology propensity/attitude 2 | # 3 | # Units: dimensionless 4 | # 5 | # DLM: from sheet ‘Segmentation’ of the MA3T model. 6 | # PNK: values moved from LDV data workbook, sheet MESSAGE_LDV_nam. 7 | # 8 | attitude,value 9 | EA,0.08 10 | EM,0.38 11 | LM,0.54 12 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/migrate/set.yaml: -------------------------------------------------------------------------------- 1 | commodity: 2 | - Dummy_{cg} 3 | - Dummy_fc 4 | - Dummy_Hkm 5 | - Dummy_Tkm 6 | - Dummy_util 7 | - Dummy_Vkm 8 | - DummyGas_ref 9 | - DummyH2_stor 10 | - DummyHybrid 11 | - DummyOil_ref 12 | - dummyX 13 | - trp_2wh 14 | - trp_avi 15 | - trp_fre 16 | - trp_pas 17 | - trp_rai 18 | - trp_urb 19 | 20 | node: 21 | - afr 22 | - cpa 23 | - eeu 24 | - fsu 25 | - lam 26 | - nam 27 | - mea 28 | - pao 29 | - pas 30 | - sas 31 | - weu 32 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/mode-share/debug.csv: -------------------------------------------------------------------------------- 1 | # Mode shares in the model base year; flat/uniform shares for debugging 2 | # 3 | # Units: dimensionless 4 | # 5 | technology, value 6 | 2W, 0.2 7 | BUS, 0.2 8 | LDV, 0.2 9 | RAIL, 0.2 10 | AIR, 0.2 11 | -------------------------------------------------------------------------------- /message_ix_models/data/transport/mode-share/default.csv: -------------------------------------------------------------------------------- 1 | # Mode shares in the model base year; flat/uniform shares for debugging 2 | # 3 | # Units: dimensionless 4 | # 5 | technology, value 6 | 2W, 0.2 7 | BUS, 0.2 8 | LDV, 0.2 9 | RAIL, 0.2 10 | AIR, 0.2 11 | -------------------------------------------------------------------------------- /message_ix_models/data/ue-shares/trp_gas0.05.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20766b4dda378f9bc44879ff70b4f5fa9c4d6e0c0e467e157b0e8b00812f44f3 3 | size 17460 4 | -------------------------------------------------------------------------------- /message_ix_models/data/ue-shares/trp_gas0.05_elec0.9.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44fd66b543a316fb3a837d4a70d64262a416074fd230dc85e5ecf4b62614f516 3 | size 17546 4 | -------------------------------------------------------------------------------- /message_ix_models/data/unit.yaml: -------------------------------------------------------------------------------- 1 | "": 2 | name: dimensionless 3 | -------------------------------------------------------------------------------- /message_ix_models/data/water/.gitattributes: -------------------------------------------------------------------------------- 1 | *.shp filter=lfs diff=lfs merge=lfs -text 2 | *.Rda filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /message_ix_models/data/water/config.yaml: -------------------------------------------------------------------------------- 1 | # Configuration for MESSAGEix-Nexus 2 | 3 | # Configuration file for the model 4 | # Added data sources here. 5 | 6 | 7 | # CSV files containing data for input calculations and assumptions 8 | data files: 9 | - cooltech_cost_and_shares_ssp_msg14 10 | - tech_water_performance_ssp_msg -------------------------------------------------------------------------------- /message_ix_models/data/water/demands/.gitattributes: -------------------------------------------------------------------------------- 1 | cdlinks_globiom_irrigation.csv filter=lfs diff=lfs merge=lfs -text 2 | country_region_map_key.csv filter=lfs diff=lfs merge=lfs -text 3 | watergap_historical_water_use_mf.csv filter=lfs diff=lfs merge=lfs -text 4 | watergap_historical_water_use_mw.csv filter=lfs diff=lfs merge=lfs -text 5 | -------------------------------------------------------------------------------- /message_ix_models/data/water/demands/country_region_map_key.csv: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a13117f17a4f064cf55d00b444182f95711cc29a4191bf7b74bc339c2b93891 3 | size 6245 4 | -------------------------------------------------------------------------------- /message_ix_models/data/water/demands/harmonized/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/data/water/demands/harmonized/Thumbs.db -------------------------------------------------------------------------------- /message_ix_models/data/water/infrastructure/desalination.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aec9d3887ed25c98bf2501d981c60700a32c9c1cb088da3fe83d3c36a91b58b8 3 | size 14799 4 | -------------------------------------------------------------------------------- /message_ix_models/data/water/infrastructure/extraction_techs.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16dca1845a629ef52b9ce7cc67a7b8c1ee30f65d25cc070b49878017de4f4ef2 3 | size 13915 4 | -------------------------------------------------------------------------------- /message_ix_models/data/water/infrastructure/water_distribution.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15099fae6f1881705ca82e344cd7d2568d597b61db1169e515fcf5c886487996 3 | size 15469 4 | -------------------------------------------------------------------------------- /message_ix_models/data/water/ppl_cooling_tech/power_plant_cooling_impact_MESSAGE.xlsx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6141f81b8f4d91c631bdc8a6bd22457f07a90bb4589653022eadb33e7ffc3f53 3 | size 24537 4 | -------------------------------------------------------------------------------- /message_ix_models/data/water/water.tar.xz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d06d45ae852adb9e4ad7a0d05da506fe3efc98aecdd5efbaaf21ad21da30b519 3 | size 4047000 4 | -------------------------------------------------------------------------------- /message_ix_models/model/__init__.py: -------------------------------------------------------------------------------- 1 | """Code for constructing models/scenarios in the MESSAGEix-GLOBIOM model family.""" 2 | 3 | from .config import Config 4 | 5 | __all__ = ["Config"] 6 | -------------------------------------------------------------------------------- /message_ix_models/model/cli.py: -------------------------------------------------------------------------------- 1 | import click 2 | 3 | from message_ix_models.util.click import common_params 4 | 5 | 6 | @click.group("res") 7 | @click.pass_obj 8 | def cli(context): 9 | """MESSAGEix-GLOBIOM reference energy system (RES).""" 10 | 11 | 12 | @cli.command("create-bare") 13 | @common_params("nodes") 14 | @click.pass_obj 15 | def create_bare(context): 16 | """Create the RES from scratch.""" 17 | from .bare import create_res 18 | 19 | create_res(context) 20 | -------------------------------------------------------------------------------- /message_ix_models/model/data.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | log = logging.getLogger(__name__) 4 | 5 | 6 | def get_data(scenario, context, spec, **options): 7 | """Data for the bare RES.""" 8 | if context.model.res_with_dummies: 9 | log.warning("get_dummy_data() not migrated") 10 | # return get_dummy_data(scenario, spec) 11 | else: 12 | return dict() 13 | -------------------------------------------------------------------------------- /message_ix_models/model/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/model/material/__init__.py -------------------------------------------------------------------------------- /message_ix_models/model/transport/__init__.py: -------------------------------------------------------------------------------- 1 | """MESSAGEix-Transport.""" 2 | 3 | from .config import Config, DataSourceConfig 4 | 5 | __all__ = [ 6 | "Config", 7 | "DataSourceConfig", 8 | ] 9 | -------------------------------------------------------------------------------- /message_ix_models/model/water/__init__.py: -------------------------------------------------------------------------------- 1 | from .data import demands, water_supply 2 | from .utils import read_config 3 | 4 | __all__ = ["demands", "read_config", "water_supply"] 5 | -------------------------------------------------------------------------------- /message_ix_models/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/advance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/advance/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/circeular/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/circeular/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/circeular/cli.py: -------------------------------------------------------------------------------- 1 | import click 2 | 3 | 4 | @click.group("circeular") 5 | def cli(): 6 | """CircEUlar project. 7 | 8 | https://docs.messageix.org/projects/models/en/latest/project/circeular.html 9 | """ 10 | -------------------------------------------------------------------------------- /message_ix_models/project/edits/cli.py: -------------------------------------------------------------------------------- 1 | import click 2 | 3 | 4 | @click.group("edits") 5 | def cli(): 6 | """EDITS project. 7 | 8 | https://docs.messageix.org/projects/models/en/latest/project/edits.html 9 | """ 10 | 11 | 12 | @cli.command("_debug") 13 | @click.pass_obj 14 | def debug(context, **kwargs): # pragma: no cover 15 | """Development/debugging code.""" 16 | from . import gen_demand, pasta_native_to_sdmx # noqa: F401 17 | 18 | # commented: Only needs to occur once, then cached 19 | # pasta_native_to_sdmx() 20 | gen_demand() 21 | -------------------------------------------------------------------------------- /message_ix_models/project/engage/__init__.py: -------------------------------------------------------------------------------- 1 | """ENGAGE project.""" 2 | -------------------------------------------------------------------------------- /message_ix_models/project/gea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/gea/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/navigate/wp2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/navigate/wp2/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/shape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/shape/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/ssp/script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/ssp/script/__init__.py -------------------------------------------------------------------------------- /message_ix_models/project/ssp/script/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/project/ssp/script/util/__init__.py -------------------------------------------------------------------------------- /message_ix_models/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/py.typed -------------------------------------------------------------------------------- /message_ix_models/report/computations.py: -------------------------------------------------------------------------------- 1 | from . import operator 2 | 3 | _warned = False 4 | 5 | 6 | def __getattr__(name): 7 | global _warned 8 | if not _warned: 9 | from warnings import warn 10 | 11 | warn( 12 | f"Importing from {__name__} is deprecated and will be removed on or after " 13 | "2024-02-04; use message_ix_models.report.operator instead.", 14 | DeprecationWarning, 15 | 2, 16 | ) 17 | _warned = True 18 | 19 | return getattr(operator, name) 20 | -------------------------------------------------------------------------------- /message_ix_models/report/key.py: -------------------------------------------------------------------------------- 1 | """Keys for setting up reporting tasks.""" 2 | 3 | from genno import Key 4 | 5 | GDP = Key("GDP", "ny") 6 | 7 | # NB genno ≤ 1.27.1 is sensitive to the order 8 | PRICE_COMMODITY = Key("PRICE_COMMODITY", "nclyh") 9 | -------------------------------------------------------------------------------- /message_ix_models/report/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/report/legacy/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test suite for :mod:`message_ix_models`.""" 2 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests of :mod:`message_ix_models.model` and submodules.""" 2 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/model/material/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/model/test_cli.py: -------------------------------------------------------------------------------- 1 | def test_create_bare(mix_models_cli): 2 | """The ``res create-bare`` CLI command can be invoked.""" 3 | # "--nodes" is not a required option, but we give it anyway to test the CLI code 4 | # that handles it 5 | mix_models_cli.assert_exit_0(["res", "create-bare", "--nodes=R11"]) 6 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/test_snapshot.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import sys 3 | 4 | import pytest 5 | 6 | from message_ix_models.testing import GHA 7 | 8 | log = logging.getLogger(__name__) 9 | 10 | 11 | @pytest.mark.skipif( 12 | condition=GHA and sys.platform in ("darwin", "win32"), reason="Slow." 13 | ) 14 | @pytest.mark.snapshot 15 | def test_load(test_context, loaded_snapshot): 16 | assert loaded_snapshot.model == "MESSAGEix-GLOBIOM_1.1_R11_no-policy" 17 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/transport/__init__.py: -------------------------------------------------------------------------------- 1 | from importlib.metadata import version 2 | 3 | import pytest 4 | 5 | if version("genno") < "1.28.0": 6 | pytest.skip( 7 | reason="""message_ix/ixmp v3.7.0 are tested with genno < 1.25, but these tests 8 | need ≥ 1.28.0: 9 | 10 | - .model.transport.key imports genno.Keys 11 | - .tests.model.transport.test_base imports genno.operator.random_qty()""", 12 | allow_module_level=True, 13 | ) 14 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/transport/test_callback.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | 3 | from message_ix_models.model.transport.callback import main 4 | 5 | 6 | @pytest.mark.xfail(reason="Don't actually attempt to run the code.") 7 | def test_callback(): 8 | main() 9 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/transport/test_migrate.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | 3 | from message_ix_models.model.transport.migrate import import_all 4 | 5 | 6 | @pytest.mark.xfail(reason="Don't actually attempt to run the code.") 7 | def test_null(): 8 | import_all() 9 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/water/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests of :mod:`message_ix_models.model.water`.""" 2 | -------------------------------------------------------------------------------- /message_ix_models/tests/model/water/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/model/water/data/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/project/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/project/circeular/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/project/circeular/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/project/navigate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/project/navigate/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/project/ssp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/project/ssp/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/report/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/tools/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/tools/costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/tools/costs/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/tools/iea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tests/tools/iea/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests of submodules of :mod:`message_ix_models.util`.""" 2 | -------------------------------------------------------------------------------- /message_ix_models/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/tools/__init__.py -------------------------------------------------------------------------------- /message_ix_models/tools/costs/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import Config 2 | from .projections import create_cost_projections 3 | 4 | __all__ = [ 5 | "Config", 6 | "create_cost_projections", 7 | ] 8 | -------------------------------------------------------------------------------- /message_ix_models/tools/iea/__init__.py: -------------------------------------------------------------------------------- 1 | """Tools for working with IEA data and structures.""" 2 | -------------------------------------------------------------------------------- /message_ix_models/util/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiasa/message-ix-models/6380c641a70371600d7907f3bdff8dc3735df194/message_ix_models/util/compat/__init__.py -------------------------------------------------------------------------------- /message_ix_models/util/compat/message_data/get_nodes.py: -------------------------------------------------------------------------------- 1 | def get_nodes(scen): 2 | """Retrieve all the nodes defined in a scenario, excluding 'WORLD'. 3 | 4 | Parameters 5 | ---------- 6 | scen : :class:`message_ix.Scenario` 7 | Scenario from which nodes should be retrieved. 8 | 9 | Returns 10 | ------- 11 | list of str 12 | Regions in the scenario, excluding 'WORLD'. 13 | """ 14 | return [r for r in scen.set("node").tolist() if r not in ["World"]] 15 | -------------------------------------------------------------------------------- /message_ix_models/util/graphviz.py: -------------------------------------------------------------------------------- 1 | from subprocess import DEVNULL, check_call 2 | 3 | try: 4 | from graphviz import DOT_BINARY 5 | except ImportError: 6 | DOT_BINARY = "dot" 7 | 8 | try: 9 | check_call([DOT_BINARY, "-V"], stdout=DEVNULL, stderr=DEVNULL) 10 | except FileNotFoundError: 11 | #: :any:`.True` if the :program:`graphviz` programs are installed, as required by 12 | #: :mod:`.graphviz` and :meth:`genno.Computer.visualize`. 13 | HAS_GRAPHVIZ = False 14 | else: 15 | HAS_GRAPHVIZ = True 16 | -------------------------------------------------------------------------------- /message_ix_models/util/ixmp.py: -------------------------------------------------------------------------------- 1 | """Utilities for working with :mod:`.ixmp`. 2 | 3 | Code here should be either: 4 | 5 | 1. For backwards compatibility to earlier versions of ixmp supported according to the 6 | :ref:`policy-upstream-versions`, or 7 | 2. Temporary, pending migration upstream to ixmp itself. 8 | """ 9 | 10 | # Currently nothing 11 | --------------------------------------------------------------------------------