Skip to content

Commit

Permalink
Fix validity example case
Browse files Browse the repository at this point in the history
  • Loading branch information
gerlero committed Dec 18, 2023
1 parent fbbdec8 commit d54e22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/validity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ d = LETd(L = 0.004569, E = 12930, T = 1.505, Dwt = 4.660e-4, θr = 0.019852, θs
θbc = solve(DirichletProblem(bc, i = θi, b = θs - ϵ))
θvg = solve(DirichletProblem(vg, i = θi, b = θs - ϵ))
θxs = solve(DirichletProblem(xs, i = θi, b = θs - ϵ))
@time θd = solve(DirichletProblem(d, i = θi, b = θs - ϵ), FiniteDifference())
θd = solve(DirichletProblem(d, i = θi, b = θs - ϵ))

o = range(0, 0.0025, length = 500)

Expand Down

0 comments on commit d54e22f

Please sign in to comment.