Don't Infer Number of AQUFETP Records from AQUDIMS

The number of records is unrelated to AQUDIMS Item 5 (NANAQU).  That
item sets the maximum aquifer ID permissible as Item 1 of AQUFETP.

Update unit test accordingly.
This commit is contained in:
Bård Skaflestad 2019-06-21 15:53:13 +02:00
parent 036951444c
commit 63c802666d
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;