#include <SimpleOxygenBasedCellCycleModel.hpp>
A simple oxygen-dependent cell-cycle model that inherits from AbstractSimpleCellCycleModel. The duration of G1 phase depends on the local oxygen concentration. A prolonged period of acute hypoxia leads to the cell being labelled as apoptotic. This model allows for quiescence imposed by transient periods of hypoxia, followed by reoxygenation.
Definition at line 45 of file SimpleOxygenBasedCellCycleModel.hpp.
SimpleOxygenBasedCellCycleModel::SimpleOxygenBasedCellCycleModel | ( | ) |
Constructor.
Definition at line 34 of file SimpleOxygenBasedCellCycleModel.cpp.
References SimulationTime::GetTime(), SimulationTime::Instance(), and mCurrentHypoxiaOnsetTime.
Referenced by CreateCellCycleModel().
void SimpleOxygenBasedCellCycleModel::serialize | ( | Archive & | archive, | |
const unsigned int | version | |||
) | [inline, private] |
Archive the cell-cycle model.
archive | the archive | |
version | the current version of this class |
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in StochasticOxygenBasedCellCycleModel.
Definition at line 51 of file SimpleOxygenBasedCellCycleModel.hpp.
References mCriticalHypoxicDuration, mCurrentHypoxiaOnsetTime, mCurrentHypoxicDuration, mHypoxicConcentration, mQuiescentConcentration, and mTimeSpentInG1Phase.
void SimpleOxygenBasedCellCycleModel::UpdateCellCyclePhase | ( | ) | [virtual] |
Overridden UpdateCellCyclePhase() method.
Reimplemented from AbstractSimpleCellCycleModel.
Definition at line 57 of file SimpleOxygenBasedCellCycleModel.cpp.
References SimulationTime::GetTimeStep(), CellwiseData< DIM >::GetValue(), SimulationTime::Instance(), CellwiseData< DIM >::Instance(), AbstractCellCycleModel::mCurrentCellCyclePhase, AbstractCellCycleModel::mDimension, AbstractCellCycleModel::mG1Duration, AbstractCellCycleModel::mpCell, mQuiescentConcentration, mTimeSpentInG1Phase, NEVER_REACHED, AbstractSimpleCellCycleModel::UpdateCellCyclePhase(), and UpdateHypoxicDuration().
void SimpleOxygenBasedCellCycleModel::UpdateHypoxicDuration | ( | ) |
Method for updating mCurrentHypoxicDuration, called at the start of ReadyToDivide().
Definition at line 147 of file SimpleOxygenBasedCellCycleModel.cpp.
References SimulationTime::GetTime(), CellwiseData< DIM >::GetValue(), CellPropertyRegistry::Instance(), RandomNumberGenerator::Instance(), SimulationTime::Instance(), CellwiseData< DIM >::Instance(), mCriticalHypoxicDuration, mCurrentHypoxiaOnsetTime, mCurrentHypoxicDuration, AbstractCellCycleModel::mDimension, mHypoxicConcentration, AbstractCellCycleModel::mpCell, NEVER_REACHED, and RandomNumberGenerator::ranf().
Referenced by UpdateCellCyclePhase().
double SimpleOxygenBasedCellCycleModel::GetCurrentHypoxicDuration | ( | ) |
Definition at line 45 of file SimpleOxygenBasedCellCycleModel.cpp.
References mCurrentHypoxicDuration.
double SimpleOxygenBasedCellCycleModel::GetCurrentHypoxiaOnsetTime | ( | ) |
Definition at line 51 of file SimpleOxygenBasedCellCycleModel.cpp.
References mCurrentHypoxiaOnsetTime.
AbstractCellCycleModel * SimpleOxygenBasedCellCycleModel::CreateCellCycleModel | ( | ) | [virtual] |
Overridden builder method to create new copies of this cell-cycle model.
Implements AbstractCellCycleModel.
Reimplemented in StochasticOxygenBasedCellCycleModel.
Definition at line 111 of file SimpleOxygenBasedCellCycleModel.cpp.
References AbstractCellCycleModel::mBirthTime, AbstractCellCycleModel::mCellProliferativeType, mCriticalHypoxicDuration, mCurrentHypoxiaOnsetTime, AbstractCellCycleModel::mDimension, AbstractCellCycleModel::mG2Duration, mHypoxicConcentration, AbstractCellCycleModel::mMDuration, AbstractCellCycleModel::mMinimumGapDuration, mQuiescentConcentration, AbstractCellCycleModel::mSDuration, AbstractCellCycleModel::mStemCellG1Duration, AbstractCellCycleModel::mTransitCellG1Duration, AbstractCellCycleModel::SetBirthTime(), AbstractCellCycleModel::SetCellProliferativeType(), SetCriticalHypoxicDuration(), SetCurrentHypoxiaOnsetTime(), AbstractCellCycleModel::SetDimension(), AbstractCellCycleModel::SetG2Duration(), SetHypoxicConcentration(), AbstractCellCycleModel::SetMDuration(), AbstractCellCycleModel::SetMinimumGapDuration(), SetQuiescentConcentration(), AbstractCellCycleModel::SetSDuration(), AbstractCellCycleModel::SetStemCellG1Duration(), AbstractCellCycleModel::SetTransitCellG1Duration(), and SimpleOxygenBasedCellCycleModel().
double SimpleOxygenBasedCellCycleModel::GetHypoxicConcentration | ( | ) |
Definition at line 199 of file SimpleOxygenBasedCellCycleModel.cpp.
References mHypoxicConcentration.
void SimpleOxygenBasedCellCycleModel::SetHypoxicConcentration | ( | double | hypoxicConcentration | ) |
Set method for mHypoxicConcentration.
hypoxicConcentration | the new value of mHypoxicConcentration |
Definition at line 205 of file SimpleOxygenBasedCellCycleModel.cpp.
References mHypoxicConcentration.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
double SimpleOxygenBasedCellCycleModel::GetQuiescentConcentration | ( | ) |
Definition at line 213 of file SimpleOxygenBasedCellCycleModel.cpp.
References mQuiescentConcentration.
void SimpleOxygenBasedCellCycleModel::SetQuiescentConcentration | ( | double | quiescentConcentration | ) |
Set method for mQuiescentConcentration.
quiescentConcentration | the new value of mQuiescentConcentration |
Definition at line 219 of file SimpleOxygenBasedCellCycleModel.cpp.
References mQuiescentConcentration.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
double SimpleOxygenBasedCellCycleModel::GetCriticalHypoxicDuration | ( | ) |
Definition at line 227 of file SimpleOxygenBasedCellCycleModel.cpp.
References mCriticalHypoxicDuration.
void SimpleOxygenBasedCellCycleModel::SetCriticalHypoxicDuration | ( | double | criticalHypoxicDuration | ) |
Set method for mCriticalHypoxicDuration.
criticalHypoxicDuration | the new value of mCriticalHypoxicDuration |
Definition at line 233 of file SimpleOxygenBasedCellCycleModel.cpp.
References mCriticalHypoxicDuration.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
void SimpleOxygenBasedCellCycleModel::SetCurrentHypoxiaOnsetTime | ( | double | currentHypoxiaOnsetTime | ) |
Set method for mCurrentHypoxiaOnsetTime.
currentHypoxiaOnsetTime | the new value of mCurrentHypoxiaOnsetTime |
Definition at line 239 of file SimpleOxygenBasedCellCycleModel.cpp.
References mCurrentHypoxiaOnsetTime.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), and CreateCellCycleModel().
void SimpleOxygenBasedCellCycleModel::OutputCellCycleModelParameters | ( | out_stream & | rParamsFile | ) | [virtual] |
Outputs cell cycle model parameters to file.
rParamsFile | the file stream to which the parameters are output |
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in StochasticOxygenBasedCellCycleModel.
Definition at line 245 of file SimpleOxygenBasedCellCycleModel.cpp.
References mCriticalHypoxicDuration, mHypoxicConcentration, mQuiescentConcentration, and AbstractSimpleCellCycleModel::OutputCellCycleModelParameters().
Referenced by StochasticOxygenBasedCellCycleModel::OutputCellCycleModelParameters().
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractSimpleCellCycleModel.
Reimplemented in StochasticOxygenBasedCellCycleModel.
Definition at line 49 of file SimpleOxygenBasedCellCycleModel.hpp.
double SimpleOxygenBasedCellCycleModel::mTimeSpentInG1Phase [protected] |
The time spent in G1 phase so far. Has units of hours.
Definition at line 68 of file SimpleOxygenBasedCellCycleModel.hpp.
Referenced by serialize(), and UpdateCellCyclePhase().
double SimpleOxygenBasedCellCycleModel::mCurrentHypoxicDuration [protected] |
How long the current period of hypoxia has lasted. Has units of hours.
Definition at line 74 of file SimpleOxygenBasedCellCycleModel.hpp.
Referenced by GetCurrentHypoxicDuration(), serialize(), and UpdateHypoxicDuration().
double SimpleOxygenBasedCellCycleModel::mCurrentHypoxiaOnsetTime [protected] |
The time when the current period of hypoxia began.
Definition at line 79 of file SimpleOxygenBasedCellCycleModel.hpp.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetCurrentHypoxiaOnsetTime(), serialize(), SetCurrentHypoxiaOnsetTime(), SimpleOxygenBasedCellCycleModel(), and UpdateHypoxicDuration().
double SimpleOxygenBasedCellCycleModel::mHypoxicConcentration [protected] |
Non-dimensionalized oxygen concentration below which cells are considered to be hypoxic. A prolonged period of hypoxia causes the cell to become apoptotic.
Definition at line 86 of file SimpleOxygenBasedCellCycleModel.hpp.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetHypoxicConcentration(), OutputCellCycleModelParameters(), serialize(), SetHypoxicConcentration(), and UpdateHypoxicDuration().
double SimpleOxygenBasedCellCycleModel::mQuiescentConcentration [protected] |
Non-dimensionalized oxygen concentration below which cells are considered to be quiescent and slow their progress through the G1 phase of the cell cycle.
Definition at line 93 of file SimpleOxygenBasedCellCycleModel.hpp.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetQuiescentConcentration(), OutputCellCycleModelParameters(), serialize(), SetQuiescentConcentration(), and UpdateCellCyclePhase().
double SimpleOxygenBasedCellCycleModel::mCriticalHypoxicDuration [protected] |
Non-dimensionalized critical hypoxic duration. Has units of hours.
Definition at line 99 of file SimpleOxygenBasedCellCycleModel.hpp.
Referenced by StochasticOxygenBasedCellCycleModel::CreateCellCycleModel(), CreateCellCycleModel(), GetCriticalHypoxicDuration(), OutputCellCycleModelParameters(), serialize(), SetCriticalHypoxicDuration(), and UpdateHypoxicDuration().