Chaste Commit::f2ff7ee04e70ac9d06c57344df8d017dbb12b97b
OnLatticeSimulation.cpp
1/*
2
3Copyright (c) 2005-2024, University of Oxford.
4All rights reserved.
5
6University of Oxford means the Chancellor, Masters and Scholars of the
7University of Oxford, having an administrative office at Wellington
8Square, Oxford OX1 2JD, UK.
9
10This file is part of Chaste.
11
12Redistribution and use in source and binary forms, with or without
13modification, 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
23THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34*/
35
36#include "OnLatticeSimulation.hpp"
37#include "AbstractOnLatticeCellPopulation.hpp"
38#include "CellBasedEventHandler.hpp"
39
40template<unsigned DIM>
42 bool deleteCellPopulationInDestructor,
43 bool initialiseCells)
44 : AbstractCellBasedSimulation<DIM>(rCellPopulation,
45 deleteCellPopulationInDestructor,
46 initialiseCells)
47{
48 if (!dynamic_cast<AbstractOnLatticeCellPopulation<DIM>*>(&rCellPopulation))
49 {
50 EXCEPTION("OnLatticeSimulations require a subclass of AbstractOnLatticeCellPopulation.");
51 }
52}
53
54template<unsigned DIM>
56{
57 // This static_cast is fine, since otherwise an exception would have been thrown in the constructor
58 static_cast<AbstractOnLatticeCellPopulation<DIM>*>(&(this->mrCellPopulation))->AddUpdateRule(pUpdateRule);
59}
60
61template<unsigned DIM>
63{
64 // This static_cast is fine, since otherwise an exception would have been thrown in the constructor
65 static_cast<AbstractOnLatticeCellPopulation<DIM>*>(&(this->mrCellPopulation))->RemoveAllUpdateRules();
66}
67
68template<unsigned DIM>
70{
71 CellBasedEventHandler::BeginEvent(CellBasedEventHandler::POSITION);
72 static_cast<AbstractOnLatticeCellPopulation<DIM>*>(&(this->mrCellPopulation))->UpdateCellLocations(this->mDt);
73 CellBasedEventHandler::EndEvent(CellBasedEventHandler::POSITION);
74}
75
76template<unsigned DIM>
78{
79 bool update_cell_population_this_timestep = (this->mInitialiseCells) || (SimulationTime::Instance()->GetTimeStepsElapsed() != 0);
80 if (update_cell_population_this_timestep)
81 {
83 }
84}
85
86template<unsigned DIM>
88{
89 // Loop over the collection of update rules and output info for each
90 *rParamsFile << "\n\t<UpdateRules>\n";
91
92 // This static_cast is fine, since otherwise an exception would have been thrown in the constructor
93 std::vector<boost::shared_ptr<AbstractUpdateRule<DIM> > > collection =
94 static_cast<AbstractOnLatticeCellPopulation<DIM>*>(&(this->mrCellPopulation))->GetUpdateRuleCollection();
95
96 for (typename std::vector<boost::shared_ptr<AbstractUpdateRule<DIM> > >::iterator iter = collection.begin();
97 iter != collection.end();
98 ++iter)
99 {
100 (*iter)->OutputUpdateRuleInfo(rParamsFile);
101 }
102
103 *rParamsFile << "\t</UpdateRules>\n";
104}
105
106template<unsigned DIM>
108{
109 // Call method on direct parent class
111}
112
113// Explicit instantiation
114template class OnLatticeSimulation<1>;
115template class OnLatticeSimulation<2>;
116template class OnLatticeSimulation<3>;
117
118// Serialization for Boost >= 1.36
#define EXCEPTION(message)
#define EXPORT_TEMPLATE_CLASS_SAME_DIMS(CLASS)
virtual void OutputSimulationParameters(out_stream &rParamsFile)=0
virtual const std::vector< boost::shared_ptr< AbstractUpdateRule< DIM > > > GetUpdateRuleCollection() const
virtual void UpdateCellLocations(double dt)=0
virtual void AddUpdateRule(boost::shared_ptr< AbstractUpdateRule< DIM > > pUpdateRule)=0
void AddUpdateRule(boost::shared_ptr< AbstractUpdateRule< DIM > > pUpdateRule)
void OutputSimulationParameters(out_stream &rParamsFile)
void OutputAdditionalSimulationSetup(out_stream &rParamsFile)
OnLatticeSimulation(AbstractCellPopulation< DIM > &rCellPopulation, bool deleteCellPopulationInDestructor=false, bool initialiseCells=true)
static SimulationTime * Instance()
unsigned GetTimeStepsElapsed() const