Add SorptivityProblem #359
CI.yml
on: pull_request
Documentation
14m 32s
Matrix: test
Annotations
2 errors
Documentation:
src/problems.jl#L177
doctest failure in ~/work/Fronts.jl/Fronts.jl/src/problems.jl:177-185
```jldoctest; setup = :(using Fronts)
julia> D(θ) = θ^4
D (generic function with 1 method)
julia> prob = Fronts.SorptivityProblem(D, i=0, S=1)
⎧ ∂θ/∂t = ∂(D(θ)*∂θ/∂r)/∂r, r>0,t>0
⎨ θ(r,0) = 0, r>0
⎩ S = 1
```
Subexpression:
prob = Fronts.SorptivityProblem(D, i=0, S=1)
Evaluated output:
⎧ ∂θ/∂t = ∂(D(θ)*∂θ/∂r)/∂r, r>rb(t),t>0
⎨ θ(r,0) = 0, r>0
⎩ S = 0
with rb(t) = 1*√t
Expected output:
⎧ ∂θ/∂t = ∂(D(θ)*∂θ/∂r)/∂r, r>0,t>0
⎨ θ(r,0) = 0, r>0
⎩ S = 1
diff =
Warning: Diff output requires color.
⎧ ∂θ/∂t = ∂(D(θ)*∂θ/∂r)/∂r, r>0,t>0
r>rb(t),t>0
⎨ θ(r,0) = 0, r>0
⎩ S = 10
with rb(t) = 1*√t
|
Documentation
Process completed with exit code 1.
|