-
Notifications
You must be signed in to change notification settings - Fork 37
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
[production/RRFS.v1] physics updates for RRFS.v1 code freeze #176
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,7 +123,7 @@ subroutine rrfs_smoke_wrapper_run(im, kte, kme, ktau, dt, garea, land, jdate, | |
ebu_smoke,fhist,min_fplume, & | ||
max_fplume, hwp, hwp_ave, wetness, ndvel, ddvel_inout, & | ||
peak_hr_out,lu_nofire_out,lu_qfire_out, & | ||
fire_heat_flux_out, frac_grid_burned_out, kpbl,oro, & | ||
fire_heat_flux_out, frac_grid_burned_out, kpbl,oro, totprcp, & | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are you adding There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @grantfirl I will remove this unused variable. Thanks. |
||
uspdavg, hpbl_thetav, mpicomm, mpirank, mpiroot, errmsg,errflg ) | ||
|
||
implicit none | ||
|
@@ -145,7 +145,7 @@ subroutine rrfs_smoke_wrapper_run(im, kte, kme, ktau, dt, garea, land, jdate, | |
real(kind_phys), dimension(:,:), intent(in) :: emi_ant_in | ||
real(kind_phys), dimension(:), intent(in) :: u10m, v10m, ustar, dswsfc, & | ||
recmol, garea, rlat,rlon, tskin, pb2d, zorl, snow, & | ||
rain_cpl, rainc_cpl, hf2d, t2m, dpt2m | ||
rain_cpl, rainc_cpl, hf2d, t2m, dpt2m, totprcp | ||
real(kind_phys), dimension(:,:), intent(in) :: vegtype_frac | ||
real(kind_phys), dimension(:,:), intent(in) :: ph3d, pr3d | ||
real(kind_phys), dimension(:,:), intent(in) :: phl3d, prl3d, tk3d, us3d, vs3d, spechum, w | ||
|
@@ -329,7 +329,7 @@ subroutine rrfs_smoke_wrapper_run(im, kte, kme, ktau, dt, garea, land, jdate, | |
do k=kts,kte | ||
do i=its,ite | ||
! ebu is divided by coef_bb_dc since it is applied in the output | ||
ebu(i,k,1)=ebu_smoke(i,k) / coef_bb_dc(i,1) | ||
ebu(i,k,1)=ebu_smoke(i,k) / MAX(1.E-4,coef_bb_dc(i,1)) | ||
enddo | ||
enddo | ||
ENDIF | ||
|
@@ -734,6 +734,9 @@ subroutine rrfs_smoke_prep( & | |
moist = 0._kind_phys | ||
chem = 0._kind_phys | ||
z_at_w = 0._kind_phys | ||
if ( ebb_dcycle == 1 ) then | ||
coef_bb_dc = 1._kind_phys | ||
endif | ||
|
||
do i=its,ite | ||
u10 (i,1)=u10m (i) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -916,6 +916,14 @@ | |
type = real | ||
kind = kind_phys | ||
intent = in | ||
[totprcp] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question. Please remove this change if you're not using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @grantfirl I will remove this unused variable. Thanks. |
||
standard_name = accumulated_lwe_thickness_of_precipitation_amount | ||
long_name = accumulated total precipitation | ||
units = m | ||
dimensions = (horizontal_loop_extent) | ||
type = real | ||
kind = kind_phys | ||
intent = in | ||
[errmsg] | ||
standard_name = ccpp_error_message | ||
long_name = error message for error handling in CCPP | ||
|
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.
These are only whitespace changes. Is that intended? If not, please revert this change.
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.
@grantfirl I will revert this. Thanks.