Chaste  Release::3.4
AbstractOdeSrnModel.cpp
1 /*
2 
3 Copyright (c) 2005-2016, 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 "AbstractOdeSrnModel.hpp"
37 #include <iostream>
38 #include <cassert>
39 #include "Exception.hpp"
40 
41 AbstractOdeSrnModel::AbstractOdeSrnModel(unsigned stateSize, boost::shared_ptr<AbstractCellCycleModelOdeSolver> pOdeSolver)
42  : AbstractSrnModel(),
43  CellCycleModelOdeHandler(SimulationTime::Instance()->GetTime(), pOdeSolver),
44  mFinishedRunningOdes(false),
45  mStateSize(stateSize)
46 {
47 }
48 
50 {
51 }
52 
53 // NOTE - this code is based on AbstractOdeCellCycleModel::UpdateCellCyclePhase
55 {
56  assert(mpOdeSystem != NULL);
57  assert(SimulationTime::Instance()->IsStartTimeSetUp());
58 
59  double current_time = SimulationTime::Instance()->GetTime();
60 
61  // Run ODEs if needed
62  if (current_time > mLastTime)
63  {
65  {
66  // Update whether a stopping event has occurred
67  mFinishedRunningOdes = SolveOdeToTime(current_time);
68 
70  {
71  // Do nothing for now...
72  }
73  }
74  else
75  {
76  // ODE model finished, just increasing time...
77  }
78  }
79 
80  // Update the SimulatedToTime value
81  mLastTime = current_time;
82  SetSimulatedToTime(current_time);
83 }
84 
86 {
87  assert(mpOdeSystem == NULL);
88  assert(mpCell != NULL);
89 
90  mpOdeSystem = pOdeSystem;
91  if (mInitialConditions == std::vector<double>())
92  {
94  }
95  else
96  {
98  }
99 
101 }
102 
104 {
105  /*
106  * Set each member variable of the new SRN model that inherits
107  * its value from the parent.
108  *
109  * Note 1: some of the new SRN model's member variables
110  * will already have been correctly initialized in its constructor.
111  *
112  * Note 2: one or more of the new SRN model's member variables
113  * may be set/overwritten as soon as InitialiseDaughterCell() is called on
114  * the new SRN model.
115  */
116  // Use the current values of the state variables in mpOdeSystem as an initial condition for the new cell-cycle model's ODE system
117  assert(mpOdeSystem);
119 
120  // Set the values of the new cell-cycle model's member variables
121  p_model->SetLastTime(mSimulatedToTime);
124  p_model->mStateSize = mStateSize;
125  if (mInitialConditions != std::vector<double>())
126  {
128  }
129  return p_model;
130 }
131 
133 {
135  assert(mLastTime == mSimulatedToTime);
136  mFinishedRunningOdes = false;
137 }
138 
139 void AbstractOdeSrnModel::SetFinishedRunningOdes(bool finishedRunningOdes)
140 {
141  mFinishedRunningOdes = finishedRunningOdes;
142 }
143 
144 void AbstractOdeSrnModel::SetInitialConditions(std::vector<double> initialConditions)
145 {
146 assert(initialConditions.size() == mStateSize);
147  mInitialConditions = initialConditions;
148 }
149 
150 const std::vector<double>& AbstractOdeSrnModel::GetStateVariables()
151 {
152  assert(mpOdeSystem != NULL);
153  assert(mpOdeSystem->rGetStateVariables().size() == mStateSize);
155 }
156 
158 {
159  // No new parameters to output, so just call method on direct parent class
161 }
162 
163 // Serialization for Boost >= 1.36
void SetStateVariables(const std::vector< double > &rStateVariables)
AbstractOdeSrnModel(unsigned stateSize, boost::shared_ptr< AbstractCellCycleModelOdeSolver > pOdeSolver=boost::shared_ptr< AbstractCellCycleModelOdeSolver >())
static SimulationTime * Instance()
virtual void ResetForDivision()
void SetStateVariables(const VECTOR &rStateVariables)
virtual void ResetForDivision()
virtual AbstractSrnModel * CreateSrnModel()=0
virtual void Initialise()
virtual void OutputSrnModelParameters(out_stream &rParamsFile)
void SetInitialConditions(std::vector< double > initialConditions)
void SetSimulatedToTime(double simulatedToTime)
virtual void OutputSrnModelParameters(out_stream &rParamsFile)
double GetTime() const
virtual void SimulateToCurrentTime()
void SetFinishedRunningOdes(bool finishedRunningOdes)
#define CHASTE_CLASS_EXPORT(T)
bool SolveOdeToTime(double currentTime)
const std::vector< double > & GetStateVariables()
std::vector< double > mInitialConditions