1 /*! \file dune_headers.h 2 3 \brief Include all standard dune headers 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 This header includes config.h and all standard dune header used by my FEM code. 12 13 Created by Christian Power on 17.12.2015 14 Copyright (c) 2015 Christian Power. All rights reserved. 15 */ 16 17 #ifndef DUNE_HEADERS_H 18 #define DUNE_HEADERS_H 19 20 21 22 #include <config.h> 23 24 // iostream includes 25 #include <iostream> 26 27 // include GeometryGrid 28 #include <dune/grid/geometrygrid.hh> 29 30 // include grid part 31 #include <dune/fem/gridpart/adaptiveleafgridpart.hh> 32 33 // include discrete function space 34 //#include <dune/fem/space/lagrangespace.hh> veraltet 35 #include <dune/fem/space/lagrange.hh> 36 37 // include discrete function 38 #include <dune/fem/function/adaptivefunction.hh> 39 40 // include solvers 41 //#include <dune/fem/solver/inverseoperators.hh> veraltet 42 #include <dune/fem/solver/cginverseoperator.hh> 43 #include <dune/fem/solver/oemsolver.hh> 44 45 // include Lagrange interpolation 46 #include <dune/fem/operator/lagrangeinterpolation.hh> 47 48 // include norms 49 #include <dune/fem/misc/l2norm.hh> 50 #include <dune/fem/misc/h1norm.hh> 51 52 // include parameter handling 53 #include <dune/fem/io/parameter.hh> 54 55 // include output 56 #include <dune/fem/io/file/dataoutput.hh> 57 58 #endif // DUNE_HEADERS_H 59 60 /*! Log: 61 */