Chaste Release::3.1
|
00001 /* 00002 00003 Copyright (c) 2005-2012, 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 void StochasticWntCellCycleModel::GenerateStochasticG2Duration() 00057 { 00058 RandomNumberGenerator* p_gen = RandomNumberGenerator::Instance(); 00059 00060 double mean = AbstractCellCycleModel::GetG2Duration(); 00061 double standard_deviation = 0.9; 00062 mStochasticG2Duration = p_gen->NormalRandomDeviate(mean, standard_deviation); 00063 00064 // Check that the normal random deviate has not returned a small or negative G2 duration 00065 if (mStochasticG2Duration < mMinimumGapDuration) 00066 { 00067 mStochasticG2Duration = mMinimumGapDuration; 00068 } 00069 } 00070 00071 void StochasticWntCellCycleModel::InitialiseDaughterCell() 00072 { 00073 WntCellCycleModel::InitialiseDaughterCell(); 00074 GenerateStochasticG2Duration(); 00075 } 00076 00077 void StochasticWntCellCycleModel::Initialise() 00078 { 00079 WntCellCycleModel::Initialise(); 00080 GenerateStochasticG2Duration(); 00081 } 00082 00083 void StochasticWntCellCycleModel::ResetForDivision() 00084 { 00085 AbstractWntOdeBasedCellCycleModel::ResetForDivision(); 00086 GenerateStochasticG2Duration(); 00087 } 00088 00089 double StochasticWntCellCycleModel::GetG2Duration() 00090 { 00091 return mStochasticG2Duration; 00092 } 00093 00094 AbstractCellCycleModel* StochasticWntCellCycleModel::CreateCellCycleModel() 00095 { 00096 // Create a new cell-cycle model 00097 StochasticWntCellCycleModel* p_model = new StochasticWntCellCycleModel(mpOdeSolver); 00098 00099 /* 00100 * Set each member variable of the new cell-cycle model that inherits 00101 * its value from the parent. 00102 * 00103 * Note 1: some of the new cell-cycle model's member variables (namely 00104 * mBirthTime, mCurrentCellCyclePhase, mReadyToDivide, mDt, mpOdeSolver) 00105 * will already have been correctly initialized in its constructor. 00106 * 00107 * Note 2: one or more of the new cell-cycle model's member variables 00108 * may be set/overwritten as soon as InitialiseDaughterCell() is called on 00109 * the new cell-cycle model. 00110 */ 00111 p_model->SetBirthTime(mBirthTime); 00112 p_model->SetDimension(mDimension); 00113 p_model->SetMinimumGapDuration(mMinimumGapDuration); 00114 p_model->SetStemCellG1Duration(mStemCellG1Duration); 00115 p_model->SetTransitCellG1Duration(mTransitCellG1Duration); 00116 p_model->SetSDuration(mSDuration); 00117 p_model->SetG2Duration(mG2Duration); 00118 p_model->SetMDuration(mMDuration); 00119 p_model->SetDivideTime(mDivideTime); 00120 p_model->SetFinishedRunningOdes(mFinishedRunningOdes); 00121 p_model->SetG2PhaseStartTime(mG2PhaseStartTime); 00122 p_model->SetLastTime(mLastTime); 00123 00124 /* 00125 * Create the new cell-cycle model's ODE system and use the current values 00126 * of the state variables in mpOdeSystem as an initial condition. 00127 */ 00128 assert(mpOdeSystem); 00129 double wnt_level = GetWntLevel(); 00130 p_model->SetOdeSystem(new WntCellCycleOdeSystem(wnt_level, mpCell->GetMutationState())); 00131 p_model->SetStateVariables(mpOdeSystem->rGetStateVariables()); 00132 00133 return p_model; 00134 } 00135 00136 void StochasticWntCellCycleModel::OutputCellCycleModelParameters(out_stream& rParamsFile) 00137 { 00138 // No new parameters to output 00139 00140 // Call method on direct parent class 00141 WntCellCycleModel::OutputCellCycleModelParameters(rParamsFile); 00142 } 00143 00144 // Serialization for Boost >= 1.36 00145 #include "SerializationExportWrapperForCpp.hpp" 00146 CHASTE_CLASS_EXPORT(StochasticWntCellCycleModel) 00147 #include "CellCycleModelOdeSolverExportWrapper.hpp" 00148 EXPORT_CELL_CYCLE_MODEL_ODE_SOLVER(StochasticWntCellCycleModel)