Skip to content

Commit 0950ba8

Browse files
author
langevin-usgs
authored
refactor(misc): improve doc (#1647)
* refactor(misc): improve doc * improve auto flow reduce description in dfn to indicate it is only for unconfined cells * mark swf as a dev_feature * minor name change to tsp list file header * fprettify
1 parent 577b14d commit 0950ba8

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

doc/mf6io/mf6ivar/dfn/gwf-wel.dfn

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ type double precision
6262
reader urword
6363
optional true
6464
longname cell fractional thickness for reduced pumping
65-
description keyword and real value that defines the fraction of the cell thickness used as an interval for smoothly adjusting negative pumping rates to 0 in cells with head values less than or equal to the bottom of the cell. Negative pumping rates are adjusted to 0 or a smaller negative value when the head in the cell is equal to or less than the calculated interval above the cell bottom. AUTO\_FLOW\_REDUCE is set to 0.1 if the specified value is less than or equal to zero. By default, negative pumping rates are not reduced during a simulation.
65+
description keyword and real value that defines the fraction of the cell thickness used as an interval for smoothly adjusting negative pumping rates to 0 in cells with head values less than or equal to the bottom of the cell. Negative pumping rates are adjusted to 0 or a smaller negative value when the head in the cell is equal to or less than the calculated interval above the cell bottom. AUTO\_FLOW\_REDUCE is set to 0.1 if the specified value is less than or equal to zero. By default, negative pumping rates are not reduced during a simulation. This AUTO\_FLOW\_REDUCE option only applies to wells in model cells that are marked as ``convertible'' (ICELLTYPE /= 0) in the Node Property Flow (NPF) input file. Reduction in flow will not occur for wells in cells marked as confined (ICELLTYPE = 0).
6666
mf6internal flowred
6767

6868
block options

src/Model/TransportModel/tsp.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ subroutine tsp_cr(this, filename, id, modelname, macronym, indis)
127127
!
128128
! -- create the list file
129129
call this%create_lstfile(lst_fname, filename, found%list, &
130-
'GROUNDWATER TRANSPORT MODEL (GWT)')
130+
'TRANSPORT MODEL ('//trim(macronym)//')')
131131
!
132132
! -- activate save_flows if found
133133
if (found%save_flows) then

src/SimulationCreate.f90

+4-2
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,8 @@ subroutine models_create()
313313
write (iout, '(4x,2a,i0,a)') trim(model_type), " model ", &
314314
n, " will be created"
315315
call swf_cr(fname, n, model_names(n))
316+
call dev_feature('SWF is still under development, install the &
317+
&nightly build or compile from source with IDEVELOPMODE = 1.')
316318
num_model => GetNumericalModelFromList(basemodellist, im)
317319
model_loc_idx(n) = im
318320
end if
@@ -321,8 +323,8 @@ subroutine models_create()
321323
write (iout, '(4x,2a,i0,a)') trim(model_type), ' model ', &
322324
n, ' will be created'
323325
call prt_cr(fname, n, model_names(n))
324-
call dev_feature("PRT is still under development, install the' &
325-
&nightly build or compile from source with IDEVELOPMODE = 1.")
326+
call dev_feature('PRT is still under development, install the &
327+
&nightly build or compile from source with IDEVELOPMODE = 1.')
326328
num_model => GetNumericalModelFromList(basemodellist, im)
327329
model_loc_idx(n) = im
328330
case default

0 commit comments

Comments
 (0)