LifeV
ZeroDimensionalDefinitions.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 /*!
28  * @file
29  * @brief Zero Dimensional Model Global Definitions
30  * @version alpha (experimental)
31  *
32  * @date 06-02-2012
33  * @author Cristiano Malossi <cristiano.malossi@epfl.ch>
34  *
35  * @mantainer Cristiano Malossi <cristiano.malossi@epfl.ch>
36  */
37 
38 #ifndef ZeroDimensionalDefinitions_H
39 #define ZeroDimensionalDefinitions_H
40 
41 
42 // STD
43 #include <string>
44 #include <iostream>
45 #include <sstream>
46 #include <fstream>
47 #include <cmath>
48 #include <vector>
49 
50 #ifdef _MSC_VER
51 #include <iso646.h>
52 #endif
53 
54 // BOOST
55 #include <boost/shared_ptr.hpp>
56 
57 
58 // LIFEV
59 #include <lifev/core/LifeV.hpp>
60 #include <lifev/core/util/LifeChrono.hpp>
61 #include <lifev/core/util/StringUtility.hpp>
62 #include <lifev/core/util/Factory.hpp>
63 #include <lifev/core/util/FactorySingleton.hpp>
64 #include <lifev/core/fem/FESpace.hpp>
65 #include <lifev/core/fem/TimeData.hpp>
66 #include <lifev/core/filter/GetPot.hpp>
67 
68 #define BC_CONSTANT 1000
69 
70 #define ZERO_DIMENTIONAL_DEFINED_ELEMENTS 6
71 #define ZERO_DIMENTIONAL_DEFINED_NODES 2
72 
73 namespace LifeV
74 {
75 
77 {
84 };
85 
87 {
90 };
91 
93 {
96 };
97 
98 } // LifeV namespace
99 
100 #endif // ZeroDimensionalDefinitions_H
void updateInverseJacobian(const UInt &iQuadPt)