Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit b5ffb97

Browse files
committed
left end point for test fixed
1 parent 62564db commit b5ffb97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/bc_coeff_compositions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@ end
198198

199199
# Test \ homogenous and inhomogenous BC
200200
dx = 0.01
201-
x = 0.0001:dx:0.2
201+
x = 0.01:dx:0.2
202202
N = length(x)
203203
u = sin.(x)
204204

205205
L = CenteredDifference(4, 4, dx, N)
206-
Q = RobinBC(1.0, 0.0, sin(0), dx, 1.0, 0.0, sin(0.2+dx), dx)
206+
Q = RobinBC(1.0, 0.0, sin(0.0), dx, 1.0, 0.0, sin(0.2+dx), dx)
207207
A = L*Q
208208

209209
analytic_L = fourth_deriv_approx_stencil(N) ./ dx^4

0 commit comments

Comments
 (0)