Processing math: 100%

« Previous
Next »

Implementation of the norm of the error

E=||en||2=ΔtNtn=0(en)2

Python w/array arithmetics:

e = exact_solution(t) - u
E = sqrt(dt*sum(e**2))

« Previous
Next »