MADNESS 0.10.1
ground_parameters.h
Go to the documentation of this file.
1
2/// \file GroundStateCalculation
3/// \brief Input parameters for a response calculation, read from a specified
4/// archive.
5
6#ifndef MADNESS_APPS_GROUNDPARAMS_H_INCLUDED
7#define MADNESS_APPS_GROUNDPARAMS_H_INCLUDED
8
9#include <utility>
10
11#include "../chem/molecule.h"
12#include "Plot_VTK.h"
13#include "basic_operators.h"
14#include "madness/chem/NWChem.h"// For nwchem interface
18#include "madness/chem/projector.h"// For easy calculation of (1 - \hat{\rho}^0)
22
23using namespace madness;
24
26 // Ground state parameters that are read in from archive
27 std::string inFile{"../moldft.restartdata"};///< Name of input archive to read in ground state
28 bool spinrestricted{true};///< Indicates if ground state calc. was open or closed shell
29 unsigned int num_orbitals{};///< Number of orbitals in ground state
30 Tensor<double> energies{}; ///< Energy of ground state orbitals
31 Tensor<double> occ{}; ///< Occupancy of ground state orbitals
32 double L{}; ///< Box size of ground state - response calcluation is in same box
33 int k{}; ///< Order of polynomial used in ground state
34 Molecule molecule_in{}; ///< The molecule used in ground state calculation
35 std::vector<real_function_3d> g_orbitals{};///< The ground state orbitals
36 std::string xc{}; ///< Name of xc functional used in ground state
37 std::string localize_method{}; ///< Name of localization method used in ground state
38 double converged_for_thresh{}; ///< Convergence threshold used in ground state calculation
39
40 // Default constructor
41public:
42 explicit GroundStateCalculation(World &world) { read(world); }
43
44 explicit GroundStateCalculation(World &world, const std::string &input_file)
45 : inFile{input_file} {
46 read(world);
47 }
48
50
51
52 bool is_spinrestricted() const { return spinrestricted; }
53
54 unsigned int n_orbitals() const { return num_orbitals; }
55
57
58 Tensor<double> get_occ() const { return occ; }
59
60 Molecule molecule() const { return molecule_in; }
61
62 double get_L() const { return L; }
63
64 int get_k() const { return k; }
65
67
68 std::string get_xc() const { return xc; }
69 std::string get_localize_method() const { return localize_method; }
70
71 std::string get_archive() const { return xc; }
72
73 // Initializes ResponseParameters using the contents of file \c filename
74 void read(World &world) {
75 // Save the filename
76
77 unsigned int dummyversion;
78 double dummy1;
79 std::vector<int> dummy2;
80
81 archive::ParallelInputArchive input(world, inFile.c_str());
82 input &dummyversion;
83 input &dummy1; // double
84 input &spinrestricted; // bool
85 input &L; // double box size
86 input &k; // int wavelet order
87 input &molecule_in; // Molecule
88 input &xc; // std:string xc functional
89 input &localize_method;// std:string localize method
90 input &converged_for_thresh; // double convergence threshold used for ground state
91 input &num_orbitals; // int
92 input &energies; // Tensor<double> orbital energies
93 input &occ; // Tensor<double> orbital occupations
94 input &dummy2; // std::vector<int> sets of orbitals(?)
95
96 // Check that order is positive and less than 30
97 if (k < 1 or k > 30) {
98 if (world.rank() == 0)
99 print("\n ***PLEASE NOTE***\n Invalid wavelet order read from "
100 "archive, setting to 8.\n This seems to happen when the default "
101 "wavelet order is used in moldft.");
102 k = 8;
103 }
104 // Set this so we can read in whats
105 // written in the archive
107 // Possible to call this function multiple times now
108 // Do this to ensure everything works.
109 world.gop.fence();
110 g_orbitals.clear();
111 world.gop.fence();
112 // Read in ground state orbitals
113 for (unsigned int i = 0; i < num_orbitals; i++) {
114 real_function_3d reader;
115 input &reader;
116 g_orbitals.push_back(reader);
117 }
118 world.gop.fence();
119 //projector_irrep c2v("c2v");
120 //g_orbitals = c2v(g_orbitals);
121 // Clean up
122 truncate(world, g_orbitals);
123 }
124
125 // Prints all information
126 void print_params() const {
127 madness::print("\n Ground State Parameters");
128 madness::print(" -----------------------");
129 madness::print(" Ground State Archive:", inFile);
130 madness::print(" Ground State Functional:", xc);
131 madness::print(" Localize Method Functional:", localize_method);
132 madness::print(" Spin Restricted:", spinrestricted);
133 madness::print(" Number of orbitals:", num_orbitals);
134 madness::print(" L:", L);
135 madness::print(" Wavelet Order:", k);
136 madness::print(" Orbital Energies:", energies);
137 }
138};
139
140#endif
Operators for the molecular HF and DFT code.
Definition ground_parameters.h:25
std::string inFile
Name of input archive to read in ground state.
Definition ground_parameters.h:27
bool spinrestricted
Indicates if ground state calc. was open or closed shell.
Definition ground_parameters.h:28
std::string xc
Name of xc functional used in ground state.
Definition ground_parameters.h:36
std::string get_localize_method() const
Definition ground_parameters.h:69
GroundStateCalculation(World &world)
Definition ground_parameters.h:42
double L
Box size of ground state - response calcluation is in same box.
Definition ground_parameters.h:32
double get_L() const
Definition ground_parameters.h:62
std::vector< real_function_3d > g_orbitals
The ground state orbitals.
Definition ground_parameters.h:35
std::string get_xc() const
Definition ground_parameters.h:68
vector_real_function_3d & orbitals()
Definition ground_parameters.h:66
std::string localize_method
Name of localization method used in ground state.
Definition ground_parameters.h:37
Molecule molecule_in
The molecule used in ground state calculation.
Definition ground_parameters.h:34
Tensor< double > occ
Occupancy of ground state orbitals.
Definition ground_parameters.h:31
GroundStateCalculation(World &world, const std::string &input_file)
Definition ground_parameters.h:44
unsigned int n_orbitals() const
Definition ground_parameters.h:54
void print_params() const
Definition ground_parameters.h:126
double converged_for_thresh
Convergence threshold used in ground state calculation.
Definition ground_parameters.h:38
int k
Order of polynomial used in ground state.
Definition ground_parameters.h:33
bool is_spinrestricted() const
Definition ground_parameters.h:52
int get_k() const
Definition ground_parameters.h:64
Tensor< double > get_energies() const
Definition ground_parameters.h:56
void read(World &world)
Definition ground_parameters.h:74
unsigned int num_orbitals
Number of orbitals in ground state.
Definition ground_parameters.h:29
Molecule molecule() const
Definition ground_parameters.h:60
Tensor< double > get_occ() const
Definition ground_parameters.h:58
Tensor< double > energies
Energy of ground state orbitals.
Definition ground_parameters.h:30
GroundStateCalculation(const GroundStateCalculation &other)=default
std::string get_archive() const
Definition ground_parameters.h:71
static void set_k(int value)
Sets the default wavelet order.
Definition funcdefaults.h:170
Definition molecule.h:124
A tensor is a multidimensional array.
Definition tensor.h:317
void fence(bool debug=false)
Synchronizes all processes in communicator AND globally ensures no pending AM or tasks.
Definition worldgop.cc:161
A parallel world class.
Definition world.h:132
ProcessID rank() const
Returns the process rank in this World (same as MPI_Comm_rank()).
Definition world.h:320
WorldGopInterface & gop
Global operations.
Definition world.h:207
An archive for storing local or parallel data, wrapping a BinaryFstreamInputArchive.
Definition parallel_archive.h:366
Provides FunctionDefaults and utilities for coordinate transformation.
Provides typedefs to hide use of templates and to increase interoperability.
Namespace for all elements and tools of MADNESS.
Definition DFParameters.h:10
void truncate(World &world, response_space &v, double tol, bool fence)
Definition basic_operators.cc:30
std::vector< real_function_3d > vector_real_function_3d
Definition functypedefs.h:94
void print(const T &t, const Ts &... ts)
Print items to std::cout (items separated by spaces) and terminate with a new line.
Definition print.h:225
Defines and implements most of Tensor.