Skip to content

Commit

Permalink
fixed namelist issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mvertens committed Oct 2, 2024
1 parent 457c98f commit d90b354
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cime_config/namelist_definition_blom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3841,8 +3841,8 @@

<entry id="use_nuopc_ndep">
<type>logical</type>
<category>bgcnml</category>
<group>bgcnml</group>
<category>config_bgc</category>
<group>config_bgc</group>
<values>
<value>.false.</value>
<value comp_interface="nuopc">.true.</value>
Expand Down
6 changes: 3 additions & 3 deletions hamocc/mo_param1_bgc.F90
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module mo_param1_bgc
use mo_control_bgc, only: use_BROMO, use_AGG, use_WLIN, use_natDIC, use_CFC, &
use_cisonew, use_PBGC_OCNP_TIMESTEP, use_PBGC_CK_TIMESTEP, &
use_FB_BGC_OCE, use_BOXATM, use_sedbypass, use_extNcycle, &
use_pref_tracers, use_nuopc_ndep
use_pref_tracers
implicit none
public

Expand Down Expand Up @@ -242,12 +242,12 @@ subroutine init_indices()
use mo_control_bgc, only: bgc_namelist,get_bgc_namelist, io_stdo_bgc
use mo_control_bgc, only: use_BROMO,use_AGG,use_WLIN,use_natDIC,use_CFC,use_cisonew, &
use_sedbypass,use_PBGC_OCNP_TIMESTEP,use_PBGC_CK_TIMESTEP, &
use_FB_BGC_OCE, use_BOXATM,use_extNcycle,use_pref_tracers
use_FB_BGC_OCE, use_BOXATM,use_extNcycle,use_pref_tracers,use_nuopc_ndep
integer :: iounit

namelist / config_bgc / use_BROMO,use_AGG,use_WLIN,use_natDIC,use_CFC,use_cisonew, &
use_sedbypass,use_PBGC_OCNP_TIMESTEP,use_PBGC_CK_TIMESTEP, &
use_FB_BGC_OCE,use_BOXATM,use_extNcycle,use_pref_tracers
use_FB_BGC_OCE,use_BOXATM,use_extNcycle,use_pref_tracers,use_nuopc_ndep

io_stdo_bgc = lp ! standard out.

Expand Down
2 changes: 1 addition & 1 deletion phy/mod_rdlim.F90
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ subroutine rdlim()
open (newunit=nfu,file=nlfnm,status='old',action = 'read', &
recl = 80)
else
write (lp,*) 'rdlim: could not find namelist file!'
write (lp,*) 'rdlim: could not find namelist file! '//trim(nlfnm)
call xchalt('(rdlim)')
stop '(rdlim)'
end if
Expand Down

0 comments on commit d90b354

Please sign in to comment.