MODFLOW 6  version 6.7.0.dev3
USGS Modular Hydrologic Model
IsothermEnum.f90
Go to the documentation of this file.
2  use kindmodule, only: i4b
3 
4  implicit none
5 
6  integer(I4B), parameter :: sorption_off = 0 !< Sorption is inactive (default)
7  integer(I4B), parameter :: sorption_linear = 1 !< Linear sorption between aqueous and solid phases
8  integer(I4B), parameter :: sorption_freund = 2 !< Freundlich sorption between aqueous and solid phases
9  integer(I4B), parameter :: sorption_lang = 3 !< Langmuir sorption between aqueous and solid phases
10 
11 end module isothermenummodule
integer(i4b), parameter sorption_off
Sorption is inactive (default)
Definition: IsothermEnum.f90:6
integer(i4b), parameter sorption_freund
Freundlich sorption between aqueous and solid phases.
Definition: IsothermEnum.f90:8
integer(i4b), parameter sorption_lang
Langmuir sorption between aqueous and solid phases.
Definition: IsothermEnum.f90:9
integer(i4b), parameter sorption_linear
Linear sorption between aqueous and solid phases.
Definition: IsothermEnum.f90:7
This module defines variable data types.
Definition: kind.f90:8