Chaste  Release::3.4
NodeVelocityWriter.cpp
1 /*
2 
3 Copyright (c) 2005-2016, 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 }
99 
100 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
102 {
103  for (typename AbstractMesh<SPACE_DIM, SPACE_DIM>::NodeIterator node_iter = pCellPopulation->rGetMesh().GetNodeIteratorBegin();
104  node_iter != pCellPopulation->rGetMesh().GetNodeIteratorEnd();
105  ++node_iter)
106  {
107  // We should never encounter deleted nodes when calling this method
108  assert(!node_iter->IsDeleted());
109 
110  unsigned node_index = node_iter->GetIndex();
111 
112  // Check that results should be written for this node
113  bool is_real_node = !(pCellPopulation->IsGhostNode(node_index));
114 
115  // We should never encounter nodes associated with dead cells when calling this method
116  if (is_real_node)
117  {
118  assert(!pCellPopulation->GetCellUsingLocationIndex(node_index)->IsDead());
119  }
120 
121  if (is_real_node)
122  {
123  // Write this node's index to file
124  *this->mpOutStream << node_index << " ";
125 
126  // Write this node's position to file
127  const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
128  for (unsigned i=0; i<SPACE_DIM; i++)
129  {
130  *this->mpOutStream << position[i] << " ";
131  }
132 
133  // Write this node's velocity to file
134  double time_step = SimulationTime::Instance()->GetTimeStep();
135  double damping_constant = pCellPopulation->GetDampingConstant(node_index);
136  c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
137  for (unsigned i=0; i<SPACE_DIM; i++)
138  {
139  *this->mpOutStream << velocity[i] << " ";
140  }
141  }
142  }
143 }
144 
145 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
147 {
148 }
149 
150 template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
152 {
153  for (typename AbstractMesh<SPACE_DIM, SPACE_DIM>::NodeIterator node_iter = pCellPopulation->rGetMesh().GetNodeIteratorBegin();
154  node_iter != pCellPopulation->rGetMesh().GetNodeIteratorEnd();
155  ++node_iter)
156  {
157  // We should never encounter deleted nodes when calling this method
158  assert(!node_iter->IsDeleted());
159 
160  // Write this node's index to file
161  unsigned node_index = node_iter->GetIndex();
162  *this->mpOutStream << node_index << " ";
163 
164  // Write this node's position to file
165  const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
166  for (unsigned i=0; i<SPACE_DIM; i++)
167  {
168  *this->mpOutStream << position[i] << " ";
169  }
170 
171  // Write this node's velocity to file
172  double time_step = SimulationTime::Instance()->GetTimeStep();
173  double damping_constant = pCellPopulation->GetDampingConstant(node_index);
174  c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
175  for (unsigned i=0; i<SPACE_DIM; i++)
176  {
177  *this->mpOutStream << velocity[i] << " ";
178  }
179  }
180 }
181 
182 // Explicit instantiation
183 template class NodeVelocityWriter<1,1>;
184 template class NodeVelocityWriter<1,2>;
185 template class NodeVelocityWriter<2,2>;
186 template class NodeVelocityWriter<1,3>;
187 template class NodeVelocityWriter<2,3>;
188 template class NodeVelocityWriter<3,3>;
189 
191 // Declare identifier for the serializer
NodesOnlyMesh< DIM > & rGetMesh()
virtual CellPtr GetCellUsingLocationIndex(unsigned index)
double GetDampingConstant(unsigned nodeIndex)
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)