Scine::Sparrow  5.0.0
Library for fast and agile quantum chemical calculations with semiempirical methods.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
DFTB2MethodWrapper.h
Go to the documentation of this file.
1 
7 #ifndef SPARROW_DFTB2METHODWRAPPER_H
8 #define SPARROW_DFTB2METHODWRAPPER_H
9 
10 /* Internal Includes */
13 /* External Includes */
14 #include <string>
15 
16 namespace Scine {
17 
18 namespace Utils {
19 class AdditiveElectronicContribution;
20 } // namespace Utils
21 
22 namespace Sparrow {
28 class DFTB2MethodWrapper final : public Utils::CloneInterface<DFTB2MethodWrapper, DFTBMethodWrapper, Core::Calculator> {
29  public:
30  static constexpr const char* model = "DFTB2";
31 
34  // Rule of 5
36  DFTB2MethodWrapper& operator=(const DFTB2MethodWrapper& rhs);
37  DFTB2MethodWrapper(DFTB2MethodWrapper&& rhs) = delete;
38  DFTB2MethodWrapper& operator=(DFTB2MethodWrapper&& rhs) = delete;
40  ~DFTB2MethodWrapper() final;
45  std::string name() const final;
49  void applySettings() final;
54  void addElectronicContribution(std::shared_ptr<Utils::AdditiveElectronicContribution> contribution) final;
55 
56  private:
57  TDDFTBData getTDDFTBDataImpl() const final;
58  bool successfulCalculation() const final;
59  Utils::DensityMatrix getDensityMatrixGuess() const final;
61  void initialize() final;
63  void calculateImpl(Utils::Derivative requiredDerivative) final;
65  const Utils::LcaoMethod& getLcaoMethod() const final;
66  Utils::LcaoMethod& getLcaoMethod() final;
67 
68  dftb::DFTB2 method_;
69 };
70 
71 } /* namespace Sparrow */
72 } /* namespace Scine */
73 
74 #endif /* SPARROW_DFTB2METHODWRAPPER_H */
~DFTB2MethodWrapper() final
Default Destructor.
Definition: DFTB2.h:25
A method wrapper handling DFTB2 calculations, also known as SCC-DFTB, self-consistent charge DFTB...
Definition: DFTB2MethodWrapper.h:28
void addElectronicContribution(std::shared_ptr< Utils::AdditiveElectronicContribution > contribution) final
Function to add a contribution to the electronic DFTB2 Hamiltonian.
Definition: DFTB2MethodWrapper.cpp:117
std::string name() const final
Getter for the name of the underlying method.
Definition: DFTB2MethodWrapper.cpp:87
This function hides the templated generic function in.
void applySettings() final
Function to apply the settings to the underlying method.
Definition: DFTB2MethodWrapper.cpp:47
DFTB2MethodWrapper()
Default Constructor.
Definition: DFTB2MethodWrapper.cpp:28
This class contains the infos needed to perform a TD-DFTB calculation. This way excited states proper...
Definition: TDDFTBData.h:27