Chaste Commit::8b5d759ac2eb95e67ae57699734101efccb0a0a9
ImmersedBoundaryMeshWriter.hpp
1/*
2
3Copyright (c) 2005-2024, 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#ifndef IMMERSEDBOUNDARYMESHWRITER_HPP_
37#define IMMERSEDBOUNDARYMESHWRITER_HPP_
38
39// Forward declaration prevents circular include chain
40template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
42
43#ifdef CHASTE_VTK
44// Requires "sudo aptitude install libvtk5-dev" or similar
45#define _BACKWARD_BACKWARD_WARNING_H 1 // Cut out the strstream deprecated warning for now (gcc4.3)
46#include <vtkDoubleArray.h>
47#include <vtkCellData.h>
48#include <vtkPointData.h>
49#include <vtkConvexPointSet.h>
50#include <vtkPolygon.h>
51#include <vtkUnstructuredGrid.h>
52#include <vtkUnstructuredGridWriter.h>
53#include <vtkXMLUnstructuredGridWriter.h>
54#include <vtkDataCompressor.h>
55#endif //CHASTE_VTK
56
57#include "AbstractMeshWriter.hpp"
58#include "ImmersedBoundaryMesh.hpp"
59
60#include <boost/geometry.hpp>
61#include <boost/geometry/geometries/segment.hpp>
62#include <boost/geometry/geometries/point.hpp>
63
64
65// Forward declaration prevents circular include chain
66template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
68
69template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
71
75template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
76class ImmersedBoundaryMeshWriter : public AbstractMeshWriter<ELEMENT_DIM, SPACE_DIM>
77{
78private:
84
87
89 unsigned mNumLaminas;
90
92 std::vector<std::vector<unsigned>> mElementParts;
93
94 // Node that this assumes SPACE_DIM == 2
96 using geom_point = boost::geometry::model::point<double, 2, boost::geometry::cs::cartesian>;
97
99 using geom_segment = boost::geometry::model::segment<geom_point>;
100
102 std::array<geom_segment, 4> mBoundaryEdges;
103
114 c_vector<double, SPACE_DIM> GetIntersectionOfEdgeWithBoundary(const c_vector<double, SPACE_DIM>& rStart,
115 const c_vector<double, SPACE_DIM>& rEnd);
116
123 c_vector<double, SPACE_DIM> GetNearestCorner(const c_vector<double, SPACE_DIM>& rA,
124 const c_vector<double, SPACE_DIM>& rB) const;
125
126#ifdef CHASTE_VTK
127//Requires "sudo aptitude install libvtk5-dev" or similar
129 vtkUnstructuredGrid* mpVtkUnstructedMesh;
130#endif //CHASTE_VTK
131
132public:
133
141 ImmersedBoundaryMeshWriter(const std::string& rDirectory,
142 const std::string& rBaseName,
143 bool clearOutputDir=true);
144
149
156
163 void WriteVtkUsingMesh(ImmersedBoundaryMesh<ELEMENT_DIM, SPACE_DIM>& rMesh, std::string stamp="");
164
172
179 void AddCellData(std::string dataName, std::vector<double> dataPayload);
180
187 void AddPointData(std::string dataName, std::vector<double> dataPayload);
188
192 std::vector<double> GetNextNode();
193
198
203
208 void WriteFiles();
209
216
218 const std::vector<std::vector<unsigned>>& rGetElementParts() const;
219};
220
221#endif /*IMMERSEDBOUNDARYMESHWRITER_HPP_*/
boost::geometry::model::point< double, 2, boost::geometry::cs::cartesian > geom_point
void FindElementOverlaps(ImmersedBoundaryMesh< ELEMENT_DIM, SPACE_DIM > &rMesh)
ImmersedBoundaryElementData GetNextImmersedBoundaryElement()
c_vector< double, SPACE_DIM > GetNearestCorner(const c_vector< double, SPACE_DIM > &rA, const c_vector< double, SPACE_DIM > &rB) const
ImmersedBoundaryElementData GetNextImmersedBoundaryLamina()
const std::vector< std::vector< unsigned > > & rGetElementParts() const
void WriteVtkUsingMesh(ImmersedBoundaryMesh< ELEMENT_DIM, SPACE_DIM > &rMesh, std::string stamp="")
void AddPointData(std::string dataName, std::vector< double > dataPayload)
void MakeVtkMesh(ImmersedBoundaryMesh< ELEMENT_DIM, SPACE_DIM > &rMesh)
std::array< geom_segment, 4 > mBoundaryEdges
std::vector< std::vector< unsigned > > mElementParts
void WriteFilesUsingMesh(ImmersedBoundaryMesh< ELEMENT_DIM, SPACE_DIM > &rMesh)
boost::geometry::model::segment< geom_point > geom_segment
c_vector< double, SPACE_DIM > GetIntersectionOfEdgeWithBoundary(const c_vector< double, SPACE_DIM > &rStart, const c_vector< double, SPACE_DIM > &rEnd)
void AddCellData(std::string dataName, std::vector< double > dataPayload)
ImmersedBoundaryMesh< ELEMENT_DIM, SPACE_DIM > * mpMesh
MeshWriterIterators< ELEMENT_DIM, SPACE_DIM > * mpIters