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

Regional inlinepost #229

Merged
merged 31 commits into from
Mar 11, 2021
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bb42d6f
add regional inline post
junwang-noaa Jan 5, 2021
000bb5a
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Jan 5, 2021
9182a30
add fixes for inline post
junwang-noaa Jan 11, 2021
d80178b
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Jan 11, 2021
4f24e82
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Jan 12, 2021
4801afd
update inline_post.F90
junwang-noaa Jan 13, 2021
dbfee57
update psot_regional.F90
junwang-noaa Jan 14, 2021
0760699
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Jan 25, 2021
538498c
remove repeated field
junwang-noaa Jan 27, 2021
c175f34
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Jan 27, 2021
5333410
fix rotated latlon grid and comment out print lines
junwang-noaa Jan 28, 2021
3b1da8b
add inline post timer
junwang-noaa Jan 29, 2021
415ad75
remove prints in inline_post.F90
junwang-noaa Jan 29, 2021
a633602
change composite reflectivity name
junwang-noaa Feb 1, 2021
93677b4
fix variable name
junwang-noaa Feb 2, 2021
48fb0fb
fix name refl_10cm
junwang-noaa Feb 3, 2021
b7882d4
merge to the top of develop branch
junwang-noaa Feb 3, 2021
99d116c
fix cwm for post_regional
junwang-noaa Feb 3, 2021
7a4c8b0
fix dy
junwang-noaa Feb 9, 2021
3e18621
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Feb 12, 2021
2a7d51b
fix wtmp in post
junwang-noaa Feb 13, 2021
6cf5fdb
fix the syntax
junwang-noaa Feb 16, 2021
baba95d
fix openmp sst field in regional post
junwang-noaa Feb 16, 2021
3547309
add tke in post_regional.F90
junwang-noaa Feb 18, 2021
9860a4e
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Feb 18, 2021
d04f96a
fix fcstgrid with quilting and initialize hbot
junwang-noaa Feb 23, 2021
61149f8
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Feb 23, 2021
5dcd1f5
fix hbot in post_gfs.F90
junwang-noaa Feb 23, 2021
4008361
Merge remote-tracking branch 'upstream/develop' into regional_inlinepost
junwang-noaa Mar 4, 2021
459d173
add suite_FV3_GFS_v15_thompson_mynn_lam3km.xml for lam parallel
junwang-noaa Mar 9, 2021
1aace9d
fix the suite name in suite_FV3_GFS_v15_thompson_mynn_lam3km.xml
junwang-noaa Mar 9, 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
14 changes: 9 additions & 5 deletions io/post_regional.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ subroutine set_postvars_regional(wrt_int_state,mpicomp,setvar_atmfile, &

! max hourly 1-km agl reflectivity
if(trim(fieldname)=='refdmax') then
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,refd_max,arrayr42d,sm,sice,fillValue)
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,refd_max,arrayr42d,sm,fillValue)
do j=jsta,jend
do i=ista, iend
refd_max(i,j) = arrayr42d(i,j)
Expand All @@ -1162,7 +1162,7 @@ subroutine set_postvars_regional(wrt_int_state,mpicomp,setvar_atmfile, &

! max hourly -10C reflectivity
if(trim(fieldname)=='refdmax263k') then
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,refdm10c_max,arrayr42d,sm,sice,fillValue)
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,refdm10c_max,arrayr42d,sm,fillValue)
do j=jsta,jend
do i=ista, iend
refdm10c_max(i,j) = arrayr42d(i,j)
Expand All @@ -1173,7 +1173,7 @@ subroutine set_postvars_regional(wrt_int_state,mpicomp,setvar_atmfile, &

! max hourly u comp of 10m agl wind
if(trim(fieldname)=='u10max') then
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,u10max,arrayr42d,sm,sice,fillValue)
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,u10max,arrayr42d,sm,fillValue)
do j=jsta,jend
do i=ista, iend
u10max(i,j) = arrayr42d(i,j)
Expand All @@ -1184,7 +1184,7 @@ subroutine set_postvars_regional(wrt_int_state,mpicomp,setvar_atmfile, &

! max hourly v comp of 10m agl wind
if(trim(fieldname)=='v10max') then
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,v10max,arrayr42d,sm,sice,fillValue)
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,v10max,arrayr42d,sm,fillValue)
do j=jsta,jend
do i=ista, iend
v10max(i,j) = arrayr42d(i,j)
Expand All @@ -1195,7 +1195,7 @@ subroutine set_postvars_regional(wrt_int_state,mpicomp,setvar_atmfile, &

! max hourly 10m agl wind speed
if(trim(fieldname)=='spd10max') then
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,wspd10max,arrayr42d,sm,sice,fillValue)
!$omp parallel do default(none) private(i,j) shared(jsta,jend,ista,iend,spval,wspd10max,arrayr42d,sm,fillValue)
do j=jsta,jend
do i=ista, iend
wspd10max(i,j) = arrayr42d(i,j)
Expand Down Expand Up @@ -2802,7 +2802,11 @@ subroutine set_postvars_regional(wrt_int_state,mpicomp,setvar_atmfile, &
do i=ista, iend
!assign sst
if (sm(i,j) /= 0.0 .and. ths(i,j) /= spval) then
if ((sice(i,j) >= 0.15) then
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@junwang-noaa A extra left bracket makes compiling failure.

sst(i,j) = 271.4
else
sst(i,j) = ths(i,j)
endif
else
sst(i,j) = spval
endif
Expand Down