DFT-EFE
 
Loading...
Searching...
No Matches
EFEBasisDofHandler.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 dftefeEFEBasisDofHandler_h
27#define dftefeEFEBasisDofHandler_h
28
29#include <utils/TypeConfig.h>
30#include <utils/Point.h>
33#include <basis/FECellBase.h>
34#include <map>
38#include <utils/MPIPatternP2P.h>
39
40namespace dftefe
41{
42 namespace basis
43 {
50 template <typename ValueTypeBasisCoeff,
51 typename ValueTypeBasisData,
53 size_type dim>
55 : public FEBasisDofHandler<ValueTypeBasisCoeff, memorySpace, dim>
56
57 {
58 public:
59 virtual ~EFEBasisDofHandler() = default;
60 virtual double
62 const utils::Point &point) const = 0;
63 virtual std::vector<double>
65 const utils::Point &point,
66 const size_type derivativeOrder = 1) const = 0;
67
69 // virtual void
70 // reinit(std::shared_ptr<const TriangulationBase> triangulation,
71 // const size_type feOrder) = 0;
72
73 virtual std::shared_ptr<const TriangulationBase>
74 getTriangulation() const = 0;
75
76 virtual size_type
77 nLocalCells() const = 0;
78 virtual size_type
79 nLocallyOwnedCells() const = 0;
80 virtual size_type
81 nGlobalCells() const = 0;
82 virtual size_type
83 getFEOrder(size_type cellId) const = 0;
84 virtual size_type
85 nCellDofs(size_type cellId) const = 0;
86 virtual bool
88
89 virtual std::vector<std::pair<global_size_type, global_size_type>>
91
92 virtual std::vector<std::pair<global_size_type, global_size_type>>
93 getGlobalRanges() const = 0;
94
95 virtual std::map<BasisIdAttribute, size_type>
97
98 virtual size_type
99 nLocalNodes() const = 0;
100 virtual global_size_type
101 nGlobalNodes() const = 0;
102 virtual std::vector<size_type>
103 getLocalNodeIds(size_type cellId) const = 0;
104 virtual std::vector<size_type>
105 getGlobalNodeIds() const = 0;
106 virtual void
108 size_type cellId,
109 std::vector<global_size_type> &vecGlobalNodeId) const = 0;
110 virtual const std::vector<global_size_type> &
111 getBoundaryIds() const = 0;
112 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
113 memorySpace,
116 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
117 memorySpace,
120 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
121 memorySpace,
124 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
125 memorySpace,
128 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
129 memorySpace,
132 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
133 memorySpace,
136 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
137 memorySpace,
139 beginLocalCells() const = 0;
140 virtual typename FEBasisDofHandler<ValueTypeBasisCoeff,
141 memorySpace,
143 endLocalCells() const = 0;
144
145 virtual size_type
147
148 virtual size_type
150
151 // This assumes a linear cell mapping
152 virtual void
154 std::map<global_size_type, utils::Point> &dofCoords) const = 0;
155
156 virtual unsigned int
157 getDim() const = 0;
158
159 // Enrichment specific functions.
160 virtual double
162 const size_type cellLocalEnrichmentId,
163 const dftefe::utils::Point &point) const = 0;
164
165 virtual std::vector<double>
167 const size_type cellLocalEnrichmentId,
168 const dftefe::utils::Point &point) const = 0;
169
170 virtual std::vector<double>
172 const size_type cellLocalEnrichmentId,
173 const dftefe::utils::Point &point) const = 0;
174
175 // Enrichment specific functions.
176 virtual std::vector<double>
178 const size_type cellId,
179 const std::vector<dftefe::utils::Point> &points) const = 0;
180
181 virtual std::vector<double>
183 const size_type cellId,
184 const std::vector<dftefe::utils::Point> &points) const = 0;
185
186 virtual std::vector<double>
188 const size_type cellId,
189 const std::vector<dftefe::utils::Point> &points) const = 0;
190
191 virtual std::vector<global_size_type>
193
194 virtual global_size_type
196
197 virtual std::shared_ptr<const EnrichmentIdsPartition<dim>>
199
200 virtual std::shared_ptr<
201 const EnrichmentClassicalInterfaceSpherical<ValueTypeBasisData,
202 memorySpace,
203 dim>>
205
206 virtual bool
207 isOrthogonalized() const = 0;
208
209 virtual size_type
210 totalRanges() const = 0;
211
212 // Additional functions for getting geometric constriants matrix
213 // Additional functions for getting the communication pattern object
214 // for MPI case
215
216 virtual std::shared_ptr<
219
220 // use this to add extra constraints on top of geometric constraints
221 virtual std::shared_ptr<
224
225 // call this after calling start
226 virtual void
229 constraintsLocal) const = 0;
230
231 virtual std::shared_ptr<const utils::mpi::MPIPatternP2P<memorySpace>>
232 getMPIPatternP2P() const = 0;
233
234 virtual bool
235 isDistributed() const = 0;
236
237 }; // end of EFEBasisDofHandler
238 } // end of namespace basis
239} // end of namespace dftefe
240#endif // dftefeEFEBasisDofHandler_h
Definition: ConstraintsLocal.h:43
Definition: EFEBasisDofHandler.h:57
virtual std::vector< global_size_type > getGhostEnrichmentGlobalIds() const =0
virtual global_size_type nGlobalEnrichmentNodes() const =0
virtual bool isVariableDofsPerCell() const =0
virtual std::vector< double > getEnrichmentValue(const size_type cellId, const std::vector< dftefe::utils::Point > &points) const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::const_FECellIterator endLocalCells() const =0
virtual std::shared_ptr< const EnrichmentIdsPartition< dim > > getEnrichmentIdsPartition() const =0
virtual std::map< BasisIdAttribute, size_type > getBasisAttributeToRangeIdMap() const =0
virtual std::shared_ptr< const TriangulationBase > getTriangulation() const =0
virtual double getEnrichmentValue(const size_type cellId, const size_type cellLocalEnrichmentId, const dftefe::utils::Point &point) const =0
virtual size_type nCellDofs(size_type cellId) const =0
virtual global_size_type nGlobalNodes() const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator endLocallyOwnedCells()=0
virtual size_type nCumulativeLocallyOwnedCellDofs() const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::const_FECellIterator beginLocalCells() const =0
virtual std::vector< double > getEnrichmentHessian(const size_type cellId, const size_type cellLocalEnrichmentId, const dftefe::utils::Point &point) const =0
virtual bool isDistributed() const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator beginLocallyOwnedCells()=0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::const_FECellIterator beginLocallyOwnedCells() const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator endLocalCells()=0
virtual std::vector< double > getEnrichmentDerivative(const size_type cellId, const size_type cellLocalEnrichmentId, const dftefe::utils::Point &point) const =0
virtual size_type nLocalCells() const =0
virtual std::shared_ptr< const ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > getIntrinsicConstraints() const =0
virtual void getCellDofsGlobalIds(size_type cellId, std::vector< global_size_type > &vecGlobalNodeId) const =0
virtual std::vector< double > getEnrichmentHessian(const size_type cellId, const std::vector< dftefe::utils::Point > &points) const =0
virtual double getBasisFunctionValue(const size_type basisId, const utils::Point &point) const =0
virtual std::vector< size_type > getGlobalNodeIds() const =0
virtual void createConstraintsEnd(std::shared_ptr< ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > constraintsLocal) const =0
virtual bool isOrthogonalized() const =0
virtual size_type getFEOrder(size_type cellId) const =0
virtual const std::vector< global_size_type > & getBoundaryIds() const =0
virtual std::vector< std::pair< global_size_type, global_size_type > > getLocallyOwnedRanges() const =0
virtual std::vector< double > getBasisFunctionDerivative(const size_type basisId, const utils::Point &point, const size_type derivativeOrder=1) const =0
virtual size_type nLocalNodes() const =0
virtual ~EFEBasisDofHandler()=default
virtual void getBasisCenters(std::map< global_size_type, utils::Point > &dofCoords) const =0
virtual size_type nCumulativeLocalCellDofs() const =0
virtual std::shared_ptr< ConstraintsLocal< ValueTypeBasisCoeff, memorySpace > > createConstraintsStart() const =0
virtual size_type totalRanges() const =0
virtual std::shared_ptr< const EnrichmentClassicalInterfaceSpherical< ValueTypeBasisData, memorySpace, dim > > getEnrichmentClassicalInterface() const =0
virtual std::shared_ptr< const utils::mpi::MPIPatternP2P< memorySpace > > getMPIPatternP2P() const =0
virtual std::vector< double > getEnrichmentDerivative(const size_type cellId, const std::vector< dftefe::utils::Point > &points) const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::FECellIterator beginLocalCells()=0
virtual size_type nGlobalCells() const =0
virtual unsigned int getDim() const =0
virtual std::vector< std::pair< global_size_type, global_size_type > > getGlobalRanges() const =0
virtual size_type nLocallyOwnedCells() const =0
virtual std::vector< size_type > getLocalNodeIds(size_type cellId) const =0
virtual FEBasisDofHandler< ValueTypeBasisCoeff, memorySpace, dim >::const_FECellIterator endLocallyOwnedCells() const =0
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
std::vector< std::shared_ptr< FECellBase > >::iterator FECellIterator
Definition: FEBasisDofHandler.h:62
std::vector< std::shared_ptr< FECellBase > >::const_iterator const_FECellIterator
Definition: FEBasisDofHandler.h:64
Definition: PointImpl.h:13
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