DFT-EFE
 
Loading...
Searching...
No Matches
KohnShamEigenSolver.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 dftefeKohnShamEigenSolver_h
27#define dftefeKohnShamEigenSolver_h
28
36#include <memory>
38#include <utils/Profiler.h>
39
40namespace dftefe
41{
42 namespace ksdft
43 {
54 template <typename ValueTypeOperator,
55 typename ValueTypeOperand,
56 utils::MemorySpace memorySpace>
58 : public linearAlgebra::HermitianIterativeEigenSolver<ValueTypeOperator,
59 ValueTypeOperand,
60 memorySpace>
61 {
62 public:
69 using ValueType = typename linearAlgebra::HermitianIterativeEigenSolver<
70 ValueTypeOperator,
71 ValueTypeOperand,
72 memorySpace>::ValueType;
73 using RealType = typename linearAlgebra::HermitianIterativeEigenSolver<
74 ValueTypeOperator,
75 ValueTypeOperand,
76 memorySpace>::RealType;
77 using OpContext = typename linearAlgebra::HermitianIterativeEigenSolver<
78 ValueTypeOperator,
79 ValueTypeOperand,
80 memorySpace>::OpContext;
81
82 public:
90 const size_type numElectrons,
91 const double smearingTemperature,
92 const double fermiEnergyTolerance,
93 const double fracOccupancyTolerance,
94 const double eigenSolveResidualTolerance,
95 const size_type maxChebyshevFilterPass,
97 &waveFunctionSubspaceGuess,
99 bool isResidualChebyshevFilter = true,
100 const size_type waveFunctionBlockSize = 0,
101 const OpContext &MLanczos =
103 ValueTypeOperand,
104 memorySpace>(),
105 const OpContext &MInvLanczos =
107 ValueTypeOperand,
108 memorySpace>());
109
115
116 void
119 &waveFunctionSubspaceGuess,
121 const OpContext & MLanczos =
123 ValueTypeOperand,
124 memorySpace>(),
125 const OpContext &MInvLanczos =
127 ValueTypeOperand,
128 memorySpace>());
129
130 void
131 reinitBounds(double wantedSpectrumLowerBound,
132 double wantedSpectrumUpperBound);
133
136
137 std::vector<RealType>
139
140 std::vector<RealType>
142
143 void
144 setChebyPolyScalingFactor(double scalingFactor);
145
146 void
148
149 void
151
153 solve(const OpContext & kohnShamOperator,
154 std::vector<RealType> &kohnShamEnergies,
156 & kohnShamWaveFunctions,
157 bool computeWaveFunctions = false,
158 const OpContext &M =
160 ValueTypeOperand,
161 memorySpace>(),
162 const OpContext &MInv =
164 ValueTypeOperand,
165 memorySpace>()) override;
166
169
172
173 private:
187 std::vector<RealType> d_fracOccupancy;
188 std::vector<RealType> d_eigSolveResNorm;
198
199 std::shared_ptr<
201 ValueTypeOperand,
202 memorySpace>>
204
210
211 }; // end of class KohnShamEigenSolver
212 } // namespace ksdft
213} // end of namespace dftefe
215#endif // dftefeKohnShamEigenSolver_h
Definition: KohnShamEigenSolver.h:61
RealType getFermiEnergy()
Definition: KohnShamEigenSolver.t.cpp:509
typename linearAlgebra::HermitianIterativeEigenSolver< ValueTypeOperator, ValueTypeOperand, memorySpace >::OpContext OpContext
Definition: KohnShamEigenSolver.h:80
bool d_isSolved
Definition: KohnShamEigenSolver.h:190
typename linearAlgebra::HermitianIterativeEigenSolver< ValueTypeOperator, ValueTypeOperand, memorySpace >::ValueType ValueType
define ValueType as the superior (bigger set) of the ValueTypeOperator and ValueTypeOperand (e....
Definition: KohnShamEigenSolver.h:72
size_type d_maxChebyshevFilterPass
Definition: KohnShamEigenSolver.h:178
std::shared_ptr< linearAlgebra::ChebyshevFilteredEigenSolver< ValueTypeOperator, ValueTypeOperand, memorySpace > > d_chfsi
Definition: KohnShamEigenSolver.h:203
double d_eigenSolveResidualTolerance
Definition: KohnShamEigenSolver.h:177
const size_type d_numElectrons
Definition: KohnShamEigenSolver.h:191
double d_smearingTemperature
Definition: KohnShamEigenSolver.h:174
bool d_isBoundKnown
Definition: KohnShamEigenSolver.h:195
linearAlgebra::EigenSolverError solve(const OpContext &kohnShamOperator, std::vector< RealType > &kohnShamEnergies, linearAlgebra::MultiVector< ValueType, memorySpace > &kohnShamWaveFunctions, bool computeWaveFunctions=false, const OpContext &M=linearAlgebra::IdentityOperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace >(), const OpContext &MInv=linearAlgebra::IdentityOperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace >()) override
Definition: KohnShamEigenSolver.t.cpp:164
void setResidualChebyshevFilterFlag(bool flag)
Definition: KohnShamEigenSolver.t.cpp:154
const OpContext * d_MInvLanczos
Definition: KohnShamEigenSolver.h:186
void setChebyshevPolynomialDegree(size_type chebyPolyDeg)
Definition: KohnShamEigenSolver.t.cpp:143
utils::ConditionalOStream d_rootCout
Definition: KohnShamEigenSolver.h:192
linearAlgebra::MultiVector< ValueType, memorySpace > & getFilteredSubspace()
Definition: KohnShamEigenSolver.t.cpp:559
std::vector< RealType > getEigenSolveResidualNorm()
Definition: KohnShamEigenSolver.t.cpp:541
const OpContext * d_MLanczos
Definition: KohnShamEigenSolver.h:185
bool d_setChebyPolDegExternally
Definition: KohnShamEigenSolver.h:197
linearAlgebra::MultiVector< ValueType, memorySpace > & getOrthogonalizedFilteredSubspace()
Definition: KohnShamEigenSolver.t.cpp:577
std::vector< RealType > d_fracOccupancy
Definition: KohnShamEigenSolver.h:187
RealType d_fermiEnergy
Definition: KohnShamEigenSolver.h:189
linearAlgebra::Vector< ValueTypeOperand, memorySpace > * d_lanczosGuess
Definition: KohnShamEigenSolver.h:184
size_type d_waveFunctionBlockSize
Definition: KohnShamEigenSolver.h:181
std::vector< RealType > d_eigSolveResNorm
Definition: KohnShamEigenSolver.h:188
~KohnShamEigenSolver()=default
Default Destructor.
double d_wantedSpectrumLowerBound
Definition: KohnShamEigenSolver.h:193
void reinitBasis(linearAlgebra::MultiVector< ValueTypeOperand, memorySpace > &waveFunctionSubspaceGuess, linearAlgebra::Vector< ValueTypeOperand, memorySpace > &lanczosGuess, const OpContext &MLanczos=linearAlgebra::IdentityOperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace >(), const OpContext &MInvLanczos=linearAlgebra::IdentityOperatorContext< ValueTypeOperator, ValueTypeOperand, memorySpace >())
Definition: KohnShamEigenSolver.t.cpp:95
void reinitBounds(double wantedSpectrumLowerBound, double wantedSpectrumUpperBound)
Definition: KohnShamEigenSolver.t.cpp:119
void setChebyPolyScalingFactor(double scalingFactor)
Definition: KohnShamEigenSolver.t.cpp:133
size_type d_numWantedEigenvalues
Definition: KohnShamEigenSolver.h:180
utils::Profiler d_p
Definition: KohnShamEigenSolver.h:208
double d_chebyPolyScalingFactor
Definition: KohnShamEigenSolver.h:196
bool d_isResidualChebyFilter
Definition: KohnShamEigenSolver.h:209
linearAlgebra::MultiVector< ValueType, memorySpace > * d_filteredSubspace
Definition: KohnShamEigenSolver.h:207
typename linearAlgebra::HermitianIterativeEigenSolver< ValueTypeOperator, ValueTypeOperand, memorySpace >::RealType RealType
Definition: KohnShamEigenSolver.h:76
double d_fracOccupancyTolerance
Definition: KohnShamEigenSolver.h:176
size_type d_chebyshevPolynomialDegree
Definition: KohnShamEigenSolver.h:179
std::vector< RealType > getFractionalOccupancy()
Definition: KohnShamEigenSolver.t.cpp:525
linearAlgebra::MultiVector< ValueTypeOperand, memorySpace > * d_waveFunctionSubspaceGuess
Definition: KohnShamEigenSolver.h:183
double d_fermiEnergyTolerance
Definition: KohnShamEigenSolver.h:175
linearAlgebra::MultiVector< ValueType, memorySpace > * d_filteredSubspaceOrtho
Definition: KohnShamEigenSolver.h:206
double d_wantedSpectrumUpperBound
Definition: KohnShamEigenSolver.h:194
A derived class of OperatorContext to encapsulate the action of a discrete operator on vectors,...
Definition: ChebyshevFilteredEigenSolver.h:63
Abstract class to encapsulate the action of a discrete operator on vectors, matrices,...
Definition: IdentityOperatorContext.h:53
An class template to encapsulate a MultiVector. A MultiVector is a collection of vectors belonging t...
Definition: MultiVector.h:134
A class that encapsulates a vector. This is a vector in the mathematical sense and not in the sense o...
Definition: Vector.h:122
Provides an interface to print based on whether a certain condition is met or not....
Definition: ConditionalOStream.h:47
Definition: Profiler.h:44
MemorySpace
Definition: MemorySpaceType.h:37
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8
Definition: LinearAlgebraTypes.h:127