DFT-EFE
 
Loading...
Searching...
No Matches
EFEBasisDofHandlerDealii.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Avirup Sircar
24 */
25
26#ifndef dftefeEFEBasisDofHandlerDealii_h
27# define dftefeEFEBasisDofHandlerDealii_h
28
29# include <utils/TypeConfig.h>
30# include <utils/Point.h>
32# include <memory>
33# include <deal.II/fe/fe_q.h>
36# include <utils/Exceptions.h>
37# include <utils/MPITypes.h>
38# include <utils/MPIWrapper.h>
40
42# include <deal.II/dofs/dof_handler.h>
43# include <deal.II/matrix_free/matrix_free.h>
44namespace dftefe
45{
46 namespace basis
47 {
52 template <typename ValueTypeBasisCoeff,
53 typename ValueTypeBasisData,
55 size_type dim>
57 : public EFEBasisDofHandler<ValueTypeBasisCoeff,
58 ValueTypeBasisData,
59 memorySpace,
60 dim>
61 {
62 public:
64 std::shared_ptr<const EnrichmentClassicalInterfaceSpherical<
65 ValueTypeBasisData,
66 memorySpace,
67 dim>> enrichmentClassicalInterface,
68 const utils::mpi::MPIComm &mpiComm);
69
71 std::shared_ptr<
72 const EnrichmentClassicalInterfaceSpherical<ValueTypeBasisData,
73 memorySpace,
74 dim>>
75 enrichmentClassicalInterface);
76
78
79 double
80 getBasisFunctionValue(const size_type basisId,
81 const utils::Point &point) const override;
82 std::vector<double>
84 const size_type basisId,
85 const utils::Point &point,
86 const size_type derivativeOrder = 1) const override;
87
89 void
91 ValueTypeBasisData,
92 memorySpace,
93 dim>> enrichmentClassicalInterface,
94 const utils::mpi::MPIComm &mpiComm);
95
96 void
98 ValueTypeBasisData,
99 memorySpace,
100 dim>> enrichmentClassicalInterface);
101
102 std::shared_ptr<const TriangulationBase>
103 getTriangulation() const override;
104
106 nLocalCells() const override;
108 nLocallyOwnedCells() const override;
109
111 nGlobalCells() const override;
113 getFEOrder(size_type cellId) const override;
114
116 nCellDofs(size_type cellId) const override;
117
118 bool
119 isVariableDofsPerCell() const override;
120
122 nLocalNodes() const override;
123
124 std::vector<std::pair<global_size_type, global_size_type>>
125 getLocallyOwnedRanges() const override;
126
127 std::vector<std::pair<global_size_type, global_size_type>>
128 getGlobalRanges() const override;
129
130 std::map<BasisIdAttribute, size_type>
131 getBasisAttributeToRangeIdMap() const override;
132
134 nGlobalNodes() const override;
135
136 std::vector<size_type>
137 getLocalNodeIds(size_type cellId) const override;
138
139 std::vector<size_type>
140 getGlobalNodeIds() const override;
141
142 void
144 size_type cellId,
145 std::vector<global_size_type> &vecGlobalNodeId) const override;
146
147 const std::vector<global_size_type> &
148 getBoundaryIds() const override;
149
151 FECellIterator
152 beginLocallyOwnedCells() override;
153
155 FECellIterator
156 endLocallyOwnedCells() override;
157
159 const_FECellIterator
160 beginLocallyOwnedCells() const override;
161
163 const_FECellIterator
164 endLocallyOwnedCells() const override;
165
167 FECellIterator
168 beginLocalCells() override;
170 FECellIterator
171 endLocalCells() override;
173 const_FECellIterator
174 beginLocalCells() const override;
176 const_FECellIterator
177 endLocalCells() const override;
178 unsigned int
179 getDim() const override;
180
182 nCumulativeLocallyOwnedCellDofs() const override;
183
185 nCumulativeLocalCellDofs() const override;
186
187 // This assumes a linear cell mapping
188 void
190 std::map<global_size_type, utils::Point> &dofCoords) const override;
191
192 // Additional functions for getting geometric constriants matrix
193 // Additional functions for getting the communication pattern object
194 // for MPI case
195
196 std::shared_ptr<const ConstraintsLocal<ValueTypeBasisCoeff, memorySpace>>
197 getIntrinsicConstraints() const override;
198
199 // use this to add extra constraints on top of geometric constraints
200 std::shared_ptr<ConstraintsLocal<ValueTypeBasisCoeff, memorySpace>>
201 createConstraintsStart() const override;
202
203 // call this after calling start
204 void
207 constraintsLocal) const override;
208
209 std::shared_ptr<const utils::mpi::MPIPatternP2P<memorySpace>>
210 getMPIPatternP2P() const override;
211
212 bool
213 isDistributed() const override;
214
215 //
216 // dealii specific functions
217 //
218 std::shared_ptr<const dealii::DoFHandler<dim>>
219 getDoFHandler() const;
220
221 const dealii::FiniteElement<dim> &
222 getReferenceFE(const size_type cellId) const;
223
224 // Enrichment functions with dealii mesh. The enrichedid is the cell local
225 // id.
226 double
227 getEnrichmentValue(const size_type cellId,
228 const size_type cellLocalEnrichmentId,
229 const dftefe::utils::Point &point) const override;
230
231 std::vector<double>
233 const size_type cellLocalEnrichmentId,
234 const dftefe::utils::Point &point) const override;
235
236 std::vector<double>
237 getEnrichmentHessian(const size_type cellId,
238 const size_type cellLocalEnrichmentId,
239 const dftefe::utils::Point &point) const override;
240
241 std::vector<double>
243 const size_type cellId,
244 const std::vector<dftefe::utils::Point> &points) const override;
245
246 std::vector<double>
248 const size_type cellId,
249 const std::vector<dftefe::utils::Point> &points) const override;
250
251 std::vector<double>
253 const size_type cellId,
254 const std::vector<dftefe::utils::Point> &points) const override;
255
256 std::vector<global_size_type>
257 getGhostEnrichmentGlobalIds() const override;
258
260 nGlobalEnrichmentNodes() const override;
261
262 std::shared_ptr<const EnrichmentIdsPartition<dim>>
263 getEnrichmentIdsPartition() const override;
264
265 std::shared_ptr<
266 const EnrichmentClassicalInterfaceSpherical<ValueTypeBasisData,
267 memorySpace,
268 dim>>
269 getEnrichmentClassicalInterface() const override;
270
271 bool
272 isOrthogonalized() const override;
273
275 totalRanges() const override;
276
277
278 private:
279 std::shared_ptr<dealii::DoFHandler<dim>> d_dofHandler;
281 std::vector<std::shared_ptr<FECellBase>> d_localCells;
282 std::vector<std::shared_ptr<FECellBase>> d_locallyOwnedCells;
285 std::shared_ptr<const EnrichmentIdsPartition<dim>>
287 std::vector<std::vector<global_size_type>>
290 std::vector<std::pair<global_size_type, global_size_type>>
292 std::vector<std::pair<global_size_type, global_size_type>> d_globalRanges;
293 std::vector<global_size_type> d_ghostEnrichmentGlobalIds;
294 std::shared_ptr<const atoms::AtomSphericalDataContainer>
296 std::vector<std::string> d_atomSymbolVec;
297 std::vector<utils::Point> d_atomCoordinatesVec;
298 std::string d_fieldName;
300 std::shared_ptr<
301 const EnrichmentClassicalInterfaceSpherical<ValueTypeBasisData,
302 memorySpace,
303 dim>>
305
306 std::vector<global_size_type> d_boundaryIds;
308 std::shared_ptr<const utils::mpi::MPIPatternP2P<memorySpace>>
310 std::shared_ptr<const ConstraintsLocal<ValueTypeBasisCoeff, memorySpace>>
312
313 void
315 const std::pair<global_size_type, global_size_type> &locallyOwnedRanges,
316 std::vector<std::pair<global_size_type, global_size_type>>
317 & allOwnedRanges,
318 const utils::mpi::MPIComm &mpiComm) const;
319
320 }; // end of EFEBasisDofHandlerDealii
321 } // end of namespace basis
322} // end of namespace dftefe
324#endif // dftefeEFEBasisDofHandlerDealii_h
325//
Definition: ConstraintsLocal.h:43
Definition: EFEBasisDofHandlerDealii.h:61
size_type d_numCumulativeLocallyOwnedCellDofs
Definition: EFEBasisDofHandlerDealii.h:283
std::vector< std::shared_ptr< FECellBase > > d_localCells
Definition: EFEBasisDofHandlerDealii.h:281
bool d_isDistributed
Definition: EFEBasisDofHandlerDealii.h:307
std::map< BasisIdAttribute, size_type > getBasisAttributeToRangeIdMap() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1088
unsigned int getDim() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1323
bool isDistributed() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1768
std::shared_ptr< const utils::mpi::MPIPatternP2P< memorySpace > > d_mpiPatternP2P
Definition: EFEBasisDofHandlerDealii.h:309
void createConstraintsEnd(std::shared_ptr< ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > constraintsLocal) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1740
size_type d_totalRanges
Definition: EFEBasisDofHandlerDealii.h:289
const dealii::FiniteElement< dim > & getReferenceFE(const size_type cellId) const
Definition: EFEBasisDofHandlerDealii.t.cpp:1352
std::vector< global_size_type > getGhostEnrichmentGlobalIds() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1617
bool isVariableDofsPerCell() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:959
double getBasisFunctionValue(const size_type basisId, const utils::Point &point) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:840
std::vector< std::vector< global_size_type > > d_overlappingEnrichmentIdsInCells
Definition: EFEBasisDofHandlerDealii.h:288
bool isOrthogonalized() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1672
std::shared_ptr< const ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > d_constraintsLocal
Definition: EFEBasisDofHandlerDealii.h:311
FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator beginLocallyOwnedCells() override
Definition: EFEBasisDofHandlerDealii.t.cpp:1212
std::vector< size_type > getGlobalNodeIds() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1139
size_type nLocalNodes() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:972
void getCellDofsGlobalIds(size_type cellId, std::vector< global_size_type > &vecGlobalNodeId) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1159
std::shared_ptr< const ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > getIntrinsicConstraints() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1701
std::vector< std::pair< global_size_type, global_size_type > > getGlobalRanges() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1075
size_type getFEOrder(size_type cellId) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:931
std::vector< std::pair< global_size_type, global_size_type > > d_globalRanges
Definition: EFEBasisDofHandlerDealii.h:292
std::shared_ptr< const EnrichmentClassicalInterfaceSpherical< ValueTypeBasisData, memorySpace, dim > > getEnrichmentClassicalInterface() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1659
size_type nLocalCells() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:891
const std::vector< global_size_type > & getBoundaryIds() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1198
std::shared_ptr< const atoms::AtomSphericalDataContainer > d_atomSphericalDataContainer
Definition: EFEBasisDofHandlerDealii.h:295
std::vector< double > getEnrichmentDerivative(const size_type cellId, const size_type cellLocalEnrichmentId, const dftefe::utils::Point &point) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1469
FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator beginLocalCells() override
Definition: EFEBasisDofHandlerDealii.t.cpp:1268
size_type nCumulativeLocallyOwnedCellDofs() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1410
std::vector< global_size_type > d_ghostEnrichmentGlobalIds
Definition: EFEBasisDofHandlerDealii.h:293
std::shared_ptr< const EnrichmentClassicalInterfaceSpherical< ValueTypeBasisData, memorySpace, dim > > d_enrichClassIntfce
Definition: EFEBasisDofHandlerDealii.h:304
std::shared_ptr< const TriangulationBase > getTriangulation() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:878
global_size_type nGlobalEnrichmentNodes() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1630
void reinit(std::shared_ptr< const EnrichmentClassicalInterfaceSpherical< ValueTypeBasisData, memorySpace, dim > > enrichmentClassicalInterface, const utils::mpi::MPIComm &mpiComm)
Definition: EFEBasisDofHandlerDealii.t.cpp:175
std::vector< std::string > d_atomSymbolVec
Definition: EFEBasisDofHandlerDealii.h:296
std::shared_ptr< const utils::mpi::MPIPatternP2P< memorySpace > > getMPIPatternP2P() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1755
size_type nCellDofs(size_type cellId) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:944
std::vector< std::shared_ptr< FECellBase > > d_locallyOwnedCells
Definition: EFEBasisDofHandlerDealii.h:282
size_type d_numCumulativeLocalCellDofs
Definition: EFEBasisDofHandlerDealii.h:284
size_type nLocallyOwnedCells() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:904
size_type totalRanges() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1685
size_type nCumulativeLocalCellDofs() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1423
double getEnrichmentValue(const size_type cellId, const size_type cellLocalEnrichmentId, const dftefe::utils::Point &point) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1439
std::vector< std::pair< global_size_type, global_size_type > > getLocallyOwnedRanges() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1010
std::vector< size_type > getLocalNodeIds(size_type cellId) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1121
std::shared_ptr< ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > createConstraintsStart() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1714
std::string d_fieldName
Definition: EFEBasisDofHandlerDealii.h:298
void getBasisCenters(std::map< global_size_type, utils::Point > &dofCoords) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1372
FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator endLocallyOwnedCells() override
Definition: EFEBasisDofHandlerDealii.t.cpp:1226
FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator endLocalCells() override
Definition: EFEBasisDofHandlerDealii.t.cpp:1282
void getAllOwnedClassicalRanges(const std::pair< global_size_type, global_size_type > &locallyOwnedRanges, std::vector< std::pair< global_size_type, global_size_type > > &allOwnedRanges, const utils::mpi::MPIComm &mpiComm) const
Definition: EFEBasisDofHandlerDealii.t.cpp:1024
std::shared_ptr< const EnrichmentIdsPartition< dim > > getEnrichmentIdsPartition() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1643
global_size_type nGlobalNodes() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:991
std::vector< global_size_type > d_boundaryIds
Definition: EFEBasisDofHandlerDealii.h:306
bool d_isOrthogonalized
Definition: EFEBasisDofHandlerDealii.h:299
std::vector< std::pair< global_size_type, global_size_type > > d_locallyOwnedRanges
Definition: EFEBasisDofHandlerDealii.h:291
std::shared_ptr< const EnrichmentIdsPartition< dim > > d_enrichmentIdsPartition
Definition: EFEBasisDofHandlerDealii.h:286
bool d_isVariableDofsPerCell
Definition: EFEBasisDofHandlerDealii.h:280
std::vector< double > getEnrichmentHessian(const size_type cellId, const size_type cellLocalEnrichmentId, const dftefe::utils::Point &point) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:1499
std::vector< double > getBasisFunctionDerivative(const size_type basisId, const utils::Point &point, const size_type derivativeOrder=1) const override
Definition: EFEBasisDofHandlerDealii.t.cpp:858
std::shared_ptr< const dealii::DoFHandler< dim > > getDoFHandler() const
Definition: EFEBasisDofHandlerDealii.t.cpp:1339
std::shared_ptr< dealii::DoFHandler< dim > > d_dofHandler
Definition: EFEBasisDofHandlerDealii.h:279
size_type nGlobalCells() const override
Definition: EFEBasisDofHandlerDealii.t.cpp:917
std::vector< utils::Point > d_atomCoordinatesVec
Definition: EFEBasisDofHandlerDealii.h:297
Definition: EFEBasisDofHandler.h:57
Class to get the interface between Classical and Enrichment basis. It takes as the classical basis as...
Definition: EnrichmentClassicalInterfaceSpherical.h:72
Definition: FEBasisDofHandler.h:57
Definition: PointImpl.h:13
int MPIComm
Definition: MPITypes.h:83
MemorySpace
Definition: MemorySpaceType.h:37
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8
unsigned long int global_size_type
Definition: TypeConfig.h:9