root/old_code/2015linfty/2015linfty.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /*! \file 2015linfty.h
   2 
   3     \brief Numerical experiments for the 2015linfty paper
   4 
   5      Revision history:
   6 
   7           Revised by Christian Power dd.mm.yyyy
   8           Originally written by Christian Power
   9                (power22c@gmail.com) 17. Dezember 2015
  10 
  11      In the paper we considered space discretization of the linear 
  12      heat equation on evolving surfaces
  13 
  14      ∂•u + div(v) u - Δu = f
  15 
  16      with linear finite elements.  The purpose is to measure the error in 
  17      maximum norm.  Although the paper does not cover full discretization,  
  18      we discretized in time with BDF 4.  
  19 
  20      The header w1l.norm.hh implements
  21      
  22      Input from cin; output to cout.  The grammar for input is: etc.
  23 
  24      Created by Christian Power on 17.12.2015
  25      Copyright (c) 2015 Christian Power.  All rights reserved.
  26  */
  27 
  28 #ifndef 2015LINFTY_H
  29 #define 2015LINFTY_H 
  30 
  31 
  32 #include "dune_headers.h"
  33 
  34 #include "deformation.hh"
  35 #include "elliptic.hh"
  36 #include "heat.hh"
  37 #include "rhs.hh"
  38 // local CAPG includes
  39 #include "dune_typedef_heat.hpp"
  40 // this header only contains lots of typedef's
  41 #include "dune_bdf.hpp"
  42 #include "dune_heat_algorithm.hpp"
  43 
  44 
  45 #endif // 2015LINFTY_H
  46 
  47 /*! Log:
  48  */

/* [<][>][^][v][top][bottom][index][help] */