MPQC  3.0.0-alpha
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 
33 namespace sc {
34 
35 // //////////////////////////////////////////////////////////////////////////
36 
39 class 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:
64  HSOSSCF(StateIn&);
115  HSOSSCF(const Ref<KeyVal>&);
116  ~HSOSSCF();
117 
118  void save_data_state(StateOut&);
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;
131  RefSymmSCMatrix fock(int i);
134 
135  void symmetry_changed();
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 
164  void set_occupations(const RefDiagSCMatrix& evals);
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:
sc::SCF
The SCF class is the base for all classes that use a self-consistent field procedure to solve an effe...
Definition: scf.h:51
sc::HSOSSCF::alpha_semicanonical_eigenvalues
RefDiagSCMatrix alpha_semicanonical_eigenvalues()
Eigenvalues of semicanonical alpha-spin orbitals.
sc::HSOSSCF::print
void print(std::ostream &o=ExEnv::out0()) const
Print information about the object.
sc::HSOSSCF::alpha_density
RefSymmSCMatrix alpha_density()
Return alpha electron densities in the SO basis.
sc::RefSymmSCMatrix
The RefSymmSCMatrix class is a smart pointer to an SCSymmSCMatrix specialization.
Definition: matrix.h:265
sc::HSOSSCF::magnetic_moment
double magnetic_moment() const
Computes the S (or J) magnetic moment of the target state(s), in units of .
sc::RefSCMatrix
The RefSCMatrix class is a smart pointer to an SCMatrix specialization.
Definition: matrix.h:135
sc::Ref
A template class that maintains references counts.
Definition: ref.h:361
sc::HSOSSCF::fock
RefSymmSCMatrix fock(int i)
Returns closed-shell (i==0) or open-shell (i==1) Fock matrix in SO basis (excluding XC contribution i...
sc::HSOSSCF::occupation
double occupation(int irrep, int vectornum)
Returns the occupation.
sc::HSOSSCF::beta_density
RefSymmSCMatrix beta_density()
Return beta electron densities in the SO basis.
sc::RefDiagSCMatrix
The RefDiagSCMatrix class is a smart pointer to an DiagSCMatrix specialization.
Definition: matrix.h:389
sc::AccResult< RefSymmSCMatrix >
sc::HSOSSCF::symmetry_changed
void symmetry_changed()
Call this if you have changed the molecular symmetry of the molecule contained by this MolecularEnerg...
sc::HSOSSCF::save_data_state
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
sc::HSOSSCF::beta_semicanonical_eigenvalues
RefDiagSCMatrix beta_semicanonical_eigenvalues()
Eigenvalues of semicanonical beta-spin orbitals.
sc::StateIn
Definition: statein.h:79
sc::HSOSSCF::beta_semicanonical_eigenvectors
RefSCMatrix beta_semicanonical_eigenvectors()
Coefficients of semicanonical beta-spin orbitals in SO basis.
sc::HSOSSCF::beta_occupation
double beta_occupation(int irrep, int vectornum)
Returns the beta occupation.
sc::HSOSSCF::set_occupations
void set_occupations(const RefDiagSCMatrix &evals)
Implementation of SCF::set_occupations(const RefDiagSCMatrix&).
sc::HSOSSCF
The HSOSSCF class is a base for classes implementing a self-consistent procedure for high-spin open-s...
Definition: hsosscf.h:39
sc::HSOSSCF::alpha_occupation
double alpha_occupation(int irrep, int vectornum)
Returns the alpha occupation.
sc::HSOSSCF::density
RefSymmSCMatrix density()
Returns the SO density.
sc::StateOut
Definition: stateout.h:71
sc::ExEnv::out0
static std::ostream & out0()
Return an ostream that writes from node 0.
sc
Contains all MPQC code up to version 3.
Definition: mpqcin.h:14
sc::HSOSSCF::effective_fock
RefSymmSCMatrix effective_fock()
Returns effective Fock matrix in MO basis (including XC contribution for KS DFT).
sc::HSOSSCF::alpha_semicanonical_eigenvectors
RefSCMatrix alpha_semicanonical_eigenvectors()
Coefficients of semicanonical alpha-spin orbitals in SO basis.

Generated at Sun Jan 26 2020 23:24:00 for MPQC 3.0.0-alpha using the documentation package Doxygen 1.8.16.