diff --git a/parm/atm/atm_ens_config.yaml.j2 b/parm/atm/atm_ens_config.yaml.j2 index 1c55ea3c0..87d331e0d 100644 --- a/parm/atm/atm_ens_config.yaml.j2 +++ b/parm/atm/atm_ens_config.yaml.j2 @@ -75,5 +75,11 @@ data_out: '${YMD}': current_cycle | to_YMD, '${HH}': current_cycle | strftime('%H'), '${MEMDIR}': 'mem%03d' | format(imem) }) %} +{% if DOENKFONLY_ATM | default(false) %} + {% for itile in range(1, ntiles + 1) %} + - ['{{ DATA }}/anl/{{ 'mem%03d' | format(imem) }}/{{ APREFIX_ENS }}cubed_sphere_grid_atminc.tile{{ itile }}.nc', '{{ COM_ATMOS_ANALYSIS_TMPL | replace_tmpl(tmpl_dict) }}/{{ APREFIX_ENS }}csg_jedi_increment.atm.i006.tile{{ itile }}.nc'] + {% endfor %} +{% else %} - ['{{ DATA }}/anl/{{ 'mem%03d' | format(imem) }}/{{ APREFIX_ENS }}cubed_sphere_grid_atminc.nc', '{{ COM_ATMOS_ANALYSIS_TMPL | replace_tmpl(tmpl_dict) }}/{{ APREFIX_ENS }}csg_jedi_increment.atm.i006.nc'] +{% endif %} {% endfor %} diff --git a/parm/atm/atm_ens_obs_dist_localizations.yaml.j2 b/parm/atm/atm_ens_obs_dist_localizations.yaml.j2 new file mode 100644 index 000000000..355ce6f38 --- /dev/null +++ b/parm/atm/atm_ens_obs_dist_localizations.yaml.j2 @@ -0,0 +1,19 @@ +obs_distribution_localizations: + obs_distribution: + name: {{ distribution_type }} + halo size: 1250e3 + obs_localizations: + - localization method: Horizontal Gaspari-Cohn + lengthscale: 1250e3 + max nobs: 10000 + +override_obs_distribution_localizations: + override: false + atms_n20: + obs_distribution: + name: {{ distribution_type }} + halo size: 850e3 + obs_localizations: + - localization method: Horizontal Gaspari-Cohn + lengthscale: 850e3 + max nobs: 5000 diff --git a/parm/atm/jcb-base.yaml.j2 b/parm/atm/jcb-base.yaml.j2 index 1ad6fbc30..170595023 100644 --- a/parm/atm/jcb-base.yaml.j2 +++ b/parm/atm/jcb-base.yaml.j2 @@ -129,6 +129,8 @@ local_ensemble_da_solver: Deterministic GETKF increment_variables: [eastward_wind,northward_wind,layer_thickness,air_pressure_thickness,air_temperature,air_pressure_at_surface,water_vapor_mixing_ratio_wrt_moist_air,cloud_liquid_ice,cloud_liquid_water,snow_water,rain_water,graupel,ozone_mass_mixing_ratio] +atm_enkfonly: {{ DOENKFONLY_ATM | default(false, true) }} + # Veritcal localization for GETKF vl_fraction_of_retained_variance: 0.750 vl_lengthscale: 2.1 @@ -145,9 +147,6 @@ driver_save_prior_mean: false driver_save_posterior_mean_increment: false driver_save_posterior_ensemble_increments: true -# Distribution type -distribution_type: Halo - # Diagnostics atmosphere_ensemble_increment_prefix: "./anl/mem%{member}%/atminc." atmosphere_posterior_output_gaussian: "./mem%{member}%/atmanl." diff --git a/parm/atm/jcb-prototype_lgetkf.yaml.j2 b/parm/atm/jcb-prototype_lgetkf.yaml.j2 index feba60edd..3f3275d21 100644 --- a/parm/atm/jcb-prototype_lgetkf.yaml.j2 +++ b/parm/atm/jcb-prototype_lgetkf.yaml.j2 @@ -1,6 +1,6 @@ # Use observations for lgetkf # --------------------------- -app_path_observations: {{PARMgfs}}/gdas/jcb-gdas/observations/atmosphere-lgetkf +app_path_observations: {{PARMgfs}}/gdas/jcb-gdas/observations/atmosphere app_path_observation_chronicle: {{PARMgfs}}/gdas/jcb-gdas/observation_chronicle/atmosphere # Algorithm @@ -11,8 +11,13 @@ algorithm: local_ensemble_da # ------------ atmosphere_background_ensemble_path: ./bkg/mem%mem% +# Observation distribution and localization +{% set distribution_type = "Halo" %} +{% include 'atm_ens_obs_dist_localizations.yaml.j2' %} + # Observation things # ------------------ +use_linear_observer: true {% include OBS_LIST_YAML %} # Testing things diff --git a/parm/atm/jcb-prototype_lgetkf_observer.yaml.j2 b/parm/atm/jcb-prototype_lgetkf_observer.yaml.j2 index f188fecf1..37d7a3402 100644 --- a/parm/atm/jcb-prototype_lgetkf_observer.yaml.j2 +++ b/parm/atm/jcb-prototype_lgetkf_observer.yaml.j2 @@ -1,6 +1,6 @@ # Use observations for lgetkf # --------------------------- -app_path_observations: {{PARMgfs}}/gdas/jcb-gdas/observations/atmosphere-lgetkf +app_path_observations: {{PARMgfs}}/gdas/jcb-gdas/observations/atmosphere app_path_observation_chronicle: {{PARMgfs}}/gdas/jcb-gdas/observation_chronicle/atmosphere # Algorithm @@ -14,8 +14,9 @@ atmosphere_background_ensemble_path: ./bkg/mem%mem% # Naming conventions for observation files atmosphere_obsdataout_prefix: diag_lobs_ -# Distribution type -distribution_type: RoundRobin +# Observation distribution and localization +{% set distribution_type = "RoundRobin" %} +{% include 'atm_ens_obs_dist_localizations.yaml.j2' %} # Observation things # ------------------ diff --git a/parm/atm/jcb-prototype_lgetkf_solver.yaml.j2 b/parm/atm/jcb-prototype_lgetkf_solver.yaml.j2 index abd0022dd..3fe30276b 100644 --- a/parm/atm/jcb-prototype_lgetkf_solver.yaml.j2 +++ b/parm/atm/jcb-prototype_lgetkf_solver.yaml.j2 @@ -1,6 +1,6 @@ # Use observations for lgetkf # --------------------------- -app_path_observations: {{PARMgfs}}/gdas/jcb-gdas/observations/atmosphere-lgetkf +app_path_observations: {{PARMgfs}}/gdas/jcb-gdas/observations/atmosphere app_path_observation_chronicle: {{PARMgfs}}/gdas/jcb-gdas/observation_chronicle/atmosphere # Algorithm @@ -17,8 +17,9 @@ atmosphere_obsdatain_prefix: diag_lobs_ atmosphere_obsdatain_suffix: "_{{ current_cycle | to_YMDH }}.nc" atmosphere_obsdataout_prefix: diag_solv_ -# Distribution type -distribution_type: Halo +# Observation distribution and localization +{% set distribution_type = "Halo" %} +{% include 'atm_ens_obs_dist_localizations.yaml.j2' %} # Observation things # ------------------ diff --git a/parm/jcb-algorithms b/parm/jcb-algorithms index dbd97c8fa..7d51ab64b 160000 --- a/parm/jcb-algorithms +++ b/parm/jcb-algorithms @@ -1 +1 @@ -Subproject commit dbd97c8fa0605ca80dfd5d563e841d3ead3e15f6 +Subproject commit 7d51ab64b07821d414d3129a86316e52dcf0921c diff --git a/sorc/jcb b/sorc/jcb index dd9ff0a37..72ccf27d2 160000 --- a/sorc/jcb +++ b/sorc/jcb @@ -1 +1 @@ -Subproject commit dd9ff0a37f8d074bbf9782d337691c1b3a0ac232 +Subproject commit 72ccf27d2f145fde1b69ff079675b4aef8d048b3 diff --git a/test/testreference/atm_jjob_lgetkf.ref b/test/testreference/atm_jjob_lgetkf.ref index 9dbac82ca..cbe97ea2d 100644 --- a/test/testreference/atm_jjob_lgetkf.ref +++ b/test/testreference/atm_jjob_lgetkf.ref @@ -3,11 +3,11 @@ Initial state for member 1: State print | number of fields = 28 | cube sphere face size: C48 eastward_wind | Min:-5.1619864857418477e+01 Max:+8.6812084442971653e+01 RMS:+1.5983411875766325e+01 northward_wind | Min:-7.3094846805319690e+01 Max:+7.0353817207582651e+01 RMS:+7.7265473774262041e+00 -air_temperature | Min:+1.7646396818493386e+02 Max:+3.1441817730817547e+02 RMS:+2.4989439192167012e+02 -layer_thickness | Min:-2.8728340670782936e+03 Max:-1.5844010522128334e+01 RMS:+9.8310890327340439e+02 -air_pressure_thickness | Min:+6.0599999953541761e-01 Max:+1.7747677648323079e+03 RMS:+9.5676512006998769e+02 -air_pressure_at_surface | Min:+5.3259705655314101e+04 Max:+1.0392378167916714e+05 RMS:+9.8893465602866549e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+9.5164908108891825e-09 Max:+2.0222136340880194e-02 RMS:+4.8552459174929334e-03 +air_temperature | Min:+1.7646396818493386e+02 Max:+3.1441817730817547e+02 RMS:+2.4989439192167009e+02 +layer_thickness | Min:-2.8728340670782936e+03 Max:-1.5844010522128334e+01 RMS:+9.8310890327340451e+02 +air_pressure_thickness | Min:+6.0599999953541761e-01 Max:+1.7747677648323079e+03 RMS:+9.5676512006998780e+02 +air_pressure_at_surface | Min:+5.3259705655314101e+04 Max:+1.0392378167916714e+05 RMS:+9.8893465602866534e+04 +water_vapor_mixing_ratio_wrt_moist_air | Min:+9.5164908108891825e-09 Max:+2.0222136340880194e-02 RMS:+4.8552459174929325e-03 cloud_liquid_ice | Min:-1.3545705512023003e-20 Max:+6.7304686933261399e-04 RMS:+1.0726563909939355e-05 cloud_liquid_water | Min:-5.4244251425755909e-20 Max:+1.2879383569881558e-03 RMS:+3.8382491358281577e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 @@ -18,13 +18,13 @@ rain_number_concentration | Min:+0.0000000000000000e+00 Max:+ ozone_mass_mixing_ratio | Min:+2.9375003505643131e-08 Max:+1.8014885502109894e-05 RMS:+4.4946424525503736e-06 geopotential_height_at_surface | Min:-2.7018394470214844e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 -sheleg | Min:+0.0000000000000000e+00 Max:+3.3367721414977348e+02 RMS:+2.2844482914802999e+01 +sheleg | Min:+0.0000000000000000e+00 Max:+3.3367721414977348e+02 RMS:+2.2844482914802995e+01 skin_temperature_at_surface | Min:+2.0791388472150163e+02 Max:+3.4773327272108133e+02 RMS:+2.8888781974396971e+02 vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 soilt | Min:+2.2171981453657514e+02 Max:+3.1531527244154063e+02 RMS:+2.8929101171094050e+02 -soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7129824793386712e-01 +soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7129824793386701e-01 totalSnowDepthMeters | Min:+0.0000000000000000e+00 Max:+1.8134236127502426e+00 RMS:+1.8222715253202781e-01 eastward_wind_at_surface | Min:-2.0302650327509099e+01 Max:+2.1760551255897649e+01 RMS:+5.2972810149144989e+00 northward_wind_at_surface | Min:-1.4968894650435200e+01 Max:+1.6765905429678224e+01 RMS:+4.2782356748931996e+00 @@ -37,7 +37,7 @@ eastward_wind | Min:-5.2853490758012072e+01 Max:+ northward_wind | Min:-7.2178651628585953e+01 Max:+7.2568167230757609e+01 RMS:+7.7335061167195889e+00 air_temperature | Min:+1.7660670217895057e+02 Max:+3.1526174222386965e+02 RMS:+2.4989392943476341e+02 layer_thickness | Min:-2.8750852837791022e+03 Max:-1.5794597440684603e+01 RMS:+9.8301208643901532e+02 -air_pressure_thickness | Min:+6.0599999948625027e-01 Max:+1.7752652524725063e+03 RMS:+9.5675980922035808e+02 +air_pressure_thickness | Min:+6.0599999948625027e-01 Max:+1.7752652524725063e+03 RMS:+9.5675980922035819e+02 air_pressure_at_surface | Min:+5.3317702550070273e+04 Max:+1.0394629485957995e+05 RMS:+9.8892949759388735e+04 water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1514597275760548e-08 Max:+1.9663168048133908e-02 RMS:+4.8569105861498299e-03 cloud_liquid_ice | Min:-1.3544569699620215e-20 Max:+7.9557019872326799e-04 RMS:+1.0816147029169270e-05 @@ -51,7 +51,7 @@ ozone_mass_mixing_ratio | Min:+1.6238717942558199e-08 Max:+ geopotential_height_at_surface | Min:-2.7018394470214844e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.3446253401369569e+02 RMS:+2.2874187237166272e+01 -skin_temperature_at_surface | Min:+2.0978258608237891e+02 Max:+3.4063292812032523e+02 RMS:+2.8892010225961866e+02 +skin_temperature_at_surface | Min:+2.0978258608237891e+02 Max:+3.4063292812032523e+02 RMS:+2.8892010225961860e+02 vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 @@ -65,13 +65,13 @@ f10m | Min:+9.3238101450200428e-01 Max:+ Initial state for member 3: ---------------------------------------------------------------------------------------------------- State print | number of fields = 28 | cube sphere face size: C48 -eastward_wind | Min:-5.3776366655868109e+01 Max:+8.6331467223030344e+01 RMS:+1.5960680883840784e+01 -northward_wind | Min:-7.0176400159320124e+01 Max:+6.9531049915936578e+01 RMS:+7.7410680097841684e+00 -air_temperature | Min:+1.7648447482434227e+02 Max:+3.1491330999751426e+02 RMS:+2.4989313307279673e+02 -layer_thickness | Min:-2.8748181022793874e+03 Max:-1.5822712660806282e+01 RMS:+9.8301820591439434e+02 +eastward_wind | Min:-5.3776366655868109e+01 Max:+8.6331467223030344e+01 RMS:+1.5960680883840782e+01 +northward_wind | Min:-7.0176400159320124e+01 Max:+6.9531049915936578e+01 RMS:+7.7410680097841675e+00 +air_temperature | Min:+1.7648447482434227e+02 Max:+3.1491330999751426e+02 RMS:+2.4989313307279670e+02 +layer_thickness | Min:-2.8748181022793874e+03 Max:-1.5822712660806282e+01 RMS:+9.8301820591439423e+02 air_pressure_thickness | Min:+6.0599999955059858e-01 Max:+1.7742011426782731e+03 RMS:+9.5675144888218676e+02 air_pressure_at_surface | Min:+5.3350124363319999e+04 Max:+1.0389818047809265e+05 RMS:+9.8892179510558097e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1846447498856659e-08 Max:+2.0007929878326374e-02 RMS:+4.8392192734415156e-03 +water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1846447498856659e-08 Max:+2.0007929878326374e-02 RMS:+4.8392192734415147e-03 cloud_liquid_ice | Min:-6.7740196346531239e-21 Max:+6.2473018245821010e-04 RMS:+1.0889666282638220e-05 cloud_liquid_water | Min:-5.4107584399974539e-20 Max:+1.2132298501853738e-03 RMS:+3.8405804865664137e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 @@ -87,8 +87,8 @@ skin_temperature_at_surface | Min:+2.0916406214271251e+02 Max:+ vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 -soilt | Min:+2.2179148729566896e+02 Max:+3.1492502526099332e+02 RMS:+2.8930134673298625e+02 -soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7132012473590570e-01 +soilt | Min:+2.2179148729566896e+02 Max:+3.1492502526099332e+02 RMS:+2.8930134673298619e+02 +soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7132012473590581e-01 totalSnowDepthMeters | Min:+0.0000000000000000e+00 Max:+1.8143247567290359e+00 RMS:+1.8207043992662716e-01 eastward_wind_at_surface | Min:-1.8951406320589882e+01 Max:+2.1985111394345580e+01 RMS:+5.3062512116922882e+00 northward_wind_at_surface | Min:-1.4183550286832059e+01 Max:+1.7289090100273199e+01 RMS:+4.2365567732484486e+00 @@ -96,33 +96,33 @@ f10m | Min:+9.2995810057091766e-01 Max:+ ---------------------------------------------------------------------------------------------------- H(x) for member 1: -AMSUA N19 nobs= 83277 Min=201.804879948996, Max=282.3801121316517, RMS=233.8544109312044 +radiance_amsua_n19 nobs= 129420 Min=125.6978616420297, Max=302.7814624493944, RMS=227.7077338564983 -sondes nobs= 8481 Min=-33.72854932079182, Max=309.9716288420037, RMS=141.2118598915683 +sondes nobs= 16962 Min=-33.72958083245494, Max=102121.896068573, RMS=40553.62713441675 H(x) for member 2: -AMSUA N19 nobs= 83277 Min=201.6471388000342, Max=281.937746664208, RMS=233.8545011749858 +radiance_amsua_n19 nobs= 129420 Min=125.3922197152047, Max=302.7487559214237, RMS=227.7187505943267 -sondes nobs= 8481 Min=-30.53139157018941, Max=310.1652090473367, RMS=141.1987914521134 +sondes nobs= 16962 Min=-30.5314449120472, Max=102092.7819137573, RMS=40556.74493703152 H(x) for member 3: -AMSUA N19 nobs= 83277 Min=201.5829490118361, Max=282.1251907433048, RMS=233.8561550394141 +radiance_amsua_n19 nobs= 129420 Min=125.3842263002066, Max=302.8357881538572, RMS=227.7286591922299 -sondes nobs= 8481 Min=-32.8575760671954, Max=310.4005466290033, RMS=141.1778598834968 +sondes nobs= 16962 Min=-32.86095387229424, Max=102018.5485801697, RMS=40551.08729869692 H(x) ensemble background mean: -AMSUA N19 nobs= 83277 Min=201.7041828462218, Max=282.1338202533128, RMS=233.8549949917435 +radiance_amsua_n19 nobs= 129420 Min=125.4914358858137, Max=302.7886688418689, RMS=227.7181707768426 -sondes nobs= 8481 Min=-32.28649706124742, Max=310.1791281727812, RMS=141.1945767641295 +sondes nobs= 16962 Min=-32.28721130380135, Max=102077.7421875, RMS=40553.8180458178 background y - H(x): -AMSUA N19 nobs= 83254 Min=-40.12245710945035, Max=14.39199700003849, RMS=1.519533651743879 +radiance_amsua_n19 nobs= 129390 Min=-69.75669519042367, Max=140.8137641632658, RMS=6.354720795864754 -sondes nobs= 3950 Min=-16.7986628776744, Max=16.07421631717781, RMS=4.060196677972983 +sondes nobs= 5283 Min=-199.65625, Max=71.3828125, RMS=6.91132880007275 Background mean : ---------------------------------------------------------------------------------------------------- @@ -130,9 +130,9 @@ State print | number of fields = 28 | cube sphere face size: C48 eastward_wind | Min:-5.0268509151643670e+01 Max:+8.6686198337381171e+01 RMS:+1.5943048359570170e+01 northward_wind | Min:-7.1281090590794832e+01 Max:+7.0613804297416578e+01 RMS:+7.6835678597476624e+00 air_temperature | Min:+1.7652661362892786e+02 Max:+3.1486440984318642e+02 RMS:+2.4989353796113025e+02 -layer_thickness | Min:-2.8742236189948235e+03 Max:-1.5820440207873071e+01 RMS:+9.8304588977244248e+02 +layer_thickness | Min:-2.8742236189948235e+03 Max:-1.5820440207873071e+01 RMS:+9.8304588977244271e+02 air_pressure_thickness | Min:+6.0599999954215089e-01 Max:+1.7745271604965960e+03 RMS:+9.5675867998450212e+02 -air_pressure_at_surface | Min:+5.3309177522901453e+04 Max:+1.0391290736184639e+05 RMS:+9.8892856412110239e+04 +air_pressure_at_surface | Min:+5.3309177522901453e+04 Max:+1.0391290736184639e+05 RMS:+9.8892856412110254e+04 water_vapor_mixing_ratio_wrt_moist_air | Min:+8.4477932715987172e-08 Max:+1.9531761470252519e-02 RMS:+4.8455165312756591e-03 cloud_liquid_ice | Min:-4.5148565665400716e-21 Max:+4.1857236992490481e-04 RMS:+1.0081670582489738e-05 cloud_liquid_water | Min:-1.8646059632736959e-20 Max:+1.0447516732817988e-03 RMS:+3.3566571025591825e-05 @@ -141,7 +141,7 @@ rain_water | Min:+0.0000000000000000e+00 Max:+ graupel | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 cloud_ice_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 rain_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 -ozone_mass_mixing_ratio | Min:+2.8043654425670649e-08 Max:+1.7892907435183836e-05 RMS:+4.4944974047442364e-06 +ozone_mass_mixing_ratio | Min:+2.8043654425670649e-08 Max:+1.7892907435183836e-05 RMS:+4.4944974047442373e-06 geopotential_height_at_surface | Min:-2.7018394470214840e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.2527521006769342e+02 RMS:+2.2874231579198337e+01 @@ -159,21 +159,21 @@ f10m | Min:+9.3258902621206641e-01 Max:+ Analysis mean : ---------------------------------------------------------------------------------------------------- State print | number of fields = 28 | cube sphere face size: C48 -eastward_wind | Min:-5.0314296032870828e+01 Max:+8.9520282382582224e+01 RMS:+1.5969822711453252e+01 -northward_wind | Min:-7.0598055656427448e+01 Max:+7.7258707934991165e+01 RMS:+7.7152005546907096e+00 -air_temperature | Min:+1.7652661359986740e+02 Max:+3.1531108468300340e+02 RMS:+2.4990923387929618e+02 -layer_thickness | Min:-2.8742236222923848e+03 Max:-1.5807388947405567e+01 RMS:+9.8306096988411264e+02 -air_pressure_thickness | Min:+6.0599999954215089e-01 Max:+1.7748141588720605e+03 RMS:+9.5672395981793989e+02 -air_pressure_at_surface | Min:+5.3309177524829895e+04 Max:+1.0391290731760874e+05 RMS:+9.8892856413954039e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+0.0000000000000000e+00 Max:+1.9531761470252519e-02 RMS:+4.8544729636303616e-03 -cloud_liquid_ice | Min:+0.0000000000000000e+00 Max:+3.9113371608414136e-04 RMS:+1.0484802212805322e-05 -cloud_liquid_water | Min:+0.0000000000000000e+00 Max:+1.7687973748434583e-03 RMS:+3.5182102810052812e-05 +eastward_wind | Min:-5.0822431550344611e+01 Max:+8.6852737487373759e+01 RMS:+1.5977369990850738e+01 +northward_wind | Min:-7.0115057194466303e+01 Max:+7.3286550330538262e+01 RMS:+7.7488292938948602e+00 +air_temperature | Min:+1.7652661355230106e+02 Max:+3.1485233032077548e+02 RMS:+2.4992519360478894e+02 +layer_thickness | Min:-2.8742236407922437e+03 Max:-1.5815330964980536e+01 RMS:+9.8307020916545252e+02 +air_pressure_thickness | Min:+6.0599999954215089e-01 Max:+1.7745552329933566e+03 RMS:+9.5672366041637747e+02 +air_pressure_at_surface | Min:+5.3309177521979829e+04 Max:+1.0391290732683394e+05 RMS:+9.8892856414630645e+04 +water_vapor_mixing_ratio_wrt_moist_air | Min:+0.0000000000000000e+00 Max:+1.9531761470252519e-02 RMS:+4.8468625808441336e-03 +cloud_liquid_ice | Min:+0.0000000000000000e+00 Max:+1.5688756769881352e-03 RMS:+1.1026113277304794e-05 +cloud_liquid_water | Min:+0.0000000000000000e+00 Max:+2.8742522016297210e-03 RMS:+3.6597275153922808e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 rain_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 graupel | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 cloud_ice_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 rain_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 -ozone_mass_mixing_ratio | Min:+0.0000000000000000e+00 Max:+1.7891446518893897e-05 RMS:+4.4960850273915232e-06 +ozone_mass_mixing_ratio | Min:+0.0000000000000000e+00 Max:+1.7890162996274697e-05 RMS:+4.4969235390115163e-06 geopotential_height_at_surface | Min:-2.7018394470214840e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.2527521006769342e+02 RMS:+2.2874231579198337e+01 @@ -190,33 +190,33 @@ f10m | Min:+9.3258902621206641e-01 Max:+ ---------------------------------------------------------------------------------------------------- H(x) for member 1: -AMSUA N19 nobs= 83277 Min=201.9208588596486, Max=282.357953700207, RMS=233.8976056792079 +radiance_amsua_n19 nobs= 129420 Min=125.7112667833263, Max=302.7927982580029, RMS=227.7951420823867 -sondes nobs= 8481 Min=-32.66983131492066, Max=310.0570501850078, RMS=141.1835316603369 +sondes nobs= 16962 Min=-33.16929962091422, Max=102121.849193573, RMS=40552.56818044901 H(x) for member 2: -AMSUA N19 nobs= 83277 Min=201.7345377055476, Max=281.9023599031542, RMS=233.8960380188357 +radiance_amsua_n19 nobs= 129420 Min=125.417968769818, Max=302.7647007048242, RMS=227.8036959231537 -sondes nobs= 8481 Min=-30.07259141870884, Max=310.1599784803753, RMS=141.16767336075 +sondes nobs= 16962 Min=-30.44219812448976, Max=102092.7350444794, RMS=40555.68594468464 H(x) for member 3: -AMSUA N19 nobs= 83277 Min=201.7998765806917, Max=282.1840647895007, RMS=233.8985807537817 +radiance_amsua_n19 nobs= 129420 Min=125.4091241781408, Max=302.8465605020635, RMS=227.8133444567927 -sondes nobs= 8481 Min=-32.27178089401225, Max=310.4911572292574, RMS=141.1517212151937 +sondes nobs= 16962 Min=-32.53045162256715, Max=102018.5016975403, RMS=40550.02835685082 H(x) ensemble analysis mean: -AMSUA N19 nobs= 83277 Min=201.870178046209, Max=282.0896557610525, RMS=233.8973851151797 +radiance_amsua_n19 nobs= 129420 Min=125.5127865795786, Max=302.8013531543427, RMS=227.8039024207124 -sondes nobs= 8481 Min=-31.65583966067176, Max=310.2360619648802, RMS=141.1664306223833 +sondes nobs= 16962 Min=-31.99323543604371, Max=102077.6953125, RMS=40552.75908377232 analysis y - H(x): -AMSUA N19 nobs= 83254 Min=-40.03569583002064, Max=14.39145831640985, RMS=1.500134697847894 +radiance_amsua_n19 nobs= 129390 Min=-69.70232776813003, Max=141.1411946034649, RMS=6.353441846469608 -sondes nobs= 3950 Min=-17.36927907766051, Max=15.32061701609654, RMS=3.979033232039429 +sondes nobs= 5283 Min=-199.5546875, Max=71.3046875, RMS=6.779179765370416 -ombg RMS: 1.717879381941653 -oman RMS: 1.692816948123012 +ombg RMS: 6.377471139613987 +oman RMS: 6.37067902002049 diff --git a/test/testreference/atm_jjob_lgetkf_observer.ref b/test/testreference/atm_jjob_lgetkf_observer.ref index 15ea1b4e1..d97300b48 100644 --- a/test/testreference/atm_jjob_lgetkf_observer.ref +++ b/test/testreference/atm_jjob_lgetkf_observer.ref @@ -3,11 +3,11 @@ Initial state for member 1: State print | number of fields = 28 | cube sphere face size: C48 eastward_wind | Min:-5.1619864857418477e+01 Max:+8.6812084442971653e+01 RMS:+1.5983411875766325e+01 northward_wind | Min:-7.3094846805319690e+01 Max:+7.0353817207582651e+01 RMS:+7.7265473774262041e+00 -air_temperature | Min:+1.7646396818493386e+02 Max:+3.1441817730817547e+02 RMS:+2.4989439192167012e+02 -layer_thickness | Min:-2.8728340670782936e+03 Max:-1.5844010522128334e+01 RMS:+9.8310890327340439e+02 -air_pressure_thickness | Min:+6.0599999953541761e-01 Max:+1.7747677648323079e+03 RMS:+9.5676512006998769e+02 -air_pressure_at_surface | Min:+5.3259705655314101e+04 Max:+1.0392378167916714e+05 RMS:+9.8893465602866549e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+9.5164908108891825e-09 Max:+2.0222136340880194e-02 RMS:+4.8552459174929334e-03 +air_temperature | Min:+1.7646396818493386e+02 Max:+3.1441817730817547e+02 RMS:+2.4989439192167009e+02 +layer_thickness | Min:-2.8728340670782936e+03 Max:-1.5844010522128334e+01 RMS:+9.8310890327340451e+02 +air_pressure_thickness | Min:+6.0599999953541761e-01 Max:+1.7747677648323079e+03 RMS:+9.5676512006998780e+02 +air_pressure_at_surface | Min:+5.3259705655314101e+04 Max:+1.0392378167916714e+05 RMS:+9.8893465602866534e+04 +water_vapor_mixing_ratio_wrt_moist_air | Min:+9.5164908108891825e-09 Max:+2.0222136340880194e-02 RMS:+4.8552459174929325e-03 cloud_liquid_ice | Min:-1.3545705512023003e-20 Max:+6.7304686933261399e-04 RMS:+1.0726563909939355e-05 cloud_liquid_water | Min:-5.4244251425755909e-20 Max:+1.2879383569881558e-03 RMS:+3.8382491358281577e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 @@ -18,13 +18,13 @@ rain_number_concentration | Min:+0.0000000000000000e+00 Max:+ ozone_mass_mixing_ratio | Min:+2.9375003505643131e-08 Max:+1.8014885502109894e-05 RMS:+4.4946424525503736e-06 geopotential_height_at_surface | Min:-2.7018394470214844e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 -sheleg | Min:+0.0000000000000000e+00 Max:+3.3367721414977348e+02 RMS:+2.2844482914802999e+01 +sheleg | Min:+0.0000000000000000e+00 Max:+3.3367721414977348e+02 RMS:+2.2844482914802995e+01 skin_temperature_at_surface | Min:+2.0791388472150163e+02 Max:+3.4773327272108133e+02 RMS:+2.8888781974396971e+02 vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 soilt | Min:+2.2171981453657514e+02 Max:+3.1531527244154063e+02 RMS:+2.8929101171094050e+02 -soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7129824793386712e-01 +soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7129824793386701e-01 totalSnowDepthMeters | Min:+0.0000000000000000e+00 Max:+1.8134236127502426e+00 RMS:+1.8222715253202781e-01 eastward_wind_at_surface | Min:-2.0302650327509099e+01 Max:+2.1760551255897649e+01 RMS:+5.2972810149144989e+00 northward_wind_at_surface | Min:-1.4968894650435200e+01 Max:+1.6765905429678224e+01 RMS:+4.2782356748931996e+00 @@ -37,7 +37,7 @@ eastward_wind | Min:-5.2853490758012072e+01 Max:+ northward_wind | Min:-7.2178651628585953e+01 Max:+7.2568167230757609e+01 RMS:+7.7335061167195889e+00 air_temperature | Min:+1.7660670217895057e+02 Max:+3.1526174222386965e+02 RMS:+2.4989392943476341e+02 layer_thickness | Min:-2.8750852837791022e+03 Max:-1.5794597440684603e+01 RMS:+9.8301208643901532e+02 -air_pressure_thickness | Min:+6.0599999948625027e-01 Max:+1.7752652524725063e+03 RMS:+9.5675980922035808e+02 +air_pressure_thickness | Min:+6.0599999948625027e-01 Max:+1.7752652524725063e+03 RMS:+9.5675980922035819e+02 air_pressure_at_surface | Min:+5.3317702550070273e+04 Max:+1.0394629485957995e+05 RMS:+9.8892949759388735e+04 water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1514597275760548e-08 Max:+1.9663168048133908e-02 RMS:+4.8569105861498299e-03 cloud_liquid_ice | Min:-1.3544569699620215e-20 Max:+7.9557019872326799e-04 RMS:+1.0816147029169270e-05 @@ -51,7 +51,7 @@ ozone_mass_mixing_ratio | Min:+1.6238717942558199e-08 Max:+ geopotential_height_at_surface | Min:-2.7018394470214844e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.3446253401369569e+02 RMS:+2.2874187237166272e+01 -skin_temperature_at_surface | Min:+2.0978258608237891e+02 Max:+3.4063292812032523e+02 RMS:+2.8892010225961866e+02 +skin_temperature_at_surface | Min:+2.0978258608237891e+02 Max:+3.4063292812032523e+02 RMS:+2.8892010225961860e+02 vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 @@ -65,13 +65,13 @@ f10m | Min:+9.3238101450200428e-01 Max:+ Initial state for member 3: ---------------------------------------------------------------------------------------------------- State print | number of fields = 28 | cube sphere face size: C48 -eastward_wind | Min:-5.3776366655868109e+01 Max:+8.6331467223030344e+01 RMS:+1.5960680883840784e+01 -northward_wind | Min:-7.0176400159320124e+01 Max:+6.9531049915936578e+01 RMS:+7.7410680097841684e+00 -air_temperature | Min:+1.7648447482434227e+02 Max:+3.1491330999751426e+02 RMS:+2.4989313307279673e+02 -layer_thickness | Min:-2.8748181022793874e+03 Max:-1.5822712660806282e+01 RMS:+9.8301820591439434e+02 +eastward_wind | Min:-5.3776366655868109e+01 Max:+8.6331467223030344e+01 RMS:+1.5960680883840782e+01 +northward_wind | Min:-7.0176400159320124e+01 Max:+6.9531049915936578e+01 RMS:+7.7410680097841675e+00 +air_temperature | Min:+1.7648447482434227e+02 Max:+3.1491330999751426e+02 RMS:+2.4989313307279670e+02 +layer_thickness | Min:-2.8748181022793874e+03 Max:-1.5822712660806282e+01 RMS:+9.8301820591439423e+02 air_pressure_thickness | Min:+6.0599999955059858e-01 Max:+1.7742011426782731e+03 RMS:+9.5675144888218676e+02 air_pressure_at_surface | Min:+5.3350124363319999e+04 Max:+1.0389818047809265e+05 RMS:+9.8892179510558097e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1846447498856659e-08 Max:+2.0007929878326374e-02 RMS:+4.8392192734415156e-03 +water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1846447498856659e-08 Max:+2.0007929878326374e-02 RMS:+4.8392192734415147e-03 cloud_liquid_ice | Min:-6.7740196346531239e-21 Max:+6.2473018245821010e-04 RMS:+1.0889666282638220e-05 cloud_liquid_water | Min:-5.4107584399974539e-20 Max:+1.2132298501853738e-03 RMS:+3.8405804865664137e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 @@ -87,8 +87,8 @@ skin_temperature_at_surface | Min:+2.0916406214271251e+02 Max:+ vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 -soilt | Min:+2.2179148729566896e+02 Max:+3.1492502526099332e+02 RMS:+2.8930134673298625e+02 -soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7132012473590570e-01 +soilt | Min:+2.2179148729566896e+02 Max:+3.1492502526099332e+02 RMS:+2.8930134673298619e+02 +soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7132012473590581e-01 totalSnowDepthMeters | Min:+0.0000000000000000e+00 Max:+1.8143247567290359e+00 RMS:+1.8207043992662716e-01 eastward_wind_at_surface | Min:-1.8951406320589882e+01 Max:+2.1985111394345580e+01 RMS:+5.3062512116922882e+00 northward_wind_at_surface | Min:-1.4183550286832059e+01 Max:+1.7289090100273199e+01 RMS:+4.2365567732484486e+00 @@ -96,31 +96,31 @@ f10m | Min:+9.2995810057091766e-01 Max:+ ---------------------------------------------------------------------------------------------------- H(x) for member 1: -AMSUA N19 nobs= 83277 Min=201.8068522615118, Max=282.197735417631, RMS=233.8559301511771 +radiance_amsua_n19 nobs= 129420 Min=125.6978616420297, Max=302.7814624493944, RMS=227.7077338564983 -sondes nobs= 8481 Min=-33.72958083245494, Max=309.9582199847107, RMS=141.2113994268784 +sondes nobs= 16962 Min=-33.72958083245494, Max=102121.896068573, RMS=40553.62713441676 H(x) for member 2: -AMSUA N19 nobs= 83277 Min=201.6491448610736, Max=282.0443032103622, RMS=233.8543791644092 +radiance_amsua_n19 nobs= 129420 Min=125.3922197152047, Max=302.7487559214237, RMS=227.7187505943267 -sondes nobs= 8481 Min=-30.5314449120472, Max=310.201637251467, RMS=141.1993510065985 +sondes nobs= 16962 Min=-30.5314449120472, Max=102092.7819137573, RMS=40556.74493703151 H(x) for member 3: -AMSUA N19 nobs= 83277 Min=201.5822623101754, Max=282.1681017018822, RMS=233.8547828542639 +radiance_amsua_n19 nobs= 129420 Min=125.3842263002066, Max=302.8357881538572, RMS=227.7286591922299 -sondes nobs= 8481 Min=-32.86095387229424, Max=310.3775309270029, RMS=141.1778363649958 +sondes nobs= 16962 Min=-32.86095387229424, Max=102018.5485801697, RMS=40551.08729869696 H(x) ensemble background mean: -AMSUA N19 nobs= 83277 Min=201.7046771524233, Max=282.1363019533423, RMS=233.8550114850206 +radiance_amsua_n19 nobs= 129420 Min=125.4914358858137, Max=302.7886688418689, RMS=227.7181707768426 -sondes nobs= 8481 Min=-32.28721130380135, Max=310.1791293864851, RMS=141.1946022453276 +sondes nobs= 16962 Min=-32.28721130380135, Max=102077.7421875, RMS=40553.8180458178 background y - H(x): -AMSUA N19 nobs= 83254 Min=-40.1226250672521, Max=14.39438798864788, RMS=1.520218815029816 +radiance_amsua_n19 nobs= 129390 Min=-69.75669519042367, Max=140.8137641632658, RMS=6.35472079586475 -sondes nobs= 3950 Min=-16.79891131775619, Max=16.07422994026274, RMS=4.060200040073279 +sondes nobs= 5283 Min=-199.65625, Max=71.3828125, RMS=6.91132880007275 diff --git a/test/testreference/atm_jjob_lgetkf_solver.ref b/test/testreference/atm_jjob_lgetkf_solver.ref index cd95fcd49..6d0ed7dd6 100644 --- a/test/testreference/atm_jjob_lgetkf_solver.ref +++ b/test/testreference/atm_jjob_lgetkf_solver.ref @@ -3,11 +3,11 @@ Initial state for member 1: State print | number of fields = 28 | cube sphere face size: C48 eastward_wind | Min:-5.1619864857418477e+01 Max:+8.6812084442971653e+01 RMS:+1.5983411875766325e+01 northward_wind | Min:-7.3094846805319690e+01 Max:+7.0353817207582651e+01 RMS:+7.7265473774262041e+00 -air_temperature | Min:+1.7646396818493386e+02 Max:+3.1441817730817547e+02 RMS:+2.4989439192167012e+02 -layer_thickness | Min:-2.8728340670782936e+03 Max:-1.5844010522128334e+01 RMS:+9.8310890327340439e+02 -air_pressure_thickness | Min:+6.0599999953541761e-01 Max:+1.7747677648323079e+03 RMS:+9.5676512006998769e+02 -air_pressure_at_surface | Min:+5.3259705655314101e+04 Max:+1.0392378167916714e+05 RMS:+9.8893465602866549e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+9.5164908108891825e-09 Max:+2.0222136340880194e-02 RMS:+4.8552459174929334e-03 +air_temperature | Min:+1.7646396818493386e+02 Max:+3.1441817730817547e+02 RMS:+2.4989439192167009e+02 +layer_thickness | Min:-2.8728340670782936e+03 Max:-1.5844010522128334e+01 RMS:+9.8310890327340451e+02 +air_pressure_thickness | Min:+6.0599999953541761e-01 Max:+1.7747677648323079e+03 RMS:+9.5676512006998780e+02 +air_pressure_at_surface | Min:+5.3259705655314101e+04 Max:+1.0392378167916714e+05 RMS:+9.8893465602866534e+04 +water_vapor_mixing_ratio_wrt_moist_air | Min:+9.5164908108891825e-09 Max:+2.0222136340880194e-02 RMS:+4.8552459174929325e-03 cloud_liquid_ice | Min:-1.3545705512023003e-20 Max:+6.7304686933261399e-04 RMS:+1.0726563909939355e-05 cloud_liquid_water | Min:-5.4244251425755909e-20 Max:+1.2879383569881558e-03 RMS:+3.8382491358281577e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 @@ -18,13 +18,13 @@ rain_number_concentration | Min:+0.0000000000000000e+00 Max:+ ozone_mass_mixing_ratio | Min:+2.9375003505643131e-08 Max:+1.8014885502109894e-05 RMS:+4.4946424525503736e-06 geopotential_height_at_surface | Min:-2.7018394470214844e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 -sheleg | Min:+0.0000000000000000e+00 Max:+3.3367721414977348e+02 RMS:+2.2844482914802999e+01 +sheleg | Min:+0.0000000000000000e+00 Max:+3.3367721414977348e+02 RMS:+2.2844482914802995e+01 skin_temperature_at_surface | Min:+2.0791388472150163e+02 Max:+3.4773327272108133e+02 RMS:+2.8888781974396971e+02 vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 soilt | Min:+2.2171981453657514e+02 Max:+3.1531527244154063e+02 RMS:+2.8929101171094050e+02 -soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7129824793386712e-01 +soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7129824793386701e-01 totalSnowDepthMeters | Min:+0.0000000000000000e+00 Max:+1.8134236127502426e+00 RMS:+1.8222715253202781e-01 eastward_wind_at_surface | Min:-2.0302650327509099e+01 Max:+2.1760551255897649e+01 RMS:+5.2972810149144989e+00 northward_wind_at_surface | Min:-1.4968894650435200e+01 Max:+1.6765905429678224e+01 RMS:+4.2782356748931996e+00 @@ -37,7 +37,7 @@ eastward_wind | Min:-5.2853490758012072e+01 Max:+ northward_wind | Min:-7.2178651628585953e+01 Max:+7.2568167230757609e+01 RMS:+7.7335061167195889e+00 air_temperature | Min:+1.7660670217895057e+02 Max:+3.1526174222386965e+02 RMS:+2.4989392943476341e+02 layer_thickness | Min:-2.8750852837791022e+03 Max:-1.5794597440684603e+01 RMS:+9.8301208643901532e+02 -air_pressure_thickness | Min:+6.0599999948625027e-01 Max:+1.7752652524725063e+03 RMS:+9.5675980922035808e+02 +air_pressure_thickness | Min:+6.0599999948625027e-01 Max:+1.7752652524725063e+03 RMS:+9.5675980922035819e+02 air_pressure_at_surface | Min:+5.3317702550070273e+04 Max:+1.0394629485957995e+05 RMS:+9.8892949759388735e+04 water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1514597275760548e-08 Max:+1.9663168048133908e-02 RMS:+4.8569105861498299e-03 cloud_liquid_ice | Min:-1.3544569699620215e-20 Max:+7.9557019872326799e-04 RMS:+1.0816147029169270e-05 @@ -51,7 +51,7 @@ ozone_mass_mixing_ratio | Min:+1.6238717942558199e-08 Max:+ geopotential_height_at_surface | Min:-2.7018394470214844e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.3446253401369569e+02 RMS:+2.2874187237166272e+01 -skin_temperature_at_surface | Min:+2.0978258608237891e+02 Max:+3.4063292812032523e+02 RMS:+2.8892010225961866e+02 +skin_temperature_at_surface | Min:+2.0978258608237891e+02 Max:+3.4063292812032523e+02 RMS:+2.8892010225961860e+02 vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 @@ -65,13 +65,13 @@ f10m | Min:+9.3238101450200428e-01 Max:+ Initial state for member 3: ---------------------------------------------------------------------------------------------------- State print | number of fields = 28 | cube sphere face size: C48 -eastward_wind | Min:-5.3776366655868109e+01 Max:+8.6331467223030344e+01 RMS:+1.5960680883840784e+01 -northward_wind | Min:-7.0176400159320124e+01 Max:+6.9531049915936578e+01 RMS:+7.7410680097841684e+00 -air_temperature | Min:+1.7648447482434227e+02 Max:+3.1491330999751426e+02 RMS:+2.4989313307279673e+02 -layer_thickness | Min:-2.8748181022793874e+03 Max:-1.5822712660806282e+01 RMS:+9.8301820591439434e+02 +eastward_wind | Min:-5.3776366655868109e+01 Max:+8.6331467223030344e+01 RMS:+1.5960680883840782e+01 +northward_wind | Min:-7.0176400159320124e+01 Max:+6.9531049915936578e+01 RMS:+7.7410680097841675e+00 +air_temperature | Min:+1.7648447482434227e+02 Max:+3.1491330999751426e+02 RMS:+2.4989313307279670e+02 +layer_thickness | Min:-2.8748181022793874e+03 Max:-1.5822712660806282e+01 RMS:+9.8301820591439423e+02 air_pressure_thickness | Min:+6.0599999955059858e-01 Max:+1.7742011426782731e+03 RMS:+9.5675144888218676e+02 air_pressure_at_surface | Min:+5.3350124363319999e+04 Max:+1.0389818047809265e+05 RMS:+9.8892179510558097e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1846447498856659e-08 Max:+2.0007929878326374e-02 RMS:+4.8392192734415156e-03 +water_vapor_mixing_ratio_wrt_moist_air | Min:+2.1846447498856659e-08 Max:+2.0007929878326374e-02 RMS:+4.8392192734415147e-03 cloud_liquid_ice | Min:-6.7740196346531239e-21 Max:+6.2473018245821010e-04 RMS:+1.0889666282638220e-05 cloud_liquid_water | Min:-5.4107584399974539e-20 Max:+1.2132298501853738e-03 RMS:+3.8405804865664137e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 @@ -87,8 +87,8 @@ skin_temperature_at_surface | Min:+2.0916406214271251e+02 Max:+ vtype | Min:+0.0000000000000000e+00 Max:+1.9000000000000000e+01 RMS:+5.6602100164707281e+00 stype | Min:+0.0000000000000000e+00 Max:+1.6000000000000000e+01 RMS:+4.1039110890529598e+00 vfrac | Min:+0.0000000000000000e+00 Max:+9.7215068788150627e-01 RMS:+1.9167119887330206e-01 -soilt | Min:+2.2179148729566896e+02 Max:+3.1492502526099332e+02 RMS:+2.8930134673298625e+02 -soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7132012473590570e-01 +soilt | Min:+2.2179148729566896e+02 Max:+3.1492502526099332e+02 RMS:+2.8930134673298619e+02 +soilm | Min:+2.0000000000000000e-02 Max:+1.0000000000000000e+00 RMS:+8.7132012473590581e-01 totalSnowDepthMeters | Min:+0.0000000000000000e+00 Max:+1.8143247567290359e+00 RMS:+1.8207043992662716e-01 eastward_wind_at_surface | Min:-1.8951406320589882e+01 Max:+2.1985111394345580e+01 RMS:+5.3062512116922882e+00 northward_wind_at_surface | Min:-1.4183550286832059e+01 Max:+1.7289090100273199e+01 RMS:+4.2365567732484486e+00 @@ -96,33 +96,33 @@ f10m | Min:+9.2995810057091766e-01 Max:+ ---------------------------------------------------------------------------------------------------- H(x) for member 1: -AMSUA N19 nobs= 83277 Min=201.8068542480469, Max=282.1977233886719, RMS=233.8559301397531 +radiance_amsua_n19 nobs= 129420 Min=125.6978607177734, Max=302.7814636230469, RMS=227.7077338403246 -sondes nobs= 8481 Min=-33.72957992553711, Max=309.9582214355469, RMS=141.2113995313577 +sondes nobs= 16962 Min=-33.72957992553711, Max=102121.8984375, RMS=40553.62704489937 H(x) for member 2: -AMSUA N19 nobs= 83277 Min=201.6491394042969, Max=282.0443115234375, RMS=233.8543791552713 +radiance_amsua_n19 nobs= 129420 Min=125.392219543457, Max=302.7487487792969, RMS=227.7187505889105 -sondes nobs= 8481 Min=-30.53144454956055, Max=310.2016296386719, RMS=141.1993510651212 +sondes nobs= 16962 Min=-30.53144454956055, Max=102092.78125, RMS=40556.74498493852 H(x) for member 3: -AMSUA N19 nobs= 83277 Min=201.5822601318359, Max=282.1680908203125, RMS=233.8547828296696 +radiance_amsua_n19 nobs= 129420 Min=125.3842239379883, Max=302.8357849121094, RMS=227.728659183294 -sondes nobs= 8481 Min=-32.86095428466797, Max=310.3775329589844, RMS=141.1778363269655 +sondes nobs= 16962 Min=-32.86095428466797, Max=102018.546875, RMS=40551.08725487138 H(x) ensemble background mean: -AMSUA N19 nobs= 83277 Min=201.7046763102213, Max=282.1362915039062, RMS=233.8550114699761 +radiance_amsua_n19 nobs= 129420 Min=125.4914347330729, Max=302.7886657714844, RMS=227.7181707666916 -sondes nobs= 8481 Min=-32.28721110026041, Max=310.1791280110677, RMS=141.1946022869963 +sondes nobs= 16962 Min=-32.28721110026041, Max=102077.7421875, RMS=40553.81801734139 background y - H(x): -AMSUA N19 nobs= 83254 Min=-40.12262471516925, Max=14.39438883463544, RMS=1.520218808199241 +radiance_amsua_n19 nobs= 129390 Min=-69.75669352213538, Max=140.8137613932292, RMS=6.354720790391392 -sondes nobs= 3950 Min=-16.79891141255696, Max=16.0742301940918, RMS=4.060200046174113 +sondes nobs= 5283 Min=-199.658854166657, Max=71.3828125, RMS=6.911339611353106 Background mean : ---------------------------------------------------------------------------------------------------- @@ -130,9 +130,9 @@ State print | number of fields = 28 | cube sphere face size: C48 eastward_wind | Min:-5.0268509151643670e+01 Max:+8.6686198337381171e+01 RMS:+1.5943048359570170e+01 northward_wind | Min:-7.1281090590794832e+01 Max:+7.0613804297416578e+01 RMS:+7.6835678597476624e+00 air_temperature | Min:+1.7652661362892786e+02 Max:+3.1486440984318642e+02 RMS:+2.4989353796113025e+02 -layer_thickness | Min:-2.8742236189948235e+03 Max:-1.5820440207873071e+01 RMS:+9.8304588977244248e+02 +layer_thickness | Min:-2.8742236189948235e+03 Max:-1.5820440207873071e+01 RMS:+9.8304588977244271e+02 air_pressure_thickness | Min:+6.0599999954215089e-01 Max:+1.7745271604965960e+03 RMS:+9.5675867998450212e+02 -air_pressure_at_surface | Min:+5.3309177522901453e+04 Max:+1.0391290736184639e+05 RMS:+9.8892856412110239e+04 +air_pressure_at_surface | Min:+5.3309177522901453e+04 Max:+1.0391290736184639e+05 RMS:+9.8892856412110254e+04 water_vapor_mixing_ratio_wrt_moist_air | Min:+8.4477932715987172e-08 Max:+1.9531761470252519e-02 RMS:+4.8455165312756591e-03 cloud_liquid_ice | Min:-4.5148565665400716e-21 Max:+4.1857236992490481e-04 RMS:+1.0081670582489738e-05 cloud_liquid_water | Min:-1.8646059632736959e-20 Max:+1.0447516732817988e-03 RMS:+3.3566571025591825e-05 @@ -141,7 +141,7 @@ rain_water | Min:+0.0000000000000000e+00 Max:+ graupel | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 cloud_ice_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 rain_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 -ozone_mass_mixing_ratio | Min:+2.8043654425670649e-08 Max:+1.7892907435183836e-05 RMS:+4.4944974047442364e-06 +ozone_mass_mixing_ratio | Min:+2.8043654425670649e-08 Max:+1.7892907435183836e-05 RMS:+4.4944974047442373e-06 geopotential_height_at_surface | Min:-2.7018394470214840e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.2527521006769342e+02 RMS:+2.2874231579198337e+01 @@ -159,21 +159,21 @@ f10m | Min:+9.3258902621206641e-01 Max:+ Analysis mean : ---------------------------------------------------------------------------------------------------- State print | number of fields = 28 | cube sphere face size: C48 -eastward_wind | Min:-5.0315150936846862e+01 Max:+8.9876392887765178e+01 RMS:+1.5970695782090216e+01 -northward_wind | Min:-7.0617188949045897e+01 Max:+7.7433452901272716e+01 RMS:+7.7146404832116575e+00 -air_temperature | Min:+1.7652661360280035e+02 Max:+3.1531640650599002e+02 RMS:+2.4990917048290376e+02 -layer_thickness | Min:-2.8742236232070095e+03 Max:-1.5810236370767129e+01 RMS:+9.8306082003702807e+02 -air_pressure_thickness | Min:+6.0599999954215089e-01 Max:+1.7748162496329298e+03 RMS:+9.5672871269830057e+02 -air_pressure_at_surface | Min:+5.3309177524748637e+04 Max:+1.0391290732286175e+05 RMS:+9.8892856414055801e+04 -water_vapor_mixing_ratio_wrt_moist_air | Min:+0.0000000000000000e+00 Max:+1.9548968712815695e-02 RMS:+4.8538262909497819e-03 -cloud_liquid_ice | Min:+0.0000000000000000e+00 Max:+4.2005702080881761e-04 RMS:+1.0456783079969593e-05 -cloud_liquid_water | Min:+0.0000000000000000e+00 Max:+1.9000848666799023e-03 RMS:+3.5025871969556609e-05 +eastward_wind | Min:-5.0822451736644879e+01 Max:+8.6852803972191069e+01 RMS:+1.5977370474500308e+01 +northward_wind | Min:-7.0115042375781954e+01 Max:+7.3286604316838933e+01 RMS:+7.7488294080561211e+00 +air_temperature | Min:+1.7652661355229856e+02 Max:+3.1485233174654405e+02 RMS:+2.4992519356083582e+02 +layer_thickness | Min:-2.8742236407968012e+03 Max:-1.5815333155592761e+01 RMS:+9.8307020924200424e+02 +air_pressure_thickness | Min:+6.0599999954215089e-01 Max:+1.7745552603357241e+03 RMS:+9.5672366061559148e+02 +air_pressure_at_surface | Min:+5.3309177521979829e+04 Max:+1.0391290732683396e+05 RMS:+9.8892856414630645e+04 +water_vapor_mixing_ratio_wrt_moist_air | Min:+0.0000000000000000e+00 Max:+1.9531761470252519e-02 RMS:+4.8468624855838877e-03 +cloud_liquid_ice | Min:+0.0000000000000000e+00 Max:+1.5688658489148204e-03 RMS:+1.1026107628326071e-05 +cloud_liquid_water | Min:+0.0000000000000000e+00 Max:+2.8742516088230089e-03 RMS:+3.6597296862929606e-05 snow_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 rain_water | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 graupel | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 cloud_ice_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 rain_number_concentration | Min:+0.0000000000000000e+00 Max:+0.0000000000000000e+00 RMS:+0.0000000000000000e+00 -ozone_mass_mixing_ratio | Min:+0.0000000000000000e+00 Max:+1.7891447709183598e-05 RMS:+4.4960701987584135e-06 +ozone_mass_mixing_ratio | Min:+0.0000000000000000e+00 Max:+1.7890162983083132e-05 RMS:+4.4969235482853234e-06 geopotential_height_at_surface | Min:-2.7018394470214840e+01 Max:+5.2697460937500000e+03 RMS:+6.3032575784066080e+02 slmsk | Min:+0.0000000000000000e+00 Max:+2.0000000000000000e+00 RMS:+6.5853328538727862e-01 sheleg | Min:+0.0000000000000000e+00 Max:+3.2527521006769342e+02 RMS:+2.2874231579198337e+01