Replies: 3 comments 3 replies
-
@aschuh Have you modified the diag_table per https://ccpp-techdoc.readthedocs.io/en/latest/ParamSpecificOutput.html#outputting-tendencies? |
Beta Was this translation helpful? Give feedback.
3 replies
-
I believe I came to a conclusion/answer on this, which can be seen here: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm struggling to output both tendencies via dtend* as well as mass flux diags ( ud_mf, dd_mf, dt_mf) from samfdeepcnv.f, using the 2D aux arrays as detailed at : https://ccpp-techdoc.readthedocs.io/en/latest/ParamSpecificOutput.html#availtendfaq . I've followed instructions and added necessary code to meta file and fortran files and updated input.nml.
In the output log file, I see that the dtend* are selected:
0: dtend selected: gfs_phys dtend_temp_lw = temperature tendency due to long wave radiation (K s-1)
0: dtend selected: gfs_phys dtend_temp_sw = temperature tendency due to short wave radiation (K s-1)
0: dtend selected: gfs_phys dtend_temp_pbl = temperature tendency due to PBL (K s-1)
0: dtend selected: gfs_phys dtend_temp_deepcnv = temperature tendency due to deep convection (K s-1)
0: dtend selected: gfs_phys dtend_temp_shalcnv = temperature tendency due to shallow convection (K s-1)
0: dtend selected: gfs_phys dtend_temp_mp = temperature tendency due to microphysics (K s-1)
0: dtend selected: gfs_phys dtend_temp_orogwd = temperature tendency due to orographic gravity wave drag (K s-1)
0: dtend selected: gfs_phys dtend_temp_cnvgwd = temperature tendency due to convective gravity wave drag (K s-1)
0: dtend selected: gfs_phys dtend_temp_phys = temperature tendency due to physics (K s-1)
0: dtend selected: gfs_dyn dtend_temp_nophys = temperature tendency due to non-physics processes (K s-1)
0: dtend disabled: gfs_phys dtend_u_pbl = x wind tendency due to PBL (m s-2)
I also see that the code appears to see the aux3d adjustments:
Aug-11 14:22 ol3:/work2/noaa/co2/aschuh/stmp/aschuh/FV3_RT/rt_15823/merra2_thompson_ghg$ grep aux out
0: naux2d : 0
0: naux3d : 3
0: aux3d_time_avg : F F F
0: add field to after bilinear, fld=aux3d_01
Aug-11 14:23 ol3:/work2/noaa/co2/aschuh/stmp/aschuh/FV3_RT/rt_15823/merra2_thompson_ghg$
However, I'm failing to see the variables emerge in the history files. I assume them should probably be dropped in the phy_data.tilenc files? I'm using a variation on the FV3_GFS_v17_p8 suite which would seem to be supported by the web description.
input.nml:
&gfs_physics_nml
fhzero = 6
h2o_phys = .true.
ldiag3d = .true.
qdiag3d = .true.
dtend_select = 'dtendmp', 'dtend_temp_'
naux2d = 0
naux3d = 3
aux3d_time_avg = .false.,.false.,.false.
print_diff_pgr = .false.
fhcyc = 24
....
Any ideas or places I should look? switches I'm missing?
andrew
Beta Was this translation helpful? Give feedback.
All reactions