Check all SCMs against LES for the “FixN” configuration

Check all SCMs against LES for the “FixN” configuration#

  • The below notebook compares single column model simulations (colors) against a set of LES benchmark simulations (shown in gray).

  • All requested 1D and 2D variables are here read and plotted. “load_sims” reports variable that are missing. Lines will not show, if a variable is missing or if it contains missing values.

  • In case you find inconsistencies in the benchmark set or wish to expand the code, please contact Ann Fridlind (ann.fridlind@nasa.gov), Timothy Juliano (tjuliano@ucar.edu), and Florian Tornow (ft2544@columbia.edu).

%run functions_plotting.py

## select (grayed out) simulations to plot
sim_keyword_gray_1 = 'DHARMA_Lx25_dx100_FixN.'
sim_keyword_gray_2 = 'WRF_Lx25_dx100_FixN.'

## select LES run(s) of interest
#sim_keyword_col_les = 'DHARMA_Lx25_dx100_FixN_noice.'
sim_keyword_col_scm_1 = 'FixN_def_z0.nc'
sim_keyword_col_scm_2 = 'FixN.nc'
sim_keyword_col_scm_3 = 'FixN_alt'
vars_mean_list = pd.read_excel('https://docs.google.com/spreadsheets/d/1Vl8jYGviet7EtXZuQiitrx4NSkV1x27aJAhxxjBb9zI/export?gid=1026157027&format=xlsx',
                              sheet_name='SCM')

## short names
var_vec_1d = np.asarray(vars_mean_list.variable_id[vars_mean_list.dimensions == 'time'])
var_vec_2d = np.asarray(vars_mean_list.variable_id[vars_mean_list.dimensions == 'time, layer'])

var_vec_2d = var_vec_2d[var_vec_2d!='zf']

## long names
var_vec_1d_long = np.asarray(vars_mean_list.standard_name[vars_mean_list.dimensions == 'time'])

## Units
var_vec_1d_units = np.asarray(vars_mean_list.units[vars_mean_list.dimensions == 'time'])
var_vec_2d_units = np.asarray(vars_mean_list.units[vars_mean_list.dimensions == 'time, layer'])
## load all simulations located in subfolders of the given directory
df_gray_1d_1,df_gray_2d_1 = load_sims('../../output_les/',var_vec_1d,var_vec_2d,t_shift=-2,keyword=sim_keyword_gray_1,make_gray = 1)
df_gray_1d_2,df_gray_2d_2 = load_sims('../../output_les/',var_vec_1d,var_vec_2d,t_shift=-2,keyword=sim_keyword_gray_2,make_gray = 1)

## example using LES
#df_col_1d_les,df_col_2d_les = load_sims('../../output_les/',var_vec_1d,var_vec_2d,t_shift=-2,keyword=sim_keyword_col_les)

## example using SCM
df_col_1d_scm_1,df_col_2d_scm_1 = load_sims('../../output_scm/',var_vec_1d,var_vec_2d,t_shift=-2,keyword=sim_keyword_col_scm_1,subfolder='sand',ignore='CCPP-SCM')
df_col_1d_scm_2,df_col_2d_scm_2 = load_sims('../../output_scm/',var_vec_1d,var_vec_2d,t_shift=-2,keyword=sim_keyword_col_scm_2,subfolder='sand')
df_col_1d_scm_3,df_col_2d_scm_3 = load_sims('../../output_scm/',var_vec_1d,var_vec_2d,t_shift=-2,keyword=sim_keyword_col_scm_3,subfolder='sand')
Loading variables: f(time)
../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
z0h shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
z0q shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
pblh not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
zi not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
cf not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
cflc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
cfc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
ssaf shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
Loading variables: f(time,height)
../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
pe not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qi not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
fh not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
fc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
tke not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
cmfu not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
cmfd not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
na1 shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
na2 shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
na3 shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
dna_micro_warm shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
dna_micro_cold shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
dna_turb shows NAN values in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qlcs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qlrs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qics not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qips not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qlcc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qlrc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qicc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
qipc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
nlcs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
nlrs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
nics not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
nips not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
relcc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
relrc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
reicc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
reipc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
flcs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
flrs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
fics not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
fips not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
flcc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
flrc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
ficc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
fipc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmlcs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmlrs not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmics not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmips not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmlcc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmlrc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmicc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
vmipc not found in ../../output_les/dharma/sandbox/DHARMA_Lx25_dx100_FixN.nc
Loading variables: f(time)
../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
pblh not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
zi not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
cf not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
cflc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
cfc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
ssaf shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
Loading variables: f(time,height)
../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
pe not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qi not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
fh not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
fc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
tke not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
eps shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
cmfu not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
cmfd not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
rld shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
rlu shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
na1 shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
na2 shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
na3 shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
dna_micro_warm shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
dna_micro_cold shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
dna_turb shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
dni_het shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
dni_sip shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
dni_hom shows NAN values in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qlcs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qlrs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qics not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qips not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qlcc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qlrc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qicc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
qipc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
nlcs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
nlrs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
nics not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
nips not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
relcc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
relrc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
reicc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
reipc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
flcs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
flrs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
fics not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
fips not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
flcc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
flrc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
ficc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
fipc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmlcs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmlrs not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmics not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmips not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmlcc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmlrc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmicc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
vmipc not found in ../../output_les/wrf/sandbox/WRF_Lx25_dx100_FixN.nc
Loading variables: f(time)
../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
z0 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
z0h shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
z0q shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
cflc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
odlc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
ssaf shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
z0 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
z0h shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
z0q shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
cflc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
odlc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
ssaf shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
z0 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
z0h shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
z0q shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
cflc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
odlc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
ssaf shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
ustar shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
z0 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
z0h shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
z0q shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
ol shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
pblh shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
zi shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
cflc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
od shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
odlc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
ssaf shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
Loading variables: f(time,height)
../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
pe shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
eps shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
vf_thli shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
na1 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
na2 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
na3 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
dna_micro_warm shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
dna_micro_cold shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
dna_turb shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
dni_het shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
dni_sip shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
dni_hom shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
relcc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
relrc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
reicc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
reipc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun2_FixN_def_z0.nc
../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
pe shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
eps shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
vf_thli shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
na1 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
na2 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
na3 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
dna_micro_warm shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
dna_micro_cold shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
dna_turb shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
dni_het shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
dni_sip shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
dni_hom shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
relcc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
relrc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
reicc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
reipc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Phys_FixN_def_z0.nc
../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
pe shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
eps shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
vf_thli shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
na1 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
na2 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
na3 shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
dna_micro_warm shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
dna_micro_cold shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
dna_turb shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
dni_het shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
dni_sip shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
dni_hom shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
relcc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
relrc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
reicc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
reipc shows NAN values in ../../output_scm/modelE/sandbox/ModelE3-Tun1_FixN_def_z0.nc
../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
flc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
fc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
prf shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
prfi shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
eps shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
uw shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vw shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
w2 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
wth shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vf_thli shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
wqv shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vf_qt shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
cmfu shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
cmfd shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
na1 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
na2 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
na3 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
dna_micro_warm shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
dna_micro_cold shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
dna_turb shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
dni_het shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
dni_sip shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
dni_hom shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qlcs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qlrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qlcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qlrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qicc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
qipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
nlrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
nics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
nips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
relcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
relrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
reicc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
reipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
flcs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
flrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
fics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
fips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
flcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
flrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
ficc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
fipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmlcs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmlrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmlcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmlrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmicc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
vmipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN_def_z0.nc
Loading variables: f(time)
../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
pblh shows NAN values in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
od shows NAN values in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
odlc shows NAN values in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
ssaf shows NAN values in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
ustar shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
z0 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
z0h shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
z0q shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
ol shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
pblh shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
zi shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
cflc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
od shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
odlc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
ssaf shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
Loading variables: f(time,height)
../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
eps not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
cmfd not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
na1 not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
na2 not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
na3 not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
dna_micro_warm not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
dna_micro_cold not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
dna_turb not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
dni_het not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
dni_sip not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
dni_hom not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
relcc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
relrc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
reicc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
reipc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmlcs not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmlrs not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmics not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmips not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmlcc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmlrc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmicc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
vmipc not found in ../../output_scm/DALES-EDMFn/sandbox/DALES-EDMFn_FixN.nc
../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
flc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
fc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
prf shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
prfi shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
eps shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
uw shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vw shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
w2 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
wth shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vf_thli shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
wqv shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vf_qt shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
cmfu shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
cmfd shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
na1 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
na2 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
na3 shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
dna_micro_warm shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
dna_micro_cold shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
dna_turb shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
dni_het shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
dni_sip shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
dni_hom shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qlcs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qlrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qlcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qlrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qicc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
qipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
nlrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
nics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
nips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
relcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
relrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
reicc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
reipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
flcs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
flrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
fics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
fips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
flcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
flrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
ficc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
fipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmlcs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmlrs shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmics shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmips shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmlcc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmlrc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmicc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
vmipc shows NAN values in ../../output_scm/icon-scm/sandbox/ICON-SCM_FixN.nc
Loading variables: f(time)
../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
cflc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
cfc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
od shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
odlc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
pri shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
Loading variables: f(time,height)
../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
pe shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
huri shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
fh shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
flc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
fc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
prf shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
prfi shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
tke shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
eps shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
w2 shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
wth shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vf_thli shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
cmfu shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
cmfd shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
rld shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
rlu shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dq_micro shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dq_turb shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
na1 shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
na2 shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
na3 shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dna_micro_warm shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dna_micro_cold shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dna_turb shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dni_het shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dni_sip shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
dni_hom shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qlcs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qlrs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qics shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qips shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qlcc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qlrc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qicc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
qipc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
nlcs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
nlrs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
nics shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
nips shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
relcc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
relrc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
reicc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
reipc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
flcs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
flrs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
fics shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
fips shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
flcc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
flrc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
ficc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
fipc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmlcs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmlrs shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmics shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmips shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmlcc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmlrc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmicc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
vmipc shows NAN values in ../../output_scm/AOSCM/sandbox/AOSCM_FixN_alt.nc
# plot variables that have only time dependence
plot_1d(pd.concat([df_gray_1d_1,df_gray_1d_2,df_col_1d_scm_1,df_col_1d_scm_2,df_col_1d_scm_3]),var_vec_1d,longnames=var_vec_1d_long,units=var_vec_1d_units)
../../_images/48f2160f9a257f9ad61ef578bca54ff71d1a1dc24ccc9b01afce4831d1b04cf6.png
## example where ERA5 and radiosonde are included
plot_2d(pd.concat([df_gray_2d_1,df_gray_2d_2,df_col_2d_scm_1,df_col_2d_scm_2,df_col_2d_scm_3]),var_vec = var_vec_2d,times=[-1.5,0,3,9,18],z_max=6000,units=var_vec_2d_units)## example where ERA5 and radiosonde are included
temporal averaging over 1.0 h interval
../../_images/19466a486627160fa9f73b4c263bf0303044f00dc322d183b70c107105f53555.png
<Figure size 1000x600 with 0 Axes>