Description of Tracer Rundeck Parameters

Many settings for Tracer-related code can be set from parameters in the rundeck. Below is a list of some of these parameters and their settings and sometimes conflicts. Note however that an exhaustive desciption of all combinations and potential conflicts is probably not possible. So it is always a good idea to check from the model output whether what you think should be happening is indeed happening (or seek help from GISS). Below the list is a section describing how to use rundeck parameters to perturb tracer emissions by sector and region.

General or Multi-group Tracer Parameters

Mostly Shindell Chemistry-Related Tracer Parameters

Mostly Aerosol Tracer Parameters

Mostly Dust Tracer Parameters

 Other ones to potentially add above:
prather_limits  (1: to avoid some negative tracers in sub-gridscale)
diag_rad        (1: additional radiation diagnostics)
diag_wetdep     (1: additional wet deposition diagnostics)
itime_tr0 
to_per_mil
supsatfac
water_tracer_ic
TESObsDiagnosticsOn
TESObsMinDegFr
TESObsDataDir
TESCatDiagnosticsOn
TESCatMinQuality
TESCatUseColloc
TESCatVariableHDOAKOnly
checktracer_on
base_isopreneX
AMP_DIAG_FC
AMP_RAD_KEY
FreeFe
frHemaInQuarAggr
pureByTotalHematite
be7_src_param

Using Rundeck Parameters to Perturb Tracer Emissions by Sector and Region

For tracers that have emissions files listed in the standard way of tracerName_01, tracerName_02, ... tracerName_NN, one can tag emission files as belonging to an emission sector. Then, one can define rectangular regions (including global) and how each sector should be linearly scaled over each region. All this can be done from rundeck parameters, with no code recompilation. It is easiest demonstrated by an example: Say a rundeck has the following files listed:

CO_01=/path/to/file/CO_biomassBurning.dat
CO_02=/path/to/file/fossilFuelCO.dat
CO_03=/path/to/file/OceanCO_2.dat
CH4_01=/path/to/file/wetlandsCH4.dat
CH4_02=/path/to/file/CH4_biomassBurning.dat
CH4_03=/path/to/file/termintes.dat

Then, let's say we want to cut European CO emissions to 50% and then increase global (multi-species) biomass burning emissions by 20%. One would set that run up with the following parameters:

! First, tag the emissions files as belonging to sectors, by defining parameters based on their file numbers:
CO_01_sect='CO BBURN'
CO_02_sect='CO'
CO_03_sect='CO'
CH4_02_sect='BBURN'
!
! Next, make a table of regions by defining their North/South/East/West edges in degrees.
! Careful: they are allowed to oberlap. Note that 3 extra regions are defined here, not
! strictly needed in this example:
!                                              
REGIONS_ARE='global S_Asia E_Asia Europe N_America'
REG_S=        -90.,    5.,   15.,   25.,      15.
REG_N=         90.,   35.,   50.,   65.,      55.
REG_W=       -180.,   50.,   95.,  -10.,    -125.
REG_E=        180.,   95.,  160.,   50.,     -60.
!
! Now, define an order for the sectors, giving them the same names you used to tag source files:
SECTORS_ARE='CO BBURN'
! 
! And, in that order, define the scaling factors to use per sector, per region:
!        global S_Asia E_Asia Europe N_America
SECT_01= 1.000, 1.000, 1.000, 0.500,     1.000 ! this is CO sector
SECT_02= 1.200, 1.000, 1.000, 1.000,     1.000 ! this is the BBURN sector
! 
! Remember to check your model output diagnostics, to make sure everything worked as planned.