Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(releasenotes): hotfix to escape underscore in release notes #1049

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
docs(releasenotes): hotfix to escape underscore in release notes
* release notes was updated in #1047 and broke nightly build
* minor change to npf
  • Loading branch information
langevin-usgs committed Sep 23, 2022
commit 4c6315062d9c03a3c1dd68d0760c9299846664e0
2 changes: 1 addition & 1 deletion doc/ReleaseNotes/ReleaseNotes.tex
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ \section{Changes Introduced in this Release}
\underline{STRESS PACKAGES}
\begin{itemize}
\item The Evapotranspiration (EVT) Package was modified to include a new error check if the segmented evapotranspiration capability is active. If the number of ET segments is greater than 1, then the user must specify values for PXDP (as well as PETM). For a cell, PXDP is a one-dimensional array of size NSEG - 1. Values in this array must be greater than zero and less than one. Furthermore, the values in PXDP must increase monotonically. The program now checks for these conditions and terminates with an error if these conditions are not met. The segmented ET capability can used be used for list-based EVT Package input. Provided that the PXDP conditions are met, this new error check should have no effect on simulation results.
\item The Evapotranspiration (EVT) Package would throw an index error when SURF_RATE_SPECIFIED was specified in the OPTIONS block and NSEG was set equal to 1. The code now supports this combination of input options.
\item The Evapotranspiration (EVT) Package would throw an index error when SURF\_RATE\_SPECIFIED was specified in the OPTIONS block and NSEG was set equal to 1. The code now supports this combination of input options.
% \item xxx
% \item xxx
\end{itemize}
Expand Down
2 changes: 1 addition & 1 deletion src/Model/GroundWaterFlow/gwf3npf8.f90
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ subroutine npf_save_model_flows(this, flowja, icbcfl, icbcun)
end if
!
! -- Calculate specific discharge at cell centers and write, if requested
if (this%icalcspdis /= 0) then
if (this%isavspdis /= 0) then
if (ibinun /= 0) call this%sav_spdis(ibinun)
end if
!
Expand Down