-
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.
Added VKD definition file and files needed to create the user guide V…
…KD information.
- Loading branch information
1 parent
868fb81
commit 93bc0fc
Showing
20 changed files
with
229 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Input to the Variations in Hydraulic Conductivity with Depth (VKD) Package is read from the file of type ``VKD6''. The VKD Package is activated by specifying an option in the NPF options block. Only one VKD Package can be specified for a GWF model. | ||
|
||
\vspace{5mm} | ||
\subsubsection{Structure of Blocks} | ||
\vspace{5mm} | ||
|
||
\noindent \textit{FOR EACH SIMULATION} | ||
\lstinputlisting[style=blockdefinition]{./mf6ivar/tex/gwf-vkd-options.dat} | ||
\lstinputlisting[style=blockdefinition]{./mf6ivar/tex/gwf-vkd-dimensions.dat} | ||
\lstinputlisting[style=blockdefinition]{./mf6ivar/tex/gwf-vkd-packagedata.dat} | ||
|
||
\vspace{5mm} | ||
\subsubsection{Explanation of Variables} | ||
\begin{description} | ||
\input{./mf6ivar/tex/gwf-vkd-desc.tex} | ||
\end{description} | ||
|
||
\vspace{5mm} | ||
\subsubsection{Example Input File} | ||
\lstinputlisting[style=inputfile]{./mf6ivar/examples/gwf-vkd-example.dat} |
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,69 @@ | ||
# --------------------- gwf vkd options --------------------- | ||
|
||
block options | ||
name print_input | ||
type keyword | ||
reader urword | ||
optional true | ||
longname model print input to listing file | ||
description keyword to indicate that the list of VKD cells and information will be written to the listing file immediately after it is read. | ||
|
||
|
||
# --------------------- gwf vkd dimensions --------------------- | ||
|
||
block dimensions | ||
name numvkd | ||
type integer | ||
reader urword | ||
optional false | ||
longname number of VKD cells | ||
description integer value specifying the number of VKD cells. There must be NUMVKD entries in the PACKAGEDATA block. | ||
|
||
block dimensions | ||
name numelevs | ||
type integer | ||
reader urword | ||
optional false | ||
longname number of VKD inflections | ||
description integer value specifying the number of VKD inflections. There must be NUMELEVS entries for both EIP and KIP for every cell defined in PACKAGEDATA block. | ||
|
||
|
||
# --------------------- gwf vkd packagedata --------------------- | ||
|
||
block packagedata | ||
name packagedata | ||
type recarray cellid eip kip | ||
shape (numvkd) | ||
reader urword | ||
longname | ||
description | ||
|
||
block packagedata | ||
name cellid | ||
type integer | ||
shape (ncelldim) | ||
tagged false | ||
in_record true | ||
reader urword | ||
longname cell identifier | ||
description REPLACE cellid {} | ||
|
||
block packagedata | ||
name eip | ||
type double precision | ||
shape (numelevs) | ||
tagged false | ||
in_record true | ||
reader urword | ||
longname elevation of inflection point | ||
description elevation of VKD inflection point. This number is an elevation (relative to the same datum used for cell tops and bottoms) in model length units. | ||
|
||
block packagedata | ||
name kip | ||
type double precision | ||
shape (numelevs) | ||
tagged false | ||
in_record true | ||
reader urword | ||
longname hydraulic conductivity factor | ||
description hydraulic conductivity factor at VKD inflection point. |
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,13 @@ | ||
BEGIN OPTIONS | ||
PRINT_INPUT | ||
END OPTIONS | ||
|
||
BEGIN DIMENSIONS | ||
NUMVKD 1 | ||
NUMELEVS 2 | ||
END DIMENSIONS | ||
|
||
BEGIN PACKAGEDATA | ||
# L R C EIP(1) EIP(2) KIP(1) KIP(2) | ||
1 1 4 0.25 0.5 1.0 1.5 | ||
END PACKAGEDATA |
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
Oops, something went wrong.