Processing math: 100%

« Previous
Next »

Approximate fx9 by various elements; code

Compute a mesh with Ne elements, basis functions of degree d, and approximate a given symbolic expression f(x) by a finite element expansion u(x)=jcjφj(x):

import sympy as sp
from fe_approx1D import approximate
x = sp.Symbol('x')

approximate(f=x*(1-x)**8, symbolic=False, d=1, N_e=4)
approximate(f=x*(1-x)**8, symbolic=False, d=2, N_e=2)
approximate(f=x*(1-x)**8, symbolic=False, d=1, N_e=8)
approximate(f=x*(1-x)**8, symbolic=False, d=2, N_e=4)

« Previous
Next »