Chaste Commit::6e4f5fe395bca70eb7641cf6e0e87f450383ca5a
NodeVelocityWriter.cpp
1/*
2
3Copyright (c) 2005-2026, 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 "NodeVelocityWriter.hpp"
37#include "MeshBasedCellPopulation.hpp"
38#include "CaBasedCellPopulation.hpp"
39#include "NodeBasedCellPopulation.hpp"
40#include "PottsBasedCellPopulation.hpp"
41#include "VertexBasedCellPopulation.hpp"
42#include "ImmersedBoundaryCellPopulation.hpp"
43
44template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
46 : AbstractCellPopulationWriter<ELEMENT_DIM, SPACE_DIM>("nodevelocities.dat")
47{
48}
49
50template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
52{
53 for (typename AbstractMesh<ELEMENT_DIM, SPACE_DIM>::NodeIterator node_iter = pCellPopulation->rGetMesh().GetNodeIteratorBegin();
54 node_iter != pCellPopulation->rGetMesh().GetNodeIteratorEnd();
55 ++node_iter)
56 {
57 // We should never encounter deleted nodes when calling this method
58 assert(!node_iter->IsDeleted());
59
60 unsigned node_index = node_iter->GetIndex();
61
62 // Check that results should be written for this node
63 bool is_real_node = !(pCellPopulation->IsGhostNode(node_index));
64
65 // We should never encounter nodes associated with dead cells when calling this method
66 if (is_real_node)
67 {
68 assert(!pCellPopulation->GetCellUsingLocationIndex(node_index)->IsDead());
69 }
70
71 if (is_real_node)
72 {
73 // Write this node's index to file
74 *this->mpOutStream << node_index << " ";
75
76 // Write this node's position to file
77 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
78 for (unsigned i=0; i<SPACE_DIM; i++)
79 {
80 *this->mpOutStream << position[i] << " ";
81 }
82
83 // Write this node's velocity to file
84 double time_step = SimulationTime::Instance()->GetTimeStep();
85 double damping_constant = pCellPopulation->GetDampingConstant(node_index);
86 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
87 for (unsigned i=0; i<SPACE_DIM; i++)
88 {
89 *this->mpOutStream << velocity[i] << " ";
90 }
91 }
92 }
93}
94
95template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
97{
98 EXCEPTION("NodeVelocityWriter cannot be used with a CaBasedCellPopulation");
99}
100
101template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
103{
104 for (typename AbstractMesh<SPACE_DIM, SPACE_DIM>::NodeIterator node_iter = pCellPopulation->rGetMesh().GetNodeIteratorBegin();
105 node_iter != pCellPopulation->rGetMesh().GetNodeIteratorEnd();
106 ++node_iter)
107 {
108 // We should never encounter deleted nodes when calling this method
109 assert(!node_iter->IsDeleted());
110
111 unsigned node_index = node_iter->GetIndex();
112
113 // Check that results should be written for this node
114 bool is_real_node = !(pCellPopulation->IsGhostNode(node_index));
115
116 // We should never encounter nodes associated with dead cells when calling this method
117 if (is_real_node)
118 {
119 assert(!pCellPopulation->GetCellUsingLocationIndex(node_index)->IsDead());
120 }
121
122 if (is_real_node)
123 {
124 // Write this node's index to file
125 *this->mpOutStream << node_index << " ";
126
127 // Write this node's position to file
128 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
129 for (unsigned i=0; i<SPACE_DIM; i++)
130 {
131 *this->mpOutStream << position[i] << " ";
132 }
133
134 // Write this node's velocity to file
135 double time_step = SimulationTime::Instance()->GetTimeStep();
136 double damping_constant = pCellPopulation->GetDampingConstant(node_index);
137 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
138 for (unsigned i=0; i<SPACE_DIM; i++)
139 {
140 *this->mpOutStream << velocity[i] << " ";
141 }
142 }
143 }
144}
145
146template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
148{
149 EXCEPTION("NodeVelocityWriter cannot be used with a PottsBasedCellPopulation");
150}
151
152template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
154{
155 for (typename AbstractMesh<SPACE_DIM, SPACE_DIM>::NodeIterator node_iter = pCellPopulation->rGetMesh().GetNodeIteratorBegin();
156 node_iter != pCellPopulation->rGetMesh().GetNodeIteratorEnd();
157 ++node_iter)
158 {
159 // We should never encounter deleted nodes when calling this method
160 assert(!node_iter->IsDeleted());
161
162 // Write this node's index to file
163 unsigned node_index = node_iter->GetIndex();
164 *this->mpOutStream << node_index << " ";
165
166 // Write this node's position to file
167 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
168 for (unsigned i=0; i<SPACE_DIM; i++)
169 {
170 *this->mpOutStream << position[i] << " ";
171 }
172
173 // Write this node's velocity to file
174 double time_step = SimulationTime::Instance()->GetTimeStep();
175 double damping_constant = pCellPopulation->GetDampingConstant(node_index);
176 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
177 for (unsigned i=0; i<SPACE_DIM; i++)
178 {
179 *this->mpOutStream << velocity[i] << " ";
180 }
181 }
182}
183
184template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
186{
187 EXCEPTION("NodeVelocityWriter cannot be used with a ImmersedBoundaryCellPopulation");
188}
189
190// Explicit instantiation
191template class NodeVelocityWriter<1,1>;
192template class NodeVelocityWriter<1,2>;
193template class NodeVelocityWriter<2,2>;
194template class NodeVelocityWriter<1,3>;
195template class NodeVelocityWriter<2,3>;
196template class NodeVelocityWriter<3,3>;
197
199// Declare identifier for the serializer
#define EXCEPTION(message)
#define EXPORT_TEMPLATE_CLASS_ALL_DIMS(CLASS)
virtual CellPtr GetCellUsingLocationIndex(unsigned index)
virtual double GetDampingConstant(unsigned nodeIndex)
NodeIterator GetNodeIteratorEnd()
NodeIterator GetNodeIteratorBegin(bool skipDeletedNodes=true)
double GetDampingConstant(unsigned nodeIndex)
MutableMesh< ELEMENT_DIM, SPACE_DIM > & rGetMesh()
virtual CellPtr GetCellUsingLocationIndex(unsigned index)
NodesOnlyMesh< DIM > & rGetMesh()
virtual void Visit(MeshBasedCellPopulation< ELEMENT_DIM, SPACE_DIM > *pCellPopulation)
double GetTimeStep() const
static SimulationTime * Instance()
double GetDampingConstant(unsigned nodeIndex)
MutableVertexMesh< DIM, DIM > & rGetMesh()