LifeV
hyperbolic.hpp
Go to the documentation of this file.
1 //@HEADER
2 /*
3 *******************************************************************************
4 
5  Copyright (C) 2004, 2005, 2007 EPFL, Politecnico di Milano, INRIA
6  Copyright (C) 2010 EPFL, Politecnico di Milano, Emory University
7 
8  This file is part of LifeV.
9 
10  LifeV is free software; you can redistribute it and/or modify
11  it under the terms of the GNU Lesser General Public License as published by
12  the Free Software Foundation, either version 3 of the License, or
13  (at your option) any later version.
14 
15  LifeV is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  Lesser General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public License
21  along with LifeV. If not, see <http://www.gnu.org/licenses/>.
22 
23 *******************************************************************************
24 */
25 //@HEADER
26 /**
27  @file hyperbolic.hpp
28  @author A. Fumagalli <alessio.fumagalli@mail.polimi.it>
29  @date 2010-07-29
30  */
31 
32 
33 #ifndef __hyperbolic_H
34 #define __hyperbolic_H 1
35 
36 
37 // ===================================================
38 //! Includes
39 // ===================================================
40 
41 #include <lifev/core/LifeV.hpp>
42 
43 #include <lifev/core/mesh/RegionMesh3DStructured.hpp>
44 #include <lifev/core/array/GhostHandler.hpp>
45 #include <lifev/core/solver/HyperbolicSolver.hpp>
46 #include <lifev/core/mesh/MeshPartitioner.hpp>
47 
48 #ifdef HAVE_HDF5
49 #include <lifev/core/filter/ExporterHDF5.hpp>
50 #endif
51 #include <lifev/core/filter/ExporterEmpty.hpp>
52 #include <lifev/core/filter/ExporterEnsight.hpp>
53 
54 /*!
55  @class hyperbolic
56  @brief LifeV hyperbolic test case
57 
58  @author A. Fumagalli <alessio.fumagalli@mail.polimi.it>
59  */
61  // :
62  // public LifeV::Application
63 {
64 public:
65 
66  /*! @name Constructors and destructor
67  */
68  //@{
69 
70  hyperbolic ( int argc,
71  char** argv );
72 
74  {}
75 
76  //@}
77 
78  /*! @name Methods
79  */
80  //@{
81 
82  LifeV::Real run();
83 
84  //@}
85 
86 
87 private:
88  struct Private;
90 };
91 
92 #endif /* __hyperbolic_H */
hyperbolic(int argc, char **argv)
Constructors.
Definition: hyperbolic.cpp:307
Includes.
Definition: hyperbolic.hpp:60
std::shared_ptr< Private > Members
Definition: hyperbolic.hpp:88
LifeV::Real run()
Methods.
Definition: hyperbolic.cpp:332
Private Members.
Definition: hyperbolic.cpp:216