MFEM v4.7.0
Finite element discretization library
Loading...
Searching...
No Matches
fem.hpp
Go to the documentation of this file.
1// Copyright (c) 2010-2024, 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 "intrules_cut.hpp"
17#include "geom.hpp"
18#include "fe.hpp"
19#include "fe_coll.hpp"
20#include "doftrans.hpp"
21#include "eltrans.hpp"
22#include "coefficient.hpp"
23#include "complex_fem.hpp"
24#include "convergence.hpp"
25#include "lininteg.hpp"
26#include "nonlininteg.hpp"
27#include "bilininteg.hpp"
28#include "fespace.hpp"
29#include "gridfunc.hpp"
30#include "kdtree.hpp"
31#include "linearform.hpp"
32#include "nonlinearform.hpp"
33#include "bilinearform.hpp"
34#include "hybridization.hpp"
35#include "datacollection.hpp"
36#include "estimators.hpp"
37#include "staticcond.hpp"
38#include "tmop.hpp"
39#include "tmop_tools.hpp"
40#include "tmop_amr.hpp"
41#include "gslib.hpp"
42#include "restriction.hpp"
43#include "quadinterpolator.hpp"
45#include "transfer.hpp"
46#include "fespacehierarchy.hpp"
47#include "multigrid.hpp"
49#include "lor/lor.hpp"
50#include "dgmassinv.hpp"
51#include "hyperbolic.hpp"
52
53#ifdef MFEM_USE_MPI
54#include "pfespace.hpp"
55#include "pgridfunc.hpp"
56#include "plinearform.hpp"
57#include "pbilinearform.hpp"
58#include "pnonlinearform.hpp"
59#endif
60
61#ifdef MFEM_USE_SIDRE
63#endif
64
65#ifdef MFEM_USE_CONDUIT
67#endif
68
69#ifdef MFEM_USE_ADIOS2
71#endif
72
73#ifdef MFEM_USE_FMS
74#include "fmsconvert.hpp"
75#include "fmsdatacollection.hpp"
76#endif
77
78#endif