DFT-EFE
 
Loading...
Searching...
No Matches
CFEOverlapOperatorContext.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 dftefeCFEOverlapOperatorContext_h
27#define dftefeCFEOverlapOperatorContext_h
28
38#include <memory>
39
40namespace dftefe
41{
42 namespace basis
43 {
56 template <typename ValueTypeOperator,
57 typename ValueTypeOperand,
58 utils::MemorySpace memorySpace,
59 size_type dim>
61 : public linearAlgebra::
62 OperatorContext<ValueTypeOperator, ValueTypeOperand, memorySpace>
63 {
64 public:
71 using ValueType =
73 ValueTypeOperand>;
74
75 using Storage =
77
78 public:
83 const FEBasisManager<ValueTypeOperand,
84 ValueTypeOperator,
85 memorySpace,
86 dim> &feBasisManager,
88 & feBasisDataStorage,
89 const size_type maxCellBlock,
90 const size_type maxFieldBlock,
92 linAlgOpContext);
93
95 const FEBasisManager<ValueTypeOperand,
96 ValueTypeOperator,
97 memorySpace,
98 dim> &feBasisManager,
100 &feBasisDataStorage,
102 linAlgOpContext);
103
105
106 // void
107 // apply(const linearAlgebra::Vector<ValueTypeOperand, memorySpace> &x,
108 // linearAlgberba::Vector<ValueType, memorySpace> &y) const
109 // override;
110
111 void
114 bool updateGhostX = false,
115 bool updateGhostY = false) const override;
116
117 // get overlap of two basis functions in a cell
118 Storage
119 getBasisOverlap(const size_type cellId,
120 const size_type basisId1,
121 const size_type basisId2) const;
122
123 // get overlap of all the basis functions in a cell
124 Storage
125 getBasisOverlapInCell(const size_type cellId) const;
126
127 // get overlap of all the basis functions in all cells
128 const Storage &
130
131 private:
132 const FEBasisManager<ValueTypeOperand,
133 ValueTypeOperator,
134 memorySpace,
136 std::shared_ptr<Storage> d_basisOverlap;
137 std::vector<size_type> d_cellStartIdsBasisOverlap;
138 std::vector<size_type> d_dofsInCell;
142 std::shared_ptr<linearAlgebra::Vector<ValueTypeOperator, memorySpace>>
144
145 }; // end of class CFEOverlapOperatorContext
146 } // end of namespace basis
147} // end of namespace dftefe
149#endif // dftefeCFEOverlapOperatorContext_h
A derived class of linearAlgebra::OperatorContext to encapsulate the action of a discrete operator on...
Definition: CFEOverlapOperatorContext.h:63
const size_type d_maxFieldBlock
Definition: CFEOverlapOperatorContext.h:140
const FEBasisManager< ValueTypeOperand, ValueTypeOperator, memorySpace, dim > * d_feBasisManager
Definition: CFEOverlapOperatorContext.h:135
std::shared_ptr< Storage > d_basisOverlap
Definition: CFEOverlapOperatorContext.h:136
const Storage & getBasisOverlapInAllCells() const
Definition: CFEOverlapOperatorContext.t.cpp:659
bool d_isMassLumping
Definition: CFEOverlapOperatorContext.h:141
Storage getBasisOverlap(const size_type cellId, const size_type basisId1, const size_type basisId2) const
Definition: CFEOverlapOperatorContext.t.cpp:695
std::vector< size_type > d_dofsInCell
Definition: CFEOverlapOperatorContext.h:138
void apply(linearAlgebra::MultiVector< ValueTypeOperand, memorySpace > &X, linearAlgebra::MultiVector< ValueType, memorySpace > &Y, bool updateGhostX=false, bool updateGhostY=false) const override
Definition: CFEOverlapOperatorContext.t.cpp:546
Storage getBasisOverlapInCell(const size_type cellId) const
Definition: CFEOverlapOperatorContext.t.cpp:672
std::vector< size_type > d_cellStartIdsBasisOverlap
Definition: CFEOverlapOperatorContext.h:137
std::shared_ptr< linearAlgebra::Vector< ValueTypeOperator, memorySpace > > d_diagonal
Definition: CFEOverlapOperatorContext.h:143
linearAlgebra::blasLapack::scalar_type< ValueTypeOperator, ValueTypeOperand > ValueType
define ValueType as the superior (bigger set) of the ValueTypeOperator and ValueTypeOperand (e....
Definition: CFEOverlapOperatorContext.h:73
const size_type d_maxCellBlock
Definition: CFEOverlapOperatorContext.h:139
An abstract class to store and access data for a given basis, such as the basis function values on a ...
Definition: FEBasisDataStorage.h:54
An abstract class to encapsulate the partitioning of a finite element basis across multiple processor...
Definition: FEBasisManager.h:44
Definition: LinAlgOpContext.h:38
An class template to encapsulate a MultiVector. A MultiVector is a collection of vectors belonging t...
Definition: MultiVector.h:134
blas::scalar_type< ValueType1, ValueType2 > scalar_type
Definition: BlasLapackTypedef.h:70
MemorySpace
Definition: MemorySpaceType.h:37
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8