-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move global lists into testing suite
- Loading branch information
1 parent
b705d37
commit 47d986c
Showing
7 changed files
with
292 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(get_scenarios) | ||
export(get_titles) | ||
export(get_units) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
|
||
#' Global scenario list with Hector input file | ||
#' @export | ||
get_scenarios <- function() { | ||
|
||
scenarios <- list("SSP 1-1.9"="input/hector_ssp119.ini", | ||
"SSP 1-2.6"="input/hector_ssp126.ini", | ||
"SSP 2-4.5"="input/hector_ssp245.ini", | ||
"SSP 3-7.0"="input/hector_ssp370.ini", | ||
"SSP 4-3.4"="input/hector_ssp434.ini", | ||
"SSP 4-6.0"="input/hector_ssp460.ini", | ||
"SSP 5-3.4OS"="input/hector_ssp534-over.ini", | ||
"SSP 5-8.5"="input/hector_ssp585.ini") | ||
|
||
return(scenarios) | ||
} | ||
|
||
#' Global list of variable titles | ||
#' @export | ||
get_titles <- function() { | ||
|
||
title <- list("CO2_concentration" = "Atmospheric CO2", | ||
"atmos_co2" = "Atmospheric Carbon Pool", | ||
"ffi_emissions" = "FFI Emissions", | ||
"luc_emissions" = "LUC Emissions", | ||
"N2O_concentration" = "N2O Concentration", | ||
"BC_emissions" = "Black Carbon Emissions", | ||
"OC_emissions" = "Organic Carbon Emissions", | ||
"RF_tot" = "RF - Total", | ||
"RF_albedo" = "RF - Albedo", | ||
"RF_CO2" = "RF - CO2", | ||
"RF_N2O" = "RF - N2O", | ||
"RF_BC" = "RF - Black Carbon", | ||
"RF_OC" = "RF - Organic Carbon", | ||
"RF_SO2" = "RF - Total SO2", | ||
"RF_VOL" = "RF - Volcanic Activity", | ||
"RF_CH4" = "RF - CH4", | ||
"RF_CF4" = "CF4 Forcing", | ||
"RF_C2F6" = "C2F6 Forcing", | ||
"RF_HFC23" = "HFC-23 Forcing", | ||
"RF_HFC4310" = "HFC-4310 Forcing", | ||
"RF_HFC125" = "HFC-125 Forcing", | ||
"RF_HFC143a" = "HFC-143a Forcing", | ||
"RF_HFC245fa" = "HFC-245fa Forcing", | ||
"RF_SF6" = "SF6 Forcing", | ||
"RF_CFC11" = "CFC-11 Forcing", | ||
"RF_CFC12" = "CFC-12 Forcing", | ||
"RF_CFC113" = "CFC-113 Forcing", | ||
"RF_CFC114" = "CFC-114 Forcing", | ||
"RF_CFC115" = "CFC-115 Forcing", | ||
"RF_CCl4" = "CCl4 Forcing", | ||
"RF_CH3CCl3" = "CH3CCl3 Forcing", | ||
"RF_halon1211" = "Halon-1211 Forcing", | ||
"RF_halon1301" = "Halon-1301 Forcing", | ||
"RF_halon2402" = "Halon-2402 Forcing", | ||
"RF_CH3Cl" = "CH3Cl Forcing", | ||
"RF_CH3Br" = "CH3Br Forcing", | ||
"CH4_concentration" = "Atmospheric CH4", | ||
"CH4_emissions" = "CH4 Emissions", | ||
"SO2_emissions" = "Anthropogenic SO2", | ||
"SV" = "Volcanic SO2", | ||
"global_tas" = "Global Mean Temperature", | ||
"gmst" = "Equilibrium Global Temperature", | ||
"sst" = "Ocean Surface Temperature", | ||
"ocean_tas" = "Ocean Air Temperature", | ||
"heatflux_mixed" = "Heat Flux - Mixed Layer Ocean", | ||
"heatflux_interior" = "Heat Flux - Interior Layer Ocean", | ||
"heatflux" = "Total Heat Flux - Ocean") | ||
|
||
return(title) | ||
} | ||
|
||
#' Global list of variable units | ||
#' @export | ||
get_units <- function() { | ||
|
||
units <- list("CO2_concentration" = "DegC", | ||
"atmos_co2" = "Pg C", | ||
"ffi_emissions" = "Pg C/yr", | ||
"luc_emissions" = "Pg C/yr", | ||
"N2O_concentration" = "ppbv N2O", | ||
"BC_emissions" = "Tg", | ||
"OC_emissions" = "Tg", | ||
"RF_tot" = "RF - Total", | ||
"RF_albedo" = "W/m2", | ||
"RF_CO2" = "W/m2", | ||
"RF_N2O" = "W/m2", | ||
"RF_BC" = "W/m2", | ||
"RF_OC" = "W/m2", | ||
"RF_SO2" = "W/m2", | ||
"RF_VOL" = "W/m2", | ||
"RF_CH4" = "W/m2", | ||
"RF_CF4" = "W/m2", | ||
"RF_C2F6" = "W/m2", | ||
"RF_HFC23" = "W/m2", | ||
"RF_HFC4310" = "W/m2", | ||
"RF_HFC125" = "W/m2", | ||
"RF_HFC143a" = "W/m2", | ||
"RF_HFC245fa" = "W/m2", | ||
"RF_SF6" = "W/m2", | ||
"RF_CFC11" = "W/m2", | ||
"RF_CFC12" = "W/m2", | ||
"RF_CFC113" = "W/m2", | ||
"RF_CFC114" = "W/m2", | ||
"RF_CFC115" = "W/m2", | ||
"RF_CCl4" = "W/m2", | ||
"RF_CH3CCl3" = "W/m2", | ||
"RF_halon1211" = "W/m2", | ||
"RF_halon1301" = "W/m2", | ||
"RF_halon2402" = "W/m2", | ||
"RF_CH3Cl" = "W/m2", | ||
"RF_CH3Br" = "W/m2", | ||
"CH4_concentration" = "ppbv CH4", | ||
"CH4_emissions" = "Tg CH4", | ||
"SO2_emissions" = "Gg SO2", | ||
"SV" = "W/m2", | ||
"global_tas" = "DegC", | ||
"gmst" = "DegC", | ||
"sst" = "DegC", | ||
"ocean_tas" = "DegC", | ||
"heatflux_mixed" = "W/m2", | ||
"heatflux_interior" = "W/m2", | ||
"heatflux" = "W/m2") | ||
|
||
return(units) | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.