MFEM  v4.4.0
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
fem.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010-2022, Lawrence Livermore National Security, LLC. Produced
2 // at the Lawrence Livermore National Laboratory. All Rights reserved. See files
3 // LICENSE and NOTICE for details. LLNL-CODE-806117.
4 //
5 // This file is part of the MFEM library. For more information and source code
6 // availability visit https://mfem.org.
7 //
8 // MFEM is free software; you can redistribute it and/or modify it under the
9 // terms of the BSD-3 license. We welcome feedback and contributions, see file
10 // CONTRIBUTING.md for details.
11 
12 #ifndef MFEM_FEM_HPP
13 #define MFEM_FEM_HPP
14 
15 #include "intrules.hpp"
16 #include "geom.hpp"
17 #include "fe.hpp"
18 #include "fe_coll.hpp"
19 #include "doftrans.hpp"
20 #include "eltrans.hpp"
21 #include "coefficient.hpp"
22 #include "complex_fem.hpp"
23 #include "convergence.hpp"
24 #include "lininteg.hpp"
25 #include "nonlininteg.hpp"
26 #include "bilininteg.hpp"
27 #include "fespace.hpp"
28 #include "gridfunc.hpp"
29 #include "linearform.hpp"
30 #include "nonlinearform.hpp"
31 #include "bilinearform.hpp"
32 #include "hybridization.hpp"
33 #include "datacollection.hpp"
34 #include "estimators.hpp"
35 #include "staticcond.hpp"
36 #include "tmop.hpp"
37 #include "tmop_tools.hpp"
38 #include "tmop_amr.hpp"
39 #include "gslib.hpp"
40 #include "restriction.hpp"
41 #include "quadinterpolator.hpp"
43 #include "transfer.hpp"
44 #include "fespacehierarchy.hpp"
45 #include "multigrid.hpp"
46 #include "ceed/algebraic.hpp"
47 #include "lor.hpp"
48 
49 #ifdef MFEM_USE_MPI
50 #include "pfespace.hpp"
51 #include "pgridfunc.hpp"
52 #include "plinearform.hpp"
53 #include "pbilinearform.hpp"
54 #include "pnonlinearform.hpp"
55 #endif
56 
57 #ifdef MFEM_USE_SIDRE
58 #include "sidredatacollection.hpp"
59 #endif
60 
61 #ifdef MFEM_USE_CONDUIT
63 #endif
64 
65 #ifdef MFEM_USE_ADIOS2
66 #include "adios2datacollection.hpp"
67 #endif
68 
69 #ifdef MFEM_USE_FMS
70 #include "fmsconvert.hpp"
71 #include "fmsdatacollection.hpp"
72 #endif
73 
74 #endif