DFT-EFE
 
Loading...
Searching...
No Matches
ElectrostaticLocalFE.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 dftefeElectrostaticLocalFE_h
27#define dftefeElectrostaticLocalFE_h
28
41
42namespace dftefe
43{
44 namespace ksdft
45 {
46 template <typename ValueTypeBasisData,
47 typename ValueTypeBasisCoeff,
48 typename ValueTypeWaveFnBasisData,
49 utils::MemorySpace memorySpace,
50 size_type dim>
52 : public ElectrostaticFE<ValueTypeBasisData,
53 ValueTypeBasisCoeff,
54 ValueTypeWaveFnBasisData,
55 memorySpace,
56 dim>
57 {
58 public:
59 using ValueType = typename ElectrostaticFE<ValueTypeBasisData,
60 ValueTypeBasisCoeff,
61 ValueTypeWaveFnBasisData,
62 memorySpace,
63 dim>::ValueType;
64 using Storage = typename ElectrostaticFE<ValueTypeBasisData,
65 ValueTypeBasisCoeff,
66 ValueTypeWaveFnBasisData,
67 memorySpace,
68 dim>::Storage;
69 using RealType = typename ElectrostaticFE<ValueTypeBasisData,
70 ValueTypeBasisCoeff,
71 ValueTypeWaveFnBasisData,
72 memorySpace,
73 dim>::RealType;
74
75 public:
80 const std::vector<utils::Point> &atomCoordinates,
81 const std::vector<double> & atomCharges,
82 const std::vector<double> & smearedChargeRadius,
84 & electronChargeDensity,
85 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
86 ValueTypeBasisData,
87 memorySpace,
88 dim>> feBMTotalCharge,
89 std::shared_ptr<
91 feBDTotalChargeStiffnessMatrix,
92 std::shared_ptr<
94 feBDNuclearChargeRhs,
95 std::shared_ptr<
97 feBDElectronicChargeRhs,
98 std::shared_ptr<
99 const basis::FEBasisDataStorage<ValueTypeWaveFnBasisData,
100 memorySpace>> feBDHamiltonian,
101 const utils::ScalarSpatialFunctionReal &externalPotentialFunction,
103 linAlgOpContext,
104 const size_type maxCellBlock,
105 bool useDealiiMatrixFreePoissonSolve = true);
106
108 const std::vector<utils::Point> &atomCoordinates,
109 const std::vector<double> & atomCharges,
110 const std::vector<double> & smearedChargeRadius,
112 & electronChargeDensity,
113 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
114 ValueTypeBasisData,
115 memorySpace,
116 dim>> feBMTotalCharge,
117 std::shared_ptr<
119 feBDTotalChargeStiffnessMatrix,
120 std::shared_ptr<
122 feBDNuclearChargeRhs,
123 std::shared_ptr<
125 feBDElectronicChargeRhs,
126 std::shared_ptr<
128 feBDNuclChargeStiffnessMatrixNumSol,
129 std::shared_ptr<
131 feBDNuclChargeRhsNumSol,
132 std::shared_ptr<
133 const basis::FEBasisDataStorage<ValueTypeWaveFnBasisData,
134 memorySpace>> feBDHamiltonian,
135 const utils::ScalarSpatialFunctionReal &externalPotentialFunction,
137 linAlgOpContext,
138 const size_type maxCellBlock,
139 bool useDealiiMatrixFreePoissonSolve = true);
140
141 // used if delta rho approach is taken with phi total from 1D KS solve
143 const std::vector<utils::Point> &atomCoordinates,
144 const std::vector<double> & atomCharges,
145 const std::vector<double> & smearedChargeRadius,
147 &atomicElectronChargeDensity,
148 const quadrature::QuadratureValuesContainer<ValueTypeBasisCoeff,
149 memorySpace>
150 &atomicTotalElecPotNuclearQuad,
151 const quadrature::QuadratureValuesContainer<ValueTypeBasisCoeff,
152 memorySpace>
153 &atomicTotalElecPotElectronicQuad,
154 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
155 ValueTypeBasisData,
156 memorySpace,
157 dim>>
158 feBMTotalCharge, // will be same as bc of totalCharge -
159 // atomicTotalCharge
160 std::shared_ptr<
162 feBDTotalChargeStiffnessMatrix,
163 std::shared_ptr<
165 feBDNuclearChargeRhs,
166 std::shared_ptr<
168 feBDElectronicChargeRhs,
169 std::shared_ptr<
170 const basis::FEBasisDataStorage<ValueTypeWaveFnBasisData,
171 memorySpace>> feBDHamiltonian,
172 const utils::ScalarSpatialFunctionReal &externalPotentialFunction,
174 linAlgOpContext,
175 const size_type maxCellBlock,
176 const bool useDealiiMatrixFreePoissonSolve = true);
177
178
180
181 void
183 const std::vector<utils::Point> & atomCoordinates,
184 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
185 ValueTypeBasisData,
186 memorySpace,
187 dim>> feBMTotalCharge,
188 std::shared_ptr<
190 feBDTotalChargeStiffnessMatrix,
191 std::shared_ptr<
193 feBDNuclearChargeRhs,
194 std::shared_ptr<
196 feBDElectronicChargeRhs,
197 std::shared_ptr<
198 const basis::FEBasisDataStorage<ValueTypeWaveFnBasisData,
199 memorySpace>> feBDHamiltonian);
200
201 void
203 const std::vector<utils::Point> & atomCoordinates,
204 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
205 ValueTypeBasisData,
206 memorySpace,
207 dim>> feBMTotalCharge,
208 std::shared_ptr<
210 feBDTotalChargeStiffnessMatrix,
211 std::shared_ptr<
213 feBDNuclearChargeRhs,
214 std::shared_ptr<
216 feBDElectronicChargeRhs,
217 std::shared_ptr<
219 feBDNuclChargeStiffnessMatrixNumSol,
220 std::shared_ptr<
222 feBDNuclChargeRhsNumSol,
223 std::shared_ptr<
224 const basis::FEBasisDataStorage<ValueTypeWaveFnBasisData,
225 memorySpace>> feBDHamiltonian);
226
227 // used if delta rho approach is taken with phi total from 1D KS solve
228 void
230 const std::vector<utils::Point> &atomCoordinates,
232 &atomicElectronChargeDensity,
233 const quadrature::QuadratureValuesContainer<ValueTypeBasisCoeff,
234 memorySpace>
235 &atomicTotalElecPotNuclearQuad,
236 const quadrature::QuadratureValuesContainer<ValueTypeBasisCoeff,
237 memorySpace>
238 &atomicTotalElecPotElectronicQuad,
239 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
240 ValueTypeBasisData,
241 memorySpace,
242 dim>> feBMTotalCharge,
243 std::shared_ptr<
245 feBDTotalChargeStiffnessMatrix,
246 std::shared_ptr<
248 feBDNuclearChargeRhs,
249 std::shared_ptr<
251 feBDElectronicChargeRhs,
252 std::shared_ptr<
253 const basis::FEBasisDataStorage<ValueTypeWaveFnBasisData,
254 memorySpace>> feBDHamiltonian);
255
256 void
259 &electronChargeDensity);
260
261 void
262 getLocal(Storage &cellWiseStorage) const override;
263
264 void
265 evalEnergy();
266
268 getEnergy() const override;
269
271 getFunctionalDerivative() const override;
272
273 private:
274 /* Solves the nuclear potential problem, gets \sum \integral b_sm*V_sm ,
275 * gets \sum \integral V_sm * rho, \sum V_smAtRhoQuadPts
276 */
277 void
279 std::shared_ptr<
281 feBDNuclearChargeStiffnessMatrix,
282 std::shared_ptr<
284 feBDNuclearChargeRhs);
285
291 std::vector<utils::Point> d_atomCoordinates;
293 const std::vector<double> d_atomCharges;
294 const std::vector<double> d_smearedChargeRadius;
297
298 // Causing memory errors: Change these to smart pointers
303 const quadrature::QuadratureValuesContainer<ValueTypeBasisCoeff,
304 memorySpace>
312
323
326 std::vector<linearAlgebra::MultiVector<ValueType, memorySpace> *>
328
329 std::vector<std::shared_ptr<basis::FEBasisManager<ValueTypeBasisCoeff,
330 ValueTypeBasisData,
331 memorySpace,
332 dim>>>
334
335 std::shared_ptr<const basis::FEBasisOperations<ValueTypeBasisCoeff,
336 ValueTypeBasisData,
337 memorySpace,
338 dim>>
340 std::shared_ptr<const basis::FEBasisOperations<ValueTypeBasisCoeff,
341 ValueTypeBasisData,
342 memorySpace,
343 dim>>
345 std::shared_ptr<const basis::FEBasisOperations<ValueTypeBasisCoeff,
346 ValueTypeWaveFnBasisData,
347 memorySpace,
348 dim>>
350
351 std::shared_ptr<const basis::FEBasisManager<ValueTypeBasisCoeff,
352 ValueTypeBasisData,
353 memorySpace,
354 dim>>
356 std::shared_ptr<
359 std::shared_ptr<
362 std::shared_ptr<
365 std::shared_ptr<
368 std::shared_ptr<linearAlgebra::LinAlgOpContext<memorySpace>>
370 std::vector<RealType> d_nuclearChargeQuad;
372 std::shared_ptr<
374 ValueTypeBasisCoeff,
375 memorySpace,
376 dim>>
378 std::shared_ptr<
380 ValueTypeBasisCoeff,
381 memorySpace,
382 dim>>
385
387
388 std::map<
389 std::string,
390 std::shared_ptr<
393
394 }; // end of class ElectrostaticLocalFE
395 } // end of namespace ksdft
396} // end of namespace dftefe
398#endif // dftefeElectrostaticLocalFE_h
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: FEBasisOperations.h:57
A derived class of linearAlgebra::LinearSolverFunction to encapsulate the Poisson partial differentia...
Definition: PoissonLinearSolverFunctionFE.h:77
A derived class of linearAlgebra::LinearSolverFunction to encapsulate the Poisson partial differentia...
Definition: PoissonSolverDealiiMatrixFreeFE.h:73
A derived class of linearAlgebra::OperatorContext to encapsulate the action of a discrete operator on...
Definition: ElectrostaticFE.h:65
Definition: ElectrostaticLocalFE.h:57
quadrature::QuadratureValuesContainer< ValueType, memorySpace > * d_correctionPotRhoQuad
Definition: ElectrostaticLocalFE.h:311
void getLocal(Storage &cellWiseStorage) const override
Definition: ElectrostaticLocalFE.t.cpp:1426
std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > d_feBDNuclChargeRhsNumSol
Definition: ElectrostaticLocalFE.h:367
std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > d_feBDElectronicChargeRhs
Definition: ElectrostaticLocalFE.h:361
typename ElectrostaticFE< ValueTypeBasisData, ValueTypeBasisCoeff, ValueTypeWaveFnBasisData, memorySpace, dim >::ValueType ValueType
Definition: ElectrostaticLocalFE.h:63
RealType d_energy
Definition: ElectrostaticLocalFE.h:295
~ElectrostaticLocalFE()
Definition: ElectrostaticLocalFE.t.cpp:371
const size_type d_numAtoms
Definition: ElectrostaticLocalFE.h:292
std::vector< utils::Point > d_atomCoordinates
Definition: ElectrostaticLocalFE.h:291
const quadrature::QuadratureValuesContainer< RealType, memorySpace > * d_electronChargeDensity
Definition: ElectrostaticLocalFE.h:302
void evalEnergy()
Definition: ElectrostaticLocalFE.t.cpp:1666
std::vector< linearAlgebra::MultiVector< ValueType, memorySpace > * > d_nuclearChargesPotential
Definition: ElectrostaticLocalFE.h:327
std::shared_ptr< electrostatics::PoissonSolverDealiiMatrixFreeFE< ValueTypeBasisData, ValueTypeBasisCoeff, memorySpace, dim > > d_poissonSolverDealiiMatFree
Definition: ElectrostaticLocalFE.h:383
utils::ConditionalOStream d_rootCout
Definition: ElectrostaticLocalFE.h:386
const bool d_useDealiiMatrixFreePoissonSolve
Definition: ElectrostaticLocalFE.h:286
std::shared_ptr< electrostatics::PoissonLinearSolverFunctionFE< ValueTypeBasisData, ValueTypeBasisCoeff, memorySpace, dim > > d_linearSolverFunction
Definition: ElectrostaticLocalFE.h:377
quadrature::QuadratureValuesContainer< ValueType, memorySpace > * d_scratchPotHamQuad
Definition: ElectrostaticLocalFE.h:318
std::vector< RealType > d_nuclearChargeQuad
Definition: ElectrostaticLocalFE.h:370
quadrature::QuadratureValuesContainer< RealType, memorySpace > * d_nuclearChargesDensity
Definition: ElectrostaticLocalFE.h:300
const quadrature::QuadratureValuesContainer< ValueType, memorySpace > & getFunctionalDerivative() const override
Definition: ElectrostaticLocalFE.t.cpp:1946
std::shared_ptr< const basis::FEBasisOperations< ValueTypeBasisCoeff, ValueTypeBasisData, memorySpace, dim > > d_feBasisOpNuclear
Definition: ElectrostaticLocalFE.h:339
const std::vector< double > d_atomCharges
Definition: ElectrostaticLocalFE.h:293
const size_type d_numComponents
Definition: ElectrostaticLocalFE.h:290
const size_type d_maxCellBlock
Definition: ElectrostaticLocalFE.h:289
std::shared_ptr< linearAlgebra::LinAlgOpContext< memorySpace > > d_linAlgOpContext
Definition: ElectrostaticLocalFE.h:369
std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > d_feBDNuclearChargeRhs
Definition: ElectrostaticLocalFE.h:364
typename ElectrostaticFE< ValueTypeBasisData, ValueTypeBasisCoeff, ValueTypeWaveFnBasisData, memorySpace, dim >::RealType RealType
Definition: ElectrostaticLocalFE.h:73
RealType d_totNuclearChargeQuad
Definition: ElectrostaticLocalFE.h:384
const quadrature::QuadratureValuesContainer< ValueTypeBasisCoeff, memorySpace > * d_atomicTotalElecPotNuclearQuad
Definition: ElectrostaticLocalFE.h:305
std::shared_ptr< const basis::FEBasisOperations< ValueTypeBasisCoeff, ValueTypeWaveFnBasisData, memorySpace, dim > > d_feBasisOpHamiltonian
Definition: ElectrostaticLocalFE.h:349
bool d_isNumericalVSelfSolve
Definition: ElectrostaticLocalFE.h:287
quadrature::QuadratureValuesContainer< ValueType, memorySpace > * d_scratchPotNuclearQuad
Definition: ElectrostaticLocalFE.h:322
void reinitField(const quadrature::QuadratureValuesContainer< RealType, memorySpace > &electronChargeDensity)
Definition: ElectrostaticLocalFE.t.cpp:1245
typename ElectrostaticFE< ValueTypeBasisData, ValueTypeBasisCoeff, ValueTypeWaveFnBasisData, memorySpace, dim >::Storage Storage
Definition: ElectrostaticLocalFE.h:68
std::map< std::string, std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > > d_feBasisDataStorageRhsMap
Definition: ElectrostaticLocalFE.h:392
quadrature::QuadratureValuesContainer< ValueType, memorySpace > * d_correctionPotHamQuad
Definition: ElectrostaticLocalFE.h:309
const quadrature::QuadratureValuesContainer< ValueTypeBasisCoeff, memorySpace > * d_atomicTotalElecPotElectronicQuad
Definition: ElectrostaticLocalFE.h:305
quadrature::QuadratureValuesContainer< RealType, memorySpace > * d_scratchDensRhoQuad
Definition: ElectrostaticLocalFE.h:316
size_type d_cellTimesNumVecPoisson
Definition: ElectrostaticLocalFE.h:371
quadrature::QuadratureValuesContainer< RealType, memorySpace > d_atomicElectronChargeDensity
Definition: ElectrostaticLocalFE.h:307
std::shared_ptr< const basis::FEBasisManager< ValueTypeBasisCoeff, ValueTypeBasisData, memorySpace, dim > > d_feBMTotalCharge
Definition: ElectrostaticLocalFE.h:355
std::vector< std::shared_ptr< basis::FEBasisManager< ValueTypeBasisCoeff, ValueTypeBasisData, memorySpace, dim > > > d_feBMNuclearCharge
Definition: ElectrostaticLocalFE.h:333
const std::vector< double > d_smearedChargeRadius
Definition: ElectrostaticLocalFE.h:294
std::shared_ptr< const basis::FEBasisOperations< ValueTypeBasisCoeff, ValueTypeBasisData, memorySpace, dim > > d_feBasisOpElectronic
Definition: ElectrostaticLocalFE.h:344
std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > d_feBDTotalChargeStiffnessMatrix
Definition: ElectrostaticLocalFE.h:358
void reinitBasis(const std::vector< utils::Point > &atomCoordinates, std::shared_ptr< const basis::FEBasisManager< ValueTypeBasisCoeff, ValueTypeBasisData, memorySpace, dim > > feBMTotalCharge, std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > feBDTotalChargeStiffnessMatrix, std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > feBDNuclearChargeRhs, std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > feBDElectronicChargeRhs, std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeWaveFnBasisData, memorySpace > > feBDHamiltonian)
Definition: ElectrostaticLocalFE.t.cpp:746
RealType getEnergy() const override
Definition: ElectrostaticLocalFE.t.cpp:1925
linearAlgebra::MultiVector< ValueTypeBasisCoeff, memorySpace > * d_totalChargePotential
Definition: ElectrostaticLocalFE.h:325
quadrature::QuadratureValuesContainer< ValueType, memorySpace > * d_scratchPotRhoQuad
Definition: ElectrostaticLocalFE.h:320
quadrature::QuadratureValuesContainer< RealType, memorySpace > * d_scratchDensNuclearQuad
Definition: ElectrostaticLocalFE.h:314
const utils::ScalarSpatialFunctionReal & d_externalPotentialFunction
Definition: ElectrostaticLocalFE.h:296
void nuclearPotentialSolve(std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > feBDNuclearChargeStiffnessMatrix, std::shared_ptr< const basis::FEBasisDataStorage< ValueTypeBasisData, memorySpace > > feBDNuclearChargeRhs)
Definition: ElectrostaticLocalFE.t.cpp:1472
bool d_isDeltaRhoSolve
Definition: ElectrostaticLocalFE.h:288
Definition: LinAlgOpContext.h:38
An class template to encapsulate a MultiVector. A MultiVector is a collection of vectors belonging t...
Definition: MultiVector.h:134
Definition: QuadratureValuesContainer.h:39
Provides an interface to print based on whether a certain condition is met or not....
Definition: ConditionalOStream.h:47
Definition: Function.h:10
MemorySpace
Definition: MemorySpaceType.h:37
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8