Mercurial > repos > public > sbplib_julia
view plotDerivative.jl @ 1697:a63278c25c40 feature/sbp_operators/laplace_curvilinear
Fix test of laplace on mapped grid
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 28 Aug 2024 13:28:13 +0200 |
parents | 8d505e9bc715 |
children |
line wrap: on
line source
g = sbp.Grid.EquidistantGrid((200,), (0.0,), (2pi,)) op =sbp.readOperator("d2_4th.txt","h_4th.txt") Laplace = sbp.Laplace(g,1.0,op) init(x) = cos(x) v = sbp.Grid.evalOn(g,init) u = zeros(length(v)) sbp.apply!(Laplace,u,v) @show u sbp.Grid.plotgridfunction(g,u)