MODFLOW-USGS / mt3d-usgs

MT3D-USGS Repository
23 stars 12 forks source link

Error reading formatted fll file #54

Closed rbwinst-usgs closed 5 years ago

rbwinst-usgs commented 5 years ago

If the ftl file is formatted, MT3D doesn't accurately identify when the UZF package is active. I have a suggested fix.

Here are lines 127-132 of fmi1.f with the fix included. The problem is that when the ftl file is formatted, the read statement has the text followed by blanks but in the tests that follow, it is assumed that the text is preceded by blanks. The fix is to us ADJUSTR on the text. IF(IFTLFMT.EQ.0) THEN READ(INFTL) TEXT1 ELSEIF(IFTLFMT.EQ.1) THEN READ(INFTL,*) TEXT1 TEXT1 = ADJUSTR(TEXT1) ENDIF

While this corrects this particular problem, the model still won't run because of another bug. mt3d_bug.zip

emorway-usgs commented 5 years ago

@rbwinst-usgs I'm thinking this is related to #55 because of the way the linker file gets opened up when specified in both the name file and the LMT input file. I'm leaning toward closing the linker file if it was originally opened in the MF name file and reopening it using LMT protocol. I think this will clear up most of these issues (#54 - #57), but want to get confirmation from @langevin-usgs that I'm not overlooking something else.

I think the quickest path forward if this is holding you up is to remove specification of the linker file (.ftl in this case) from the MF name file. I don't think the intention was to open a linker file in the MF name file, but only in LMT?