Chaste  Build::
StructuralAdaptationSolver.hpp
1 /*
2 
3 Copyright (c) 2005-2015, University of Oxford.
4 All rights reserved.
5 
6 University of Oxford means the Chancellor, Masters and Scholars of the
7 University of Oxford, having an administrative office at Wellington
8 Square, Oxford OX1 2JD, UK.
9 
10 This file is part of Chaste.
11 
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
14  * Redistributions of source code must retain the above copyright notice,
15  this list of conditions and the following disclaimer.
16  * Redistributions in binary form must reproduce the above copyright notice,
17  this list of conditions and the following disclaimer in the documentation
18  and/or other materials provided with the distribution.
19  * Neither the name of the University of Oxford nor the names of its
20  contributors may be used to endorse or promote products derived from this
21  software without specific prior written permission.
22 
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34  */
35 
36 #ifndef SIMPLESTRCUTURALADAPATATIONSOLVER_HPP
37 #define SIMPLESTRCUTURALADAPATATIONSOLVER_HPP
38 
39 #include "SmartPointers.hpp"
40 #include "RadiusCalculator.hpp"
41 #include "FlowSolver.hpp"
42 #include "AbstractStructuralAdaptationSolver.hpp"
43 #include "AbstractVesselNetworkCalculator.hpp"
44 
50 template<unsigned DIM>
52 {
53 
54 private:
55 
59  boost::shared_ptr<FlowSolver<DIM> > mpFlowSolver;
60 
64  boost::shared_ptr<RadiusCalculator<DIM> > mpRadiusCalculator;
65 
69  std::vector<boost::shared_ptr<AbstractVesselNetworkCalculator<DIM> > > mPreFlowSolveCalculators;
70 
74  std::vector<boost::shared_ptr<AbstractVesselNetworkCalculator<DIM> > > mPostFlowSolveCalculators;
75 
76 
77 public:
78 
83 
88 
93  static boost::shared_ptr<StructuralAdaptationSolver<DIM> > Create();
94 
99  boost::shared_ptr<FlowSolver<DIM> > GetFlowSolver();
100 
104  virtual void Iterate();
105 
110  void AddPreFlowSolveCalculator(boost::shared_ptr<AbstractVesselNetworkCalculator<DIM> > pCalculator);
111 
116  void AddPostFlowSolveCalculator(boost::shared_ptr<AbstractVesselNetworkCalculator<DIM> > pCalculator);
117 
122  void SetFlowSolver(boost::shared_ptr<FlowSolver<DIM> > pSolver);
123 
128  void SetRadiusCalculator(boost::shared_ptr<RadiusCalculator<DIM> > pCalculator);
129 
134  void UpdateFlowSolver(bool doFullReset=false);
135 
136 };
137 
138 #endif //SIMPLESTRCUTURALADAPATATIONSOLVER_HPP
std::vector< boost::shared_ptr< AbstractVesselNetworkCalculator< DIM > > > mPreFlowSolveCalculators
boost::shared_ptr< FlowSolver< DIM > > GetFlowSolver()
static boost::shared_ptr< StructuralAdaptationSolver< DIM > > Create()
void AddPostFlowSolveCalculator(boost::shared_ptr< AbstractVesselNetworkCalculator< DIM > > pCalculator)
void AddPreFlowSolveCalculator(boost::shared_ptr< AbstractVesselNetworkCalculator< DIM > > pCalculator)
void SetRadiusCalculator(boost::shared_ptr< RadiusCalculator< DIM > > pCalculator)
std::vector< boost::shared_ptr< AbstractVesselNetworkCalculator< DIM > > > mPostFlowSolveCalculators
void SetFlowSolver(boost::shared_ptr< FlowSolver< DIM > > pSolver)
void UpdateFlowSolver(bool doFullReset=false)
boost::shared_ptr< RadiusCalculator< DIM > > mpRadiusCalculator
boost::shared_ptr< FlowSolver< DIM > > mpFlowSolver