view +scheme/error1d.m @ 680:cd1a76c38565 feature/poroelastic

Remove schemes elasticDilation and elasticShear because they are subsets of elastic.
author Martin Almquist <malmquist@stanford.edu>
date Mon, 05 Feb 2018 14:58:48 -0800
parents ed6a704b028d
children
line wrap: on
line source

function e = error1d(discr, v1, v2)
    h = discr.h;
    e = sqrt(h*sum((v1-v2).^2));
end