MPQC 3.0.0-alpha
Loading...
Searching...
No Matches
hsosscf.h
1//
2// hsosscf.h --- definition of the high-spin open shell SCF class
3//
4// Copyright (C) 1996 Limit Point Systems, Inc.
5//
6// Author: Edward Seidl <seidl@janed.com>
7// Maintainer: LPS
8//
9// This file is part of the SC Toolkit.
10//
11// The SC Toolkit is free software; you can redistribute it and/or modify
12// it under the terms of the GNU Library General Public License as published by
13// the Free Software Foundation; either version 2, or (at your option)
14// any later version.
15//
16// The SC Toolkit is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU Library General Public License for more details.
20//
21// You should have received a copy of the GNU Library General Public License
22// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24//
25// The U.S. Government is granted a limited license as per AL 91-7.
26//
27
28#ifndef _chemistry_qc_scf_hsosscf_h
29#define _chemistry_qc_scf_hsosscf_h
30
31#include <chemistry/qc/scf/scf.h>
32
33namespace sc {
34
35// //////////////////////////////////////////////////////////////////////////
36
39class HSOSSCF: public SCF {
40 protected:
41 Ref<PointGroup> most_recent_pg_;
42 int user_occupations_;
43 int tndocc_;
44 int tnsocc_;
45 int nirrep_;
46 int *initial_ndocc_;
47 int *initial_nsocc_;
48 int *ndocc_;
49 int *nsocc_;
50
51 ResultRefSymmSCMatrix cl_fock_;
52 ResultRefSymmSCMatrix op_fock_;
53
54 // computes semicanonical orbitals. Uses fock() to get the fock matrix.
55 // Should be overloaded if fock() does not return the correct matrix (e.g. HSOSKS)
56 virtual void semicanonical();
57 bool semicanonical_evaluated_;
58 AccResultRefDiagSCMatrix alpha_semican_evals_;
59 AccResultRefDiagSCMatrix beta_semican_evals_;
60 AccResultRefSCMatrix alpha_semican_evecs_;
61 AccResultRefSCMatrix beta_semican_evecs_;
62
63 public:
116 ~HSOSSCF();
117
119
120 void print(std::ostream&o=ExEnv::out0()) const;
121
122 double occupation(int irrep, int vectornum);
123 double alpha_occupation(int irrep, int vectornum);
124 double beta_occupation(int irrep, int vectornum);
125
126 int n_fock_matrices() const;
134
136
137 double magnetic_moment() const;
141
150
151 protected:
152 // these are temporary data, so they should not be checkpointed
153 RefSymmSCMatrix cl_dens_;
154 RefSymmSCMatrix cl_dens_diff_;
155 RefSymmSCMatrix cl_gmat_;
156 RefSymmSCMatrix op_dens_;
157 RefSymmSCMatrix op_dens_diff_;
158 RefSymmSCMatrix op_gmat_;
159
160 RefSymmSCMatrix cl_hcore_;
161
165 virtual void set_occupations(const RefDiagSCMatrix& evals, bool can_change_multiplicity);
166
167 // scf things
168 void init_vector();
169 void done_vector();
170 void reset_density();
171 double new_density();
172 double scf_energy();
173
174 Ref<SCExtrapData> extrap_data();
175
176 // gradient things
177 void init_gradient();
178 void done_gradient();
179
180 RefSymmSCMatrix lagrangian();
181 RefSymmSCMatrix gradient_density();
182
183 // hessian things
184 void init_hessian();
185 void done_hessian();
186
187 // The Hartree-Fock derivatives
188 void two_body_deriv_hf(double*grad,double exchange_fraction);
189};
190
191}
192
193#endif
194
195// Local Variables:
196// mode: c++
197// c-file-style: "ETS"
198// End:
static std::ostream & out0()
Return an ostream that writes from node 0.
The HSOSSCF class is a base for classes implementing a self-consistent procedure for high-spin open-s...
Definition hsosscf.h:39
RefSymmSCMatrix density()
Returns the SO density.
double alpha_occupation(int irrep, int vectornum)
Returns the alpha occupation.
RefSymmSCMatrix alpha_density()
Return alpha electron densities in the SO basis.
RefSCMatrix alpha_semicanonical_eigenvectors()
Coefficients of semicanonical alpha-spin orbitals in SO basis.
double occupation(int irrep, int vectornum)
Returns the occupation.
HSOSSCF(const Ref< KeyVal > &)
The KeyVal constructor accepts all keywords of SCF class, plus the following additional keywords:
RefSymmSCMatrix beta_density()
Return beta electron densities in the SO basis.
RefSCMatrix beta_semicanonical_eigenvectors()
Coefficients of semicanonical beta-spin orbitals in SO basis.
RefSymmSCMatrix fock(int i)
Returns closed-shell (i==0) or open-shell (i==1) Fock matrix in SO basis (excluding XC contribution i...
void symmetry_changed()
Call this if you have changed the molecular symmetry of the molecule contained by this MolecularEnerg...
RefDiagSCMatrix beta_semicanonical_eigenvalues()
Eigenvalues of semicanonical beta-spin orbitals.
void set_occupations(const RefDiagSCMatrix &evals)
Implementation of SCF::set_occupations(const RefDiagSCMatrix&).
RefDiagSCMatrix alpha_semicanonical_eigenvalues()
Eigenvalues of semicanonical alpha-spin orbitals.
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
RefSymmSCMatrix effective_fock()
Returns effective Fock matrix in MO basis (including XC contribution for KS DFT).
void print(std::ostream &o=ExEnv::out0()) const
Print information about the object.
double magnetic_moment() const
Computes the S (or J) magnetic moment of the target state(s), in units of .
double beta_occupation(int irrep, int vectornum)
Returns the beta occupation.
The RefDiagSCMatrix class is a smart pointer to an DiagSCMatrix specialization.
Definition matrix.h:389
The RefSCMatrix class is a smart pointer to an SCMatrix specialization.
Definition matrix.h:135
The RefSymmSCMatrix class is a smart pointer to an SCSymmSCMatrix specialization.
Definition matrix.h:265
A template class that maintains references counts.
Definition ref.h:361
The SCF class is the base for all classes that use a self-consistent field procedure to solve an effe...
Definition scf.h:51
Restores fundamental and user-defined types from images created with StateOut.
Definition statein.h:79
Serializes fundamental and user-defined types.
Definition stateout.h:71
Contains all MPQC code up to version 3.
Definition mpqcin.h:14

Generated at Wed Sep 25 2024 02:45:30 for MPQC 3.0.0-alpha using the documentation package Doxygen 1.12.0.