-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop' into refactor-src-mer…
…ge-develop (#349) * refactor(maw): refactor MAW conductance calculation for issue 305 (#310) Add traps to catch 1) skin factors that are <= 0 when using the SKIN conductance equation and 2) and negative saturated conductances values. Closes #305 * feat(tableobj): Add a generic table object for lst file output (#303) Full implementation for SFR package. Partial implementation for LAK, MAW, and UZF packages. * feat(tableobj): update MAW package to use tableobj for data output (#315) Also fix some budget reporting issues in the MAW package * fix(auxmult): auxmult fix when auxmult and bound are in time series (#316) * change order of time series interpolation so aux is done first in case it is an auxmult column * partially addresses #314 * updated release notes * refactor(BoundaryPackage): Add use of TableObject for print_flows option (#317) * feat(lnf): update n-point geometry package data * Revert "feat(lnf): update n-point geometry package data" This reverts commit 3460cfb. * fix(lak): revise the way outlet to-mvr flows are stored in budobj (#321) * fix(lak): revise the way outlet to-mvr flows are stored in budobj * updated release notes * refactor(lak/maw/sfr): for CONSTANT features write fixed value instead of DHNOFLO to binary file (#329) * refactor(lak/maw/sfr): for CONSTANT features write fixed value instead of DHNOFLO to binary file * update release notes * fix(maw): new headtable corrected to have mawwells rows instead of maxbound (#332) * fix(sfr): Remove upstream_fraction check from PACKAGEDATA block (#334) closes #324 * feat(transport): update develop with some general routines needed for transport (#339) * feat(transport): update develop with some general routines needed for transport * fix(mover): correct typo in error message * closes #336 * refactor(disu): correct type in disu error message * closes #635 * fix(csub): Allow interbed observations when no interbeds specified (#338) DNODATA values reported if 1) delay interbed observations are specified and no delay interbeds are specified and 2) interbed observations are specified and the number of interbeds is zero. Added test of all observation types to test_gwf_csub_sk01.py which has no interbeds. closes #298 * ci(travis): update travis.yml to install miniconda instead of apt python (#346) * refactor(mf6): standardize output to STDOUT to use istdout variable * refactor(mf6): standardize output to STDOUT to use istdout variable Modify mf5to6 to use standard SimVariables.f90 in mf6 src and add ListType variables in original mf5to6 SimVariables.f90 file to SimListVariables.f90 and update use statements. * Merge remote-tracking branch 'upstream/develop' into refactor-src-merge-develop # Conflicts: # autotest/simulation.py # msvs/mf6.vfproj # src/Model/GroundWaterFlow/gwf3csub8.f90 # src/Solution/NumericalSolution.f90 # src/Utilities/List.f90 # src/Utilities/Sim.f90 # src/Utilities/SimVariables.f90 # src/mf6.f90 # utils/mf5to6/src/Preproc/SimVariables.f90 Co-authored-by: langevin-usgs <langevin@usgs.gov>
- Loading branch information
1 parent
e050061
commit a462b18
Showing
14 changed files
with
52 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module SimListVariablesModule | ||
use ListModule, only: ListType | ||
|
||
implicit none | ||
|
||
private | ||
public :: ModelPacks, SimMovers | ||
|
||
type(ListType), pointer :: SimMovers => null() | ||
type(ListType) :: ModelPacks | ||
|
||
end module SimListVariablesModule |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters