Chaste  Release::2017.1
PottsMeshWriter.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 "PottsMeshWriter.hpp"
37 #include "Version.hpp"
38 
42 template<unsigned SPACE_DIM>
44 {
49 };
50 
52 // Implementation
54 
55 template<unsigned SPACE_DIM>
56 PottsMeshWriter<SPACE_DIM>::PottsMeshWriter(const std::string& rDirectory,
57  const std::string& rBaseName,
58  const bool clearOutputDir)
59  : AbstractMeshWriter<SPACE_DIM, SPACE_DIM>(rDirectory, rBaseName, clearOutputDir),
60  mpMesh(nullptr),
61  mpIters(new MeshPottsWriterIterators<SPACE_DIM>),
62  mpNodeMap(nullptr),
63  mNodeMapCurrentIndex(0)
64 {
65  mpIters->pNodeIter = nullptr;
66  mpIters->pElemIter = nullptr;
67 }
68 
69 template<unsigned SPACE_DIM>
71 {
72  if (mpIters->pNodeIter)
73  {
74  delete mpIters->pNodeIter;
75  delete mpIters->pElemIter;
76  }
77 
78  delete mpIters;
79 
80  if (mpNodeMap)
81  {
82  delete mpNodeMap;
83  }
84 }
85 
86 template<unsigned SPACE_DIM>
88 {
89  if (mpMesh)
90  {
91  // Sanity check
92  assert(this->mNumNodes == mpMesh->GetNumNodes());
93 
94  std::vector<double> coordinates(SPACE_DIM+1);
95 
96  // Get the node coordinates using the node iterator (thus skipping deleted nodes)
97  for (unsigned j=0; j<SPACE_DIM; j++)
98  {
99  coordinates[j] = (*(mpIters->pNodeIter))->GetPoint()[j];
100  }
101  coordinates[SPACE_DIM] = (*(mpIters->pNodeIter))->IsBoundaryNode();
102 
103  ++(*(mpIters->pNodeIter));
104 
105  return coordinates;
106  }
107  else
108  {
110  }
111 }
112 
113 template<unsigned SPACE_DIM>
115 {
116  if (mpMesh)
117  {
118  assert(this->mNumElements == mpMesh->GetNumElements());
119 
120  ElementData elem_data;
121  elem_data.NodeIndices.resize((*(mpIters->pElemIter))->GetNumNodes());
122  for (unsigned j=0; j<elem_data.NodeIndices.size(); j++)
123  {
124  unsigned old_index = (*(mpIters->pElemIter))->GetNodeGlobalIndex(j);
125  elem_data.NodeIndices[j] = mpMesh->IsMeshChanging() ? mpNodeMap->GetNewIndex(old_index) : old_index;
126  }
127 
128  // Set attribute
129  elem_data.AttributeValue = (*(mpIters->pElemIter))->GetAttribute();
130  ++(*(mpIters->pElemIter));
131 
132  return elem_data;
133  }
134  else
135  {
137  }
138 }
139 
141 template<unsigned SPACE_DIM>
143 {
144  this->mpMeshReader = nullptr;
145  mpMesh = &rMesh;
146 
147  this->mNumNodes = mpMesh->GetNumNodes();
149 
150  typedef typename AbstractMesh<SPACE_DIM,SPACE_DIM>::NodeIterator NodeIterType;
151  mpIters->pNodeIter = new NodeIterType(mpMesh->GetNodeIteratorBegin());
152 
153  typedef typename PottsMesh<SPACE_DIM>::PottsElementIterator ElemIterType;
154  mpIters->pElemIter = new ElemIterType(mpMesh->GetElementIteratorBegin());
155 
156  // Set up node map if we might have deleted nodes
158  if (mpMesh->IsMeshChanging())
159  {
161  for (NodeIterType it = mpMesh->GetNodeIteratorBegin(); it != mpMesh->GetNodeIteratorEnd(); ++it)
162  {
163  mpNodeMap->SetNewIndex(it->GetIndex(), mNodeMapCurrentIndex++);
164  }
165  }
166 
167  WriteFiles();
168 }
169 
170 template<unsigned SPACE_DIM>
172 {
173  std::string comment = "# " + ChasteBuildInfo::GetProvenanceString();
174 
175  // Write node file
176  std::string node_file_name = this->mBaseName + ".node";
177  out_stream p_node_file = this->mpOutputFileHandler->OpenOutputFile(node_file_name);
178 
179  // Write the node header
180  unsigned num_attr = 0;
181  unsigned max_bdy_marker = 1; // as we include boundary node information in the node file
182  unsigned num_nodes = this->GetNumNodes();
183 
184  *p_node_file << num_nodes << "\t";
185  *p_node_file << SPACE_DIM << "\t";
186  *p_node_file << num_attr << "\t";
187  *p_node_file << max_bdy_marker << "\n";
188  *p_node_file << std::setprecision(6);
189 
190  // Write each node's data
191  for (unsigned item_num=0; item_num<num_nodes; item_num++)
192  {
193  std::vector<double> current_item = this->GetNextNode();
194  *p_node_file << item_num;
195  for (unsigned i=0; i<SPACE_DIM+1; i++)
196  {
197  *p_node_file << "\t" << current_item[i];
198  }
199  *p_node_file << "\n";
200  }
201  *p_node_file << comment << "\n";
202  p_node_file->close();
203 
204  // Write element file
205  std::string element_file_name = this->mBaseName + ".cell";
206  out_stream p_element_file = this->mpOutputFileHandler->OpenOutputFile(element_file_name);
207 
208  // Write the element header
209  unsigned num_elements = this->GetNumElements();
210  *p_element_file << num_elements << "\t";
211  num_attr = 1; // Always write attributes by default
212  /*
213  * Note that in contrast to other mesh classes, it is perfectly reasonable for
214  * a PottsMesh to have no elements, particularly in when it is being used in
215  * the context of a CaBasedCellPopulation.
216  */
217  if (num_elements != 0)
218  {
219  *p_element_file << num_attr << "\n";
220  }
221  else
222  {
223  *p_element_file << 0 << "\n";
224  }
225 
226  // Write each element's data
227  for (unsigned item_num=0; item_num<num_elements; item_num++)
228  {
229  // Get data for this element
230  ElementData elem_data = this->GetNextElement();
231 
232  // Get the node indices owned by this element
233  std::vector<unsigned> node_indices = elem_data.NodeIndices;
234 
235  // Write this element's index and the number of nodes owned by it to file
236  *p_element_file << item_num << "\t" << node_indices.size();
237 
238  // Write the node indices owned by this element to file
239  for (unsigned i=0; i<node_indices.size(); i++)
240  {
241  *p_element_file << "\t" << node_indices[i];
242  }
243 
244  // Write the element attribute
245  *p_element_file << "\t" << elem_data.AttributeValue;
246 
247  // New line
248  *p_element_file << "\n";
249  }
250 
251  *p_element_file << comment << "\n";
252  p_element_file->close();
253 }
254 
255 // Explicit instantiation
256 template class PottsMeshWriter<1>;
257 template class PottsMeshWriter<2>;
258 template class PottsMeshWriter<3>;
MeshPottsWriterIterators< SPACE_DIM > * mpIters
bool IsMeshChanging() const
NodeIterator GetNodeIteratorEnd()
void WriteFilesUsingMesh(PottsMesh< SPACE_DIM > &rMesh)
virtual unsigned GetNumAllNodes() const
virtual std::vector< double > GetNextNode()
std::vector< unsigned > NodeIndices
void SetNewIndex(unsigned oldIndex, unsigned newIndex)
Definition: NodeMap.cpp:66
AbstractMesh< SPACE_DIM, SPACE_DIM >::NodeIterator * pNodeIter
PottsMesh< SPACE_DIM > * mpMesh
out_stream OpenOutputFile(const std::string &rFileName, std::ios_base::openmode mode=std::ios::out|std::ios::trunc) const
PottsMesh< SPACE_DIM >::PottsElementIterator * pElemIter
std::vector< double > GetNextNode()
PottsElementIterator GetElementIteratorBegin(bool skipDeletedElements=true)
Definition: PottsMesh.hpp:422
PottsMeshWriter(const std::string &rDirectory, const std::string &rBaseName, const bool clearOutputDir=true)
virtual unsigned GetNumNodes() const
Definition: PottsMesh.cpp:144
NodeIterator GetNodeIteratorBegin(bool skipDeletedNodes=true)
unsigned mNodeMapCurrentIndex
ElementData GetNextElement()
virtual unsigned GetNumElements() const
Definition: PottsMesh.cpp:150
unsigned GetNewIndex(unsigned oldIndex) const
Definition: NodeMap.cpp:87
static std::string GetProvenanceString()
virtual ElementData GetNextElement()
AbstractMeshReader< ELEMENT_DIM, SPACE_DIM > * mpMeshReader