StochasticWntCellCycleModel.cpp

00001 /*
00002 
00003 Copyright (c) 2005-2015, University of Oxford.
00004 All rights reserved.
00005 
00006 University of Oxford means the Chancellor, Masters and Scholars of the
00007 University of Oxford, having an administrative office at Wellington
00008 Square, Oxford OX1 2JD, UK.
00009 
00010 This file is part of Chaste.
00011 
00012 Redistribution and use in source and binary forms, with or without
00013 modification, are permitted provided that the following conditions are met:
00014  * Redistributions of source code must retain the above copyright notice,
00015    this list of conditions and the following disclaimer.
00016  * Redistributions in binary form must reproduce the above copyright notice,
00017    this list of conditions and the following disclaimer in the documentation
00018    and/or other materials provided with the distribution.
00019  * Neither the name of the University of Oxford nor the names of its
00020    contributors may be used to endorse or promote products derived from this
00021    software without specific prior written permission.
00022 
00023 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00024 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00025 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00026 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
00027 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00028 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
00029 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00030 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00031 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
00032 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00033 
00034 */
00035 
00036 #include "StochasticWntCellCycleModel.hpp"
00037 
00038 StochasticWntCellCycleModel::StochasticWntCellCycleModel(boost::shared_ptr<AbstractCellCycleModelOdeSolver> pOdeSolver)
00039     : WntCellCycleModel(pOdeSolver)
00040 {
00041     if (!pOdeSolver)
00042     {
00043 #ifdef CHASTE_CVODE
00044         mpOdeSolver = CellCycleModelOdeSolver<StochasticWntCellCycleModel, CvodeAdaptor>::Instance();
00045         mpOdeSolver->Initialise();
00046         // Chaste solvers always check for stopping events, CVODE needs to be instructed to do so
00047         mpOdeSolver->CheckForStoppingEvents();
00048         mpOdeSolver->SetMaxSteps(10000);
00049 #else
00050         mpOdeSolver = CellCycleModelOdeSolver<StochasticWntCellCycleModel, RungeKutta4IvpOdeSolver>::Instance();
00051         mpOdeSolver->Initialise();
00052 #endif //CHASTE_CVODE
00053     }
00054 }
00055 
00056 StochasticWntCellCycleModel::~StochasticWntCellCycleModel()
00057 {}
00058 
00059 void StochasticWntCellCycleModel::GenerateStochasticG2Duration()
00060 {
00061     RandomNumberGenerator* p_gen = RandomNumberGenerator::Instance();
00062 
00063     double mean = AbstractCellCycleModel::GetG2Duration();
00064     double standard_deviation = 0.9;
00065     mStochasticG2Duration = p_gen->NormalRandomDeviate(mean, standard_deviation);
00066 
00067     // Check that the normal random deviate has not returned a small or negative G2 duration
00068     if (mStochasticG2Duration < mMinimumGapDuration)
00069     {
00070         mStochasticG2Duration = mMinimumGapDuration;
00071     }
00072 }
00073 
00074 void StochasticWntCellCycleModel::InitialiseDaughterCell()
00075 {
00076     WntCellCycleModel::InitialiseDaughterCell();
00077     GenerateStochasticG2Duration();
00078 }
00079 
00080 void StochasticWntCellCycleModel::Initialise()
00081 {
00082     WntCellCycleModel::Initialise();
00083     GenerateStochasticG2Duration();
00084 }
00085 
00086 void StochasticWntCellCycleModel::ResetForDivision()
00087 {
00088     AbstractWntOdeBasedCellCycleModel::ResetForDivision();
00089     GenerateStochasticG2Duration();
00090 }
00091 
00092 double StochasticWntCellCycleModel::GetG2Duration()
00093 {
00094     return mStochasticG2Duration;
00095 }
00096 
00097 AbstractCellCycleModel* StochasticWntCellCycleModel::CreateCellCycleModel()
00098 {
00099     // Create a new cell-cycle model
00100     StochasticWntCellCycleModel* p_model = new StochasticWntCellCycleModel(mpOdeSolver);
00101 
00102     /*
00103      * Set each member variable of the new cell-cycle model that inherits
00104      * its value from the parent.
00105      *
00106      * Note 1: some of the new cell-cycle model's member variables (namely
00107      * mBirthTime, mCurrentCellCyclePhase, mReadyToDivide, mDt, mpOdeSolver)
00108      * will already have been correctly initialized in its constructor.
00109      *
00110      * Note 2: one or more of the new cell-cycle model's member variables
00111      * may be set/overwritten as soon as InitialiseDaughterCell() is called on
00112      * the new cell-cycle model.
00113      */
00114     p_model->SetBirthTime(mBirthTime);
00115     p_model->SetDimension(mDimension);
00116     p_model->SetMinimumGapDuration(mMinimumGapDuration);
00117     p_model->SetStemCellG1Duration(mStemCellG1Duration);
00118     p_model->SetTransitCellG1Duration(mTransitCellG1Duration);
00119     p_model->SetSDuration(mSDuration);
00120     p_model->SetG2Duration(mG2Duration);
00121     p_model->SetMDuration(mMDuration);
00122     p_model->SetDivideTime(mDivideTime);
00123     p_model->SetFinishedRunningOdes(mFinishedRunningOdes);
00124     p_model->SetG2PhaseStartTime(mG2PhaseStartTime);
00125     p_model->SetLastTime(mLastTime);
00126 
00127     /*
00128      * Create the new cell-cycle model's ODE system and use the current values
00129      * of the state variables in mpOdeSystem as an initial condition.
00130      */
00131     assert(mpOdeSystem);
00132     double wnt_level = GetWntLevel();
00133     p_model->SetOdeSystem(new WntCellCycleOdeSystem(wnt_level, mpCell->GetMutationState()));
00134     p_model->SetStateVariables(mpOdeSystem->rGetStateVariables());
00135 
00136     return p_model;
00137 }
00138 
00139 void StochasticWntCellCycleModel::OutputCellCycleModelParameters(out_stream& rParamsFile)
00140 {
00141     // No new parameters to output
00142 
00143     // Call method on direct parent class
00144     WntCellCycleModel::OutputCellCycleModelParameters(rParamsFile);
00145 }
00146 
00147 // Serialization for Boost >= 1.36
00148 #include "SerializationExportWrapperForCpp.hpp"
00149 CHASTE_CLASS_EXPORT(StochasticWntCellCycleModel)
00150 #include "CellCycleModelOdeSolverExportWrapper.hpp"
00151 EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER(StochasticWntCellCycleModel)

Generated by  doxygen 1.6.2