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
Prev Previous commit
Next Next commit
remove prints in inline_post.F90
junwang-noaa committed Jan 29, 2021
commit 415ad75249ac75da05e822de81e216a53db900d8
6 changes: 2 additions & 4 deletions io/inline_post.F90
Original file line number Diff line number Diff line change
@@ -37,15 +37,15 @@ subroutine inline_post_run(wrt_int_state,mypei,mpicomp,lead_write, &
integer,intent(in) :: mynfmin
integer,intent(in) :: mynfsec
!
print *,'inline_post_run, output_grid=',trim(output_grid)
if(mypei == 0) print *,'inline_post_run, output_grid=',trim(output_grid)
if(trim(output_grid) == 'gaussian_grid' &
.or. trim(output_grid) == 'global_latlon') then
call post_run_gfs(wrt_int_state, mypei, mpicomp, lead_write, &
mynfhr, mynfmin,mynfsec)
else if( trim(output_grid) == 'regional_latlon' &
.or. trim(output_grid) == 'rotated_latlon' &
.or. trim(output_grid) == 'lambert_conformal') then
print *,'inline_post_run, call post_run_regional'
if(mypei == 0) print *,'inline_post_run, call post_run_regional'
call post_run_regional(wrt_int_state, mypei, mpicomp, lead_write, &
mynfhr, mynfmin,mynfsec)
endif
@@ -63,14 +63,12 @@ subroutine inline_post_getattr(wrt_int_state)
!
type(wrt_internal_state),intent(inout) :: wrt_int_state
!
print *,'inline_post_getattr, output_grid=',trim(output_grid)
if(trim(output_grid) == 'gaussian_grid' &
.or. trim(output_grid) == 'global_latlon') then
call post_getattr_gfs(wrt_int_state)
else if( trim(output_grid) == 'regional_latlon' &
.or. trim(output_grid) == 'rotated_latlon' &
.or. trim(output_grid) == 'lambert_conformal') then
print *,'inline_post_getattr, call post_getattr_regional'
call post_getattr_regional(wrt_int_state)
endif
!