diff --git a/e3sm_diags/derivations/acme.py b/e3sm_diags/derivations/acme.py index 52e602e64..5e58c0ba1 100644 --- a/e3sm_diags/derivations/acme.py +++ b/e3sm_diags/derivations/acme.py @@ -374,6 +374,13 @@ def restom(fsnt, flnt): return var +def restom3(swdn, swup, lwup): + """TOM(top of model) Radiative flux""" + var = swdn - swup - lwup + var.long_name = "TOM(top of model) Radiative flux" + return var + + def restoa(fsnt, flnt): """TOA(top of atmosphere) Radiative flux""" var = fsnt - flnt @@ -619,6 +626,10 @@ def cosp_histogram_standardize(cld: "FileVariable"): (("pr",), lambda pr: qflxconvert_units(rename(pr))), (("PRECC", "PRECL"), lambda precc, precl: prect(precc, precl)), (("sat_gauge_precip",), rename), + ( + ("PrecipLiqSurfMassFlux", "PrecipIceSurfMassFlux"), + lambda precl, preci: prect(precl, preci), + ), # EAMxx ] ), "PRECST": OrderedDict( @@ -654,9 +665,18 @@ def cosp_histogram_standardize(cld: "FileVariable"): ("prw",), lambda prw: convert_units(rename(prw), target_units="kg/m2"), ), + ( + ("VapWaterPath",), # EAMxx + lambda prw: convert_units(rename(prw), target_units="kg/m2"), + ), + ] + ), + "SOLIN": OrderedDict( + [ + (("rsdt",), rename), + (("SW_flux_dn_at_model_top",), rename), # EAMxx ] ), - "SOLIN": OrderedDict([(("rsdt",), rename)]), "ALBEDO": OrderedDict( [ (("ALBEDO",), rename), @@ -705,6 +725,10 @@ def cosp_histogram_standardize(cld: "FileVariable"): lambda fsntoa, fsntoac: swcf(fsntoa, fsntoac), ), (("rsut", "rsutcs"), lambda rsutcs, rsut: swcf(rsut, rsutcs)), + ( + ("SW_flux_up_at_model_top", "SW_clrsky_flux_up_at_model_top"), + lambda rsutcs, rsut: swcf(rsut, rsutcs), + ), # EAMxx ] ), "SWCFSRF": OrderedDict( @@ -913,15 +937,29 @@ def cosp_histogram_standardize(cld: "FileVariable"): ), ] ), - "FLUT": OrderedDict([(("rlut",), rename)]), + "FLUT": OrderedDict( + [ + (("rlut",), rename), + (("LW_flux_up_at_model_top",), rename), # EAMxx + ] + ), "FSUTOA": OrderedDict([(("rsut",), rename)]), "FSUTOAC": OrderedDict([(("rsutcs",), rename)]), "FLNT": OrderedDict([(("FLNT",), rename)]), - "FLUTC": OrderedDict([(("rlutcs",), rename)]), + "FLUTC": OrderedDict( + [ + (("rlutcs",), rename), + (("LW_clrsky_flux_up_at_model_top",), rename), # EAMxx + ] + ), "FSNTOA": OrderedDict( [ (("FSNTOA",), rename), (("rsdt", "rsut"), lambda rsdt, rsut: rst(rsdt, rsut)), + ( + ("SW_flux_dn_at_model_top", "SW_flux_up_at_model_top"), + lambda rsdt, rsut: rst(rsdt, rsut), + ), # EAMxx ] ), "FSNTOAC": OrderedDict( @@ -929,6 +967,10 @@ def cosp_histogram_standardize(cld: "FileVariable"): # Note: CERES_EBAF data in amwg obs sets misspells "units" as "lunits" (("FSNTOAC",), rename), (("rsdt", "rsutcs"), lambda rsdt, rsutcs: rstcs(rsdt, rsutcs)), + ( + ("SW_flux_dn_at_model_top", "SW_clrsky_flux_up_at_model_top"), + lambda rsdt, rsutcs: rstcs(rsdt, rsutcs), + ), # EAMxx ] ), "RESTOM": OrderedDict( @@ -936,6 +978,14 @@ def cosp_histogram_standardize(cld: "FileVariable"): (("RESTOA",), rename), (("toa_net_all_mon",), rename), (("FSNT", "FLNT"), lambda fsnt, flnt: restom(fsnt, flnt)), + ( + ( + "SW_flux_dn_at_model_top", + "SW_flux_up_at_model_top", + "LW_flux_up_at_model_top", + ), + lambda swdn, swup, lwup: restom3(swdn, swup, lwup), + ), # EAMxx (("rtmt",), rename), ] ), @@ -944,6 +994,14 @@ def cosp_histogram_standardize(cld: "FileVariable"): (("RESTOM",), rename), (("toa_net_all_mon",), rename), (("FSNT", "FLNT"), lambda fsnt, flnt: restoa(fsnt, flnt)), + ( + ( + "SW_flux_dn_at_model_top", + "SW_flux_up_at_model_top", + "LW_flux_up_at_model_top", + ), + lambda swdn, swup, lwup: restom3(swdn, swup, lwup), + ), # EAMxx (("rtmt",), rename), ] ), @@ -983,6 +1041,10 @@ def cosp_histogram_standardize(cld: "FileVariable"): [ (("PSL",), lambda psl: convert_units(psl, target_units="mbar")), (("psl",), lambda psl: convert_units(psl, target_units="mbar")), + ( + ("SeaLevelPressure",), + lambda psl: convert_units(psl, target_units="mbar"), + ), # EAMxx ] ), "T": OrderedDict( @@ -1011,6 +1073,7 @@ def cosp_histogram_standardize(cld: "FileVariable"): lambda t: convert_units(t, target_units="DegC"), ), (("tas",), lambda t: convert_units(t, target_units="DegC")), + (("T_2m",), lambda t: convert_units(t, target_units="DegC")), # EAMxx ] ), # Surface water flux: kg/((m^2)*s) @@ -1018,6 +1081,7 @@ def cosp_histogram_standardize(cld: "FileVariable"): [ (("evspsbl",), rename), (("QFLX",), lambda qflx: qflxconvert_units(qflx)), + (("surf_evap",), lambda qflx: qflxconvert_units(qflx)), # EAMxx ] ), # Surface latent heat flux: W/(m^2) @@ -1025,9 +1089,15 @@ def cosp_histogram_standardize(cld: "FileVariable"): [ (("hfls",), rename), (("QFLX",), lambda qflx: qflx_convert_to_lhflx_approxi(qflx)), + (("surface_upward_latent_heat_flux",), rename), # EAMxx "s^-3 kg" + ] + ), + "SHFLX": OrderedDict( + [ + (("hfss",), rename), + (("surf_sens_flux",), rename), # EAMxx ] ), - "SHFLX": OrderedDict([(("hfss",), rename)]), "TGCLDLWP_OCN": OrderedDict( [ ( @@ -1454,7 +1524,12 @@ def cosp_histogram_standardize(cld: "FileVariable"): ), # Surface temperature: Degrees C # (Temperature of the surface (land/water) itself, not the air) - "TS": OrderedDict([(("ts",), rename)]), + "TS": OrderedDict( + [ + (("ts",), rename), + (("surf_radiative_T",), rename), # EAMxx + ] + ), "PS": OrderedDict([(("ps",), rename)]), "U10": OrderedDict([(("sfcWind",), rename), (("si10",), rename)]), "QREFHT": OrderedDict( @@ -1471,8 +1546,18 @@ def cosp_histogram_standardize(cld: "FileVariable"): ] ), "PRECC": OrderedDict([(("prc",), rename)]), - "TAUX": OrderedDict([(("tauu",), lambda tauu: -tauu)]), - "TAUY": OrderedDict([(("tauv",), lambda tauv: -tauv)]), + "TAUX": OrderedDict( + [ + (("tauu",), lambda tauu: -tauu), + (("surf_mom_flux_U",), lambda tauu: -tauu), # EAMxx + ] + ), + "TAUY": OrderedDict( + [ + (("tauv",), lambda tauv: -tauv), + (("surf_mom_flux_V",), lambda tauv: -tauv), # EAMxx + ] + ), "CLDICE": OrderedDict([(("cli",), rename)]), "TGCLDIWP": OrderedDict([(("clivi",), rename)]), "CLDLIQ": OrderedDict([(("clw",), rename)]), diff --git a/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_model.cfg b/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_model.cfg index da879ce83..9edf9cec9 100644 --- a/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_model.cfg @@ -1,4 +1,4 @@ [#] sets = ["aerosol_budget"] variables = ["bc, dst, mom, ncl, pom, so4, soa"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff --git a/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_obs.cfg index da879ce83..9edf9cec9 100644 --- a/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/aerosol_budget_model_vs_obs.cfg @@ -1,4 +1,4 @@ [#] sets = ["aerosol_budget"] variables = ["bc, dst, mom, ncl, pom, so4, soa"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff --git a/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_model.cfg b/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_model.cfg index 0813fd4b7..fdf92d8e9 100644 --- a/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_model.cfg @@ -4,7 +4,7 @@ case_id = "model_vs_model" variables = ["COSP_HISTOGRAM_MISR"] contour_levels = [0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5] diff_levels = [-3.0,-2.5,-2.0,-1.5,-1.0,-0.5,0,0.5,1.0,1.5,2.0,2.5,3.0] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["cosp_histogram"] @@ -12,7 +12,7 @@ case_id = "model_vs_model" variables = ["COSP_HISTOGRAM_MODIS"] contour_levels = [0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5] diff_levels = [-3.0,-2.5,-2.0,-1.5,-1.0,-0.5,0,0.5,1.0,1.5,2.0,2.5,3.0] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["cosp_histogram"] @@ -20,4 +20,4 @@ case_id = "model_vs_model" variables = ["COSP_HISTOGRAM_ISCCP"] contour_levels = [0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5] diff_levels = [-3.0,-2.5,-2.0,-1.5,-1.0,-0.5,0,0.5,1.0,1.5,2.0,2.5,3.0] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff --git a/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_obs.cfg index de8386fa8..a810be9c6 100644 --- a/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/cosp_histogram_model_vs_obs.cfg @@ -6,7 +6,7 @@ ref_name = "MISRCOSP" reference_name = "MISR COSP" contour_levels = [0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5] diff_levels = [-3.0,-2.5,-2.0,-1.5,-1.0,-0.5,0,0.5,1.0,1.5,2.0,2.5,3.0] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["cosp_histogram"] @@ -16,7 +16,7 @@ ref_name = "MODISCOSP" reference_name = "MODIS COSP" contour_levels = [0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5] diff_levels = [-3.0,-2.5,-2.0,-1.5,-1.0,-0.5,0,0.5,1.0,1.5,2.0,2.5,3.0] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["cosp_histogram"] @@ -26,4 +26,4 @@ ref_name = "ISCCPCOSP" reference_name = "ISCCP COSP" contour_levels = [0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5] diff_levels = [-3.0,-2.5,-2.0,-1.5,-1.0,-0.5,0,0.5,1.0,1.5,2.0,2.5,3.0] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff --git a/e3sm_diags/driver/default_diags/lat_lon_model_vs_model.cfg b/e3sm_diags/driver/default_diags/lat_lon_model_vs_model.cfg index d0e883b04..9e4245c97 100644 --- a/e3sm_diags/driver/default_diags/lat_lon_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/lat_lon_model_vs_model.cfg @@ -2,7 +2,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["PRECT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -15,7 +15,7 @@ diff_levels = [-2.5, -2, -1.5, -1, -0.5, -0.25, 0.25, 0.5, 1, 1.5, 2, 2.5] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["SST"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-1, 0, 1, 3, 6, 9, 12, 15, 18, 20, 22, 24, 26, 28, 29] diff_levels = [-2.5, -2, -1.5, -1, -0.5, -0.1, 0.1, 0.5, 1, 1.5, 2.0, 2.5] regrid_method = "bilinear" @@ -25,7 +25,7 @@ regrid_method = "bilinear" sets = ["lat_lon"] case_id = "model_vs_model" variables = ["SOLIN"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-2.5, -2, -1.5, -1, -0.5, -0.25, 0.25, 0.5, 1, 1.5, 2, 2.5] @@ -34,7 +34,7 @@ diff_levels = [-2.5, -2, -1.5, -1, -0.5, -0.25, 0.25, 0.5, 1, 1.5, 2, 2.5] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["ALBEDO"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] diff_levels = [-0.13, -0.11, -0.09, -0.07, -0.05, -0.03, -0.01, 0.01, 0.03, 0.05, 0.07, 0.09, 0.11, 0.13] @@ -43,7 +43,7 @@ diff_levels = [-0.13, -0.11, -0.09, -0.07, -0.05, -0.03, -0.01, 0.01, 0.03, 0.05 sets = ["lat_lon"] case_id = "model_vs_model" variables = ["ALBEDOC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] diff_levels = [-0.13, -0.11, -0.09, -0.07, -0.05, -0.03, -0.01, 0.01, 0.03, 0.05, 0.07, 0.09, 0.11, 0.13] @@ -52,7 +52,7 @@ diff_levels = [-0.13, -0.11, -0.09, -0.07, -0.05, -0.03, -0.01, 0.01, 0.03, 0.05 sets = ["lat_lon"] case_id = "model_vs_model" variables = ["RESTOM"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-120, -100, -80, -60, -40, -20, 0, 20, 40, 60, 80] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -61,7 +61,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FLUT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [120, 140, 160, 180, 200, 220, 240, 260, 280, 300] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -70,7 +70,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FLUTC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [120, 140, 160, 180, 200, 220, 240, 260, 280, 300] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -79,7 +79,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FSNTOA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -88,7 +88,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FSNTOAC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350, 375] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -97,7 +97,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["SWCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] contour_levels = [-120, -110, -100, -90, -80, -70, -60, -50, -40, -30, -20, -10, 0] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -107,7 +107,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["LWCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -116,7 +116,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["NETCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-70, -60, -50, -40, -30, -20, -10, 0, 10, 20] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -125,7 +125,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["ALBEDO_SRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] diff_levels = [-0.13, -0.11, -0.09, -0.07, -0.05, -0.03, -0.01, 0.01, 0.03, 0.05, 0.07, 0.09, 0.11, 0.13] @@ -134,7 +134,7 @@ diff_levels = [-0.13, -0.11, -0.09, -0.07, -0.05, -0.03, -0.01, 0.01, 0.03, 0.05 sets = ["lat_lon"] case_id = "model_vs_model" variables = ["SWCFSRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-170, -150, -135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -143,7 +143,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["LWCFSRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -152,7 +152,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["NETCF_SRF"] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12","DJF", "MAM", "JJA", "SON"] contour_levels = [-135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -161,7 +161,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FLDS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -170,7 +170,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FLDSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -179,7 +179,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FLNS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -188,7 +188,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FLNSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -197,7 +197,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FSDS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -206,7 +206,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FSDSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -215,7 +215,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FSNS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -224,7 +224,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["FSNSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] @@ -233,7 +233,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["LHFLX"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0,5, 15, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300] diff_levels = [-75, -50, -25, -10, -5, -2, 2, 5, 10, 25, 50, 75] @@ -242,7 +242,7 @@ diff_levels = [-75, -50, -25, -10, -5, -2, 2, 5, 10, 25, 50, 75] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["SHFLX"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-100, -75, -50, -25, -10, 0, 10, 25, 50, 75, 100, 125, 150] diff_levels = [-75, -50, -25, -10, -5, -2, 2, 5, 10, 25, 50, 75] @@ -251,7 +251,7 @@ diff_levels = [-75, -50, -25, -10, -5, -2, 2, 5, 10, 25, 50, 75] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["NET_FLUX_SRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-200, -160, -120, -80, -40, 0, 40, 80, 120, 160, 200] diff_levels = [-75, -50, -25, -10, -5, -2, 2, 5, 10, 25, 50, 75] @@ -260,7 +260,7 @@ diff_levels = [-75, -50, -25, -10, -5, -2, 2, 5, 10, 25, 50, 75] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TMQ"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60] diff_levels = [-12, -9, -6, -4, -3, -2, -1, 1, 2, 3, 4, 6, 9, 12] @@ -269,7 +269,7 @@ diff_levels = [-12, -9, -6, -4, -3, -2, -1, 1, 2, 3, 4, 6, 9, 12] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["QREFHT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15, 17.5] diff_levels = [-5, -4, -3, -2, -1, -0.25, 0.25, 1, 2, 3, 4, 5] @@ -277,7 +277,7 @@ diff_levels = [-5, -4, -3, -2, -1, -0.25, 0.25, 1, 2, 3, 4, 5] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["U10"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] @@ -287,7 +287,7 @@ diff_levels = [-8, -6, -5, -4, -3, -2, -1, 1, 2, 3, 4, 5, 6, 8] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -300,7 +300,7 @@ regrid_method = "bilinear" sets = ["lat_lon"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [200.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -312,7 +312,7 @@ diff_levels = [-15, -10, -8, -6, -4, -2, -1, 1, 2, 4, 6, 8, 10, 15] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["OMEGA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -325,7 +325,7 @@ regrid_method = "bilinear" sets = ["lat_lon"] case_id = "model_vs_model" variables = ["OMEGA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -337,7 +337,7 @@ diff_levels = [-40,-30,-20,-16,-12,-8,-4,4,8,12,16,20,30,40] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["OMEGA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [200.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -348,7 +348,7 @@ diff_levels = [-20,-15,-10,-8,-6,-4,-2,2,4,6,8,10,15,20] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["Z3"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] contour_levels = [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58] diff_levels = [-0.5, -0.4, -0.3, -0.2, -0.1, 0.1, 0.2, 0.3, 0.4, 0.5] @@ -358,7 +358,7 @@ diff_levels = [-0.5, -0.4, -0.3, -0.2, -0.1, 0.1, 0.2, 0.3, 0.4, 0.5] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0] contour_levels = [240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.25, 0.25, 0.5, 1, 2, 3, 4, 5] @@ -369,7 +369,7 @@ regrid_method = "bilinear" sets = ["lat_lon"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [200.0] contour_levels = [210, 212, 214, 216, 218, 220, 222, 224, 226] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.25, 0.25, 0.5, 1, 2, 3, 4, 5] @@ -379,7 +379,7 @@ diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.25, 0.25, 0.5, 1, 2, 3, 4, 5] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["PSL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [955, 965, 975,980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1035] diff_levels = [ -16, -12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12, 16] @@ -388,7 +388,7 @@ diff_levels = [ -16, -12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12, 16] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_ISCCP"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -400,7 +400,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_9.4_ISCCP"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -412,7 +412,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU9.4_ISCCP"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -424,7 +424,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -436,7 +436,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -448,7 +448,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -460,7 +460,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDLOW_TAU1.3_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -472,7 +472,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDLOW_TAU1.3_9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -484,7 +484,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDLOW_TAU9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -496,7 +496,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -508,7 +508,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -520,7 +520,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_TAU9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -532,7 +532,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDHGH_TAU1.3_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -544,7 +544,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDHGH_TAU1.3_9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -556,7 +556,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDHGH_TAU9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -568,7 +568,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDTOT_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -580,7 +580,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDLOW_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -592,7 +592,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDMED_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -604,7 +604,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["CLDHGH_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -616,7 +616,7 @@ diff_levels = [-30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30] sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TGCLDLWP_OCN"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -628,7 +628,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["AODVIS"] regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Oranges" reference_colormap = "Oranges" diff_colormap = "BrBG_r" @@ -640,7 +640,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREFHT"] regions = ["land"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] regrid_method = "bilinear" @@ -650,7 +650,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREFHT"] regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] @@ -659,7 +659,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREFMNAV"] regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] @@ -668,7 +668,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREFMXAV"] regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] @@ -677,7 +677,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREF_range"] regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [2, 4, 6, 8, 10, 12, 14, 16,18] diff_levels = [ -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8] @@ -686,7 +686,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREFMNAV"] regions = ["land"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] regrid_method = "bilinear" @@ -696,7 +696,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREFMXAV"] regions = ["land"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] regrid_method = "bilinear" @@ -706,7 +706,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TREF_range"] regions = ["land"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [2, 4, 6, 8, 10, 12, 14, 16,18] diff_levels = [ -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8] regrid_method = "bilinear" @@ -716,7 +716,7 @@ sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TAUXY"] regions = ["ocean"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Purples" reference_colormap = "Purples" diff_colormap = "RdBu" @@ -728,7 +728,7 @@ regrid_method = "bilinear" sets = ["lat_lon"] case_id = "model_vs_model" variables = ["TCO"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" diff_colormap = "diverging_bwr.rgb" diff --git a/e3sm_diags/driver/default_diags/lat_lon_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/lat_lon_model_vs_obs.cfg index f9d303075..6e843423a 100644 --- a/e3sm_diags/driver/default_diags/lat_lon_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/lat_lon_model_vs_obs.cfg @@ -4,7 +4,7 @@ case_id = "GPCP_v3.2" variables = ["PRECT"] ref_name = "GPCP_v3.2" reference_name = "GPCP_v3.2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -19,7 +19,7 @@ case_id = "GPCP_v2.3" variables = ["PRECT"] ref_name = "GPCP_v2.3" reference_name = "GPCP_v2.3" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -35,7 +35,7 @@ variables = ["TREFHT"] regions = ["land_60S90N"] ref_name = "CRU" reference_name = "CRU Global Monthly Mean T Land" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 5, 10, 15] regrid_method = "bilinear" @@ -48,7 +48,7 @@ case_id = "SST_HadISST" variables = ["SST"] ref_name = "HadISST" reference_name = "HadISST" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-1, 0, 1, 3, 6, 9, 12, 15, 18, 20, 22, 24, 26, 28, 29] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] regrid_method = "bilinear" @@ -60,7 +60,7 @@ case_id = "SST_CL_HadISST" variables = ["SST"] ref_name = "HadISST_CL" reference_name = "HadISST (Climatology)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-1, 0, 1, 3, 6, 9, 12, 15, 18, 20, 22, 24, 26, 28, 29] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] regrid_method = "bilinear" @@ -72,7 +72,7 @@ case_id = "SST_PI_HadISST" variables = ["SST"] ref_name = "HadISST_PI" reference_name = "HadISST (Pre-Indust)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-1, 0, 1, 3, 6, 9, 12, 15, 18, 20, 22, 24, 26, 28, 29] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] regrid_method = "bilinear" @@ -84,7 +84,7 @@ case_id = "SST_PD_HadISST" variables = ["SST"] ref_name = "HadISST_PD" reference_name = "HadISST (Present Day)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-1, 0, 1, 3, 6, 9, 12, 15, 18, 20, 22, 24, 26, 28, 29] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] regrid_method = "bilinear" @@ -96,7 +96,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["SOLIN"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5] @@ -108,7 +108,7 @@ variables = ["ALBEDO"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["75S75N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -119,7 +119,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["ALBEDOC"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -130,7 +130,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["RESTOM"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] contour_levels = [-120, -100, -80, -60, -40, -20, 0, 20, 40, 60, 80] diff_levels = [-50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50] @@ -152,7 +152,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FLUT"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] contour_levels = [120, 140, 160, 180, 200, 220, 240, 260, 280, 300] diff_levels = [-50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50] @@ -174,7 +174,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FLUTC"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] contour_levels = [120, 140, 160, 180, 200, 220, 240, 260, 280, 300] diff_levels = [-35, -30, -25, -20, -15, -10, -5, -2.5, 2.5, 5, 10, 15, 20, 25, 30, 35] @@ -196,7 +196,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FSNTOA"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] contour_levels = [50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -218,7 +218,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FSNTOAC"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] contour_levels = [50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350, 375] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -240,7 +240,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["SWCF"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["global"] contour_levels = [-120, -110, -100, -90, -80, -70, -60, -50, -40, -30, -20, -10, 0] diff_levels = [-60, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 60] @@ -264,7 +264,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["LWCF"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-35, -30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30, 35] @@ -275,7 +275,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["NETCF"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] contour_levels = [-70, -60, -50, -40, -30, -20, -10, 0, 10, 20] diff_levels = [-60, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 60] @@ -297,7 +297,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["ALBEDO_SRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -308,7 +308,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["SWCFSRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-170, -150, -135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -319,7 +319,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["LWCFSRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-35, -30, -25, -20, -15, -10, -5, 5, 10, 15, 20, 25, 30, 35] @@ -330,7 +330,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["NETCF_SRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12","DJF", "MAM", "JJA", "SON"] contour_levels = [-135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -341,7 +341,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLDS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -352,7 +352,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLDSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -363,7 +363,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLNS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50] @@ -374,7 +374,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLNSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50] @@ -385,7 +385,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSDS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -396,7 +396,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSDSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -407,7 +407,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSNS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -418,7 +418,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSNSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -429,7 +429,7 @@ case_id = "WHOI-OAFlux" variables = ["LHFLX"] ref_name = "OAFlux" reference_name = "WHOI OAFlux" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0,5, 15, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300] diff_levels = [-150, -120, -90, -60, -30, -20, -10, -5, 5, 10, 20, 30, 60, 90, 120, 150] @@ -440,7 +440,7 @@ case_id = "WHOI-OAFlux" variables = ["SHFLX"] ref_name = "OAFlux" reference_name = "WHOI OAFlux" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-100, -75, -50, -25, -10, 0, 10, 25, 50, 75, 100, 125, 150] diff_levels = [-100, -80, -60, -40, -20, -10, -5, 5, 10, 20, 40, 60, 80, 100] @@ -451,7 +451,7 @@ case_id = "ERA5" variables = ["LHFLX"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0,5, 15, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300] diff_levels = [-150, -120, -90, -60, -30, -20, -10, -5, 5, 10, 20, 30, 60, 90, 120, 150] @@ -462,7 +462,7 @@ case_id = "ERA5" variables = ["SHFLX"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-100, -75, -50, -25, -10, 0, 10, 25, 50, 75, 100, 125, 150] diff_levels = [-100, -80, -60, -40, -20, -10, -5, 5, 10, 20, 40, 60, 80, 100] @@ -473,7 +473,7 @@ case_id = "ERA5" variables = ["PSL"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [955, 965, 975,980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1035] diff_levels = [ -16, -12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12, 16] @@ -484,7 +484,7 @@ case_id = "ERA5" variables = ["FSNS"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -495,7 +495,7 @@ case_id = "ERA5" variables = ["FLNS"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50] @@ -506,7 +506,7 @@ case_id = "ERA5" variables = ["NET_FLUX_SRF"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-200, -160, -120, -80, -40, 0, 40, 80, 120, 160, 200] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -517,7 +517,7 @@ case_id = "ERA5" variables = ["PRECT"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" diff_colormap = "BrBG" @@ -531,7 +531,7 @@ case_id = "ERA5" variables = ["TMQ"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60] diff_levels = [-12, -9, -6, -4, -3, -2, -1, 1, 2, 3, 4, 6, 9, 12] @@ -541,7 +541,7 @@ case_id = "ERA5" variables = ["QREFHT"] ref_name = "ERA5_ext" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15, 17.5] diff_levels = [-5, -4, -3, -2, -1, -0.25, 0.25, 1, 2, 3, 4, 5] @@ -551,7 +551,7 @@ case_id = "ERA5" variables = ["U10"] ref_name = "ERA5_ext" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] diff_levels = [-8, -6, -5, -4, -3, -2, -1, 1, 2, 3, 4, 5, 6, 8] @@ -561,7 +561,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -576,7 +576,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [200.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -604,7 +604,7 @@ case_id = "ERA5" variables = ["Z3"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] contour_levels = [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58] diff_levels = [-1.8, -1.4, -1.0, -0.6, -0.2, 0.2, 0.6, 1.0, 1.4, 1.8] @@ -615,7 +615,7 @@ case_id = "ERA5" variables = ["OMEGA"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["DJF", "MAM", "JJA", "SON", "ANN"] +seasons = ["DJF", "MAM", "JJA", "SON", "ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [200.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -629,7 +629,7 @@ case_id = "ERA5" variables = ["OMEGA"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["DJF", "MAM", "JJA", "SON", "ANN"] +seasons = ["DJF", "MAM", "JJA", "SON", "ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [500.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -643,7 +643,7 @@ case_id = "ERA5" variables = ["OMEGA"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["DJF", "MAM", "JJA", "SON", "ANN"] +seasons = ["DJF", "MAM", "JJA", "SON", "ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [850.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -658,7 +658,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [850.0] contour_levels = [240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295] diff_levels = [-10, -7.5, -5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5, 7.5, 10] @@ -684,7 +684,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [200.0] contour_levels = [210, 212, 214, 216, 218, 220, 222, 224, 226] diff_levels = [-10, -7.5, -5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5, 7.5, 10] @@ -709,7 +709,7 @@ variables = ["TAUXY"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" regions = ["ocean"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Purples" reference_colormap = "Purples" diff_colormap = "RdBu" @@ -723,7 +723,7 @@ case_id = "MERRA2" variables = ["LHFLX"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0,5, 15, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300] diff_levels = [-150, -120, -90, -60, -30, -20, -10, -5, 5, 10, 20, 30, 60, 90, 120, 150] @@ -734,7 +734,7 @@ case_id = "MERRA2" variables = ["SHFLX"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-100, -75, -50, -25, -10, 0, 10, 25, 50, 75, 100, 125, 150] diff_levels = [-100, -80, -60, -40, -20, -10, -5, 5, 10, 20, 40, 60, 80, 100] @@ -745,7 +745,7 @@ case_id = "MERRA2" variables = ["PSL"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [955, 965, 975,980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1035] diff_levels = [ -16, -12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12, 16] @@ -756,7 +756,7 @@ case_id = "MERRA2" variables = ["FSNS"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -767,7 +767,7 @@ case_id = "MERRA2" variables = ["FLNS"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50] @@ -778,7 +778,7 @@ case_id = "MERRA2" variables = ["NET_FLUX_SRF"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-200, -160, -120, -80, -40, 0, 40, 80, 120, 160, 200] diff_levels = [-75, -50, -40, -30, -20, -10, -5, 5, 10, 20, 30, 40, 50, 75] @@ -789,7 +789,7 @@ case_id = "MERRA2" variables = ["PRECT"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" diff_colormap = "BrBG" @@ -803,7 +803,7 @@ case_id = "MERRA2" variables = ["TMQ"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60] diff_levels = [-12, -9, -6, -4, -3, -2, -1, 1, 2, 3, 4, 6, 9, 12] @@ -814,7 +814,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -829,7 +829,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [200.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -857,7 +857,7 @@ case_id = "MERRA2" variables = ["Z3"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] contour_levels = [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58] diff_levels = [-1.8, -1.4, -1.0, -0.6, -0.2, 0.2, 0.6, 1.0, 1.4, 1.8] @@ -869,7 +869,7 @@ case_id = "MERRA2" variables = ["OMEGA"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["DJF", "MAM", "JJA", "SON", "ANN"] +seasons = ["DJF", "MAM", "JJA", "SON", "ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [200.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -883,7 +883,7 @@ case_id = "MERRA2" variables = ["OMEGA"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["DJF", "MAM", "JJA", "SON", "ANN"] +seasons = ["DJF", "MAM", "JJA", "SON", "ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [500.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -897,7 +897,7 @@ case_id = "MERRA2" variables = ["OMEGA"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["DJF", "MAM", "JJA", "SON", "ANN"] +seasons = ["DJF", "MAM", "JJA", "SON", "ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [850.0] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" @@ -912,7 +912,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [850.0] contour_levels = [240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295] diff_levels = [-10, -7.5, -5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5, 7.5, 10] @@ -938,7 +938,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] plevs = [200.0] contour_levels = [210, 212, 214, 216, 218, 220, 222, 224, 226] diff_levels = [-10, -7.5, -5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5, 7.5, 10] @@ -963,7 +963,7 @@ variables = ["TAUXY"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["ocean"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Purples" reference_colormap = "Purples" diff_colormap = "RdBu" @@ -978,7 +978,7 @@ case_id = "Cloud ISCCP" variables = ["CLDTOT_TAU1.3_ISCCP"] ref_name = "ISCCPCOSP" reference_name = "ISCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -992,7 +992,7 @@ case_id = "Cloud ISCCP" variables = ["CLDTOT_TAU1.3_9.4_ISCCP"] ref_name = "ISCCPCOSP" reference_name = "ISCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1006,7 +1006,7 @@ case_id = "Cloud ISCCP" variables = ["CLDTOT_TAU9.4_ISCCP"] ref_name = "ISCCPCOSP" reference_name = "ISCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1020,7 +1020,7 @@ case_id = "Cloud MISR" variables = ["CLDTOT_TAU1.3_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1034,7 +1034,7 @@ case_id = "Cloud MISR" variables = ["CLDTOT_TAU1.3_9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1048,7 +1048,7 @@ case_id = "Cloud MISR" variables = ["CLDTOT_TAU9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1062,7 +1062,7 @@ case_id = "Cloud MISR" variables = ["CLDLOW_TAU1.3_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1076,7 +1076,7 @@ case_id = "Cloud MISR" variables = ["CLDLOW_TAU1.3_9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1090,7 +1090,7 @@ case_id = "Cloud MISR" variables = ["CLDLOW_TAU9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1104,7 +1104,7 @@ case_id = "Cloud MODIS" variables = ["CLDTOT_TAU1.3_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1118,7 +1118,7 @@ case_id = "Cloud MODIS" variables = ["CLDTOT_TAU1.3_9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1132,7 +1132,7 @@ case_id = "Cloud MODIS" variables = ["CLDTOT_TAU9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1146,7 +1146,7 @@ case_id = "Cloud MODIS" variables = ["CLDHGH_TAU1.3_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1160,7 +1160,7 @@ case_id = "Cloud MODIS" variables = ["CLDHGH_TAU1.3_9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1174,7 +1174,7 @@ case_id = "Cloud MODIS" variables = ["CLDHGH_TAU9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1188,7 +1188,7 @@ case_id = "Cloud Calipso" variables = ["CLDTOT_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1202,7 +1202,7 @@ case_id = "Cloud Calipso" variables = ["CLDLOW_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1216,7 +1216,7 @@ case_id = "Cloud Calipso" variables = ["CLDMED_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1230,7 +1230,7 @@ case_id = "Cloud Calipso" variables = ["CLDHGH_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1244,7 +1244,7 @@ case_id = "Cloud SSM/I" variables = ["TGCLDLWP_OCN"] ref_name = "SSMI" reference_name = "SSM/I (Wentz)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "Blues" reference_colormap = "Blues" diff_colormap = "RdBu" @@ -1259,7 +1259,7 @@ variables = ["AODVIS"] ref_name = "MACv2" reference_name = "Max-Planck Aerosol climatology (MACv2)" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_colormap = "BrBG_r" contour_levels = [0., 0.05, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2] diff_levels = [-0.5, -0.4, -0.3, -0.2, -0.1, -0.05, -0.02, 0.02, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5] @@ -1271,7 +1271,7 @@ variables = ["AODVIS"] ref_name = "MERRA2_Aerosols" reference_name = "MERRA2 Aerosols" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_colormap = "BrBG_r" contour_levels = [0., 0.05, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2] diff_levels = [-0.5, -0.4, -0.3, -0.2, -0.1, -0.05, -0.02, 0.02, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5] @@ -1283,7 +1283,7 @@ variables = ["AODDUST"] ref_name = "MACv2" reference_name = "Max-Planck Aerosol climatology (MACv2)" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_colormap = "BrBG_r" contour_levels = [0.,0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,1] @@ -1295,7 +1295,7 @@ variables = ["TREFHT"] regions = ["global"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] @@ -1306,7 +1306,7 @@ variables = ["TREFHT"] regions = ["land"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] regrid_method = "bilinear" @@ -1318,7 +1318,7 @@ variables = ["TREFHT"] regions = ["global"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] @@ -1330,7 +1330,7 @@ variables = ["TREFHT"] regions = ["land"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] regrid_method = "bilinear" @@ -1343,7 +1343,7 @@ regions = ["land"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] regrid_method = "bilinear" @@ -1357,7 +1357,7 @@ regions = ["land"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] regrid_method = "bilinear" @@ -1370,7 +1370,7 @@ regions = ["land"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [2, 4, 6, 8, 10, 12, 14, 16,18] diff_levels = [ -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8] regrid_method = "bilinear" @@ -1383,7 +1383,7 @@ regions = ["global"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] @@ -1396,7 +1396,7 @@ regions = ["global"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12] @@ -1408,7 +1408,7 @@ regions = ["global"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["global"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [2, 4, 6, 8, 10, 12, 14, 16,18] diff_levels = [ -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8] @@ -1419,7 +1419,7 @@ case_id = "GPCP_OAFLux" variables = ["PminusE"] ref_name = "GPCP_OAFLux" reference_name = "PRECT(GPCP) minus QFLX(OAFLux)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] test_colormap = "RdBu" reference_colormap = "RdBu" @@ -1433,7 +1433,7 @@ case_id = "COREv2_Flux" variables = ["PminusE"] ref_name = "COREv2_Flux" reference_name = "COREv2_Flux" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] test_colormap = "RdBu" reference_colormap = "RdBu" @@ -1447,7 +1447,7 @@ case_id = "OMI-MLS" variables = ["TCO"] ref_name = "OMI-MLS" reference_name = "OMI-MLS" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" diff_colormap = "diverging_bwr.rgb" diff --git a/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_model.cfg b/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_model.cfg index e252c562d..061ab5b12 100644 --- a/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_model.cfg @@ -2,7 +2,7 @@ sets = ["meridional_mean_2d"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7] @@ -10,7 +10,7 @@ diff_levels = [-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7] sets = ["meridional_mean_2d"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-20, -15, -10, -8, -5, -3, -1, 1, 3, 5, 8, 10, 15, 20] @@ -20,7 +20,7 @@ diff_levels = [ -5, -4, -3, -2, -1,-0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] sets = ["meridional_mean_2d"] case_id = "model_vs_model" variables = ["RELHUM"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5,10,15,20,25,30,40,50,60,70,75,80,85,90,95] diff_levels = [-15,-12,-9,-6,-3,-1,1,3,6,9,12,15] @@ -28,7 +28,7 @@ diff_levels = [-15,-12,-9,-6,-3,-1,1,3,6,9,12,15] sets = ["meridional_mean_2d"] case_id = "model_vs_model" variables = ["OMEGA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-35,-30,-25,-20,-15,-10,-5,5,10,15,20,25,30,35] diff --git a/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_obs.cfg index 3c9efb417..758aaa897 100644 --- a/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/meridional_mean_2d_model_vs_obs.cfg @@ -4,7 +4,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7] @@ -14,7 +14,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-20, -15, -10, -8, -5, -3, -1, 1, 3, 5, 8, 10, 15, 20] @@ -26,7 +26,7 @@ case_id = "MERRA2" variables = ["RELHUM"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5,10,15,20,25,30,40,50,60,70,75,80,85,90,95] diff_levels = [-15,-12,-9,-6,-3,-1,1,3,6,9,12,15] @@ -36,7 +36,7 @@ case_id = "MERRA2" variables = ["OMEGA"] ref_name = "MERRA2" reference_name = "MERRA2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-35,-30,-25,-20,-15,-10,-5,5,10,15,20,25,30,35] @@ -48,7 +48,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7] @@ -58,7 +58,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-20, -15, -10, -8, -5, -3, -1, 1, 3, 5, 8, 10, 15, 20] @@ -70,7 +70,7 @@ case_id = "ERA5" variables = ["OMEGA"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-35,-30,-25,-20,-15,-10,-5,5,10,15,20,25,30,35] @@ -82,6 +82,6 @@ case_id = "ERA5" variables = ["RELHUM"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5,10,15,20,25,30,40,50,60,70,75,80,85,90,95] diff_levels = [-15,-12,-9,-6,-3,-1,1,3,6,9,12,15] diff --git a/e3sm_diags/driver/default_diags/polar_model_vs_model.cfg b/e3sm_diags/driver/default_diags/polar_model_vs_model.cfg index 72a2b1ac9..326ff0147 100644 --- a/e3sm_diags/driver/default_diags/polar_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/polar_model_vs_model.cfg @@ -2,7 +2,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["PRECT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -15,7 +15,7 @@ diff_levels = [-2, -1.5, -1, -0.75, -0.5, -0.25, 0.25, 0.5, 0.75, 1, 1.5, 2] sets = ["polar"] case_id = "model_vs_model" variables = ["PRECT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_N"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -28,7 +28,7 @@ diff_levels = [-2, -1.5, -1, -0.75, -0.5, -0.25, 0.25, 0.5, 0.75, 1, 1.5, 2] sets = ["polar"] case_id = "model_vs_model" variables = ["SST"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-1, 0, 1, 3, 5, 7, 9, 11, 13, 15] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] @@ -39,7 +39,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["SOLIN"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5] @@ -49,7 +49,7 @@ diff_levels = [-5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5] sets = ["polar"] case_id = "model_vs_model" variables = ["ALBEDO"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -59,7 +59,7 @@ diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, sets = ["polar"] case_id = "model_vs_model" variables = ["ALBEDOC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -69,7 +69,7 @@ diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, sets = ["polar"] case_id = "model_vs_model" variables = ["FLUT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [145, 160, 175, 190, 205, 220, 235, 250, 265] diff_levels = [-60, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 60] @@ -79,7 +79,7 @@ diff_levels = [-60, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 6 sets = ["polar"] case_id = "model_vs_model" variables = ["FLUTC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [145, 160, 175, 190, 205, 220, 235, 250, 265] diff_levels = [-60, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 60] @@ -90,7 +90,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FSNTOA"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 25, 50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -99,7 +99,7 @@ diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 7 sets = ["polar"] case_id = "model_vs_model" variables = ["FSNTOAC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0, 25, 50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -109,7 +109,7 @@ diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 7 sets = ["polar"] case_id = "model_vs_model" variables = ["SWCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-170, -150, -135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -119,7 +119,7 @@ diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 7 sets = ["polar"] case_id = "model_vs_model" variables = ["LWCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-35, -30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30, 35] @@ -130,7 +130,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["RESTOM"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-175, -150, -125, -100, -75, -50, -25, 0, 25, 50, 75, 100, 125] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -140,7 +140,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["ALBEDO_SRF"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -150,7 +150,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["SWCFSRF"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-170, -150, -135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -160,7 +160,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["LWCFSRF"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-35, -30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30, 35] @@ -170,7 +170,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FLDS"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -181,7 +181,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FLDSC"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -191,7 +191,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FLNS"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50] @@ -201,7 +201,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FLNSC"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50] @@ -211,7 +211,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FSDS"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -221,7 +221,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FSDSC"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -231,7 +231,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FSNS"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -242,7 +242,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["FSNSC"] regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -251,7 +251,7 @@ diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 7 sets = ["polar"] case_id = "model_vs_model" variables = ["LHFLX"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-15, 0, 15, 30, 45, 60, 75, 90, 105, 120] diff_levels = [-65, -55, -45, -35, -25, -15, -5, 5, 15, 25, 35, 45, 55, 65] @@ -261,7 +261,7 @@ diff_levels = [-65, -55, -45, -35, -25, -15, -5, 5, 15, 25, 35, 45, 55, 65] sets = ["polar"] case_id = "model_vs_model" variables = ["TMQ"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0, 1, 2, 4, 6, 8, 12, 14, 16, 18, 20, 22] diff_levels = [-5, -4, -3, -2, -1, 1, 2, 3, 4, 5] @@ -271,7 +271,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["TREFHT"] regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -280,7 +280,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["TREFMNAV"] regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -289,7 +289,7 @@ sets = ["polar"] case_id = "model_vs_model" variables = ["TREFMXAV"] regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -297,7 +297,7 @@ diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] sets = ["polar"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [850.0] test_colormap = "PiYG_r" @@ -310,7 +310,7 @@ diff_levels = [-8, -6, -5, -4, -3, -2, -1, 1, 2, 3, 4, 5, 6, 8] sets = ["polar"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [200.0] test_colormap = "PiYG_r" @@ -323,7 +323,7 @@ diff_levels = [-8, -6, -5, -4, -3, -2, -1, 1, 2, 3, 4, 5, 6, 8] sets = ["polar"] case_id = "model_vs_model" variables = ["Z3"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [500.0] contour_levels = [48, 49, 50, 51, 52, 53, 54, 55, 56] @@ -334,7 +334,7 @@ diff_levels = [-1.8, -1.4, -1.0, -0.6, -0.2, 0.2, 0.6, 1.0, 1.4, 1.8] sets = ["polar"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_S"] plevs = [850.0] contour_levels = [240, 244, 248, 252, 256, 260, 264, 268, 272] @@ -345,7 +345,7 @@ diff_levels = [-15, -10, -7.5, -5, -2.5, -1, 1, 2.5, 5, 7.5, 10, 15] sets = ["polar"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_N"] plevs = [850.0] contour_levels = [256, 258, 260, 262, 264, 268, 270, 272, 274, 276] @@ -367,7 +367,7 @@ diff_levels = [-15, -10, -7.5, -5, -2.5, -1, 1, 2.5, 5, 7.5, 10, 15] sets = ["polar"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_S"] plevs = [200.0] contour_levels = [210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220] @@ -378,7 +378,7 @@ diff_levels = [-10, -7.5, -5, -4, -3, -2, -1, -0.5, 0.5, 1, 2, 3, 4, 5, 7.5, 10] sets = ["polar"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_N"] plevs = [200.0] contour_levels = [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225] diff --git a/e3sm_diags/driver/default_diags/polar_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/polar_model_vs_obs.cfg index bcec76a04..ccd654830 100644 --- a/e3sm_diags/driver/default_diags/polar_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/polar_model_vs_obs.cfg @@ -4,7 +4,7 @@ case_id = "GPCP_v3.2" variables = ["PRECT"] ref_name = "GPCP_v3.2" reference_name = "GPCP v2.2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -19,7 +19,7 @@ case_id = "GPCP_v3.2" variables = ["PRECT"] ref_name = "GPCP_v3.2" reference_name = "GPCP v2.2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_N"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -34,7 +34,7 @@ case_id = "GPCP_v2.3" variables = ["PRECT"] ref_name = "GPCP_v2.3" reference_name = "GPCP v2.3" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -49,7 +49,7 @@ case_id = "GPCP_v2.3" variables = ["PRECT"] ref_name = "GPCP_v2.3" reference_name = "GPCP v2.3" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_N"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -65,7 +65,7 @@ variables = ["TREFHT"] regions = ["polar_N"] ref_name = "CRU" reference_name = "CRU Global Monthly Mean T" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -76,7 +76,7 @@ case_id = "SST_HadISST" variables = ["SST"] ref_name = "HadISST" reference_name = "HadISST" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-1, 0, 1, 3, 5, 7, 9, 11, 13, 15] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] @@ -88,7 +88,7 @@ case_id = "SST_CL_HadISST" variables = ["SST"] ref_name = "HadISST_CL" reference_name = "HadISST (Climatology)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-1, 0, 1, 3, 5, 7, 9, 11, 13, 15] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] @@ -100,7 +100,7 @@ case_id = "SST_PI_HadISST" variables = ["SST"] ref_name = "HadISST_PI" reference_name = "HadISST (Pre-Indust)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-1, 0, 1, 3, 5, 7, 9, 11, 13, 15] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] @@ -112,7 +112,7 @@ case_id = "SST_PD_HadISST" variables = ["SST"] ref_name = "HadISST_PD" reference_name = "HadISST (Present Day)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-1, 0, 1, 3, 5, 7, 9, 11, 13, 15] diff_levels = [-5, -4, -3, -2, -1, -0.5, -0.2, 0.2, 0.5, 1, 2, 3, 4, 5] @@ -126,7 +126,7 @@ variables = ["ALBEDO_SRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4, 0.5, 0.6, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95] diff_levels = [-0.25, -0.2, -0.15, -0.1, -0.07, -0.05, -0.02, 0.02, 0.05, 0.07, 0.1, 0.15, 0.2, 0.25] @@ -138,7 +138,7 @@ variables = ["SWCFSRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-170, -150, -135, -120, -105, -90, -75, -60, -45, -30, -15, 0, 15, 30, 45] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -150,7 +150,7 @@ variables = ["LWCFSRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-35, -30, -25, -20, -15, -10, -5, -2, 2, 5, 10, 15, 20, 25, 30, 35] @@ -162,7 +162,7 @@ variables = ["FLDS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -175,7 +175,7 @@ variables = ["FLDSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -187,7 +187,7 @@ variables = ["FLNS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 10, 20, 30, 40, 50, 60, 70, 80] diff_levels = [-50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50] @@ -199,7 +199,7 @@ variables = ["FLNSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 20, 40, 60, 80, 100, 120, 140, 160] diff_levels = [-50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50] @@ -211,7 +211,7 @@ variables = ["FSDS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -223,7 +223,7 @@ variables = ["FSDSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -235,7 +235,7 @@ variables = ["FSNS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -248,7 +248,7 @@ variables = ["FSNSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0, 50, 100, 150, 200, 250, 300, 350, 400] diff_levels = [-75, -50, -40, -30, -20, -10, -5, -2, 2, 5, 10, 20, 30, 40, 50, 75] @@ -259,7 +259,7 @@ case_id = "ERA5" variables = ["LHFLX"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-15, 0, 15, 30, 45, 60, 75, 90, 105, 120] diff_levels = [-65, -55, -45, -35, -25, -15, -5, 5, 15, 25, 35, 45, 55, 65] @@ -272,7 +272,7 @@ variables = ["TAUXY"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0., 0.01, 0.02,0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.2, 0.5, 1.0] diff_levels = [-0.1, -0.08, -0.06, -0.05, -0.04, -0.03, -0.02, -0.01, 0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1] @@ -283,7 +283,7 @@ variables = ["TREFHT"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -295,7 +295,7 @@ variables = ["PSL"] ref_name = "ERA5" regions = ["polar_S", "polar_N"] reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [955, 965, 975,980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1035] diff_levels = [ -16, -12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12, 16] @@ -306,7 +306,7 @@ case_id = "ERA5" variables = ["PRECT"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -321,7 +321,7 @@ case_id = "ERA5" variables = ["PRECT"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_N"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -336,7 +336,7 @@ case_id = "ERA5" variables = ["TMQ"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0, 1, 2, 4, 6, 8, 12, 14, 16, 18, 20, 22] diff_levels = [-5, -4, -3, -2, -1, 1, 2, 3, 4, 5] @@ -348,7 +348,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [850.0] test_colormap = "PiYG_r" @@ -363,7 +363,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [200.0] test_colormap = "PiYG_r" @@ -378,7 +378,7 @@ case_id = "ERA5" variables = ["Z3"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [500.0] contour_levels = [48, 49, 50, 51, 52, 53, 54, 55, 56] @@ -391,7 +391,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_S"] plevs = [850.0] contour_levels = [240, 244, 248, 252, 256, 260, 264, 268, 272] @@ -404,7 +404,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_N"] plevs = [850.0] contour_levels = [256, 258, 260, 262, 264, 268, 270, 272, 274, 276] @@ -430,7 +430,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_S"] plevs = [200.0] contour_levels = [210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220] @@ -443,7 +443,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_N"] plevs = [200.0] contour_levels = [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225] @@ -469,7 +469,7 @@ case_id = "MERRA2" variables = ["LHFLX"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [-15, 0, 15, 30, 45, 60, 75, 90, 105, 120] diff_levels = [-65, -55, -45, -35, -25, -15, -5, 5, 15, 25, 35, 45, 55, 65] @@ -481,7 +481,7 @@ case_id = "MERRA2" variables = ["PRECT"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -496,7 +496,7 @@ case_id = "MERRA2" variables = ["PRECT"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_N"] test_colormap = "WhiteBlueGreenYellowRed.rgb" reference_colormap = "WhiteBlueGreenYellowRed.rgb" @@ -511,7 +511,7 @@ case_id = "MERRA2" variables = ["TMQ"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] contour_levels = [0, 1, 2, 4, 6, 8, 12, 14, 16, 18, 20, 22] diff_levels = [-5, -4, -3, -2, -1, 1, 2, 3, 4, 5] @@ -523,7 +523,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [850.0] test_colormap = "PiYG_r" @@ -538,7 +538,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [200.0] test_colormap = "PiYG_r" @@ -553,7 +553,7 @@ case_id = "MERRA2" variables = ["Z3"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["polar_S", "polar_N"] plevs = [500.0] contour_levels = [48, 49, 50, 51, 52, 53, 54, 55, 56] @@ -566,7 +566,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_S"] plevs = [850.0] contour_levels = [240, 244, 248, 252, 256, 260, 264, 268, 272] @@ -579,7 +579,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_N"] plevs = [850.0] contour_levels = [256, 258, 260, 262, 264, 268, 270, 272, 274, 276] @@ -605,7 +605,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_S"] plevs = [200.0] contour_levels = [210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220] @@ -618,7 +618,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"] regions = ["polar_N"] plevs = [200.0] contour_levels = [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225] @@ -645,7 +645,7 @@ variables = ["TAUXY"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0., 0.01, 0.02,0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.2, 0.5, 1.0] diff_levels = [-0.1, -0.08, -0.06, -0.05, -0.04, -0.03, -0.02, -0.01, 0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.08, 0.1] @@ -656,7 +656,7 @@ variables = ["TREFHT"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -667,7 +667,7 @@ variables = ["TREFMNAV"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -678,7 +678,7 @@ variables = ["TREFMXAV"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["polar_N", "polar_S"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [-35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40] diff_levels = [-15, -10, -5, -2, -1, -0.5, -0.2, 0, 0.2, 0.5, 1, 2, 5, 10, 15] @@ -689,7 +689,7 @@ variables = ["PSL"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" regions = ["polar_S", "polar_N"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [955, 965, 975,980, 985, 990, 995, 1000, 1005, 1010, 1015, 1020, 1025, 1035] diff_levels = [ -16, -12, -8, -4, -2, -1, -0.5, 0.5, 1, 2, 4, 8, 12, 16] diff --git a/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_model.cfg b/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_model.cfg index 15094086a..09e0a93c8 100644 --- a/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_model.cfg @@ -2,7 +2,7 @@ sets = ["zonal_mean_2d"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-3.0, -2.5, -2, -1.5, -1, -0.5, -0.25, 0.25, 0.5, 1, 1.5, 2, 2.5, 3.0] @@ -10,7 +10,7 @@ diff_levels = [-3.0, -2.5, -2, -1.5, -1, -0.5, -0.25, 0.25, 0.5, 1, 1.5, 2, 2.5, sets = ["zonal_mean_2d"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-40,-30,-25,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,25,30,40] @@ -20,7 +20,7 @@ diff_levels = [-3.5,-3,-2.5,-2,-1.5,-1,-0.5,0.5,1,1.5,2,2.5,3,3.5] sets = ["zonal_mean_2d"] case_id = "model_vs_model" variables = ["RELHUM"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5,10,15,20,25,30,40,50,60,70,75,80,85,90,95] diff_levels = [-20,-15,-10,-7.5,-5.0,-2.5,-1.0,1.0,2.5,5.0,7.5,10,15,20] @@ -28,7 +28,7 @@ diff_levels = [-20,-15,-10,-7.5,-5.0,-2.5,-1.0,1.0,2.5,5.0,7.5,10,15,20] sets = ["zonal_mean_2d"] case_id = "model_vs_model" variables = ["Q"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] diff_levels = [-1.5, -1, -0.5, -0.2, -0.1,-0.05,-0.01, 0.01,0.05, 0.1, 0.2, 0.5, 1, 1.5] @@ -36,7 +36,7 @@ diff_levels = [-1.5, -1, -0.5, -0.2, -0.1,-0.05,-0.01, 0.01,0.05, 0.1, 0.2, 0.5, sets = ["zonal_mean_2d"] case_id = "model_vs_model" variables = ["OMEGA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-35,-30,-25,-20,-15,-10,-5,5,10,15,20,25,30,35] diff --git a/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_obs.cfg index 89dca991d..0719f7af9 100644 --- a/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/zonal_mean_2d_model_vs_obs.cfg @@ -4,7 +4,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7] @@ -14,7 +14,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-40,-30,-25,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,25,30,40] @@ -26,7 +26,7 @@ case_id = "MERRA2" variables = ["RELHUM"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5,10,15,20,25,30,40,50,60,70,75,80,85,90,95] diff_levels = [-40,-30,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,30,40] @@ -36,7 +36,7 @@ case_id = "MERRA2" variables = ["Q"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] diff_levels = [-1.5, -1, -0.5, -0.2, -0.1,-0.05,-0.01, 0.01,0.05, 0.1, 0.2, 0.5, 1, 1.5] @@ -46,7 +46,7 @@ case_id = "MERRA2" variables = ["H2OLNZ"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] diff_levels = [-1.5, -1, -0.5, -0.2, -0.1,-0.05,-0.01, 0.01,0.05, 0.1, 0.2, 0.5, 1, 1.5] @@ -56,7 +56,7 @@ case_id = "MERRA2 (relative difference)" variables = ["Q"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_type = "relative" diff_title = "(Model - Obs.)/Obs. * 100" contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] @@ -68,7 +68,7 @@ case_id = "MERRA2 (relative difference)" variables = ["H2OLNZ"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_type = "relative" diff_title = "(Model - Obs.)/Obs. * 100" contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] @@ -80,7 +80,7 @@ case_id = "MERRA2" variables = ["OMEGA"] ref_name = "MERRA2" reference_name = "MERRA2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-35,-30,-25,-20,-15,-10,-5,5,10,15,20,25,30,35] @@ -93,7 +93,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7] @@ -103,7 +103,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-40,-30,-25,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,25,30,40] @@ -115,7 +115,7 @@ case_id = "ERA5" variables = ["OMEGA"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-35,-30,-25,-20,-15,-10,-5,5,10,15,20,25,30,35] @@ -127,7 +127,7 @@ case_id = "ERA5" variables = ["RELHUM"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [5,10,15,20,25,30,40,50,60,70,75,80,85,90,95] diff_levels = [-40,-30,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,30,40] @@ -137,7 +137,7 @@ case_id = "ERA5" variables = ["Q"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] diff_levels = [-1.5, -1, -0.5, -0.2, -0.1, -0.05,-0.01, 0.01,0.05, 0.1, 0.2, 0.5, 1, 1.5] @@ -148,7 +148,7 @@ case_id = "ERA5" variables = ["H2OLNZ"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] diff_levels = [-1.5, -1, -0.5, -0.2, -0.1, -0.05,-0.01, 0.01,0.05, 0.1, 0.2, 0.5, 1, 1.5] @@ -158,7 +158,7 @@ case_id = "ERA5 (relative difference)" variables = ["Q"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_type = "relative" diff_title = "(Model - Obs.)/Obs. * 100" contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] @@ -170,7 +170,7 @@ case_id = "ERA5 (relative difference)" variables = ["H2OLNZ"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff_type = "relative" diff_title = "(Model - Obs.)/Obs. * 100" contour_levels = [0.2, 0.5, 1, 2.5, 5, 7.5, 10, 12.5, 15] diff --git a/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_model.cfg b/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_model.cfg index eed978efa..9bd684ed4 100644 --- a/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_model.cfg @@ -2,7 +2,7 @@ sets = ["zonal_mean_2d_stratosphere"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-8, -6,-4,-2, -1, -0.5, 0.5, 1, 2, 4,6, 8] @@ -10,7 +10,7 @@ diff_levels = [-8, -6,-4,-2, -1, -0.5, 0.5, 1, 2, 4,6, 8] sets = ["zonal_mean_2d_stratosphere"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-40,-30,-25,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,25,30,40] @@ -20,7 +20,7 @@ diff_levels = [-3.5,-3,-2.5,-2,-1.5,-1,-0.5,0.5,1,1.5,2,2.5,3,3.5] sets = ["zonal_mean_2d_stratosphere"] case_id = "model_vs_model" variables = ["RELHUM"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.5,1,2,5,10,15,20,25,30,40,50,70] diff_levels = [-15,-10,-5,-2,-1,-0.5, 0.5, 1,2,5,10,15] @@ -28,7 +28,7 @@ diff_levels = [-15,-10,-5,-2,-1,-0.5, 0.5, 1,2,5,10,15] sets = ["zonal_mean_2d_stratosphere"] case_id = "model_vs_model" variables = ["Q"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.6,0.8, 1, 1.2, 1.6, 2, 2.5, 3, 3.5, 4] diff_levels = [-3, -2,-1.5,-1,-0.5,-0.1,0.1,0.5,1,1.5,2,3] @@ -36,7 +36,7 @@ diff_levels = [-3, -2,-1.5,-1,-0.5,-0.1,0.1,0.5,1,1.5,2,3] sets = ["zonal_mean_2d_stratosphere"] case_id = "model_vs_model" variables = ["OMEGA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-1.5,-1.0,-0.5,-0.2,-0.1,0.1,0.2,0.5,1.0,1.5] @@ -46,5 +46,5 @@ diff_levels = [-0.6,-0.3,-0.1,-0.05,0.05,0.1,0.3,0.6] sets = ["zonal_mean_2d_stratosphere"] case_id = "model_vs_model" variables = ["O3"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.0000001, 0.0000002, 0.0000005, 0.000001,0.000002,0.000003,0.000006, 0.000009, 0.000012] diff --git a/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_obs.cfg index ad60fab18..674d80911 100644 --- a/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/zonal_mean_2d_stratosphere_model_vs_obs.cfg @@ -4,7 +4,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-20,-15,-10,-5,-2,-1,1,2,5,10,15,20] @@ -14,7 +14,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-40,-30,-25,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,25,30,40] @@ -26,7 +26,7 @@ case_id = "MERRA2" variables = ["RELHUM"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.5,1,2,5,10,15,20,25,30,40,50,70] diff_levels = [-15,-10,-5,-2,-1,-0.5, 0.5, 1,2,5,10,15] @@ -36,7 +36,7 @@ case_id = "MERRA2" variables = ["Q"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.6,0.8, 1, 1.2, 1.6, 2, 2.5, 3, 3.5, 4] diff_levels = [-3, -2,-1.5,-1,-0.5,-0.1,0.1,0.5,1,1.5,2,3] @@ -46,7 +46,7 @@ case_id = "MERRA2" variables = ["OMEGA"] ref_name = "MERRA2" reference_name = "MERRA2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-1.5,-1.0,-0.5,-0.2,-0.1,0.1,0.2,0.5,1.0,1.5] @@ -58,7 +58,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [180,185,190,200,210,220,230,240,250,260,270,280,290,295,300] diff_levels = [-20,-15,-10,-5,-2,-1,1,2,5,10,15,20] @@ -68,7 +68,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-40,-30,-25,-20,-15,-10,-5,-2.5,2.5,5,10,15,20,25,30,40] @@ -80,7 +80,7 @@ case_id = "ERA5" variables = ["OMEGA"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] test_colormap = "PiYG_r" reference_colormap = "PiYG_r" contour_levels = [-1.5,-1.0,-0.5,-0.2,-0.1,0.1,0.2,0.5,1.0,1.5] @@ -92,7 +92,7 @@ case_id = "ERA5" variables = ["RELHUM"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.5,1,2,5,10,15,20,25,30,40,50,70] diff_levels = [-15,-10,-5,-2,-1,-0.5, 0.5, 1,2,5,10,15] @@ -102,6 +102,6 @@ case_id = "ERA5" variables = ["Q"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] contour_levels = [0.6,0.8, 1, 1.2, 1.6, 2, 2.5, 3, 3.5, 4] diff_levels = [-3, -2,-1.5,-1,-0.5,-0.1,0.1,0.5,1,1.5,2,3] diff --git a/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_model.cfg b/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_model.cfg index e91583974..5c3d98c28 100644 --- a/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_model.cfg +++ b/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_model.cfg @@ -2,178 +2,178 @@ sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["PRECT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["SST"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["SOLIN"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["ALBEDO"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["ALBEDOC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["RESTOM"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FLUT"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FLUTC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FSNTOA"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FSNTOAC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["SWCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["LWCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["NETCF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["ALBEDO_SRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["SWCFSRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["LWCFSRF"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FLDS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FLDSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FLNS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FLNSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FSDS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FSDSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FSNS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["FSNSC"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["LHFLX"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["TMQ"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["U"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0, 200.0] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["Z3"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["T"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0, 200.0] @@ -181,156 +181,157 @@ plevs = [850.0, 200.0] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_ISCCP"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_9.4_ISCCP"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU9.4_ISCCP"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDLOW_TAU1.3_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDLOW_TAU1.3_9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDLOW_TAU9.4_MISR"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU1.3_9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_TAU9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDHGH_TAU1.3_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDHGH_TAU1.3_9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDHGH_TAU9.4_MODIS"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDHGH_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDLOW_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDMED_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["CLDTOT_CAL"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["TGCLDLWP_OCN"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["ERFtot", "ERFari", "ERFaci", "ERFres"] -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] + [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ['Mass_bc_200', 'Mass_ncl_200', 'Mass_so4_200', 'Mass_dst_200', 'Mass_pom_200', 'Mass_soa_200', 'Mass_mom_200'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ['Mass_bc_srf', 'Mass_ncl_srf', 'Mass_so4_srf', 'Mass_dst_srf', 'Mass_pom_srf', 'Mass_soa_srf', 'Mass_mom_srf'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ['Mass_bc_850', 'Mass_ncl_850', 'Mass_so4_850', 'Mass_dst_850', 'Mass_pom_850', 'Mass_soa_850', 'Mass_mom_850'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ['Mass_bc_330', 'Mass_ncl_330', 'Mass_so4_330', 'Mass_dst_330', 'Mass_pom_330', 'Mass_soa_330', 'Mass_mom_330'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "model_vs_model" variables = ["in_grid_cdnc", "in_grid_lwp", "in_cloud_cdnc", "in_cloud_lwp"] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff --git a/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_obs.cfg b/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_obs.cfg index bdf58e278..9f6ee8867 100644 --- a/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_obs.cfg +++ b/e3sm_diags/driver/default_diags/zonal_mean_xy_model_vs_obs.cfg @@ -4,7 +4,7 @@ case_id = "GPCP_v3.2" variables = ["PRECT"] ref_name = "GPCP_v3.2" reference_name = "GPCP v2.2" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] [#] @@ -13,7 +13,7 @@ case_id = "GPCP_v2.3" variables = ["PRECT"] ref_name = "GPCP_v2.3" reference_name = "GPCP v2.3" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] regions = ["global"] [#] @@ -22,7 +22,7 @@ case_id = "SST_HadISST" variables = ["SST"] ref_name = "HadISST" reference_name = "HadISST" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -30,7 +30,7 @@ case_id = "SST_CL_HadISST" variables = ["SST"] ref_name = "HadISST_CL" reference_name = "HadISST (Climatology)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -38,7 +38,7 @@ case_id = "SST_PI_HadISST" variables = ["SST"] ref_name = "HadISST_PI" reference_name = "HadISST (Pre-Indust)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -46,7 +46,7 @@ case_id = "SST_PD_HadISST" variables = ["SST"] ref_name = "HadISST_PD" reference_name = "HadISST (Present Day)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -54,7 +54,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["SOLIN"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -62,7 +62,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["ALBEDO"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -70,7 +70,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["ALBEDOC"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -78,7 +78,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["RESTOM"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -86,7 +86,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FLUT"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -94,7 +94,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FLUTC"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -102,7 +102,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FSNTOA"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -110,7 +110,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["FSNTOAC"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -118,7 +118,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["SWCF"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -126,7 +126,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["LWCF"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -134,7 +134,7 @@ case_id = "CERES-EBAF-TOA-v4.1" variables = ["NETCF"] ref_name = "ceres_ebaf_toa_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -142,7 +142,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["ALBEDO_SRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -150,7 +150,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["SWCFSRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -158,7 +158,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["LWCFSRF"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -166,7 +166,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLDS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -174,7 +174,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLDSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -182,7 +182,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLNS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -190,7 +190,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FLNSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -198,7 +198,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSDS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -206,7 +206,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSDSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -214,7 +214,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSNS"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -222,7 +222,7 @@ case_id = "CERES-EBAF-surface-v4.1" variables = ["FSNSC"] ref_name = "ceres_ebaf_surface_v4.1" reference_name = "CERES-EBAF v4.1" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -230,7 +230,7 @@ case_id = "ERA5" variables = ["LHFLX"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -238,7 +238,7 @@ case_id = "ERA5" variables = ["PRECT"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -246,7 +246,7 @@ case_id = "ERA5" variables = ["TMQ"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -254,7 +254,7 @@ case_id = "ERA5" variables = ["TREFHT"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -262,7 +262,7 @@ case_id = "ERA5" variables = ["TMQ"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -270,7 +270,7 @@ case_id = "ERA5" variables = ["U"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0, 200.0] @@ -279,7 +279,7 @@ case_id = "ERA5" variables = ["Z3"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] [#] @@ -288,7 +288,7 @@ case_id = "ERA5" variables = ["T"] ref_name = "ERA5" reference_name = "ERA5 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0, 200.0] [#] @@ -297,7 +297,7 @@ case_id = "MERRA2" variables = ["PRECT"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -305,7 +305,7 @@ case_id = "MERRA2" variables = ["TMQ"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -313,7 +313,7 @@ case_id = "MERRA2" variables = ["TREFHT"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] @@ -322,7 +322,7 @@ case_id = "MERRA2" variables = ["TREFMNAV"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] @@ -331,7 +331,7 @@ case_id = "MERRA2" variables = ["TREFMXAV"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -339,7 +339,7 @@ case_id = "MERRA2" variables = ["U"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850, 200.0] [#] @@ -348,7 +348,7 @@ case_id = "MERRA2" variables = ["Z3"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [500.0] [#] @@ -357,7 +357,7 @@ case_id = "MERRA2" variables = ["T"] ref_name = "MERRA2" reference_name = "MERRA2 Reanalysis" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] plevs = [850.0, 200.0] [#] @@ -366,7 +366,7 @@ case_id = "Cloud ISCCP" variables = ["CLDTOT_TAU1.3_ISCCP"] ref_name = "ISCCPCOSP" reference_name = "ISCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -374,7 +374,7 @@ case_id = "Cloud ISCCP" variables = ["CLDTOT_TAU1.3_9.4_ISCCP"] ref_name = "ISCCPCOSP" reference_name = "ISCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -382,7 +382,7 @@ case_id = "Cloud ISCCP" variables = ["CLDTOT_TAU9.4_ISCCP"] ref_name = "ISCCPCOSP" reference_name = "ISCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -390,7 +390,7 @@ case_id = "Cloud MISR" variables = ["CLDTOT_TAU1.3_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -398,7 +398,7 @@ case_id = "Cloud MISR" variables = ["CLDTOT_TAU1.3_9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -406,7 +406,7 @@ case_id = "Cloud MISR" variables = ["CLDTOT_TAU9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -414,7 +414,7 @@ case_id = "Cloud MISR" variables = ["CLDLOW_TAU1.3_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -422,7 +422,7 @@ case_id = "Cloud MISR" variables = ["CLDLOW_TAU1.3_9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -430,7 +430,7 @@ case_id = "Cloud MISR" variables = ["CLDLOW_TAU9.4_MISR"] ref_name = "MISRCOSP" reference_name = "MISR Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -438,7 +438,7 @@ case_id = "Cloud MODIS" variables = ["CLDTOT_TAU1.3_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -446,7 +446,7 @@ case_id = "Cloud MODIS" variables = ["CLDTOT_TAU1.3_9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -454,7 +454,7 @@ case_id = "Cloud MODIS" variables = ["CLDTOT_TAU9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -462,7 +462,7 @@ case_id = "Cloud MODIS" variables = ["CLDHGH_TAU1.3_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -470,7 +470,7 @@ case_id = "Cloud MODIS" variables = ["CLDHGH_TAU1.3_9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -478,7 +478,7 @@ case_id = "Cloud MODIS" variables = ["CLDHGH_TAU9.4_MODIS"] ref_name = "MODISCOSP" reference_name = "MODIS Simulator" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -486,7 +486,7 @@ case_id = "Cloud Calipso" variables = ["CLDHGH_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -494,7 +494,7 @@ case_id = "Cloud Calipso" variables = ["CLDLOW_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -502,7 +502,7 @@ case_id = "Cloud Calipso" variables = ["CLDMED_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -510,7 +510,7 @@ case_id = "Cloud Calipso" variables = ["CLDTOT_CAL"] ref_name = "CALIPSOCOSP" reference_name = "CALIPSO-GOCCP" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -518,7 +518,7 @@ case_id = "Cloud SSM/I" variables = ["TGCLDLWP_OCN"] ref_name = "SSMI" reference_name = "SSM/I (Wentz)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -526,7 +526,7 @@ case_id = "GPCP_OAFLux" variables = ["PminusE"] ref_name = "GPCP_OAFLux" reference_name = "PRECT(GPCP) minus QFLX(OAFLux)" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] @@ -534,36 +534,36 @@ case_id = "COREv2_Flux" variables = ["PminusE"] ref_name = "COREv2_Flux" reference_name = "COREv2_Flux" -seasons = ["ANN", "DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "aero-no-ref-data" variables = ['Mass_bc_200', 'Mass_ncl_200', 'Mass_so4_200', 'Mass_dst_200', 'Mass_pom_200', 'Mass_soa_200', 'Mass_mom_200'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "aero-no-ref-data" variables = ['Mass_bc_srf', 'Mass_ncl_srf', 'Mass_so4_srf', 'Mass_dst_srf', 'Mass_pom_srf', 'Mass_soa_srf', 'Mass_mom_srf'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "aero-no-ref-data" variables = ['Mass_bc_850', 'Mass_ncl_850', 'Mass_so4_850', 'Mass_dst_850', 'Mass_pom_850', 'Mass_soa_850', 'Mass_mom_850'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "aero-no-ref-data" variables = ['Mass_bc_330', 'Mass_ncl_330', 'Mass_so4_330', 'Mass_dst_330', 'Mass_pom_330', 'Mass_soa_330', 'Mass_mom_330'] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] [#] sets = ["zonal_mean_xy"] case_id = "aero-no-ref-data" variables = ["in_grid_cdnc", "in_grid_lwp", "in_cloud_cdnc", "in_cloud_lwp"] -seasons = ["ANN","DJF", "MAM", "JJA", "SON"] +seasons = ["ANN", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "DJF", "MAM", "JJA", "SON"] diff --git a/e3sm_diags/driver/utils/dataset.py b/e3sm_diags/driver/utils/dataset.py index ea0f25391..f1e0ae6f5 100644 --- a/e3sm_diags/driver/utils/dataset.py +++ b/e3sm_diags/driver/utils/dataset.py @@ -321,7 +321,25 @@ def _find_climo_file(self, path_name, data_name, season): return os.path.join(path_name, filename) # The below is only ran on model data, because a shorter name is passed into this software. Won't work when use month name such as '01' as season. for filename in dir_files: - if season in ["ANN", "DJF", "MAM", "JJA", "SON"]: + if season in [ + "ANN", + "DJF", + "MAM", + "JJA", + "SON", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12", + ]: if filename.startswith(data_name) and season in filename: return os.path.join(path_name, filename) # No file found. diff --git a/e3sm_diags/viewer/default_viewer.py b/e3sm_diags/viewer/default_viewer.py index 069746ef8..f96e9581b 100644 --- a/e3sm_diags/viewer/default_viewer.py +++ b/e3sm_diags/viewer/default_viewer.py @@ -38,7 +38,25 @@ # These 'seasons' can be months as well, if a user # wants that: # SEASONS = ['01', '02', ..., '12'] -SEASONS = ["ANN", "DJF", "MAM", "JJA", "SON"] +SEASONS = [ + "ANN", + "DJF", + "MAM", + "JJA", + "SON", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12", +] def create_viewer(root_dir, parameters): diff --git a/examples/run_v2_9_0_all_sets_E3SM_machines.py b/examples/run_v2_9_0_all_sets_E3SM_machines.py index 702cf29f0..37f43bc48 100644 --- a/examples/run_v2_9_0_all_sets_E3SM_machines.py +++ b/examples/run_v2_9_0_all_sets_E3SM_machines.py @@ -69,7 +69,7 @@ def run_all_sets(): param.results_dir = f"{machine_paths['html_path']}/v2_9_0_all_sets" param.multiprocessing = True - param.num_workers = 5 + param.num_workers = 24 # Set specific parameters for new sets enso_param = EnsoDiagsParameter()