LifeV
navier_stokes/examples/resistanceBCs/resistance.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): Christophe Prud'homme <christophe.prudhomme@epfl.ch>
6  Date: 2005-04-19
7 
8  Copyright (C) 2005 EPFL
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 cylinder.hpp
27  \author Christophe Prud'homme <christophe.prudhomme@epfl.ch>
28  \date 2005-04-19
29  */
30 
31 #ifndef __RESISTANCE_H
32 #define __RESISTANCE_H 1
33 
34 
35 /*!
36  * \class ResistanceTest
37  * \brief 2D/3D Cylinder Simulation class
38  *
39  * @author Christophe Prud'homme
40  * @see
41  */
43  // :
44  // public LifeV::Application
45 {
46 public:
47 
48 
49  /** @name Typedefs
50  */
51  //@{
52 
53  // typedef LifeV::Application super;
54 
55  //@}
56 
57  /** @name Constructors, destructor
58  */
59  //@{
60 
61  ResistanceTest ( int argc,
62  char** argv );
63 
65  {}
66 
67  //@}
68 
69  /** @name Operator overloads
70  */
71  //@{
72 
73 
74  //@}
75 
76  /** @name Accessors
77  */
78  //@{
79 
80 
81  //@}
82 
83  /** @name Mutators
84  */
85  //@{
86 
87 
88  //@}
89 
90  /** @name Methods
91  */
92  //@{
93 
94  void run();
95 
96  //@}
97 
98 
99 private:
100  struct Private;
102 };
103 #endif /* __RESISTANCE_H */