MADNESS 0.10.1
SCF.h
Go to the documentation of this file.
1/*
2 This file is part of MADNESS.
3
4 Copyright (C) 2007,2010 Oak Ridge National Laboratory
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 For more information please contact:
21
22 Robert J. Harrison
23 Oak Ridge National Laboratory
24 One Bethel Valley Road
25 P.O. Box 2008, MS-6367
26
27 email: harrisonrj@ornl.gov
28 tel: 865-241-3937
29 fax: 865-572-0680
30
31
32 $Id$
33 */
34
35/// \file moldft.cc
36/// \brief Molecular HF and DFT code
37/// \defgroup moldft The molecular density functional and Hartree-Fock code
38
39
40#ifndef MADNESS_CHEM_SCF_H__INCLUDED
41#define MADNESS_CHEM_SCF_H__INCLUDED
42
43#include <memory>
44
46#include <madness/mra/mra.h>
47
61#include<madness/chem/pcm.h>
64
65#include <madness/tensor/tensor_json.hpp>
66#include <memory>
67
68namespace madness {
69
70typedef std::shared_ptr<WorldDCPmapInterface<Key<3> > > pmapT;
72typedef std::shared_ptr<FunctionFunctorInterface<double, 3> > functorT;
74typedef std::vector<functionT> vecfuncT;
75typedef std::pair<vecfuncT, vecfuncT> pairvecfuncT;
76typedef std::vector<pairvecfuncT> subspaceT;
81typedef std::shared_ptr<operatorT> poperatorT;
83typedef std::vector<complex_functionT> cvecfuncT;
84
85
86template<typename T, int NDIM>
87struct lbcost {
88 double leaf_value;
90
92
93 double operator()(const Key<NDIM>& key, const FunctionNode<T, NDIM>& node) const {
94 if (key.level() < 1) {
95 // Root is a structural catch-all with no work. The old 100x was accumulated once per
96 // function by add_tree, so on balances over many light trees key0 outweighed every real
97 // subtree and the rank holding it was starved of work.
98 return leaf_value + parent_value;
99 } else if (node.is_leaf()) {
100 return leaf_value;
101 } else {
102 return parent_value;
103 }
104 }
105};
106
107
108inline double mask1(double x) {
109 /* Iterated first beta function to switch smoothly
110 from 0->1 in [0,1]. n iterations produce 2*n-1
111 zero derivatives at the end points. Order of polyn
112 is 3^n.
113
114 Currently use one iteration so that first deriv.
115 is zero at interior boundary and is exactly representable
116 by low order multiwavelet without refinement */
117
118 x = (x * x * (3. - 2. * x));
119 return x;
120}
121
122static double mask3(const coordT& ruser) {
123 coordT rsim;
124 user_to_sim(ruser, rsim);
125 double x = rsim[0], y = rsim[1], z = rsim[2];
126 double lo = 0.0625, hi = 1.0 - lo, result = 1.0;
127 double rlo = 1.0 / lo;
128
129 if (x < lo)
130 result *= mask1(x * rlo);
131 else if (x > hi)
132 result *= mask1((1.0 - x) * rlo);
133 if (y < lo)
134 result *= mask1(y * rlo);
135 else if (y > hi)
136 result *= mask1((1.0 - y) * rlo);
137 if (z < lo)
138 result *= mask1(z * rlo);
139 else if (z > hi)
140 result *= mask1((1.0 - z) * rlo);
141
142 return result;
143}
144
145/// A MADNESS functor to compute either x, y, or z
146class DipoleFunctor : public FunctionFunctorInterface<double, 3> {
147private:
148 const int axis;
149public:
150 using FunctionFunctorInterface<double,3>::operator();
151
153
154 double operator()(const coordT& x) const {
155 return x[axis];
156 }
157};
158
159
160/// A MADNESS functor to compute the cartesian moment x^i * y^j * z^k (i, j, k integer and >= 0)
161class MomentFunctor : public FunctionFunctorInterface<double, 3> {
162private:
163 const int i, j, k;
164public:
165 using FunctionFunctorInterface<double,3>::operator();
166
167 MomentFunctor(int i, int j, int k) : i(i), j(j), k(k) {}
168
169 MomentFunctor(const std::vector<int>& x) : i(x[0]), j(x[1]), k(x[2]) {}
170
171 double operator()(const coordT& r) const {
172 double xi = 1.0, yj = 1.0, zk = 1.0;
173 for (int p = 0; p < i; ++p) xi *= r[0];
174 for (int p = 0; p < j; ++p) yj *= r[1];
175 for (int p = 0; p < k; ++p) zk *= r[2];
176 return xi * yj * zk;
177 }
178};
179
180 class scf_data {
181
182 std::map<std::string, std::vector<double>> e_data;
185 int iter;
186 public:
187
188 scf_data();
189
190 void to_json(json &j) const;
191
192 void print_data();
193
194 void add_data(std::map<std::string, double> values);
195
196 void add_gradient(const Tensor<double> &grad);
197 };
198
199
200class SCF {
201public:
202 std::filesystem::path work_dir;
203 std::shared_ptr<PotentialManager> potentialmanager;
204 std::shared_ptr<GTHPseudopotential<double> > gthpseudopotential;
207 /// the `pcm` data group; inert unless param.pcm_data() is set
211
212 /// empirical DFT-D3 dispersion correction; inactive unless `dispersion` is set
213 ///
214 /// Owned by SCF so that nemo and oep, which hold a shared_ptr<SCF>, reach
215 /// the same object through `calc->dispersion`. (Znemo carries a bare
216 /// CalculationParameters instead and uses the static
217 /// DispersionCorrection::reject to refuse a correction it cannot apply.)
221
223
224 /// alpha and beta molecular orbitals
226
227 /// sets of orbitals grouped by their orbital energies (for localization?)
228 /// only orbitals within the same set will be mixed to localize
229 std::vector<int> aset, bset;
230 /// cholesky localization's pivot order from the previous iteration (per spin)
232
233 /// MRA projection of the minimal basis set
235
236 std::vector<int> at_to_bf, at_nbf;
237
238 /// occupation numbers for alpha and beta orbitals
240
241 /// orbital energies for alpha and beta orbitals
244 std::vector<std::shared_ptr<real_derivative_3d> > gradop;
245 double vtol;
247 double converged_for_thresh=1.e10; ///< mos are converged for this threshold
248 double converged_for_dconv=1.e10; ///< mos are converged for this density
249 double converged_for_tconv=1.e10; ///< derivatives of mos are converged for this threshold
250
251 /// what amo/bmo actually hold, recorded in the restartdata header
252 ///
253 /// Representation::mo for moldft's orbitals. Nemo drives an SCF rather than
254 /// deriving from one and stores the regularized F = psi/R in amo, so it sets
255 /// this to Representation::nemo (and restart_ncf) on the SCF it owns.
256 /// Without it both engines
257 /// write the same filename, with the same version tag, holding different
258 /// functions -- and loading one as the other is silently wrong.
260
261 /// nuclear correlation factor behind restart_representation, e.g. "slater:2.0"
262 std::string restart_ncf;
263
264 /// set while an optimizer drives this SCF, to keep the raw derivative table
265 /// out of the log next to MolOpt's projected one -- see SCF::derivatives
266 mutable bool suppress_raw_gradient_print=false;
267
268 /// forwarding constructor
269 SCF(World& world, const commandlineparser& parser)
270 : SCF(world, CalculationParameters(world, parser), Molecule(world, parser),
271 PCMParameters(world, parser)) {
272 work_dir = std::filesystem::current_path();
273 }
274
275 /// collective constructor for SCF uses contents of file \c filename and broadcasts to all nodes
276
277 /// \p pcm_param defaults to the bare `pcm` group; the solvent is still picked up
278 /// from \p param.pcm_data() by PCMParameters::set_derived_values, so a caller that
279 /// does not parse a deck keeps working.
280 SCF(World& world, const CalculationParameters& param, const Molecule& molecule,
282
283 void copy_data(World& world, const SCF& other);
284
285 static void help() {
286 print_header2("help page for MOLDFT ");
287 print("The moldft code computes Hartree-Fock and DFT energies and gradients, It is the fastest code in MADNESS");
288 print("and considered the reference implementation. No nuclear correlation factor can be used");
289 print("SCF orbitals are the basis for post-SCF calculations like");
290 print("excitation energies (cis), correlation energies (cc2), local potentials (oep), etc\n\n");
291 print("You can print all available calculation parameters by running\n");
292 print("moldft --print_parameters\n");
293 print("You can perform a simple calculation by running\n");
294 print("moldft --geometry=h2o.xyz\n");
295 print("provided you have an xyz file in your directory.\n\n");
296 print("To see what a restart archive holds -- geometry, k, the precision it");
297 print("converged to, whether it is moldft or nemo orbitals -- without starting");
298 print("a calculation:\n");
299 print("moldft --restart_info=<prefix>\n");
300
301 }
302
303 static void print_parameters() {
305 print("default parameters for the moldft program are");
306 param.print("dft", "end");
307 print("\n\nthe molecular geometry must be specified in a separate block:");
309 }
310
311 void set_print_timings(const bool value);
312
313 template<std::size_t NDIM>
314 void set_protocol(World& world, double thresh) {
315 int k;
316 // Allow for imprecise conversion of threshold
317 if (thresh >= 0.9e-2)
318 k = 4;
319 else if (thresh >= 0.9e-4)
320 k = 6;
321 else if (thresh >= 0.9e-6)
322 k = 8;
323 else if (thresh >= 0.9e-8)
324 k = 10;
325 else
326 k = 12;
327
328 // k defaults to make sense with thresh, override by providing k in input file
329 if (param.k() == -1) {
331 // param.k=k;
332 } else {
334 }
335 // don't forget to adapt the molecular smoothing parameter!! NO ... it is independent
336 // molecule.set_eprec(std::min(thresh,molecule.get_eprec()));
340 // FunctionDefaults<NDIM>::set_truncate_mode(1);
346 double safety = 0.1;
349 gradop = gradient_operator<double, 3>(world);
350
351 // Update coefficients if using a different derivative
352 if (param.deriv() == "bspline") {
353 for (int i = 0; i < 3; ++i) (*gradop[i]).set_bspline1();
354 } else if (param.deriv() == "ble") {
355 for (int i = 0; i < 3; ++i) (*gradop[i]).set_ble1();
356 }
357
358 mask = functionT(factoryT(world).f(mask3).initial_level(4).norefine());
359 if (world.rank() == 0 and param.print_level() > 1) {
360 print("\nSolving NDIM=", NDIM, " with thresh", thresh, " k",
361 FunctionDefaults<NDIM>::get_k(), " conv", std::max(thresh, param.dconv()), "\n");
362 }
363 }
364
365 /// getter for the molecular orbitals, alpha spin
366 const vecfuncT& get_amo() const { return amo; }
367
368 /// getter for the molecular orbitals, beta spin
369 const vecfuncT& get_bmo() const { return bmo; }
370
371 /// getter for the occupation numbers, alpha spin
372 const tensorT& get_aocc() const { return aocc; }
373
374 /// getter for the occupation numbers, alpha spin
375 const tensorT& get_bocc() const { return bocc; }
376
377 bool is_spin_restricted() const { return param.get<bool>("spin_restricted"); }
378
379 void save_mos(World& world);
380
381 void load_mos(World& world);
382
383 bool restart_aos(World& world);
384
385 void do_plots(World& world);
386
387 void project(World& world);
388
389 void make_nuclear_potential(World& world);
390
392
394 const Molecule& molecule);
395
396 void reset_aobasis(const std::string& aobasisname) {
397 aobasis = AtomicBasisSet(); // reset
398 aobasis.read_file(aobasisname);
399 }
400
401 /// group orbitals into sets of similar orbital energies for localization
402
403 /// @param[in] eps orbital energies
404 /// @param[in] occ occupation numbers
405 /// @param[in] nmo number of MOs for the given spin
406 /// @return vector of length nmo with the set index for each MO
407 std::vector<int> group_orbital_sets(World& world, const tensorT& eps,
408 const tensorT& occ, const int nmo) const;
409
410 static void analyze_vectors(World& world, const vecfuncT& mo,
411 const vecfuncT& ao, double vtol,
412 const Molecule& molecule, const int print_level,
413 const AtomicBasisSet& aobasis, const tensorT& occ = tensorT(),
414 const tensorT& energy = tensorT(), const std::vector<int>& set = std::vector<int>());
415
416 distmatT kinetic_energy_matrix(World& world, const vecfuncT& v) const;
417
418 /// carry out a restart plan: read the orbitals it names, or make a guess
419
420 /// @param[in,out] plan downgraded to the initial guess if the named source
421 /// turns out not to load
422 void get_initial_orbitals(World& world, RestartPlan& plan);
423
424 void initial_guess(World& world);
425
426 void initial_guess_from_nwchem(World& world);
427
428 void initial_load_bal(World& world);
429
430 functionT make_density(World& world, const tensorT& occ, const vecfuncT& v) const;
431
432 functionT make_density(World& world, const tensorT& occ, const cvecfuncT& v);
433
434 static std::vector<poperatorT> make_bsh_operators(World& world, const tensorT& evals,
436
437 // Used only for initial guess that is always spin-restricted LDA
438 static functionT make_lda_potential(World& world, const functionT& arho);
439
440
441 // functionT make_dft_potential(World & world, const vecfuncT& vf, int ispin, int what)
442 // {
443 // return multiop_values<double, xc_potential, 3>(xc_potential(xc, ispin, what), vf);
444 // }
445
446 double make_dft_energy(World& world, const vecfuncT& vf, int ispin) {
447 functionT vlda = multiop_values<double, xc_functional, 3>(xc_functional(xc), vf);
448 return vlda.trace();
449 }
450
451 vecfuncT apply_potential(World& world, const tensorT& occ,
452 const vecfuncT& amo,
453 const functionT& vlocal, double& exc, double& enl, int ispin);
454
455 tensorT derivatives(World& world, const functionT& rho) const;
456
457 /// compute the total dipole moment of the molecule
458
459 /// @param[in] rho the total (alpha + beta) density
460 /// @return the x,y,z components of the el. + nucl. dipole moment
461 tensorT dipole(World& world, const functionT& rho) const;
462
463 void vector_stats(const std::vector<double>& v, double& rms,
464 double& maxabsval) const;
465
466 vecfuncT compute_residual(World& world, tensorT& occ, tensorT& fock,
467 const vecfuncT& psi, vecfuncT& Vpsi, double& err);
468
469 /// BSH-apply executors for compute_residual, selected by the bsh_apply parameter.
470 /// All three consume Vpsi and return the new orbitals (not yet orthonormalized).
471 vecfuncT apply_bsh_macrotask(World& world, vecfuncT& Vpsi, const tensorT& eps,
472 const CalculationParameters& param, long batch,
473 bool redistribute);
474 vecfuncT apply_bsh_tiled(World& world, vecfuncT& Vpsi, const tensorT& eps,
476 vecfuncT apply_bsh_plain(World& world, vecfuncT& Vpsi, const tensorT& eps,
478
480 const vecfuncT& Vpsi, const tensorT& occ,
481 double& ekinetic) const;
482
483 /// make the Coulomb potential given the total density
485 return apply(*coulop, rho);
486 }
487
488 /// Compute the two-electron integrals over the provided set of orbitals
489
490 /// Returned is a *replicated* tensor of \f$(ij|kl)\f$ with \f$i>=j\f$
491 /// and \f$k>=l\f$. The symmetry \f$(ij|kl)=(kl|ij)\f$ is enforced.
492 Tensor<double> twoint(World& world, const vecfuncT& psi) const;
493
494 /// compute the unitary transformation that diagonalizes the fock matrix
495
496 /// @param[in] world the world
497 /// @param[in] overlap the overlap matrix of the orbitals
498 /// @param[in,out] fock the fock matrix; diagonal upon exit
499 /// @param[out] evals the orbital energies
500 /// @param[in] occ the occupation numbers
501 /// @param[in] thresh_degenerate threshold for orbitals being degenerate
502 /// @return the unitary matrix U: U^T F U = evals
503 tensorT get_fock_transformation(World& world, const tensorT& overlap,
504 tensorT& fock, tensorT& evals, const tensorT& occ,
505 const double thresh_degenerate) const;
506
507
508 /// diagonalize the fock matrix, taking care of degenerate states
509
510 /// Vpsi is passed in to make sure orbitals and Vpsi are in phase
511 /// @param[in] world the world
512 /// @param[in,out] fock the fock matrix (diagonal upon exit)
513 /// @param[in,out] psi the orbitals
514 /// @param[in,out] Vpsi the orbital times the potential
515 /// @param[out] evals the orbital energies
516 /// @param[in] occ occupation numbers
517 /// @param[in] thresh threshold for rotation and truncation
518 /// @return the unitary matrix U: U^T F U = evals
520 vecfuncT& psi, vecfuncT& Vpsi, tensorT& evals,
521 const tensorT& occ, const double thresh) const;
522
523
524 void loadbal(World& world, functionT& arho, functionT& brho, functionT& arho_old,
525 functionT& brho_old, subspaceT& subspace);
526
527
528 void rotate_subspace(World& world, const tensorT& U, subspaceT& subspace,
529 int lo, int nfunc, double trantol) const;
530
531 void rotate_subspace(World& world, const distmatT& U, subspaceT& subspace,
532 int lo, int nfunc, double trantol) const;
533
534 void update_subspace(World& world,
535 vecfuncT& Vpsia, vecfuncT& Vpsib,
536 tensorT& focka, tensorT& fockb,
538 double& bsh_residual, double& update_residual);
539
540 /// perform step restriction following the KAIN solver
541
542 /// undo the rotation from the KAIN solver if the rotation exceeds the
543 /// maxrotn parameter
544 /// @param[in] world the world
545 /// @param[in] mo vector of orbitals from previous iteration
546 /// @param[in,out] mo_new vector of orbitals from the KAIN solver
547 /// @param[in] spin "alpha" or "beta" for user information
548 /// @return max residual
549 double do_step_restriction(World& world, const vecfuncT& mo,
550 vecfuncT& mo_new, std::string spin) const;
551
552 /// orthonormalize the vectors
553
554 /// @param[in] world the world
555 /// @param[in,out] amo_new the vectors to be orthonormalized
556 void orthonormalize(World& world, vecfuncT& amo_new) const;
557
558 void orthonormalize(World& world, vecfuncT& amo_new, int nocc) const;
559
560 // For given protocol, solve the DFT/HF/response equations
561 void solve(World& world);
562
563 void output_calc_info_schema() const;
564
565 void output_scf_info_schema(const std::map<std::string, double> &vals,
566 const tensorT &dipole_T) const;
567
568};
569
570// Computes molecular energy as a function of the geometry
571// This is cludgy ... need better factorization of functionality
572// between calculation, main program and this ... or just merge it all.
576 mutable double coords_sum; // sum of square of coords at last solved geometry
577
578public:
581
582 std::string name() const { return "Molecularenerg"; }
583
584 bool selftest() { return true; }
585
586 bool provides_gradient() const { return true; }
587
588 double value(const Tensor<double>& x) {
589 double xsq = x.sumsq();
590 if (xsq == coords_sum) {
591 return calc.current_energy;
592 }
594 coords_sum = xsq;
595
596 // Decide once, here, where the orbitals come from and which rung of the
597 // ladder to start on. This replaces both the old `no_compute` early
598 // return and the "thresh drifted away from protocol[0], reset it" patch:
599 // the protocol is now set explicitly to the rung the plan names, so there
600 // is no drift to detect.
604
605 // set the target basis BEFORE reading, so load_mos reprojects straight
606 // into the rung we are about to iterate at rather than into whatever k
607 // FunctionDefaults happened to be left at
609
610 // initialize the PCM solver for this geometry
611 if (calc.param.pcm_data() != "none") {
613 }
614
616
617 // Reading can invalidate the plan's premise. load_mos resets
618 // converged_for_thresh when it has to reproject, and it may have fallen
619 // back to the initial guess altogether; either way the orbitals are no
620 // longer the converged answer the plan took them for. An automatic plan
621 // changes its mind; an explicit read_only does not -- the user asserted
622 // these orbitals are the answer, and gets them plus a warning.
623 const double target_thresh = calc.param.protocol().back();
624 const double target_dconv = std::max(target_thresh, calc.param.dconv());
625 if (not plan.iterate and plan.mode == RestartMode::automatic and
626 not (calc.converged_for_thresh <= target_thresh and
627 calc.converged_for_dconv <= target_dconv)) {
628 plan.iterate = true;
629 plan.protocol_start = calc.param.protocol().size() - 1;
630 if (world.rank() == 0)
631 print("the orbitals had to be reprojected on reading and are no longer "
632 "converged; iterating at the final protocol rung after all");
633 }
634
635 // AOs are needed for final analysis, and for localization
636 calc.reset_aobasis("sto-3g");
637 calc.ao.clear(); world.gop.fence();
639
640 if (not plan.iterate) {
641 if (world.rank() == 0) print("not solving the SCF equations:", plan.why);
643 // The energy is the archive's, taken from its header. Not
644 // calc.current_energy: load_mos clears that whenever it reprojects,
645 // so reading a 1e-4 archive under `restart read_only` at a 1e-6
646 // request would otherwise hand back 1e10 instead of the stale energy
647 // the user asked to be given.
649 return calc.current_energy;
650 }
651
652 // The below is missing convergence test logic, etc.
653
654 // Make the nuclear potential, initial orbitals, etc.
655 for (unsigned int proto = plan.protocol_start; proto < calc.param.protocol().size(); proto++) {
656
657 int nvalpha = calc.param.nmo_alpha() - calc.param.nalpha();
658 int nvbeta = calc.param.nmo_beta() - calc.param.nbeta();
659 int nvalpha_start, nv_old;
660
661 //repeat with gradually decreasing nvirt, only for the first protocol
662 // rung we actually run -- which is not rung 0 after a restart
663 if (proto == plan.protocol_start && nvalpha > 0) {
664 nvalpha_start = nvalpha * calc.param.nv_factor();
665 } else {
666 nvalpha_start = nvalpha;
667 }
668
669 nv_old = nvalpha_start;
670
671 for (int nv = nvalpha_start; nv >= nvalpha; nv -= nvalpha) {
672
673 if (nv > 0 && world.rank() == 0) std::cout << "Running with " << nv << " virtual states" << std::endl;
674
675 calc.param.set_user_defined_value("nmo_alpha", calc.param.nalpha() + nv);
676 // check whether this is sensible for spin restricted case
678 if (nvbeta == nvalpha) {
679 calc.param.set_user_defined_value("nmo_beta", calc.param.nbeta() + nv);
680 } else {
681 calc.param.set_user_defined_value("nmo_beta", calc.param.nbeta() + nv + nvbeta - nvalpha);
682 }
683 }
684
687
688 if (nv != nv_old) {
689 calc.amo.resize(calc.param.nmo_alpha());
690 calc.bmo.resize(calc.param.nmo_beta());
691
693 for (int i = 0; i < calc.param.nalpha(); ++i)
694 calc.aocc[i] = 1.0;
695
697 for (int i = 0; i < calc.param.nbeta(); ++i)
698 calc.bocc[i] = 1.0;
699
700 // might need to resize aset, bset, but for the moment this doesn't seem to be necessary
701
702 }
703
704 // project orbitals into higher k. Not needed on the first rung we
705 // run: the orbitals were either just made at that k, or read at it
706 // because set_protocol ran before load_mos.
707 if (proto > plan.protocol_start) calc.project(world);
708
709 // If the basis for the inital guess was not sto-3g
710 // switch to sto-3g since this is needed for analysis
711 // of the MOs and orbital localization
712 // Only do this if not starting from NWChem.
713 // analysis will be done on NWChem orbitals.
714
715 if (calc.param.aobasis() != "sto-3g") { // was also && calc.param.nwfile() == "none"
716 calc.reset_aobasis("sto-3g");
717 }
718 calc.ao.clear(); world.gop.fence();
721
722 if (calc.param.save())
724
725 nv_old = nv;
726 // exit loop over decreasing nvirt if nvirt=0
727 if (nv == 0) break;
728
729 }
730
731 }
732 return calc.current_energy;
733 }
734
736 value(x); // Ensures DFT equations are solved at this geometry
737
739 functionT brho = rho;
742 rho.gaxpy(1.0, brho, 1.0);
743
744 return calc.derivatives(world, rho);
745 }
746
747
749 value(molecule.get_all_coords().flat()); // Ensures DFT equations are solved at this geometry
750
752 functionT brho = rho;
755 rho.gaxpy(1.0, brho, 1.0);
756
759 }
760
762 nlohmann::json j = {};
763 vec_pair_ints int_vals;
764 vec_pair_T<double> double_vals;
765 vec_pair_tensor_T<double> double_tensor_vals;
766
768
769 nlohmann::json calc_precision={ };
770 calc_precision["eprec"]=calc.molecule.parameters.eprec();
771 calc_precision["dconv"]=calc.param.dconv();
772 calc_precision["econv"]=calc.param.econv();
773 calc_precision["thresh"]=FunctionDefaults<3>::get_thresh();
774 calc_precision["k"]=FunctionDefaults<3>::get_k();
775
776 auto mol_json=this->calc.molecule.to_json();
777
778 int_vals.push_back({"calcinfo_nmo", param.nmo_alpha() + param.nmo_beta()});
779 int_vals.push_back({"calcinfo_nalpha", param.nalpha()});
780 int_vals.push_back({"calcinfo_nbeta", param.nbeta()});
781 int_vals.push_back({"calcinfo_natom", calc.molecule.natom()});
782
783
784 to_json(j, int_vals);
785 double_vals.push_back({"return_energy", value(calc.molecule.get_all_coords().flat())});
786 to_json(j, double_vals);
787 double_tensor_vals.push_back({"scf_eigenvalues_a", calc.aeps});
788 if (param.nbeta() != 0 && !param.spin_restricted()) {
789 double_tensor_vals.push_back({"scf_eigenvalues_b", calc.beps});
790 }
791
792 to_json(j, double_tensor_vals);
793 param.to_json(j);
795
796 j["precision"]=calc_precision;
797 j["molecule"]=mol_json;
798
799 output_schema(param.prefix()+".calc_info", j);
800 }
801
802
803};
804}
805
806#endif /* SCF_H_ */
807
void to_json(json &j, const FunctionIOData< T, NDIM > &p)
Definition FunctionIO.h:274
decide once, per geometry, where the initial orbitals come from
the header of a restartdata archive, in one place
Operators for the molecular HF and DFT code.
A MADNESS functor to compute either x, y, or z.
Definition preal.cc:115
Contracted Gaussian basis.
Definition madness/chem/molecularbasis.h:469
void read_file(std::string filename)
read the atomic basis set from file
Definition molecularbasis.cc:119
DipoleFunctor(int axis)
Definition SCF.h:152
double operator()(const coordT &x) const
Definition SCF.h:154
const int axis
Definition solver.h:167
interface class to simple-dftd3, Grimme's D3 empirical dispersion correction
Definition dispersion.h:62
Manages data associated with a row/column/block distributed array.
Definition distributed_matrix.h:388
FunctionDefaults holds default paramaters as static class members.
Definition funcdefaults.h:101
static int get_k()
Returns the default wavelet order.
Definition funcdefaults.h:170
static void set_apply_randomize(bool value)
Sets the random load balancing for integral operators flag.
Definition funcdefaults.h:299
static void set_thresh(double value)
Sets the default threshold.
Definition funcdefaults.h:190
static void set_k(int value)
Sets the default wavelet order.
Definition funcdefaults.h:177
static const double & get_thresh()
Returns the default threshold.
Definition funcdefaults.h:183
static void set_autorefine(bool value)
Sets the default adaptive autorefinement flag.
Definition funcdefaults.h:267
static void set_project_randomize(bool value)
Sets the random load balancing for projection flag.
Definition funcdefaults.h:310
static void set_initial_level(int value)
Sets the default initial projection level.
Definition funcdefaults.h:207
static void set_cubic_cell(double lo, double hi)
Sets the user cell to be cubic with each dimension having range [lo,hi].
Definition funcdefaults.h:383
static void set_refine(bool value)
Sets the default adaptive refinement flag.
Definition funcdefaults.h:255
FunctionFactory implements the named-parameter idiom for Function.
Definition function_factory.h:86
Abstract base class interface required for functors used as input to Functions.
Definition function_interface.h:68
FunctionFunctorInterface()
Definition function_interface.h:77
FunctionNode holds the coefficients, etc., at each node of the 2^NDIM-tree.
Definition funcimpl.h:136
bool is_leaf() const
Returns true if this does not have children.
Definition funcimpl.h:223
A multiresolution adaptive numerical function.
Definition mra.h:144
T trace() const
Returns global value of int(f(x),x) ... global comm required.
Definition mra.h:1296
Function< T, NDIM > & gaxpy(const T &alpha, const Function< Q, NDIM > &other, const R &beta, bool fence=true)
Inplace, general bi-linear operation in wavelet basis. No communication except for optional fence.
Definition mra.h:1156
Key is the index for a node of the 2^NDIM-tree.
Definition key.h:70
Level level() const
Definition key.h:169
Definition SCF.h:573
bool selftest()
Definition SCF.h:584
bool provides_gradient() const
Override this to return true if the derivative is implemented.
Definition SCF.h:586
double value(const Tensor< double > &x)
Should return the value of the objective function.
Definition SCF.h:588
World & world
Definition SCF.h:574
SCF & calc
Definition SCF.h:575
double coords_sum
Definition SCF.h:576
void output_calc_info_schema()
Definition SCF.h:761
madness::Tensor< double > gradient(const Tensor< double > &x)
Should return the derivative of the function.
Definition SCF.h:735
void energy_and_gradient(const Molecule &molecule, double &energy, Tensor< double > &gradient)
Definition SCF.h:748
std::string name() const
Definition SCF.h:582
MolecularEnergy(World &world, SCF &calc)
Definition SCF.h:579
Definition molecule.h:129
void set_all_coords(const madness::Tensor< double > &newcoords)
Definition molecule.cc:474
madness::Tensor< double > get_all_coords() const
Definition molecule.cc:452
size_t natom() const
Definition molecule.h:463
static void print_parameters()
Definition molecule.cc:120
json to_json() const
Definition molecule.cc:512
GeometryParameters parameters
Definition molecule.h:334
A MADNESS functor to compute the cartesian moment x^i * y^j * z^k (i, j, k integer and >= 0)
Definition SCF.h:161
const int j
Definition SCF.h:163
double operator()(const coordT &r) const
Definition SCF.h:171
MomentFunctor(int i, int j, int k)
Definition SCF.h:167
const int i
Definition SCF.h:163
MomentFunctor(const std::vector< int > &x)
Definition SCF.h:169
const int k
Definition SCF.h:163
input parameters for the polarizable continuum model – the pcm data group
Definition pcm.h:69
interface class to the PCMSolver library
Definition pcm.h:132
void set_user_defined_value(const std::string &key, const T &value)
Definition chem/QCCalculationParametersBase.h:542
T get(const std::string key) const
Definition chem/QCCalculationParametersBase.h:306
void print(const std::string header="", const std::string footer="") const
print all parameters
Definition QCCalculationParametersBase.cc:32
class implementing properties of QC models
Definition QCPropertyInterface.h:11
Definition SCF.h:200
void copy_data(World &world, const SCF &other)
Definition SCF.cc:284
void do_plots(World &world)
Definition SCF.cc:574
tensorT derivatives(World &world, const functionT &rho) const
Definition SCF.cc:1563
void save_mos(World &world)
Definition SCF.cc:298
vecfuncT apply_bsh_plain(World &world, vecfuncT &Vpsi, const tensorT &eps, const CalculationParameters &param)
Single un-tiled apply (small systems / debugging). Consumes Vpsi.
Definition SCF.cc:1859
Representation restart_representation
Definition SCF.h:259
void output_scf_info_schema(const std::map< std::string, double > &vals, const tensorT &dipole_T) const
Definition SCF.cc:145
static vecfuncT project_ao_basis_only(World &world, const AtomicBasisSet &aobasis, const Molecule &molecule)
Definition SCF.cc:687
const tensorT & get_aocc() const
getter for the occupation numbers, alpha spin
Definition SCF.h:372
std::shared_ptr< GTHPseudopotential< double > > gthpseudopotential
Definition SCF.h:204
std::string restart_ncf
nuclear correlation factor behind restart_representation, e.g. "slater:2.0"
Definition SCF.h:262
void make_nuclear_potential(World &world)
Definition SCF.cc:662
std::vector< long > localize_pivot_state_a
cholesky localization's pivot order from the previous iteration (per spin)
Definition SCF.h:231
vecfuncT apply_bsh_tiled(World &world, vecfuncT &Vpsi, const tensorT &eps, const CalculationParameters &param)
Definition SCF.cc:1824
std::vector< int > aset
Definition SCF.h:229
static void print_parameters()
Definition SCF.h:303
AtomicBasisSet aobasis
Definition SCF.h:219
SCF(World &world, const commandlineparser &parser)
forwarding constructor
Definition SCF.h:269
vecfuncT ao
MRA projection of the minimal basis set.
Definition SCF.h:234
scf_data e_data
Definition SCF.h:222
vecfuncT apply_potential(World &world, const tensorT &occ, const vecfuncT &amo, const functionT &vlocal, double &exc, double &enl, int ispin)
Definition SCF.cc:1444
vecfuncT amo
alpha and beta molecular orbitals
Definition SCF.h:225
vecfuncT compute_residual(World &world, tensorT &occ, tensorT &fock, const vecfuncT &psi, vecfuncT &Vpsi, double &err)
Definition SCF.cc:1881
const tensorT & get_bocc() const
getter for the occupation numbers, alpha spin
Definition SCF.h:375
std::vector< int > at_to_bf
Definition SCF.h:236
void get_initial_orbitals(World &world, RestartPlan &plan)
carry out a restart plan: read the orbitals it names, or make a guess
Definition SCF.cc:484
std::vector< int > bset
Definition SCF.h:229
DispersionCorrection dispersion
Definition SCF.h:218
distmatT kinetic_energy_matrix(World &world, const vecfuncT &v) const
Definition SCF.cc:759
tensorT bocc
Definition SCF.h:239
double vtol
Definition SCF.h:245
tensorT dipole(World &world, const functionT &rho) const
compute the total dipole moment of the molecule
Definition SCF.cc:1645
PCM pcm
Definition SCF.h:210
bool is_spin_restricted() const
Definition SCF.h:377
poperatorT coulop
Definition SCF.h:243
double make_dft_energy(World &world, const vecfuncT &vf, int ispin)
Definition SCF.h:446
void output_calc_info_schema() const
Definition SCF.cc:160
static void help()
Definition SCF.h:285
void update_subspace(World &world, vecfuncT &Vpsia, vecfuncT &Vpsib, tensorT &focka, tensorT &fockb, subspaceT &subspace, tensorT &Q, double &bsh_residual, double &update_residual)
Definition SCF.cc:2189
Molecule molecule
Definition SCF.h:205
void load_mos(World &world)
Definition SCF.cc:344
tensorT beps
Definition SCF.h:242
tensorT diag_fock_matrix(World &world, tensorT &fock, vecfuncT &psi, vecfuncT &Vpsi, tensorT &evals, const tensorT &occ, const double thresh) const
diagonalize the fock matrix, taking care of degenerate states
Definition SCF.cc:2087
const vecfuncT & get_amo() const
getter for the molecular orbitals, alpha spin
Definition SCF.h:366
static void analyze_vectors(World &world, const vecfuncT &mo, const vecfuncT &ao, double vtol, const Molecule &molecule, const int print_level, const AtomicBasisSet &aobasis, const tensorT &occ=tensorT(), const tensorT &energy=tensorT(), const std::vector< int > &set=std::vector< int >())
Definition SCF.cc:701
XCfunctional xc
Definition SCF.h:209
void initial_load_bal(World &world)
Definition SCF.cc:1354
std::vector< int > at_nbf
Definition SCF.h:236
std::vector< long > localize_pivot_state_b
Definition SCF.h:231
double do_step_restriction(World &world, const vecfuncT &mo, vecfuncT &mo_new, std::string spin) const
perform step restriction following the KAIN solver
Definition SCF.cc:2331
std::vector< std::shared_ptr< real_derivative_3d > > gradop
Definition SCF.h:244
void set_print_timings(const bool value)
Definition SCF.cc:280
double converged_for_dconv
mos are converged for this density
Definition SCF.h:248
tensorT get_fock_transformation(World &world, const tensorT &overlap, tensorT &fock, tensorT &evals, const tensorT &occ, const double thresh_degenerate) const
compute the unitary transformation that diagonalizes the fock matrix
Definition SCF.cc:2056
vecfuncT apply_bsh_macrotask(World &world, vecfuncT &Vpsi, const tensorT &eps, const CalculationParameters &param, long batch, bool redistribute)
Definition SCF.cc:1694
bool restart_aos(World &world)
Definition SCF.cc:794
tensorT aeps
orbital energies for alpha and beta orbitals
Definition SCF.h:242
functionT make_coulomb_potential(const functionT &rho) const
make the Coulomb potential given the total density
Definition SCF.h:484
tensorT make_fock_matrix(World &world, const vecfuncT &psi, const vecfuncT &Vpsi, const tensorT &occ, double &ekinetic) const
Definition SCF.cc:1968
double converged_for_tconv
derivatives of mos are converged for this threshold
Definition SCF.h:249
Tensor< double > twoint(World &world, const vecfuncT &psi) const
Compute the two-electron integrals over the provided set of orbitals.
Definition SCF.cc:2026
tensorT aocc
occupation numbers for alpha and beta orbitals
Definition SCF.h:239
void set_protocol(World &world, double thresh)
Definition SCF.h:314
static functionT make_lda_potential(World &world, const functionT &arho)
Definition SCF.cc:1436
functionT make_density(World &world, const tensorT &occ, const vecfuncT &v) const
Definition SCF.cc:1371
void rotate_subspace(World &world, const tensorT &U, subspaceT &subspace, int lo, int nfunc, double trantol) const
Definition SCF.cc:2155
PCMParameters pcm_param
the pcm data group; inert unless param.pcm_data() is set
Definition SCF.h:208
void reset_aobasis(const std::string &aobasisname)
Definition SCF.h:396
void project(World &world)
Definition SCF.cc:640
double converged_for_thresh
mos are converged for this threshold
Definition SCF.h:247
bool suppress_raw_gradient_print
Definition SCF.h:266
CalculationParameters param
Definition SCF.h:206
double current_energy
Definition SCF.h:246
void loadbal(World &world, functionT &arho, functionT &brho, functionT &arho_old, functionT &brho_old, subspaceT &subspace)
Definition SCF.cc:2120
void vector_stats(const std::vector< double > &v, double &rms, double &maxabsval) const
Definition SCF.cc:1671
vecfuncT project_ao_basis(World &world, const AtomicBasisSet &aobasis)
Definition SCF.cc:679
std::vector< int > group_orbital_sets(World &world, const tensorT &eps, const tensorT &occ, const int nmo) const
group orbitals into sets of similar orbital energies for localization
Definition SCF.cc:1329
void initial_guess_from_nwchem(World &world)
Definition SCF.cc:850
functionT mask
Definition SCF.h:220
std::shared_ptr< PotentialManager > potentialmanager
Definition SCF.h:203
static std::vector< poperatorT > make_bsh_operators(World &world, const tensorT &evals, const CalculationParameters &param)
Definition SCF.cc:1412
const vecfuncT & get_bmo() const
getter for the molecular orbitals, beta spin
Definition SCF.h:369
vecfuncT bmo
Definition SCF.h:225
void solve(World &world)
Definition SCF.cc:2430
void orthonormalize(World &world, vecfuncT &amo_new) const
orthonormalize the vectors
Definition SCF.cc:2403
std::filesystem::path work_dir
Definition SCF.h:202
Convolutions in separated form (including Gaussian)
Definition operator.h:139
A tensor is a multidimensional array.
Definition tensor.h:318
Tensor< T > reshape(int ndimnew, const long *d)
Returns new view/tensor reshaping size/number of dimensions to conforming tensor.
Definition tensor.h:1385
T sumsq() const
Returns the sum of the squares of the elements.
Definition tensor.h:1670
Tensor< T > flat()
Returns new view/tensor rehshaping to flat (1-d) tensor.
Definition tensor.h:1556
A simple, fixed dimension vector.
Definition vector.h:64
void fence(bool debug=false)
Synchronizes all processes in communicator AND globally ensures no pending AM or tasks.
Definition worldgop.cc:177
A parallel world class.
Definition world.h:134
ProcessID rank() const
Returns the process rank in this World (same as MPI_Comm_rank()).
Definition world.h:344
WorldGopInterface & gop
Global operations.
Definition world.h:216
Simplified interface to XC functionals.
Definition xcfunctional.h:48
Definition SCF.h:180
std::map< std::string, std::vector< double > > e_data
Definition SCF.h:182
void add_gradient(const Tensor< double > &grad)
Definition SCF.cc:232
int iter
Definition SCF.h:185
void to_json(json &j) const
Definition SCF.cc:215
void add_data(std::map< std::string, double > values)
Definition SCF.cc:191
json hessian
Definition SCF.h:184
json gradient
Definition SCF.h:183
scf_data()
Definition SCF.cc:201
void print_data()
Definition SCF.cc:228
Declaration of core potential related class.
double(* energy)()
Definition derivatives.cc:58
char * p(char *buf, const char *name, int k, int initial_level, double thresh, int order)
Definition derivatives.cc:72
static double lo
Definition dirac-hatom.cc:23
double psi(const Vector< double, 3 > &r)
Definition hatom_energy.cc:78
static const double v
Definition hatom_sf_dirac.cc:20
Main include file for MADNESS and defines Function interface.
Namespace for all elements and tools of MADNESS.
Definition DFConvergence.h:9
void print_header2(const std::string &s)
medium section heading
Definition print.cc:54
Vector< double, 3 > coordT
Definition corepotential.cc:54
static void user_to_sim(const Vector< double, NDIM > &xuser, Vector< double, NDIM > &xsim)
Convert user coords (cell[][]) to simulation coords ([0,1]^ndim)
Definition funcdefaults.h:469
Tensor< double > tensorT
Definition distpm.cc:21
Function< std::complex< double >, 3 > complex_functionT
Definition SCF.h:82
@ automatic
look at what is on disk and choose (the default)
RestartMode restart_mode_from_string(const std::string &s)
Definition RestartPlan.h:83
std::vector< pairvecfuncT > subspaceT
Definition SCF.h:76
double mask1(double x)
Definition SCF.h:108
RestartPlan make_restart_plan(World &world, const RestartMode mode, const CalculationParameters &param, const Molecule &requested, const Representation wanted, const RestartCapabilities &can, const std::string &ncf="")
Definition RestartPlan.h:580
DistributedMatrix< double > distmatT
Definition SCF.h:78
std::pair< vecfuncT, vecfuncT > pairvecfuncT
Definition SCF.h:75
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:227
FunctionFactory< double, 3 > factoryT
Definition corepotential.cc:57
nlohmann::json json
Definition chem/QCCalculationParametersBase.h:30
std::shared_ptr< operatorT> poperatorT
Definition SCF.h:81
Function< double, 3 > functionT
Definition corepotential.cc:56
NDIM & f
Definition mra.h:2668
std::shared_ptr< FunctionFunctorInterface< double, 3 > > functorT
Definition corepotential.cc:55
std::vector< complex_functionT > cvecfuncT
Definition SCF.h:83
static SeparatedConvolution< double, 3 > * CoulombOperatorPtr(World &world, double lo, double eps, const std::array< LatticeRange, 3 > &lattice_ranges=FunctionDefaults< 3 >::get_bc().lattice_range(), int k=FunctionDefaults< 3 >::get_k())
Factory function generating separated kernel for convolution with 1/r in 3D.
Definition operator.h:1752
vector< functionT > vecfuncT
Definition corepotential.cc:58
CCPairFunction< T, NDIM > apply(const SeparatedConvolution< T, NDIM/2 > &op, const CCPairFunction< T, NDIM > &arg)
apply the operator to the argument
Definition ccpairfunction.h:896
static double mask3(const coordT &ruser)
Definition SCF.h:122
std::shared_ptr< WorldDCPmapInterface< Key< 3 > > > pmapT
Definition SCF.h:70
@ initial_guess
atomic guess, i.e. no restart at all
std::vector< Function< T, NDIM > > grad(const Function< T, NDIM > &f, bool refine=false, bool fence=true)
shorthand gradient operator
Definition vmra.h:2316
SeparatedConvolution< double, 3 > operatorT
Definition SCF.h:80
Representation
Definition Restart.h:57
@ mo
moldft orbitals psi
static const size_t nfunc
Definition pcr.cc:63
Declaration of molecule-related classes and functions.
double Q(double a)
Definition relops.cc:20
static const double thresh
Definition rk.cc:45
static const long k
Definition rk.cc:44
const double xi
Exponent for delta function approx.
Definition siam_example.cc:60
Defines interfaces for optimization and non-linear equation solvers.
std::string prefix
Definition tdse.cc:71
Definition CalculationParameters.h:51
std::vector< double > protocol() const
Definition CalculationParameters.h:241
int nv_factor() const
Definition CalculationParameters.h:198
std::string restart() const
the restart keyval as a string; parse with restart_mode_from_string()
Definition CalculationParameters.h:247
int k() const
Definition CalculationParameters.h:209
int nmo_alpha() const
Definition CalculationParameters.h:200
bool save() const
Definition CalculationParameters.h:242
double dconv() const
Definition CalculationParameters.h:173
double econv() const
Definition CalculationParameters.h:172
int print_level() const
Definition CalculationParameters.h:218
std::string deriv() const
Definition CalculationParameters.h:223
double L() const
Definition CalculationParameters.h:208
std::string aobasis() const
Definition CalculationParameters.h:239
int nalpha() const
Definition CalculationParameters.h:193
int nbeta() const
Definition CalculationParameters.h:194
int nmo_beta() const
Definition CalculationParameters.h:201
bool spin_restricted() const
Definition CalculationParameters.h:205
double lo() const
Definition CalculationParameters.h:207
std::string pcm_data() const
Definition CalculationParameters.h:225
Definition convolution1d.h:989
double eprec() const
Definition molecule.h:306
The interface to be provided by functions to be optimized.
Definition solvers.h:176
static RestartCapabilities all()
Definition RestartPlan.h:143
the decision: one source, one starting rung, one reason
Definition RestartPlan.h:183
std::size_t protocol_start
rung of protocol() to start at; rungs below it are already covered
Definition RestartPlan.h:192
bool iterate
false means "return what is on disk without solving anything"
Definition RestartPlan.h:189
double stale_energy
energy from the archive, meaningful only when iterate==false
Definition RestartPlan.h:195
std::string why
one line, for the log and for the results json
Definition RestartPlan.h:205
RestartMode mode
what was asked for
Definition RestartPlan.h:185
very simple command line parser
Definition commandlineparser.h:28
Definition SCF.h:87
double parent_value
Definition SCF.h:89
lbcost(double leaf_value=1.0, double parent_value=0.0)
Definition SCF.h:91
double leaf_value
Definition SCF.h:88
double operator()(const Key< NDIM > &key, const FunctionNode< T, NDIM > &node) const
Definition SCF.h:93
Class to compute the energy functional.
Definition xcfunctional.h:392
InputParameters param
Definition tdse.cc:203
constexpr std::size_t NDIM
Definition testgconv.cc:54
static Molecule molecule
Definition testperiodicdft.cc:39
static Subspace * subspace
Definition testperiodicdft.cc:41