diff --git a/doc/ReleaseNotes/develop.tex b/doc/ReleaseNotes/develop.tex index be23b831c5a..c3b6c4e497e 100644 --- a/doc/ReleaseNotes/develop.tex +++ b/doc/ReleaseNotes/develop.tex @@ -1,5 +1,5 @@ -% Use this template for starting initializing the release notes -% after a release has just been made. +% Use this template for starting initializing the release notes after a release +% has just been made. \item \currentmodflowversion @@ -7,8 +7,8 @@ \begin{itemize} \item A new adaptive time stepping (ATS) capability was added to the Advection (ADV) Package of the Groundwater Transport (GWT) Model. A new input option, called ATS\_PERCEL, specifies the fractional cell distance that a particle of water can travel within one time step. When ATS\_PERCEL is specified by the user, and the ATS utility is activated in the TDIS Package, the ADV Package will calculate the largest time step that will meet this fractional cell distance constraint, and will submit this time step to the ATS utility. This option may improve time stepping for solute transport models and for variable-density flow and transport models by allowing step lengths to be calculated as a function of the flow system rather than being specified as input by the user. \item Added the capability to write sorbate concentrations to a binary output file. A new SORBATE option is now available in the Mass Storage and Transfer (MST) Package of the GWT Model to provide the name of the binary output file for sorbate concentrations. Sorbate concentrations will be written to the binary output file whenever concentrations for the GWT model are saved, as determined by the GWT Output Control option. - \item Add kinematic-wave routing option for the Streamflow Routing (SFR) package. The implementation is based on the kinematic-wave routing option available in the SFR package available in previous versions of MODFLOW. - % \item xxx + \item Add kinematic-wave routing option for the Streamflow Routing (SFR) Package. Prior to this change, the SFR Package could only simulate unidirectional, steady, uniform flow. With kinematic-wave routing, unidirectional waves can now propagate through the SFR network by explicitly including a storage term in the reach continuity equation. The kinematic-wave routing option is based on the ``TRANSROUTE'' option available in the SFR Package in MODFLOW-NWT. The kinematic-wave routing option is enabled by specifying ``STORAGE'' in the SFR Package OPTIONS block. + % \item xxx \end{itemize} \underline{EXAMPLES} diff --git a/make/makefile b/make/makefile index ae8a056dceb..71bc053718f 100644 --- a/make/makefile +++ b/make/makefile @@ -505,7 +505,7 @@ $(OBJDIR)/sparsekit.o \ $(OBJDIR)/rcm.o \ $(OBJDIR)/blas1_d.o \ $(OBJDIR)/Iunit.o \ -$(OBJDIR)/GwfSfrStatic.o \ +$(OBJDIR)/GwfSfrCommon.o \ $(OBJDIR)/gwf-sfr-transient.o \ $(OBJDIR)/gwf-sfr-steady.o \ $(OBJDIR)/gwf-sfr-constant.o \ diff --git a/msvs/mf6core.vfproj b/msvs/mf6core.vfproj index 84a9b2acf78..cc81f11cd98 100644 --- a/msvs/mf6core.vfproj +++ b/msvs/mf6core.vfproj @@ -314,7 +314,7 @@ - + diff --git a/src/Model/ModelUtilities/GwfSfrStatic.f90 b/src/Model/ModelUtilities/GwfSfrCommon.f90 similarity index 100% rename from src/Model/ModelUtilities/GwfSfrStatic.f90 rename to src/Model/ModelUtilities/GwfSfrCommon.f90 diff --git a/src/meson.build b/src/meson.build index 6c764319a62..90e47691f2f 100644 --- a/src/meson.build +++ b/src/meson.build @@ -235,7 +235,7 @@ modflow_sources = files( 'Model' / 'ModelUtilities' / 'GwfConductanceUtils.f90', 'Model' / 'ModelUtilities' / 'GwfMvrPeriodData.f90', 'Model' / 'ModelUtilities' / 'GwfNpfOptions.f90', - 'Model' / 'ModelUtilities' / 'GwfSfrStatic.f90', + 'Model' / 'ModelUtilities' / 'GwfSfrCommon.f90', 'Model' / 'ModelUtilities' / 'GwfStorageUtils.f90', 'Model' / 'ModelUtilities' / 'GwfVscInputData.f90', 'Model' / 'ModelUtilities' / 'GwtDspOptions.f90',