generated from Chaste/template_project
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSillyForce.hpp
124 lines (102 loc) · 3.85 KB
/
SillyForce.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
Copyright (c) 2005-2023, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SILLYFORCE_HPP_
#define SILLYFORCE_HPP_
#include <boost/serialization/base_object.hpp>
#include "ChasteSerialization.hpp"
#include "Exception.hpp"
#include "AbstractForce.hpp"
#include "VertexBasedCellPopulation.hpp"
#include <iostream>
/**
* A silly force class for use in Vertex-based simulations. This force causes a spiral around the centroid
* of the cell population.
*/
template <unsigned DIM>
class SillyForce : public AbstractForce<DIM>
{
friend class TestForces;
private:
friend class boost::serialization::access;
/**
* Boost Serialization method for archiving/checkpointing.
* Archives the object and its member variables.
*
* @param archive The boost archive.
* @param version The current version of this class.
*/
template <class Archive>
void serialize(Archive& archive, const unsigned int version)
{
archive& boost::serialization::base_object<AbstractForce<DIM> >(*this);
archive & mStrengthMultiplier;
}
protected:
/**
* The strength multiplier for this force.
*/
double mStrengthMultiplier = 1.0;
public:
/**
* Constructor.
*/
SillyForce();
/**
* Destructor.
*/
virtual ~SillyForce() = default;
/**
* Overridden AddForceContribution() method.
*
* Calculates the force on each node in the vertex-based cell population based on the energy function
* Silly's model.
*
* @param rCellPopulation reference to the cell population
*/
virtual void AddForceContribution(AbstractCellPopulation<DIM>& rCellPopulation);
/**
* @return mStrengthMultiplier
*/
double GetStrengthMultiplier();
/**
* Set mAreaElasticityParameter.
*
* @param strengthMultiplier the new value of mStrengthMultiplier
*/
void SetStrengthMultiplier(double strengthMultiplier);
/**
* Overridden OutputForceParameters() method.
*
* @param rParamsFile the file stream to which the parameters are output
*/
void OutputForceParameters(out_stream& rParamsFile);
};
#include "SerializationExportWrapper.hpp"
EXPORT_TEMPLATE_CLASS_SAME_DIMS(SillyForce)
#endif /*SILLYFORCE_HPP_*/