DFT-EFE
 
Loading...
Searching...
No Matches
EFEBDSOnTheFlyComputeDealii.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 dftefeEFEBDSOnTheFlyComputeDealii_h
27#define dftefeEFEBDSOnTheFlyComputeDealii_h
28
29#include <utils/TypeConfig.h>
31#include <utils/MemoryStorage.h>
40#include <memory>
41#include <map>
42#include <vector>
43namespace dftefe
44{
45 namespace basis
46 {
52 template <typename ValueTypeBasisCoeff,
53 typename ValueTypeBasisData,
55 size_type dim>
57 : public EFEBasisDataStorage<ValueTypeBasisData, memorySpace>
58 {
59 public:
62 using Storage =
64
66 std::shared_ptr<const BasisDofHandler> feBDH,
67 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
68 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap,
69 const size_type maxCellBlock,
71
73
74 std::shared_ptr<const BasisDofHandler>
75 getBasisDofHandler() const override;
76
77 void
79 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
80 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
81 override;
82
83 void
85 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
86 std::shared_ptr<const quadrature::QuadratureRuleContainer>
87 quadratureRuleContainer,
88 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
89 override;
90
91 void
93 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
94 std::vector<std::shared_ptr<const quadrature::QuadratureRule>>
95 quadratureRuleVec,
96 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
97 override;
98
99 void
101 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
102 std::shared_ptr<const quadrature::QuadratureRule>
103 baseQuadratureRuleAdaptive,
104 std::vector<std::shared_ptr<const utils::ScalarSpatialFunctionReal>>
105 & functions,
106 const std::vector<double> & absoluteTolerances,
107 const std::vector<double> & relativeTolerances,
108 const std::vector<double> & integralThresholds,
109 const double smallestCellVolume,
110 const unsigned int maxRecursion,
111 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
112 override;
113
114
115 // void
116 // evaluateBasisData(
117 // std::shared_ptr<const quadrature::QuadratureRuleContainer>
118 // quadratureRuleContainer,
119 // const QuadratureRuleAttributes & quadratureRuleAttributes,
120 // const BasisStorageAttributesBoolMap boolBasisStorageFlagsObj)
121 // override;
122
123 void
124 deleteBasisData() override;
125
126
127
128 // std::shared_ptr<const quadrature::QuadratureRuleContainer>
129 // getCellQuadratureRuleContainer(std::shared_ptr<Storage>>
130 // const QuadratureRuleAttributes &quadratureRuleAttributes) const
131 // override;
132 // functions to get data for a basis function on a given quad point in a
133 // cell
134 Storage
135 getBasisData(const QuadraturePointAttributes &attributes,
136 const size_type basisId) const override;
137 Storage
139 const size_type basisId) const override;
140 Storage
142 const size_type basisId) const override;
143
144 // functions to get data for a basis function on all quad points in a cell
145 Storage
146 getBasisDataInCell(const size_type cellId,
147 const size_type basisId) const override;
148 Storage
150 const size_type basisId) const override;
151 Storage
153 const size_type basisId) const override;
154
155 // functions to get data for all basis functions on all quad points in a
156 // cell
157 Storage
158 getBasisDataInCell(const size_type cellId) const override;
159 Storage
160 getBasisGradientDataInCell(const size_type cellId) const override;
161 Storage
162 getBasisHessianDataInCell(const size_type cellId) const override;
163
164 Storage
165 getJxWInCell(const size_type cellId) const override;
166
167 // functions to get data for all basis functions on all quad points in all
168 // cells
169 const Storage &
170 getBasisDataInAllCells() const override;
171 const Storage &
172 getBasisGradientDataInAllCells() const override;
173 const Storage &
174 getBasisHessianDataInAllCells() const override;
175
176 const Storage &
177 getJxWInAllCells() const override;
178
179 // get overlap of two basis functions in a cell
180 Storage
181 getBasisOverlap(const size_type cellId,
182 const size_type basisId1,
183 const size_type basisId2) const override;
184
185 // get overlap of all the basis functions in a cell
186 Storage
187 getBasisOverlapInCell(const size_type cellId) const override;
188
189 // get overlap of all the basis functions in all cells
190 const Storage &
191 getBasisOverlapInAllCells() const override;
192
193
194 // get the laplace operator in a cell
195 Storage
196 getBasisGradNiGradNjInCell(const size_type cellId) const override;
197
198 // get laplace operator in all cells
199 const Storage &
200 getBasisGradNiGradNjInAllCells() const override;
201
202 std::shared_ptr<const quadrature::QuadratureRuleContainer>
203 getQuadratureRuleContainer() const override;
204
205 // functions to get data for basis functions on all quad points in range
206 // of cells
207 void
208 getBasisDataInCellRange(std::pair<size_type, size_type> cellRange,
209 Storage &basisData) const override;
210 void
212 std::pair<size_type, size_type> cellRange,
213 Storage & basisGradientData) const override;
214
215 private:
217 std::shared_ptr<const EFEBasisDofHandlerDealii<ValueTypeBasisCoeff,
218 ValueTypeBasisData,
219 memorySpace,
220 dim>>
222 std::shared_ptr<const quadrature::QuadratureRuleContainer>
226 std::shared_ptr<Storage> d_basisParaCellClassQuadStorage;
227 std::shared_ptr<Storage> d_JxWStorage;
229 std::shared_ptr<Storage> d_basisJacobianInvQuadStorage;
230 std::shared_ptr<Storage> d_basisHessianQuadStorage;
231 std::vector<size_type> d_dofsInCell;
232 std::vector<size_type> d_nQuadPointsIncell;
236 std::shared_ptr<Storage> d_tmpGradientBlock;
239 std::shared_ptr<Storage> d_basisGradientEnrichQuadStorage,
241
242 }; // end of EFEBDSOnTheFlyComputeDealii
243 } // end of namespace basis
244} // end of namespace dftefe
246#endif // dftefeEFEBDSOnTheFlyComputeDealii_h
An abstract class to store and access data for a given basis, such as the basis function values on a ...
Definition: EFEBDSOnTheFlyComputeDealii.h:58
const Storage & getBasisHessianDataInAllCells() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1714
typename BasisDataStorage< ValueTypeBasisData, memorySpace >::Storage Storage
Definition: EFEBDSOnTheFlyComputeDealii.h:63
Storage getBasisOverlap(const size_type cellId, const size_type basisId1, const size_type basisId2) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2217
Storage getJxWInCell(const size_type cellId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2021
std::shared_ptr< const quadrature::QuadratureRuleContainer > d_quadratureRuleContainer
Definition: EFEBDSOnTheFlyComputeDealii.h:223
std::shared_ptr< Storage > d_basisGradientEnrichQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:239
Storage getBasisGradientDataInCell(const size_type cellId, const size_type basisId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2291
const Storage & getBasisOverlapInAllCells() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2181
std::shared_ptr< Storage > d_basisEnrichQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:240
Storage getBasisGradientData(const QuadraturePointAttributes &attributes, const size_type basisId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2093
std::vector< size_type > d_nQuadPointsIncell
Definition: EFEBDSOnTheFlyComputeDealii.h:232
std::shared_ptr< const quadrature::QuadratureRuleContainer > getQuadratureRuleContainer() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2330
void getBasisGradientDataInCellRange(std::pair< size_type, size_type > cellRange, Storage &basisGradientData) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1884
BasisStorageAttributesBoolMap d_basisStorageAttributesBoolMap
Definition: EFEBDSOnTheFlyComputeDealii.h:225
void getBasisDataInCellRange(std::pair< size_type, size_type > cellRange, Storage &basisData) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1792
Storage getBasisOverlapInCell(const size_type cellId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2199
std::shared_ptr< Storage > d_JxWStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:227
std::shared_ptr< Storage > d_basisGradientParaCellClassQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:228
const Storage & getBasisGradientDataInAllCells() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1695
void evaluateBasisData(const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes, const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap) override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1088
Storage getBasisHessianDataInCell(const size_type cellId, const size_type basisId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2311
std::vector< size_type > d_cellStartIdsBasisJacobianInvQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:233
std::shared_ptr< Storage > d_basisParaCellClassQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:226
const Storage & getJxWInAllCells() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1736
std::vector< size_type > d_cellStartIdsBasisHessianQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:234
bool d_evaluateBasisData
Definition: EFEBDSOnTheFlyComputeDealii.h:216
std::shared_ptr< Storage > d_tmpGradientBlock
Definition: EFEBDSOnTheFlyComputeDealii.h:236
void deleteBasisData() override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2237
linearAlgebra::LinAlgOpContext< memorySpace > & d_linAlgOpContext
Definition: EFEBDSOnTheFlyComputeDealii.h:237
Storage getBasisData(const QuadraturePointAttributes &attributes, const size_type basisId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2056
Storage getBasisHessianData(const QuadraturePointAttributes &attributes, const size_type basisId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2134
std::vector< size_type > d_dofsInCell
Definition: EFEBDSOnTheFlyComputeDealii.h:231
const Storage & getBasisDataInAllCells() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:1679
Storage getBasisGradNiGradNjInCell(const size_type cellId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2347
std::shared_ptr< const BasisDofHandler > getBasisDofHandler() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2386
std::shared_ptr< const EFEBasisDofHandlerDealii< ValueTypeBasisCoeff, ValueTypeBasisData, memorySpace, dim > > d_efeBDH
Definition: EFEBDSOnTheFlyComputeDealii.h:221
std::shared_ptr< Storage > d_basisHessianQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:230
QuadratureRuleAttributes d_quadratureRuleAttributes
Definition: EFEBDSOnTheFlyComputeDealii.h:224
Storage getBasisDataInCell(const size_type cellId, const size_type basisId) const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2270
size_type d_maxCellBlock
Definition: EFEBDSOnTheFlyComputeDealii.h:235
std::shared_ptr< Storage > d_basisJacobianInvQuadStorage
Definition: EFEBDSOnTheFlyComputeDealii.h:229
const Storage & getBasisGradNiGradNjInAllCells() const override
Definition: EFEBDSOnTheFlyComputeDealii.t.cpp:2367
size_type d_classialDofsInCell
Definition: EFEBDSOnTheFlyComputeDealii.h:238
An abstract class to store and access data for a given basis, such as the basis function values on a ...
Definition: EFEBasisDataStorage.h:52
Definition: EFEBasisDofHandlerDealii.h:61
Definition: LinAlgOpContext.h:38
Class to store the attributes of a quad point, such as the cell Id it belongs, the quadPointId within...
Definition: QuadratureAttributes.h:171
Definition: QuadratureAttributes.h:135
std::map< BasisStorageAttributes, bool > BasisStorageAttributesBoolMap
Definition: BasisDataStorage.h:50
MemorySpace
Definition: MemorySpaceType.h:37
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8