Chaste Commit::8b5d759ac2eb95e67ae57699734101efccb0a0a9
VertexMeshOperationRecorder.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 VERTEXMESHOPERATIONRECORDER_HPP_
37#define VERTEXMESHOPERATIONRECORDER_HPP_
38
39#include <vector>
40
41#include <boost/serialization/base_object.hpp>
42#include <boost/serialization/vector.hpp>
43
44#include "CellDivisionInfo.hpp"
46#include "EdgeHelper.hpp"
47#include "EdgeOperation.hpp"
48#include "T1SwapInfo.hpp"
49#include "T2SwapInfo.hpp"
50#include "T3SwapInfo.hpp"
51#include "VertexElement.hpp"
52
63template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
65{
66private:
69
76 template <class Archive>
77 void serialize(Archive& archive, const unsigned int version)
78 {
79 archive & mT1Swaps;
80 archive & mT2Swaps;
81 archive & mT3Swaps;
82 archive & mCellDivisions;
83 archive & mEdgeOperations;
84 }
85
87 std::vector<T1SwapInfo<SPACE_DIM> > mT1Swaps;
88
90 std::vector<T2SwapInfo<SPACE_DIM> > mT2Swaps;
91
93 std::vector<T3SwapInfo<SPACE_DIM> > mT3Swaps;
94
96 std::vector<CellDivisionInfo<SPACE_DIM> > mCellDivisions;
97
99 std::vector<EdgeOperation> mEdgeOperations;
100
105
106public:
107
112
117
123 void SetEdgeHelper(EdgeHelper<SPACE_DIM>* pEdgeHelper);
124
130 void RecordT1Swap(T1SwapInfo<SPACE_DIM>& rSwapInfo);
131
135 std::vector<T1SwapInfo<SPACE_DIM> > GetT1SwapsInfo() const;
136
140 void ClearT1SwapsInfo();
141
147 void RecordT2Swap(T2SwapInfo<SPACE_DIM>& rSwapInfo);
148
152 std::vector<T2SwapInfo<SPACE_DIM> > GetT2SwapsInfo() const;
153
157 void ClearT2SwapsInfo();
158
164 void RecordT3Swap(T3SwapInfo<SPACE_DIM>& rSwapInfo);
165
169 std::vector<T3SwapInfo<SPACE_DIM> > GetT3SwapsInfo() const;
170
174 void ClearT3SwapsInfo();
175
182
186 std::vector<CellDivisionInfo<SPACE_DIM> > GetCellDivisionInfo() const;
187
192
196 const std::vector<EdgeOperation>& GetEdgeOperations();
197
201 void ClearEdgeOperations();
202
215 void RecordNodeMergeOperation(const std::vector<unsigned> oldIds,
217 const std::pair<unsigned, unsigned> mergedNodesPair,
218 const bool elementIndexIsRemapped = false);
219
233 const unsigned edgeIndex,
234 const double insertedNodeRelPosition,
235 const bool elementIndexIsRemapped = false);
236
244 void RecordCellDivideOperation(const std::vector<unsigned>& rOldIds,
247
254 const unsigned edgeIndex);
263 const unsigned nodeIndex);
264};
265
266#endif /* VERTEXMESHOPERATIONRECORDER_HPP_ */
void RecordNewEdgeOperation(VertexElement< ELEMENT_DIM, SPACE_DIM > *pElement, const unsigned edgeIndex)
void SetEdgeHelper(EdgeHelper< SPACE_DIM > *pEdgeHelper)
std::vector< T1SwapInfo< SPACE_DIM > > mT1Swaps
void RecordT1Swap(T1SwapInfo< SPACE_DIM > &rSwapInfo)
std::vector< T3SwapInfo< SPACE_DIM > > mT3Swaps
std::vector< CellDivisionInfo< SPACE_DIM > > GetCellDivisionInfo() const
const std::vector< EdgeOperation > & GetEdgeOperations()
std::vector< EdgeOperation > mEdgeOperations
void RecordEdgeMergeOperation(VertexElement< ELEMENT_DIM, SPACE_DIM > *pElement, const unsigned nodeIndex)
void RecordCellDivisionInfo(CellDivisionInfo< SPACE_DIM > &rDivisionInfo)
void RecordEdgeSplitOperation(VertexElement< ELEMENT_DIM, SPACE_DIM > *pElement, const unsigned edgeIndex, const double insertedNodeRelPosition, const bool elementIndexIsRemapped=false)
std::vector< T1SwapInfo< SPACE_DIM > > GetT1SwapsInfo() const
void RecordCellDivideOperation(const std::vector< unsigned > &rOldIds, VertexElement< ELEMENT_DIM, SPACE_DIM > *pElement1, VertexElement< ELEMENT_DIM, SPACE_DIM > *pElement2)
void serialize(Archive &archive, const unsigned int version)
std::vector< CellDivisionInfo< SPACE_DIM > > mCellDivisions
std::vector< T3SwapInfo< SPACE_DIM > > GetT3SwapsInfo() const
void RecordT3Swap(T3SwapInfo< SPACE_DIM > &rSwapInfo)
std::vector< T2SwapInfo< SPACE_DIM > > mT2Swaps
void RecordNodeMergeOperation(const std::vector< unsigned > oldIds, VertexElement< ELEMENT_DIM, SPACE_DIM > *pElement, const std::pair< unsigned, unsigned > mergedNodesPair, const bool elementIndexIsRemapped=false)
friend class boost::serialization::access
std::vector< T2SwapInfo< SPACE_DIM > > GetT2SwapsInfo() const
void RecordT2Swap(T2SwapInfo< SPACE_DIM > &rSwapInfo)