-
Notifications
You must be signed in to change notification settings - Fork 2
/
cclambda.h
67 lines (50 loc) · 1.42 KB
/
cclambda.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef CCLAMBDA_H
#define CCLAMBDA_H
#include "hamiltonian.h"
#include "ccwfn.h"
#include "hbar.h"
#include "psi4/libmints/mintshelper.h"
using namespace std;
namespace psi { namespace ugacc {
class CCLambda {
public:
CCLambda(shared_ptr<CCWfn>, shared_ptr<HBAR>);
virtual ~CCLambda();
protected:
int no_; // Number of active occupied MOs
int nv_; // Number of active virtual MOs
shared_ptr<Hamiltonian> H_;
shared_ptr<CCWfn> CC_;
shared_ptr<HBAR> HBAR_;
// Energy denominators
double **D1_;
double ****D2_;
// L-amplitude quantities
double **l1_; /* current l1 amplitudes */
double **l1old_; /* previous l1 amplitudes */
double ****l2_; /* current l2 amplitudes */
double ****l2old_; /* previous l2 amplitudes */
// Three-body intermediates
double **Gvv_;
double **Goo_;
// In-core triples
double ******l3_;
// Extra inhomogeneous terms for Lambda from (T)-gradient
double **s1_;
double ****s2_;
void amp_save();
double increment_amps();
void build_G();
void build_l1();
void build_l2();
double pseudoenergy();
void build_diis_error(std::shared_ptr<Vector>, std::shared_ptr<Vector>, std::shared_ptr<Vector>, std::shared_ptr<Vector>);
void save_diis_vectors(std::shared_ptr<Vector>, std::shared_ptr<Vector>);
public:
void compute_lambda();
friend class CCDensity;
friend class CCPert;
friend class CCResp;
}; // CCLambda
}} // psi::ugacc
#endif // CCLAMBDA_H