Chaste  Build::
StructuralAdaptationSolver.cpp
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 #include <fstream>
37 #include "ConstantHaematocritSolver.hpp"
38 #include "StructuralAdaptationSolver.hpp"
39 #include "UnitCollection.hpp"
40 #include "RadiusCalculator.hpp"
41 
42 template<unsigned DIM>
45  mpFlowSolver(new FlowSolver<DIM>),
46  mpRadiusCalculator(new RadiusCalculator<DIM>),
47  mPreFlowSolveCalculators(),
48  mPostFlowSolveCalculators()
49 {
50 
51 }
52 
53 template<unsigned DIM>
55 {
56 
57 }
58 
59 template<unsigned DIM>
60 boost::shared_ptr<StructuralAdaptationSolver<DIM> > StructuralAdaptationSolver<DIM>::Create()
61 {
62  MAKE_PTR(StructuralAdaptationSolver<DIM>, pSelf);
63  return pSelf;
64 }
65 
66 template<unsigned DIM>
67 boost::shared_ptr<FlowSolver<DIM> > StructuralAdaptationSolver<DIM>::GetFlowSolver()
68 {
69  return mpFlowSolver;
70 }
71 
72 template<unsigned DIM>
74 {
75  mpRadiusCalculator = pCalculator;
76 }
77 
78 template<unsigned DIM>
80 {
81  mPreFlowSolveCalculators.push_back(pCalculator);
82 }
83 
84 template<unsigned DIM>
86 {
87  mPostFlowSolveCalculators.push_back(pCalculator);
88 }
89 
90 template<unsigned DIM>
92 {
93  mpFlowSolver = pCalculator;
94 }
95 
96 template<unsigned DIM>
98 {
99  if(!this->mpVesselNetwork)
100  {
101  EXCEPTION("A vessel network is required before the SA solver can be used.");
102  }
103 
104  if(SimulationTime::Instance()->GetTimeStepsElapsed()==0)
105  {
106  // Set up calculators
107  for(unsigned idx=0; idx<mPreFlowSolveCalculators.size();idx++)
108  {
109  mPreFlowSolveCalculators[idx]->SetVesselNetwork(this->mpVesselNetwork);
110  }
111  for(unsigned idx=0; idx<mPostFlowSolveCalculators.size();idx++)
112  {
113  mPostFlowSolveCalculators[idx]->SetVesselNetwork(this->mpVesselNetwork);
114  }
116  {
117  mpRadiusCalculator->SetTimestep(this->GetTimeIncrement());
118  mpRadiusCalculator->SetVesselNetwork(this->mpVesselNetwork);
119  }
120  }
121 
122  for(unsigned idx=0; idx<mPreFlowSolveCalculators.size();idx++)
123  {
124  mPreFlowSolveCalculators[idx]->Calculate();
125  }
126 
127  if(SimulationTime::Instance()->GetTimeStepsElapsed()==0)
128  {
130  }
131 
132  mpFlowSolver->Update(false);
133  mpFlowSolver->Solve();
134 
135  std::vector<boost::shared_ptr<VesselSegment<DIM> > > segments = this->mpVesselNetwork->GetVesselSegments();
136  for (unsigned idx = 0; idx < segments.size(); idx++)
137  {
138  segments[idx]->GetFlowProperties()->SetGrowthStimulus(0.0*(1.0/(unit::seconds)));
139  }
140 
141  for(unsigned idx=0; idx<mPostFlowSolveCalculators.size();idx++)
142  {
143  mPostFlowSolveCalculators[idx]->Calculate();
144  }
145 
147  {
148  mpRadiusCalculator->SetTimestep(this->GetTimeIncrement());
149  mpRadiusCalculator->Calculate();
150  }
151 }
152 
153 template<unsigned DIM>
155 {
156  if(mpFlowSolver)
157  {
158  mpFlowSolver->SetVesselNetwork(this->mpVesselNetwork);
159  if(doFullReset && !SimulationTime::Instance()->GetTimeStepsElapsed()==0)
160  {
161  for(unsigned idx=0; idx<mPreFlowSolveCalculators.size();idx++)
162  {
163  mPreFlowSolveCalculators[idx]->Calculate();
164  }
165  mpFlowSolver->SetUp();
166  }
167  }
168 }
169 
170 // Explicit instantiation
171 template class StructuralAdaptationSolver<2> ;
172 template class StructuralAdaptationSolver<3> ;
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)
units::quantity< unit::time > GetTimeIncrement() const
void UpdateFlowSolver(bool doFullReset=false)
boost::shared_ptr< VesselNetwork< DIM > > mpVesselNetwork
boost::shared_ptr< RadiusCalculator< DIM > > mpRadiusCalculator
boost::shared_ptr< FlowSolver< DIM > > mpFlowSolver