DFT-EFE
 
Loading...
Searching...
No Matches
L2ProjectionLinearSolverFunction.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 Bikash Kanungo
24 */
25
26#ifndef dftefeL2ProjectionLinearSolverFunction_h
27#define dftefeL2ProjectionLinearSolverFunction_h
28
29#include <utils/TypeConfig.h>
41#include <vector>
42#include <memory>
43
44namespace dftefe
45{
46 namespace basis
47 {
61 template <typename ValueTypeOperator,
62 typename ValueTypeOperand,
63 utils::MemorySpace memorySpace,
64 size_type dim>
66 : public linearAlgebra::
67 LinearSolverFunction<ValueTypeOperator, ValueTypeOperand, memorySpace>
68 {
69 public:
76 using ValueType =
78 ValueTypeOperand>;
79
80 public:
85 std::shared_ptr<const FEBasisManager<ValueTypeOperand,
86 ValueTypeOperator,
87 memorySpace,
88 dim>> cfeBasisManager,
89 std::shared_ptr<const CFEOverlapOperatorContext<ValueTypeOperator,
90 ValueTypeOperand,
91 memorySpace,
92 dim>>
93 cfeBasisDataStorageOverlapMatrix,
94 std::shared_ptr<
96 cfeBasisDataStorageRhs,
99 ValueTypeOperand>,
100 memorySpace> & inp,
103 linAlgOpContext,
104 const size_type maxCellBlock,
105 const size_type maxFieldBlock);
106
108
109 const linearAlgebra::
110 OperatorContext<ValueTypeOperator, ValueTypeOperand, memorySpace> &
111 getAxContext() const override;
112
113 const linearAlgebra::
114 OperatorContext<ValueTypeOperator, ValueTypeOperand, memorySpace> &
115 getPCContext() const override;
116
117 void
120
121 void
124
126 getRhs() const override;
127
129 getInitialGuess() const override;
130
131 const utils::mpi::MPIComm &
132 getMPIComm() const override;
133
134 private:
135 std::shared_ptr<
136 const basis::
137 FEBasisManager<ValueTypeOperand, ValueTypeOperator, memorySpace, dim>>
139 std::shared_ptr<const CFEOverlapOperatorContext<ValueTypeOperator,
140 ValueTypeOperand,
141 memorySpace,
142 dim>>
144 std::shared_ptr<const linearAlgebra::OperatorContext<ValueTypeOperator,
145 ValueTypeOperand,
146 memorySpace>>
152 std::shared_ptr<const utils::mpi::MPIPatternP2P<memorySpace>>
155 }; // end of class L2ProjectionLinearSolverFunction
156 } // namespace basis
157} // end of namespace dftefe
159#endif // dftefeL2ProjectionLinearSolverFunction_h
A derived class of linearAlgebra::OperatorContext to encapsulate the action of a discrete operator on...
Definition: CFEOverlapOperatorContext.h:63
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
A derived class of linearAlgebra::LinearSolverFunction to encapsulate the L2 Projecton partial differ...
Definition: L2ProjectionLinearSolverFunction.h:68
std::shared_ptr< const utils::mpi::MPIPatternP2P< memorySpace > > d_mpiPatternP2P
Definition: L2ProjectionLinearSolverFunction.h:153
void setSolution(const linearAlgebra::MultiVector< ValueType, memorySpace > &x) override
Definition: L2ProjectionLinearSolverFunction.t.cpp:245
const linearAlgebra::MultiVector< ValueType, memorySpace > d_initial
Definition: L2ProjectionLinearSolverFunction.h:151
const size_type d_maxFieldBlock
Definition: L2ProjectionLinearSolverFunction.h:154
linearAlgebra::PreconditionerType d_pcType
Definition: L2ProjectionLinearSolverFunction.h:150
const utils::mpi::MPIComm & getMPIComm() const override
Definition: L2ProjectionLinearSolverFunction.t.cpp:321
const linearAlgebra::MultiVector< ValueType, memorySpace > & getInitialGuess() const override
Definition: L2ProjectionLinearSolverFunction.t.cpp:308
linearAlgebra::blasLapack::scalar_type< ValueTypeOperator, ValueTypeOperand > ValueType
define ValueType as the superior (bigger set) of the ValueTypeOperator and ValueTypeOperand (e....
Definition: L2ProjectionLinearSolverFunction.h:78
const linearAlgebra::OperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace > & getPCContext() const override
Definition: L2ProjectionLinearSolverFunction.t.cpp:231
std::shared_ptr< const CFEOverlapOperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace, dim > > d_AxContext
Definition: L2ProjectionLinearSolverFunction.h:143
const linearAlgebra::OperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace > & getAxContext() const override
Definition: L2ProjectionLinearSolverFunction.t.cpp:217
linearAlgebra::MultiVector< ValueType, memorySpace > d_b
Definition: L2ProjectionLinearSolverFunction.h:149
std::shared_ptr< const linearAlgebra::OperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace > > d_PCContext
Definition: L2ProjectionLinearSolverFunction.h:147
const linearAlgebra::MultiVector< ValueTypeOperand, memorySpace > & getRhs() const override
Definition: L2ProjectionLinearSolverFunction.t.cpp:292
void getSolution(linearAlgebra::MultiVector< ValueType, memorySpace > &solution) override
Definition: L2ProjectionLinearSolverFunction.t.cpp:262
linearAlgebra::MultiVector< ValueType, memorySpace > d_x
Definition: L2ProjectionLinearSolverFunction.h:148
std::shared_ptr< const basis::FEBasisManager< ValueTypeOperand, ValueTypeOperator, memorySpace, dim > > d_feBasisManager
Definition: L2ProjectionLinearSolverFunction.h:138
const size_type d_maxCellBlock
Definition: L2ProjectionLinearSolverFunction.h:154
Definition: LinAlgOpContext.h:38
An class template to encapsulate a MultiVector. A MultiVector is a collection of vectors belonging t...
Definition: MultiVector.h:134
Abstract class to encapsulate the action of a discrete operator on vectors, matrices,...
Definition: OperatorContext.h:51
Definition: QuadratureValuesContainer.h:39
blas::scalar_type< ValueType1, ValueType2 > scalar_type
Definition: BlasLapackTypedef.h:70
PreconditionerType
Definition: LinearAlgebraTypes.h:41
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