MODFLOW 6  version 6.7.0.dev3
USGS Modular Hydrologic Model
freundlichisothermmodule::freundlichisothermtype Interface Reference

Freundlich isotherm implementation of IsothermType. More...

Inheritance diagram for freundlichisothermmodule::freundlichisothermtype:
Inheritance graph
Collaboration diagram for freundlichisothermmodule::freundlichisothermtype:
Collaboration graph

Private Member Functions

procedure derivative
 
type(freundlichisothermtype) function constructor (Kf, a)
 Constructor for Freundlich isotherm. More...
 

Private Attributes

real(dp), dimension(:), pointer kf => null()
 Freundlich constant. More...
 
real(dp), dimension(:), pointer a => null()
 Freundlich exponent. More...
 

Detailed Description

Sorbed concentration is cs = Kf*c^a.

Definition at line 14 of file FreundlichIsotherm.f90.

Member Function/Subroutine Documentation

◆ constructor()

type(freundlichisothermtype) function freundlichisothermmodule::freundlichisothermtype::constructor ( real(dp), dimension(:), intent(in), pointer  Kf,
real(dp), dimension(:), intent(in), pointer  a 
)
private

Definition at line 30 of file FreundlichIsotherm.f90.

31  type(FreundlichIsothermType) :: isotherm
32  ! -- dummy
33  real(DP), pointer, dimension(:), intent(in) :: Kf
34  real(DP), pointer, dimension(:), intent(in) :: a
35  ! -- local
36  isotherm%Kf => kf
37  isotherm%a => a
38 

◆ derivative()

procedure freundlichisothermmodule::freundlichisothermtype::derivative
private

Definition at line 19 of file FreundlichIsotherm.f90.

Here is the call graph for this function:

Member Data Documentation

◆ a

real(dp), dimension(:), pointer freundlichisothermmodule::freundlichisothermtype::a => null()
private

Definition at line 16 of file FreundlichIsotherm.f90.

16  real(DP), pointer, dimension(:) :: a => null() !< Freundlich exponent

◆ kf

real(dp), dimension(:), pointer freundlichisothermmodule::freundlichisothermtype::kf => null()
private

Definition at line 15 of file FreundlichIsotherm.f90.

15  real(DP), pointer, dimension(:) :: Kf => null() !< Freundlich constant

The documentation for this interface was generated from the following file: