Merge pull request #837 from bska/fix-aquct-numrec

Don't Infer Number of AQUFETP Records from AQUDIMS
This commit is contained in:
Joakim Hove 2019-06-21 18:57:50 +02:00 committed by GitHub
commit 3d7bcb19ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{"name" : "AQUFETP" , "sections" : ["SOLUTION" , "SCHEDULE"], "size" : {"keyword":"AQUDIMS" , "item":"NANAQU"},
{"name" : "AQUFETP" , "sections" : ["SOLUTION" , "SCHEDULE"],
"items" : [
{"name" : "AQUIFER_ID" , "value_type" : "INT"},
{"name" : "DAT_DEPTH" , "value_type" : "DOUBLE" , "dimension" : "Length"},

View File

@ -51,7 +51,7 @@ inline Deck createAquifetpDeck() {
"SOLUTION\n"
"\n"
"AQUFETP\n"
"1 70000.0 4.0e3 2.0e9 1.0e-5 500 1 0 0\n"
"1 70000.0 4.0e3 2.0e9 1.0e-5 500 1 0 0 /\n"
"/\n";
Parser parser;
@ -122,7 +122,7 @@ inline Deck createAquifetpDeck_defaultPressure(){
"SOLUTION\n"
"\n"
"AQUFETP\n"
"1 70000.0 1* 2.0e9 1.0e-5 500 1 0 0\n"
"1 70000.0 1* 2.0e9 1.0e-5 500 1 0 0 /\n"
"/\n";
Parser parser;