Skip to content

Commit

Permalink
Merge branch 'main' into ufs-dev-PR111
Browse files Browse the repository at this point in the history
  • Loading branch information
grantfirl committed Feb 2, 2024
2 parents f3368e4 + c7a9e0d commit c18442b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions physics/GFS_rrtmg_setup.F90
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ subroutine GFS_rrtmg_setup_init ( si, levr, ictm, isol, solar_file, ico2, &
! Initialize the CCPP error handling variables
errmsg = ''
errflg = 0

if (is_initialized) return

if (do_RRTMGP) then
write(errmsg,'(*(a))') "Logic error: do_RRTMGP must be set to .false."
Expand Down Expand Up @@ -213,6 +211,8 @@ subroutine GFS_rrtmg_setup_init ( si, levr, ictm, isol, solar_file, ico2, &
print *, 'lextop=',lextop, ' ltp=',ltp
endif

if (is_initialized) return

! Call initialization routines
call sol_init ( me, isol, solar_file, con_solr_2008,con_solr_2002,&
con_pi )
Expand Down
4 changes: 2 additions & 2 deletions physics/GFS_rrtmgp_setup.F90
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ subroutine GFS_rrtmgp_setup_init(do_RRTMGP, imp_physics, imp_physics_fer_hires,
! Initialize the CCPP error handling variables
errmsg = ''
errflg = 0

if (is_initialized) return

! Consistency checks
if (.not. do_RRTMGP) then
Expand Down Expand Up @@ -125,6 +123,8 @@ subroutine GFS_rrtmgp_setup_init(do_RRTMGP, imp_physics, imp_physics_fer_hires,
iyear0 = 0
monthd = 0

if (is_initialized) return

! Call initialization routines..
call sol_init ( me, isol, solar_file, con_solr_2008, con_solr_2002, con_pi )
call aer_init ( levr, me, iaermdl, iaerflg, lalw1bd, aeros_file, con_pi, con_t0c, &
Expand Down

0 comments on commit c18442b

Please sign in to comment.