Chaste  Release::2017.1
Alarcon2004OxygenBasedCellCycleModel.cpp
1 /*
2 
3 Copyright (c) 2005-2017, 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 "Alarcon2004OxygenBasedCellCycleModel.hpp"
37 
38 #include "CellLabel.hpp"
39 
40 Alarcon2004OxygenBasedCellCycleModel::Alarcon2004OxygenBasedCellCycleModel(boost::shared_ptr<AbstractCellCycleModelOdeSolver> pOdeSolver)
41  : AbstractOdeBasedPhaseBasedCellCycleModel(SimulationTime::Instance()->GetTime(), pOdeSolver)
42 {
43  if (!mpOdeSolver)
44  {
46  mpOdeSolver->Initialise();
47  }
48  SetDt(0.0001);
49 }
50 
53 {
54  /*
55  * Initialize only those member variables defined in this class.
56  * Create the new cell-cycle model's ODE system and use the current
57  * values of the state variables in mpOdeSystem as an initial condition.
58  *
59  * The member variables mCurrentCellCyclePhase, mG1Duration,
60  * mMinimumGapDuration, mStemCellG1Duration, mTransitCellG1Duration,
61  * mSDuration, mG2Duration and mMDuration are initialized in the
62  * AbstractPhaseBasedCellCycleModel constructor.
63  *
64  * The member variables mBirthTime, mReadyToDivide and mDimension
65  * are initialized in the AbstractCellCycleModel constructor.
66  */
67 
68  assert(rModel.GetOdeSystem());
69  bool is_labelled = rModel.mpCell->HasCellProperty<CellLabel>();
70  SetOdeSystem(new Alarcon2004OxygenBasedCellCycleOdeSystem(rModel.mpCell->GetCellData()->GetItem("oxygen"), is_labelled));
72 }
73 
75 {
76  return new Alarcon2004OxygenBasedCellCycleModel(*this);
77 }
78 
80 {
82  assert(mpOdeSystem != nullptr);
83 
84  // This model needs the protein concentrations and phase resetting to G0/G1.
85  // Keep the oxygen concentration the same but reset everything else
86  std::vector<double> init_conds = mpOdeSystem->GetInitialConditions();
87  for (unsigned i=0; i<5; i++)
88  {
89  mpOdeSystem->rGetStateVariables()[i] = init_conds[i];
90  }
91 }
92 
94 {
95  assert(mpOdeSystem == nullptr);
96  assert(mpCell != nullptr);
97 
98  bool is_labelled = mpCell->HasCellProperty<CellLabel>();
99  mpOdeSystem = new Alarcon2004OxygenBasedCellCycleOdeSystem(mpCell->GetCellData()->GetItem("oxygen"), is_labelled);
100  mpOdeSystem->SetStateVariables(mpOdeSystem->GetInitialConditions());
101 
103 }
104 
106 {
107  // Pass this time step's oxygen concentration into the solver as a constant over this time step
108  mpOdeSystem->rGetStateVariables()[5] = mpCell->GetCellData()->GetItem("oxygen");
109 
110  // Use whether the cell is currently labelled as another input
111  bool is_labelled = mpCell->HasCellProperty<CellLabel>();
112  static_cast<Alarcon2004OxygenBasedCellCycleOdeSystem*>(mpOdeSystem)->SetIsLabelled(is_labelled);
113 }
114 
116 {
117  // No new parameters to output, so just call method on direct parent class
119 }
120 
121 // Serialization for Boost >= 1.36
124 #include "CellCycleModelOdeSolverExportWrapper.hpp"
125 EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER(Alarcon2004OxygenBasedCellCycleModel)
void SetStateVariables(const std::vector< double > &rStateVariables)
void SetOdeSystem(AbstractOdeSystem *pOdeSystem)
boost::shared_ptr< AbstractCellCycleModelOdeSolver > mpOdeSolver
virtual void OutputCellCycleModelParameters(out_stream &rParamsFile)
static boost::shared_ptr< CellCycleModelOdeSolver< CELL_CYCLE_MODEL, ODE_SOLVER > > Instance()
AbstractOdeSystem * GetOdeSystem() const
Alarcon2004OxygenBasedCellCycleModel(const Alarcon2004OxygenBasedCellCycleModel &rModel)
virtual void OutputCellCycleModelParameters(out_stream &rParamsFile)
#define CHASTE_CLASS_EXPORT(T)