Evaluating solutions
Fronts.Solution
— TypeSolution to a problem.
(::Solution)(r, t)
(::Solution)(o)
Evaluate the solution.
Properties
retcode
: termination status of the solver. SeeReturnCode
.i
: initial value.b
: boundary value.d_dob
:o
-derivative at the boundary, whereo
is the Boltzmann variable. See alsoo
.ob
: boundary constant. See alsorb
.oi
: foro≥oi
, the solution evaluates to the initial value.prob
: problem solved.alg
: algorithm used.original
: original solution object, if applicable.
Fronts.d_dr
— Functiond_dr(::Solution, r, t)
Spatial derivative of the solution.
d_dr(::Solution, :b, t)
Spatial derivative of the solution at the boundary.
Fronts.d_dt
— Functiond_dt(::Solution, r, t)
Time derivative of the solutio.
d_dt(::Solution, :b, t)
Time derivative of the solution at the boundary.
Fronts.flux
— Functionflux(::Solution, r, t)
Flux.
flux(::Solution, :b, t)
Boundary flux.
Fronts.d_do
— Functiond_do(::Solution, r, t)
d_do(::Solution, o)
o
-derivative of the solution, where o
is the Boltzmann variable.
See also: o
Fronts.rb
— Functionrb(::Solution, t)
Location of the boundary in the solution at time t
, equal to ob*√t
.
Fronts.sorptivity
— Methodsorptivity(::Solution)
Sorptivity.
sorptivity(::Solution, o)
Sorptivity, computed from the given value of o.
References
PHILIP, J. R. The theory of infiltration: 4. Sorptivity and algebraic infiltration equations. Soil Science, 1957, vol. 84, no. 3, p. 257-264.
Fronts.sorptivity
— Methodsorptivity(::Solution)
Sorptivity.
sorptivity(::Solution, o)
Sorptivity, computed from the given value of o.
References
PHILIP, J. R. The theory of infiltration: 4. Sorptivity and algebraic infiltration equations. Soil Science, 1957, vol. 84, no. 3, p. 257-264.
Fronts.FiniteSolution
— TypeSolution to a finite problem.
(::FiniteSolution)(r, t)
Evaluate the solution at location r
and time t
.