public static interface FeynmanKac.PdeCoefficients
Modifier and Type | Method and Description |
---|---|
double |
kappa(double x,
double t)
Returns the value of the κ coefficient at the given point.
|
double |
mu(double x,
double t)
Returns the value of the μ coefficient at the given point.
|
double |
sigma(double x,
double t)
Returns the value of the σ coefficient at the given point.
|
double |
sigmaPrime(double x,
double t)
Returns the value of σ′=∂σ(x,t)∂x
at the given point.
|
double sigma(double x, double t)
Time dependency of σ can be controlled via method
setTimeDependence
. Use of this method will usually yield a more efficient
algorithm because some finite element matrices do not have to be reassembled for each
t
value.
x
- a double
, the point in space at which σ
is to be evaluated.t
- a double
, the time point at which σ is
to be evaluated.double
, the value of σ at (x,t)
.double sigmaPrime(double x, double t)
Time dependency of σ′ can be controlled via method
setTimeDependence
. Use of this method will usually yield a more efficient
algorithm because some finite element matrices do not have to be reassembled for each
t
value.
x
- a double
, the point in space at which σ′
is to be evaluated.t
- a double
, the time point at which σ′
is to be evaluated.double
, the value of σ′ at
(x,t)
.double mu(double x, double t)
Time dependency of μ can be controlled via method
setTimeDependence
. Use of this method will usually yield a more efficient
algorithm because some finite element matrices do not have to be reassembled for each
t
value.
x
- a double
, the point in space at which μ
is to be evaluated.t
- a double
, the time point at which μ is
to be evaluated.double
, the value of μ at (x,t)
.double kappa(double x, double t)
Time dependency of κ can be controlled via method
setTimeDependence
. Use of this method will usually yield a more efficient
algorithm because some finite element matrices do not have to be reassembled for each
t
value.
x
- a double
, the point in space at which κ
is to be evaluated.t
- a double
, the time point at which κ is
to be evaluated.double
, the value of κ at (x,t)
.Copyright © 2020 Rogue Wave Software. All rights reserved.