Model:OTIS
From CSDMS
						
						OTIS
Metadata
| 
 | 
  | 
Introduction
History
References
| Nr. of publications: | 95 | 
| Total citations: | 6145 | 
| h-index: | 39 | 
| m-quotient: | 0.97 | 
| Featured publication(s) | Year | Model described | Type of Reference | Citations | 
|---|---|---|---|---|
|  
Runkel, R.L. 1998. One-Dimensional Transport With Inflow and Storage (OTIS): A Solute Transport Model For Streams and Rivers. U.S.Geological Survey, Water-Resources Investigation Report 98-4018.. (View/edit entry)  | 1998 | OTIS | 
Model overview | 572 | 
| See more publications of OTIS | 
Issues
OTIS can also be built from source on macOS using gfortran.
Here are the steps.
Edit the makefiles in the otis, otis-p, share, and starpac directories, replacing these lines:
F77 = f77 $(FFLAGS) FFLAGS = -O -u
with these:
FC = gfortran F77 = $(FC) $(FFLAGS) FFLAGS =
In the share directory, make a copy of the generic header file and call it header.f:
$ cp header.generic.f header.f
From the root directory of the source distribution,
you can now call make to build all the executables:
$ make
Note that I had problems building OTIS with the gfortran I installed from Homebrew.
Instead, I used the gfortran from my Anaconda Python distribution:
$ which gfortran /Users/mpiper/anaconda/bin/gfortran $ gfortran --version GNU Fortran (GCC) 4.8.5 Copyright (C) 2015 Free Software Foundation, Inc.
--Mpiper (talk) 10:42, 13 June 2017 (MDT)
