DFT-EFE
 
Loading...
Searching...
No Matches
CFEBDSOnTheFlyComputeDealii.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 dftefeCFEBDSOnTheFlyComputeDealii_h
27#define dftefeCFEBDSOnTheFlyComputeDealii_h
28
29#include <utils/TypeConfig.h>
31#include <utils/MemoryStorage.h>
39#include <memory>
40#include <map>
41#include <vector>
42namespace dftefe
43{
44 namespace basis
45 {
51 template <typename ValueTypeBasisCoeff,
52 typename ValueTypeBasisData,
54 size_type dim>
56 : public FEBasisDataStorage<ValueTypeBasisData, memorySpace>
57 {
58 public:
61 using Storage =
63
65 std::shared_ptr<const BasisDofHandler> feBDH,
66 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
67 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap,
68 const size_type maxCellBlock,
70
72
73 std::shared_ptr<const BasisDofHandler>
74 getBasisDofHandler() const override;
75
76 void
78 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
79 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
80 override;
81
82 void
84 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
85 std::shared_ptr<const quadrature::QuadratureRuleContainer>
86 quadratureRuleContainer,
87 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
88 override;
89
90 void
92 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
93 std::vector<std::shared_ptr<const quadrature::QuadratureRule>>
94 quadratureRuleVec,
95 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
96 override;
97
98 void
100 const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes,
101 std::shared_ptr<const quadrature::QuadratureRule>
102 baseQuadratureRuleAdaptive,
103 std::vector<std::shared_ptr<const utils::ScalarSpatialFunctionReal>>
104 & functions,
105 const std::vector<double> & absoluteTolerances,
106 const std::vector<double> & relativeTolerances,
107 const std::vector<double> & integralThresholds,
108 const double smallestCellVolume,
109 const unsigned int maxRecursion,
110 const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap)
111 override;
112
113
114 // void
115 // evaluateBasisData(
116 // std::shared_ptr<const quadrature::QuadratureRuleContainer>
117 // quadratureRuleContainer,
118 // const QuadratureRuleAttributes & quadratureRuleAttributes,
119 // const BasisStorageAttributesBoolMap boolBasisStorageFlagsObj)
120 // override;
121
122 void
123 deleteBasisData() override;
124
125
126
127 // std::shared_ptr<const quadrature::QuadratureRuleContainer>
128 // getCellQuadratureRuleContainer(std::shared_ptr<Storage>>
129 // const QuadratureRuleAttributes &quadratureRuleAttributes) const
130 // override;
131 // functions to get data for a basis function on a given quad point in a
132 // cell
133 Storage
134 getBasisData(const QuadraturePointAttributes &attributes,
135 const size_type basisId) const override;
136 Storage
138 const size_type basisId) const override;
139 Storage
141 const size_type basisId) const override;
142
143 // functions to get data for a basis function on all quad points in a cell
144 Storage
145 getBasisDataInCell(const size_type cellId,
146 const size_type basisId) const override;
147 Storage
149 const size_type basisId) const override;
150 Storage
152 const size_type basisId) const override;
153
154 // functions to get data for all basis functions on all quad points in a
155 // cell
156 Storage
157 getBasisDataInCell(const size_type cellId) const override;
158 Storage
159 getBasisGradientDataInCell(const size_type cellId) const override;
160 Storage
161 getBasisHessianDataInCell(const size_type cellId) const override;
162
163 Storage
164 getJxWInCell(const size_type cellId) const override;
165
166 // functions to get data for all basis functions on all quad points in all
167 // cells
168 const Storage &
169 getBasisDataInAllCells() const override;
170 const Storage &
171 getBasisGradientDataInAllCells() const override;
172 const Storage &
173 getBasisHessianDataInAllCells() const override;
174
175 const Storage &
176 getJxWInAllCells() const override;
177
178 // get overlap of two basis functions in a cell
179 Storage
180 getBasisOverlap(const size_type cellId,
181 const size_type basisId1,
182 const size_type basisId2) const override;
183
184 // get overlap of all the basis functions in a cell
185 Storage
186 getBasisOverlapInCell(const size_type cellId) const override;
187
188 // get overlap of all the basis functions in all cells
189 const Storage &
190 getBasisOverlapInAllCells() const override;
191
192
193 // get the laplace operator in a cell
194 Storage
195 getBasisGradNiGradNjInCell(const size_type cellId) const override;
196
197 // get laplace operator in all cells
198 const Storage &
199 getBasisGradNiGradNjInAllCells() const override;
200
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 // dealii function
216 const dealii::Quadrature<dim> &
218
219 private:
221 std::shared_ptr<
224 std::shared_ptr<const quadrature::QuadratureRuleContainer>
228 std::shared_ptr<Storage> d_basisQuadStorage;
229 std::shared_ptr<Storage> d_JxWStorage;
230 std::shared_ptr<Storage> d_basisGradientParaCellQuadStorage;
231 std::shared_ptr<Storage> d_basisJacobianInvQuadStorage;
232 std::shared_ptr<Storage> d_basisHessianQuadStorage;
233 std::vector<size_type> d_dofsInCell;
234 std::vector<size_type> d_nQuadPointsIncell;
237 std::vector<size_type> d_cellStartIdsBasisQuadStorage;
239 std::shared_ptr<Storage> d_tmpGradientBlock;
241 dealii::Quadrature<dim> d_dealiiQuadratureRule;
242
243 }; // end of CFEBDSOnTheFlyComputeDealii
244 } // end of namespace basis
245} // end of namespace dftefe
247#endif // dftefeCFEBDSOnTheFlyComputeDealii_h
An abstract class to store and access data for a given basis, such as the basis function values on a ...
Definition: CFEBDSOnTheFlyComputeDealii.h:57
const Storage & getJxWInAllCells() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1014
std::vector< size_type > d_cellStartIdsBasisQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:237
Storage getBasisOverlap(const size_type cellId, const size_type basisId1, const size_type basisId2) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1451
std::vector< size_type > d_cellStartIdsBasisJacobianInvQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:235
std::shared_ptr< const CFEBasisDofHandlerDealii< ValueTypeBasisCoeff, memorySpace, dim > > d_feBDH
Definition: CFEBDSOnTheFlyComputeDealii.h:223
const dealii::Quadrature< dim > & getDealiiQuadratureRule() const
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1633
const Storage & getBasisHessianDataInAllCells() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:992
Storage getBasisDataInCell(const size_type cellId, const size_type basisId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1504
std::shared_ptr< Storage > d_JxWStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:229
const Storage & getBasisOverlapInAllCells() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1415
void deleteBasisData() override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1471
const Storage & getBasisDataInAllCells() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:951
const Storage & getBasisGradientDataInAllCells() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:973
std::shared_ptr< const BasisDofHandler > getBasisDofHandler() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1620
void getBasisDataInCellRange(std::pair< size_type, size_type > cellRange, Storage &basisData) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1074
std::shared_ptr< Storage > d_basisGradientParaCellQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:230
void getBasisGradientDataInCellRange(std::pair< size_type, size_type > cellRange, Storage &basisGradientData) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1153
Storage getBasisOverlapInCell(const size_type cellId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1433
Storage getBasisData(const QuadraturePointAttributes &attributes, const size_type basisId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1287
const Storage & getBasisGradNiGradNjInAllCells() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1601
Storage getBasisHessianData(const QuadraturePointAttributes &attributes, const size_type basisId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1368
dealii::Quadrature< dim > d_dealiiQuadratureRule
Definition: CFEBDSOnTheFlyComputeDealii.h:241
size_type d_maxCellBlock
Definition: CFEBDSOnTheFlyComputeDealii.h:238
Storage getBasisGradNiGradNjInCell(const size_type cellId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1581
std::vector< size_type > d_cellStartIdsBasisHessianQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:236
Storage getBasisHessianDataInCell(const size_type cellId, const size_type basisId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1545
std::shared_ptr< Storage > d_basisHessianQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:232
std::shared_ptr< Storage > d_tmpGradientBlock
Definition: CFEBDSOnTheFlyComputeDealii.h:239
typename BasisDataStorage< ValueTypeBasisData, memorySpace >::Storage Storage
Definition: CFEBDSOnTheFlyComputeDealii.h:62
BasisStorageAttributesBoolMap d_basisStorageAttributesBoolMap
Definition: CFEBDSOnTheFlyComputeDealii.h:227
linearAlgebra::LinAlgOpContext< memorySpace > & d_linAlgOpContext
Definition: CFEBDSOnTheFlyComputeDealii.h:240
std::shared_ptr< Storage > d_basisQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:228
QuadratureRuleAttributes d_quadratureRuleAttributes
Definition: CFEBDSOnTheFlyComputeDealii.h:226
Storage getBasisGradientData(const QuadraturePointAttributes &attributes, const size_type basisId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1327
std::shared_ptr< const quadrature::QuadratureRuleContainer > getQuadratureRuleContainer() const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1564
std::shared_ptr< const quadrature::QuadratureRuleContainer > d_quadratureRuleContainer
Definition: CFEBDSOnTheFlyComputeDealii.h:225
Storage getJxWInCell(const size_type cellId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1252
Storage getBasisGradientDataInCell(const size_type cellId, const size_type basisId) const override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:1525
std::shared_ptr< Storage > d_basisJacobianInvQuadStorage
Definition: CFEBDSOnTheFlyComputeDealii.h:231
std::vector< size_type > d_dofsInCell
Definition: CFEBDSOnTheFlyComputeDealii.h:233
void evaluateBasisData(const quadrature::QuadratureRuleAttributes &quadratureRuleAttributes, const BasisStorageAttributesBoolMap basisStorageAttributesBoolMap) override
Definition: CFEBDSOnTheFlyComputeDealii.t.cpp:583
bool d_evaluateBasisData
Definition: CFEBDSOnTheFlyComputeDealii.h:220
std::vector< size_type > d_nQuadPointsIncell
Definition: CFEBDSOnTheFlyComputeDealii.h:234
Definition: CFEBasisDofHandlerDealii.h:57
An abstract class to store and access data for a given basis, such as the basis function values on a ...
Definition: FEBasisDataStorage.h:54
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