-
Notifications
You must be signed in to change notification settings - Fork 150
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
Rename Fortran variables and CCPP standard names / long names of surface composites from ocean to water #609
Rename Fortran variables and CCPP standard names / long names of surface composites from ocean to water #609
Conversation
…move_zorl_interstitial
…move_zorl_interstitial
…rface_composites_pre_run
…move_zorl_interstitial
…ace composites from ocean to water
The change of standard names to use over_water instead of over_ocean is good to avoid confusion. |
physics/GFS_debug.F90
Outdated
@@ -436,6 +436,8 @@ subroutine GFS_diagtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling, | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorl' , Sfcprop%zorl) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorlo' , Sfcprop%zorlo) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorll' , Sfcprop%zorll) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorli' , Sfcprop%zorli) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorlw' , Sfcprop%zorlw) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are zorlo and zorlw for ocean and water, respectively? Are they the same?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for pointing this out. I have not renamed the Sfcprop
constituents yet, exactly because I wasn't sure what to do with Sfcprop%zorlw
- make this Sfcprop%zorlwav
and use Sfcprop%zorlw
for water? Would that be confusing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. zorlwav would be good for me. Thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shansun6 @SMoorthi-emc I renamed Sfcprop%zorlw
to Sfcprop%zorlwav
in #596, and then in this PR Sfcprop%zorlo
to Sfcprop%zorlw
. Doing this in two steps ensures that I am not mistakenly using the wrong values.
zorlw is for waves.
…On Mon, Apr 5, 2021 at 12:43 PM shansun6 ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In physics/GFS_debug.F90
<#609 (comment)>:
> @@ -436,6 +436,8 @@ subroutine GFS_diagtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling,
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorl' , Sfcprop%zorl)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorlo' , Sfcprop%zorlo)
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorll' , Sfcprop%zorll)
+ call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorli' , Sfcprop%zorli)
+ call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorlw' , Sfcprop%zorlw)
Are zorlo and zorlw for ocean and water, respectively? Are they the same?
—
You are receiving this because your review was requested.
Reply to this email directly, view it on GitHub
<#609 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALLVRYUKITGAY6XOPDRW663THHSD3ANCNFSM42M3PQPA>
.
--
Dr. Shrinivas Moorthi
Research Meteorologist
Modeling and Data Assimilation Branch
Environmental Modeling Center / National Centers for Environmental
Prediction
5830 University Research Court - (W/NP23), College Park MD 20740 USA
Tel: (301)683-3718
e-mail: ***@***.***
Phone: (301) 683-3718 Fax: (301) 683-3718
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I approve this. Very nice work. Thanks, -Shan
physics/GFS_debug.F90
Outdated
@@ -436,6 +436,8 @@ subroutine GFS_diagtoscreen_run (Model, Statein, Stateout, Sfcprop, Coupling, | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorl' , Sfcprop%zorl) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorlo' , Sfcprop%zorlo) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorll' , Sfcprop%zorll) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorli' , Sfcprop%zorli) | |||
call print_var(mpirank, omprank, blkno, Grid%xlat_d, Grid%xlon_d, 'Sfcprop%zorlw' , Sfcprop%zorlw) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. zorlwav would be good for me. Thanks.
|
…e no longer existant Interstitial%dtdtc
…ji/ccpp-physics into rename_surface_composites_ocean_water
…ocean to _water, rename Sfcprop%zorlo to Sfcprop%zorlw
It is a bit confusing looking at code changes in this format. I guess there are plenty of changes in "gfdl_sfc_layer.F90" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me, approved
* update atmos_cubed_sphere
This PR renames Fortran variables and CCPP standard names / long names of surface composites from "ocean" to "water", since these also contain lake points.
Note that this PR contains all the changes in #596. #596 can be merged independently before this PR, or as part of this PR.
Fixes #455.
Associated PRs:
#609
NOAA-EMC/fv3atm#271
ufs-community/ufs-weather-model#508
For regression testing, see ufs-community/ufs-weather-model#508