Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates to MYNN-EDMF and Thompson #120

Merged
merged 36 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
f0117df
Changes in RUC LSM:
tanyasmirnova Oct 12, 2023
876a1ac
Fire heat flux computation is added to the smoke-dust code.
tanyasmirnova Oct 12, 2023
6b8aa05
Fix the segmentation fault error in computing fire heat flux.
tanyasmirnova Oct 12, 2023
16e640e
updates from HFIP dev branch
joeolson42 Oct 16, 2023
14c5887
missed a variable in the argument for activ_ncloud during the intial …
joeolson42 Oct 17, 2023
fe5322b
Addressed the reviewer's comments.
tanyasmirnova Oct 18, 2023
056f420
Changes in module_sf_ruclsm.F90:
tanyasmirnova Oct 18, 2023
1a56327
Merge remote-tracking branch 'upstream/ufs/dev' into ruclsm_lai
tanyasmirnova Oct 18, 2023
ffb0912
Adding back a missing exclamation point in module_bl_mynn.F90 and add…
joeolson42 Oct 19, 2023
a515ec3
Based on 1-D testing in ESM-SnowMIP a change to computation of snow t…
tanyasmirnova Oct 23, 2023
ce11da7
In module_sf_ruclsm.F90: clean-up comments, changed the constant for …
tanyasmirnova Oct 24, 2023
4541893
Further tweaks to improve the MYNN, will update the attached pdf.
joeolson42 Oct 25, 2023
6d079b8
Hail diagnostic
AndersJensen-NOAA Oct 26, 2023
ed82327
Max hail diameter
AndersJensen-NOAA Oct 26, 2023
1000af7
Fixes after debug
AndersJensen-NOAA Oct 27, 2023
ddf6a5c
real to double for graupel psd parameters
AndersJensen-NOAA Oct 27, 2023
dbfd4e6
Updating snow cloud fractions in MYNN-EDMF and removing redundant log…
joeolson42 Oct 27, 2023
872f488
Addressing comments from Dustin
joeolson42 Oct 29, 2023
277bd48
Addressing comments from Dustin
joeolson42 Oct 29, 2023
b2dc0bf
Adding some comments to describe overall changes.
joeolson42 Oct 29, 2023
5658192
fix typo
joeolson42 Oct 30, 2023
ac108da
Merge branch 'ufs/dev' into mynnthomp_oct2023
joeolson42 Oct 30, 2023
5351c16
Merge branch 'max_hail_mp' into mynnthomp_oct2023
grantfirl Oct 30, 2023
e0991a8
Removed requested by the reviewer commented lines.
tanyasmirnova Nov 2, 2023
6d62ab8
Better range checks for output in surface layer, tweaked cloud fracti…
joeolson42 Nov 3, 2023
ce7a3c0
Updates to Thompson MP after code review
AndersJensen-NOAA Nov 3, 2023
551e503
removing the effective radii limit due to concerns by GFS developers
joeolson42 Nov 3, 2023
6ea2bce
Merge branch 'ufs/dev' into mynnthomp_oct2023
joeolson42 Nov 3, 2023
571cb59
Bug fix for divide by zero in hail size
AndersJensen-NOAA Nov 4, 2023
94bc140
Merge branch 'ufs/dev' into mynnthomp_oct2023
grantfirl Nov 9, 2023
793ec64
add extra condition in line 2655 of module_sf_noahmp_glacier.F90 to a…
grantfirl Nov 9, 2023
d595541
Computation of surface fire heat for use in LSM to rrfs_smoke_wrapper.
tanyasmirnova Nov 9, 2023
851dbfa
Small changes to fire feedback to RUC LSM.
tanyasmirnova Nov 9, 2023
5c8a8c1
Merge branch 'ruclsm_lai' into mynnthomp_oct2023
grantfirl Nov 15, 2023
967740f
fix intent in mp_thompson.meta
grantfirl Nov 15, 2023
fe12e79
Merge branch 'ufs/dev' into mynnthomp_oct2023
grantfirl Nov 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions physics/GFS_debug.F90
Original file line number Diff line number Diff line change
Expand Up @@ -747,9 +747,9 @@ subroutine GFS_diagtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling,
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%det_thl ', Diag%det_thl)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%det_sqv ', Diag%det_sqv)
end if
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%nupdraft ', Diag%nupdraft)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%maxwidth ', Diag%maxwidth)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%maxMF ', Diag%maxMF)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%ktop_plume ', Diag%ktop_plume)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%ztop_plume ', Diag%ztop_plume)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%exch_h ', Diag%exch_h)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Diag%exch_m ', Diag%exch_m)
end if
Expand Down
Loading