X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FFEM%2FR1.hs;h=28317a6faecabaf0a079215a192f961a7d5e5be3;hb=45aa63a662556bc9ed0f6018f9f3f580586f38a9;hp=3e6869557d66f5601c769ff3863448a666729d60;hpb=7ac2f5fdd7db6c998949af5efdb45501dfb051da;p=numerical-analysis.git diff --git a/src/FEM/R1.hs b/src/FEM/R1.hs index 3e68695..28317a6 100644 --- a/src/FEM/R1.hs +++ b/src/FEM/R1.hs @@ -28,12 +28,13 @@ module FEM.R1 where +import Algebra.Absolute ( abs ) import qualified Algebra.Algebraic as Algebraic ( C ) import qualified Algebra.Field as Field ( C ) import qualified Algebra.RealField as RealField ( C ) import qualified Algebra.ToRational as ToRational ( C ) import Data.Vector.Fixed ( Arity, S ) -import NumericPrelude +import NumericPrelude hiding ( abs ) import qualified Prelude as P import Integration.Gaussian ( gaussian ) @@ -43,6 +44,7 @@ import Linear.Matrix ( Row, (!!!), construct, + dot, element_sum2, fromList, ifoldl2, @@ -55,7 +57,7 @@ import Linear.Matrix ( zip2, zipwith2 ) import Linear.System ( solve_positive_definite ) -import Piecewise ( Piecewise(..), from_intervals ) +import Piecewise ( Piecewise(..), evaluate', from_intervals ) import Polynomials.Orthogonal ( legendre ) -- | Dirichlet boundary conditions. Since u(a)=u(b)=0 are fixed, @@ -528,7 +530,7 @@ coefficients pde params = solution :: forall m n l a. (Arity m, Arity n, Arity l, - Algebraic.C a, Eq a, RealField.C a, ToRational.C a, Show a) + Algebraic.C a, Eq a, RealField.C a, ToRational.C a) => PDE a -> Params m n (S l) a -> Piecewise a @@ -579,3 +581,42 @@ solution pde params = where xi = (affine interval) x combine ci ni = ci*(ni xi) + + +energy_fem :: (Arity m, Arity n, Arity l, + Algebraic.C a, Eq a, RealField.C a, ToRational.C a) + => PDE a + -> Params m n (S l) a + -> a +energy_fem pde params = + (coefficients pde params) `dot` (big_F pde params) + + +relative_error :: forall m n l a. + (Arity m, Arity n, Arity l, + Algebraic.C a, Eq a, RealField.C a, ToRational.C a) + => PDE a + -> Params m n (S l) a + -> a -- ^ The energy norm of the true solution @u@ + -> a +relative_error pde params energy_true = + cent * sqrt(energy_true - (energy_fem pde params)/energy_true) + where + cent = fromInteger 100 + + + +relative_error_pointwise :: forall m n l a. + (Arity m, Arity n, Arity l, + Algebraic.C a, Eq a, RealField.C a, ToRational.C a) + => PDE a + -> Params m n (S l) a + -> (a -> a) -- ^ The true solution @u@ + -> a -- ^ The point @x@ at which to compute the error. + -> a +relative_error_pointwise pde params u x = + cent * ( u_exact - u_fem ) / u_exact + where + u_exact = abs $ u x + u_fem = evaluate' (solution pde params) x + cent = fromInteger 100