Correct sign error in automatic generation of grids
Previously, the automatic_grid function was creating Chebyshev-type grids with points ordered as: {x,z} = L/2 + L/2*cos(pi*ii/(N-1)) This is incorrect. The expected ordering is actually the reverse, or {x,z} = L/2 - L/2*cos(...)
Please register or sign in to comment