Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/NCAR/ccpp-physics into ma…
Browse files Browse the repository at this point in the history
…ster-ncar-d1be22d
  • Loading branch information
dustinswales committed Dec 29, 2020
2 parents 5ce1183 + 8785df5 commit 59ab3fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ For the use of CCPP with its Single Column Model, see the [Single Column Model U

For the use of CCPP with NOAA's Unified Forecast System (UFS), see the [UFS Medium-Range Application User's Guide](https://ufs-mrweather-app.readthedocs.io/en/latest/) and the [UFS Weather Model User's Guide](https://ufs-weather-model.readthedocs.io/en/latest/).

The Apache license will be in effect unless superseded by an existing license in specific files.

Questions can be directed to the [CCPP Help Desk](mailto:gmtb-help@ucar.edu). When using the CCPP with NOAA's UFS, questions can be posted in the [UFS Weather Model](https://forums.ufscommunity.org/forum/ufs-weather-model) section of the [UFS Forum](https://forums.ufscommunity.org/)
2 changes: 1 addition & 1 deletion physics/drag_suite.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ subroutine drag_suite_run( &
eng1 = 0.5*( (rcs*(u1(i,k)+(dtaux+dtauxb)*deltim))**2 + &
(rcs*(v1(i,k)+(dtauy+dtauyb)*deltim))**2 )
! Modify theta tendency
dtdt(i,k) = dtdt(i,k) + max((eng0-eng1),0.0)/cp/deltim/prslk(i,k)
dtdt(i,k) = dtdt(i,k) + max((eng0-eng1),0.0)/cp/deltim
end if

dusfc(i) = dusfc(i) + taud_ls(i,k)*xn(i)*del(i,k) + taud_bl(i,k)*xn(i)*del(i,k)
Expand Down
3 changes: 2 additions & 1 deletion physics/unified_ugwp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ subroutine unified_ugwp_run(me, master, im, levs, ntrac, dtp, fhzero, kdt,
integer, intent(in) :: gwd_opt
integer, intent(in), dimension(im) :: kpbl
real(kind=kind_phys), intent(in), dimension(im) :: oro, oro_uf, hprime, oc, theta, sigma, gamma
real(kind=kind_phys), intent(in), dimension(im) :: varss,oc1ss,oa4ss,ol4ss,dx
real(kind=kind_phys), intent(in), dimension(im) :: varss,oc1ss,dx
real(kind=kind_phys), intent(in), dimension(im,4) :: oa4ss,ol4ss
logical, intent(in) :: flag_for_gwd_generic_tend
! elvmax is intent(in) for CIRES UGWP, but intent(inout) for GFS GWDPS
real(kind=kind_phys), intent(inout), dimension(im) :: elvmax
Expand Down

0 comments on commit 59ab3fe

Please sign in to comment.