Showing posts with label Modflow. Show all posts
Showing posts with label Modflow. Show all posts

Wednesday, August 22, 2012

Reading Modflow output files (again)

In many cases its very useful to be able to read and process in batch mode the output file of Modflow (Optimization, inverse modeling, Monte Carlo simulation etc...)

The USGS has provided a utility program to convert the binary output to ascii, which is easier to read, yet as you will see below it is rather straightforward to read the binary files without using an intermediate step.

In general, reading binary files requires precise knowledge of how the data are written on the file. Finding this information was actually more difficult than writing the program itself. Go to http://water.usgs.gov/nrp/gwsoftware/modflow2000/MFDOC/ and then and then under the FAQ look for "How can I read data from a binary file generated by MODFLOW?". At the bottom of the description click the plus next to Array Data and there they are!!.

Let's suppose we want to read the "mymodel.hds" binary file that contains the head field of a multi-layer aquifer with Nlay layers.
To read the file  we will use few Matlab/Octave commands, fopen/fclose, fread.

>>fid=fopen("mymodel.hds",'r'); % open the file for reading

Next we will start reading the data but as the description suggest we should know whether the data are written in single-precision or double-precision format. As we would never know beforehand the correct format, we just make an assumption and check this later.

 First we need to read an integer of 4 bytes, which is the the time step number.
>>KSPT = fread(fid, 1, 'uint');
similarly:
>>KPER = fread(fid, 1, 'uint');% read the stress period number
>>PERTIM = fread(fid, 1, 'float'); % the time in the current stress period, which is a real number and that's why we use 'float' format.
>> TOTIM = fread(fid, 1, 'float'); %the total elapsed time, which again is a real number.

Next we have to read a word, which is actually the moment of truth. If the assumptions about the single/double precision format or the number of bytes (4 or 8) for the real numbers are correct, we should read something that makes sense. When we read a head field, for example, we should simply read : '            HEAD'.
According to the description  we have to read 16 ANSI characters
>> DESC = fread(fid, 16, 'char');
The DESC now is an array that looks like this:
[32 32 32 32 32 72 69 65 68], which are the ANSI characters of the word we just read.
To convert it to a readable format use:
>>DESC=char(DESC');
DESC  is now the word '     HEAD' in ascii characters.
If DESC matches one of the values of the table, on the FAQ then our assumptions are correct.
Next we read 3 integer numbers
>>NCOL = fread(fid, 1, 'uint'); % number of columns
>>NROW = fread(fid, 1, 'uint'); % number of rows
>>ILAY = fread(fid, 1, 'uint'); % layer number
Finally we have to read the head field itself using a loop
>> for ir = 1 : NROW
       for ic = 1 : NCOL
           H(ir,ic,ILAY)=fread(fid, 1, float);
       end
   end

In case of multi layer we need to put all the above commands into a loop.

Last we need to close the file (which is something I always forget)
>>fclose(fid);

(I have used many times the above implementation without any problems. Therefore I cannot give recommendations if the file uses a different format).


Thursday, February 3, 2011

Read Modflow Head file using Matlab

When I first started working with Modflow, I used to use a utility program to convert the output data from binary to ascii. However, I have writen a function in Matlab that extracts the head field directly from the binary file to matlab workspace.

function H=readheadfile(filename,NR,NC,NL)
%NR, NC, NL: number of rows, columns, layers
fid=fopen(filename,'r');
A=fread(fid,'float'); %reads the entire file and stores it to the variable A
fclose(fid);
A=reshape(A,11+NC*NR,NL);
%{
The constant number 11 depends on the preprocessor platform. For Groundwater vistas, version 4 and 5, this number should be 11. For an old version of PmWin I had to change that to 14.
%}
A(1:11,:)=[];
for i=1:NL
H(:,:,i)=reshape(A(:,NL+1-i),NC,NR)';
end

Note that the output of the function readheadfile is a 3D array where the top layer corresponds to the bottom layer of the aquifer and vice versa.