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

To add multi_gases and molecular diffusion options #712

Merged
merged 23 commits into from
Oct 26, 2021
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2aa0cee
VLab issue # 76949. Update FV3-WAM from IPD to CCPP
SajalKar-NOAA Apr 6, 2020
6184a97
add changes for swh and hlw for vertical dimension
HenryJuang-NOAA May 12, 2020
07814b1
All IDEA-physics routines working with IPD
Oct 19, 2020
75205b1
Merge branch 'dadsk.03' of https://github.com/akubaryk/ccpp-physics i…
HenryJuang-NOAA Oct 26, 2020
ffd1977
Merge branch 'master' into udhmhj.04
HenryJuang-NOAA Nov 5, 2020
71d93a7
correct time_step in name
HenryJuang-NOAA Nov 12, 2020
b614656
use Cmake and can be compiled in orion
HenryJuang-NOAA Nov 14, 2020
92bf0d4
fix spfo3 for ntoz
HenryJuang-NOAA Feb 18, 2021
8dc1da1
change spfox to spox for consistency with sphum.
HenryJuang-NOAA Feb 19, 2021
bcd6613
Merge remote-tracking branch 'NCAR/master' into udhmhj
XiaqiongZhou-NOAA Apr 22, 2021
125b5ca
Merge with NCAR/master
XiaqiongZhou-NOAA Apr 28, 2021
b1c2d33
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Jun 10, 2021
beb023e
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Jul 22, 2021
81f37bb
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Jul 27, 2021
65af4c1
Change file permissions
XiaqiongZhou-NOAA Jul 27, 2021
fd5428a
Change file permission
XiaqiongZhou-NOAA Jul 27, 2021
ac5fe1a
Change file permission
XiaqiongZhou-NOAA Jul 27, 2021
6a06c20
Update cires_ugwp.F90
XiaqiongZhou-NOAA Jul 28, 2021
25aa7c3
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Sep 7, 2021
acc47a1
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Oct 6, 2021
80668b7
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Oct 9, 2021
ae49ce6
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Oct 22, 2021
f063b4e
Merge remote-tracking branch 'NCAR/main' into udhmhj
XiaqiongZhou-NOAA Oct 25, 2021
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
10 changes: 5 additions & 5 deletions physics/gfs_phy_tracer_config.F
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#undef MULTI_GASES

!
!! ! Module: gfs_phy_tracer_config
Expand Down Expand Up @@ -123,7 +122,6 @@ subroutine tracer_config_init (ntrac,ntoz,ntcw,ncld,

!--- fill in met tracers
gfs_phy_tracer%vname(1) = 'spfh'
if(ntoz > 0) gfs_phy_tracer%vname(ntoz) = 'o3mr'
if(ntcw > 0) gfs_phy_tracer%vname(ntcw) = 'clwmr'
if(ntiw > 0) gfs_phy_tracer%vname(ntiw) = 'climr'
if(ntlnc > 0) gfs_phy_tracer%vname(ntlnc) = 'lnc'
Expand All @@ -134,10 +132,12 @@ subroutine tracer_config_init (ntrac,ntoz,ntcw,ncld,
if(ntsnc > 0) gfs_phy_tracer%vname(ntsnc) = 'snc'
if(ntke > 0) gfs_phy_tracer%vname(ntke) = 'tke'
#ifdef MULTI_GASES
print *,' ++++ nto nto2 ',nto,nto2
if(nto > 0) gfs_phy_tracer%vname(nto) = 'spfo'
if(nto2 > 0) gfs_phy_tracer%vname(nto2) = 'spfo2'
print *,' ++++ ntoz nto nto2 ',ntoz,nto,nto2
if(ntoz > 0) gfs_phy_tracer%vname(ntoz) = 'spo3'
if(nto > 0) gfs_phy_tracer%vname(nto) = 'spo'
if(nto2 > 0) gfs_phy_tracer%vname(nto2) = 'spo2'
#else
if(ntoz > 0) gfs_phy_tracer%vname(ntoz) = 'o3mr'
if(nto > 0) gfs_phy_tracer%vname(nto) = 'o'
if(nto2 > 0) gfs_phy_tracer%vname(nto2) = 'o2'
#endif
Expand Down