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