DFT-EFE
 
Loading...
Searching...
No Matches
Hamiltonian.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 dftefeHamiltonian_h
27#define dftefeHamiltonian_h
28
29namespace dftefe
30{
31 namespace ksdft
32 {
33 template <typename ValueTypeOperator, utils::MemorySpace memorySpace>
35 {
36 public:
37 virtual ~Hamiltonian() = default;
38 virtual void
40 &cellWiseStorage) const = 0;
41 virtual void
45 bool updateGhostX,
46 bool updateGhostY) const = 0;
47 virtual bool
48 hasLocalComponent() const = 0;
49 virtual bool
51
52 }; // end of Hamiltonian
53 } // end of namespace ksdft
54} // end of namespace dftefe
55#endif // dftefeHamiltonian_h
Definition: Hamiltonian.h:35
virtual bool hasLocalComponent() const =0
virtual void getLocal(utils::MemoryStorage< ValueTypeOperator, memorySpace > &cellWiseStorage) const =0
virtual ~Hamiltonian()=default
virtual bool hasNonLocalComponent() const =0
virtual void applyNonLocal(linearAlgebra::MultiVector< ValueTypeOperator, memorySpace > &X, linearAlgebra::MultiVector< ValueTypeOperator, memorySpace > &Y, bool updateGhostX, bool updateGhostY) const =0
An class template to encapsulate a MultiVector. A MultiVector is a collection of vectors belonging t...
Definition: MultiVector.h:134
Definition: MemoryStorage.h:38
dealii includes
Definition: AtomFieldDataSpherical.cpp:31