LifeV
MultiscaleAlgorithmExplicit.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 File containing the Multiscale Explicit Algorithm
30  *
31  * @date 26-10-2009
32  * @author Cristiano Malossi <cristiano.malossi@epfl.ch>
33  *
34  * @maintainer Cristiano Malossi <cristiano.malossi@epfl.ch>
35  */
36 
37 #ifndef MultiscaleAlgorithmExplicit_H
38 #define MultiscaleAlgorithmExplicit_H 1
39 
40 #include <lifev/multiscale/algorithms/MultiscaleAlgorithm.hpp>
41 
42 namespace LifeV
43 {
44 namespace Multiscale
45 {
46 
47 //! MultiscaleAlgorithmExplicit - The Multiscale Algorithm implementation of Explicit
48 /*!
49  * @author Cristiano Malossi
50  *
51  * @see Full description of the Geometrical Multiscale Framework: \cite Malossi-Thesis
52  * @see Methodology: \cite Malossi2011Algorithms \cite Malossi2011Algorithms1D \cite Malossi2011Algorithms3D1DFSI \cite BlancoMalossi2012
53  * @see Applications: \cite Malossi2011Algorithms3D1DFSIAortaIliac \cite LassilaMalossi2012IdealLeftVentricle \cite BonnemainMalossi2012LVAD
54  *
55  * The MultiscaleAlgorithmExplicit is an implementation of multiscaleAlgorithm_Type
56  * which implements the Explicit method.
57  */
59 {
60 public:
61 
62  //! @name Constructors & Destructor
63  //@{
64 
65  //! Constructor
66  explicit MultiscaleAlgorithmExplicit();
67 
68  //! Destructor
70 
71  //@}
72 
73 
74  //! @name Multiscale Algorithm Virtual Methods
75  //@{
76 
77  //! Setup the data of the algorithm using a data file
78  /*!
79  * @param fileName Name of the data file.
80  */
81  void setupData ( const std::string& fileName );
82 
83  //! Perform sub-iteration on the coupling variables
84  void subIterate();
85 
86  //@}
87 
88 private:
89 
90  //! @name Unimplemented Methods
91  //@{
92 
94 
96 
97  //@}
98 
99 };
100 
101 //! Factory create function
103 {
104  return new MultiscaleAlgorithmExplicit();
105 }
106 
107 } // Namespace Multiscale
108 } // Namespace LifeV
109 
110 #endif /* MultiscaleAlgorithmExplicit_H */
void subIterate()
Perform sub-iteration on the coupling variables.
void setupData(const std::string &fileName)
Setup the data of the algorithm using a data file.
MultiscaleAlgorithmExplicit(const MultiscaleAlgorithmExplicit &algorithm)
void updateInverseJacobian(const UInt &iQuadPt)
MultiscaleAlgorithmExplicit & operator=(const MultiscaleAlgorithmExplicit &algorithm)
MultiscaleAlgorithm multiscaleAlgorithm_Type
multiscaleAlgorithm_Type * createMultiscaleAlgorithmExplicit()
Factory create function.
MultiscaleAlgorithmExplicit - The Multiscale Algorithm implementation of Explicit.