Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
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
1 change: 1 addition & 0 deletions components/mosart/bld/build-namelist
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ else {
add_default($nl, 'RoutingMethod');
add_default($nl, 'DLevelH2R');
add_default($nl, 'DLevelR');
add_default($nl, 'redirect_negative_qgwl');
# add_default($nl, 'finidat_rtm' , 'rof_grid'=>$ROF_GRID, 'simyr'=>$opts{'simyr'}, 'nofail'=>1 );
my $val = 0;
if ($NCPL_BASE_PERIOD eq "year") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ for the CLM data in the CESM distribution
<heatflag>.false.</heatflag>
<do_budget>0</do_budget>
<data_bgc_fluxes_to_ocean_flag>.false.</data_bgc_fluxes_to_ocean_flag>
<redirect_negative_qgwl>.false.</redirect_negative_qgwl>
<rstraflag>.false.</rstraflag>
<rinittemp>283.15</rinittemp>
<ngeom>50</ngeom>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,14 @@ Default: .false.
If .true., mosart will read in bgc nutrients and send to ocean.
</entry>

<entry id="redirect_negative_qgwl"
type="logical"
category="mosart"
group="mosart_inparm">
Default: .false.
If .true., mosart will redirect negative qgwl to the ocean.
</entry>

<entry id="rstraflag"
type="logical"
category="mosart"
Expand Down
2 changes: 1 addition & 1 deletion components/mosart/src/cpl/rof_comp_mct.F90
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module rof_comp_mct
inst_index, inst_suffix, inst_name, RtmVarSet, &
wrmflag, heatflag, data_bgc_fluxes_to_ocean_flag, &
inundflag, use_lnd_rof_two_way, use_ocn_rof_two_way, &
sediflag
sediflag, redirect_negative_qgwl
use RtmSpmd , only : masterproc, mpicom_rof, npes, iam, RtmSpmdInit, ROFID
use RtmMod , only : Rtmini, Rtmrun
use RtmTimeManager , only : timemgr_setup, get_curr_date, get_step_size
Expand Down
Loading