Chaste  Release::2017.1
NodeVelocityWriter.cpp
1 /*
2 
3 Copyright (c) 2005-2017, University of Oxford.
4 All rights reserved.
5 
6 University of Oxford means the Chancellor, Masters and Scholars of the
7 University of Oxford, having an administrative office at Wellington
8 Square, Oxford OX1 2JD, UK.
9 
10 This file is part of Chaste.
11 
12 Redistribution and use in source and binary forms, with or without
13 modification, 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 
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34 */
35 
36 #include "NodeVelocityWriter.hpp"
37 #include "AbstractCellPopulation.hpp"
38 #include "MeshBasedCellPopulation.hpp"
39 #include "CaBasedCellPopulation.hpp"
40 #include "NodeBasedCellPopulation.hpp"
41 #include "PottsBasedCellPopulation.hpp"
42 #include "VertexBasedCellPopulation.hpp"
43 
44 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
46  : AbstractCellPopulationWriter<ELEMENT_DIM, SPACE_DIM>("nodevelocities.dat")
47 {
48 }
49 
50 template<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 
95 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
97 {
98  EXCEPTION("NodeVelocityWriter cannot be used with a CaBasedCellPopulation");
99 }
100 
101 template<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 
146 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
148 {
149  EXCEPTION("NodeVelocityWriter cannot be used with a PottsBasedCellPopulation");
150 }
151 
152 template<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 
184 // Explicit instantiation
185 template class NodeVelocityWriter<1,1>;
186 template class NodeVelocityWriter<1,2>;
187 template class NodeVelocityWriter<2,2>;
188 template class NodeVelocityWriter<1,3>;
189 template class NodeVelocityWriter<2,3>;
190 template class NodeVelocityWriter<3,3>;
191 
193 // Declare identifier for the serializer
NodesOnlyMesh< DIM > & rGetMesh()
virtual CellPtr GetCellUsingLocationIndex(unsigned index)
double GetDampingConstant(unsigned nodeIndex)
#define EXCEPTION(message)
Definition: Exception.hpp:143
static SimulationTime * Instance()
NodeIterator GetNodeIteratorEnd()
double GetTimeStep() const
MutableMesh< ELEMENT_DIM, SPACE_DIM > & rGetMesh()
double GetDampingConstant(unsigned nodeIndex)
MutableVertexMesh< DIM, DIM > & rGetMesh()
virtual void Visit(MeshBasedCellPopulation< ELEMENT_DIM, SPACE_DIM > *pCellPopulation)
NodeIterator GetNodeIteratorBegin(bool skipDeletedNodes=true)
#define EXPORT_TEMPLATE_CLASS_ALL_DIMS(CLASS)
virtual CellPtr GetCellUsingLocationIndex(unsigned index)
virtual double GetDampingConstant(unsigned nodeIndex)