Itasca C++ Interface
Toggle main menu visibility
Main Page
Topics
Namespaces
Namespace List
Namespace Members
All
Functions
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
c
d
e
g
i
m
n
o
p
r
s
t
v
w
Typedefs
Enumerations
Enumerator
a
c
d
f
g
h
i
k
n
p
r
Related Symbols
Files
File List
File Members
All
_
a
b
c
d
f
g
i
m
o
q
r
s
t
u
v
Functions
c
d
g
i
m
o
r
s
t
Typedefs
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
Loading...
Searching...
No Matches
flac3d
zone
interface
ifluidsat.h
1
#pragma once
2
3
/*
4
* \file
5
* \brief Interface to fluid saturation model (soil water characteristic curve)
6
*/
7
class
IString
;
8
9
namespace
zone {
11
class
IFluidSat
{
12
public
:
13
virtual
int
getCode()
const
= 0;
14
virtual
void
setCode(
int
) = 0;
15
virtual
IString
getTableName()
const
= 0;
16
virtual
void
setTableName(
const
IString
&) = 0;
17
virtual
double
getProperty(
int
)
const
= 0;
18
virtual
void
setProperty(
int
,
const
double
&) = 0;
19
virtual
double
calculateApparentSaturation(
const
double
&) = 0;
20
virtual
double
getApparentSaturation()
const
= 0;
21
};
11
class
IFluidSat
{
…
};
22
}
// namespace zone
23
// EoF
IString
Definition
istring.h:14
zone::IFluidSat
Interface to fluid permeability model.
Definition
ifluidsat.h:11
Generated by
1.10.0