MADNESS 0.10.1
molecule.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#ifndef MADNESS_CHEM_MOLECULE_H__INCLUDED
33#define MADNESS_CHEM_MOLECULE_H__INCLUDED
34
35/// \file moldft/molecule.h
36/// \brief Declaration of molecule related classes and functions
37
38#include <ctype.h>
41#include <madness/misc/misc.h>
44
45#include <algorithm>
46#include <cmath>
47#include <fstream>
48#include <iostream>
49#include <sstream>
50#include <string>
51#include <vector>
52
55
56namespace madness {
57
58class World;
59
60class Atom {
61 public:
62 double x, y, z, q; ///< Coordinates and charge in atomic units
63 unsigned int atomic_number; ///< Atomic number
64 double mass; ///< Mass
65 bool pseudo_atom; ///< Indicates if this atom uses a pseudopotential
66
67 explicit Atom(double x, double y, double z, double q, unsigned int atomic_number, bool pseudo_atom)
70
71 if (mass == -1.0) MADNESS_EXCEPTION("faulty element in Atom", 1);
72
73 // unstable elements are indicated by negative masses, the mass
74 // is taken from the longest-living element
75 if (mass < 0.0) mass *= -1.0;
76 }
77
78 explicit Atom(double x, double y, double z, double q, unsigned int atomic_number) : x(x), y(y), z(z), q(q), atomic_number(atomic_number) {
80
81 if (mass == -1.0) MADNESS_EXCEPTION("faulty element in Atom", 1);
82
83 // unstable elements are indicated by negative masses, the mass
84 // is taken from the longest-living element
85 if (mass < 0.0) mass *= -1.0;
86
87 pseudo_atom = false;
88 }
89
91
92 /// Default construct makes a zero charge ghost atom at origin
93 Atom() : x(0), y(0), z(0), q(0), atomic_number(0), mass(0.0), pseudo_atom(false) {}
94
95 bool operator==(const Atom &other) const {
96 double thresh=1.e-10;
97 auto displacement=Vector<double, 3>({x, y, z})-(Vector<double, 3>({other.x, other.y, other.z}));
98 double err = displacement.normf();
99 return ((err<thresh) && q == other.q &&
100 atomic_number == other.atomic_number && mass == other.mass &&
101 pseudo_atom == other.pseudo_atom);
102 }
103
104 int get_atomic_number() const { return atomic_number; }
105
107
108 /// return the mass in atomic units (electron mass = 1 a.u.)
110
111 template <typename Archive>
112 void serialize(Archive &ar) {
113 ar & x & y & z & q & atomic_number & mass & pseudo_atom;
114 }
115 hashT hash() const {
116 hashT h = hash_value(x);
117 hash_combine(h, y);
118 hash_combine(h, z);
119 hash_combine(h, q);
123 return h;
124 }
125};
126
127std::ostream &operator<<(std::ostream &s, const Atom &atom);
128
129class Molecule {
130 public:
131 // Needed for ParameterManager
132 static constexpr char const *tag = "molecule";
133 [[nodiscard]] json to_json_if_precedence(std::string const &precedence) const {
135 mol_schema["parameters"] = parameters.to_json_if_precedence(precedence);
137 return mol_schema;
138 }
139
140
142 GeometryParameters(const GeometryParameters &other) = default;
143
145 try {
147 // read the data group the input file actually uses, then apply
148 // `--geometry=...`/`--molecule=...` overrides for the other spelling
149 // as well (a no-op if that key is absent)
150 const std::string tag = input_tag(parser);
152 read_commandline_options(world, parser, tag == "geometry" ? "molecule" : "geometry");
153 set_derived_values(parser);
154
155 } catch (std::exception &e) {
156 print(tag, "end");
157 throw;
158 // MADNESS_EXCEPTION("faulty geometry input",1);
159 }
160 }
161
163 ignore_unknown_keys = true;
166
167 // initialize<std::vector<std::string>>("source",{"inputfile"},"where
168 // to get the coordinates from: ({inputfile}, {library,xxx},
169 // {xyz,xxx.xyz})");
170 initialize<std::string>("source_type", "inputfile", "where to get the coordinates from", {"inputfile", "xyz", "library"});
171 initialize<std::string>("source_name", "TBD", "name of the geometry from the library or the input file");
172 initialize<double>("eprec", 1.e-4, "smoothing for the nuclear potential");
173 initialize<std::string>("units", "atomic", "coordinate units", {"atomic", "angstrom", "bohr", "au"});
174 initialize<std::vector<double>>("field", {0.0, 0.0, 0.0}, "external electric field");
175 initialize<bool>("no_orient", false,
176 "if true the coordinates will not be reoriented and/or symmetrized");
177 initialize<double>("symtol", -1.e-2,
178 "distance threshold");
179
180 initialize<std::string>("core_type", "none", "core potential type", {"none", "mcp"});
181 initialize<bool>("psp_calc", false, "pseudopotential calculation for all atoms");
182 initialize<bool>("pure_ae", true, "pure all electron calculation with no pseudo-atoms");
183 }
184
185 std::string get_tag() const override {
186 return std::string("molecule");
187 }
188
189 /// source_name is a path (xyz file / input file) -- never case-fold it
190 std::set<std::string> case_sensitive_keys() const override {
191 return {"source_name"};
192 }
193
195 // `--geometry=<name>` is the documented spelling (see the help text of
196 // moldft/nemo/cc2/madqc); `--molecule=<name>` is accepted as an alias.
197 // value_raw, not value: this may be a path, and paths are case-sensitive.
198 for (const std::string &key : {"geometry", "molecule"}) {
199 if (parser.key_exists(key)) {
200 set_user_defined_value("source_name", parser.value_raw(key));
201 }
202 }
203 }
204
205 /// name of the data group carrying the geometry in the input file
206
207 /// The group is spelled `geometry` (canonical -- the moldft/nemo/cc2 decks)
208 /// or `molecule` (alias -- the madqc decks and the structure library).
209 /// Returns whichever the input file contains, preferring the canonical name
210 /// and falling back to it when the file has neither (or does not exist), so
211 /// that the missing-data-group diagnostic names the documented spelling.
212 static std::string input_tag(const commandlineparser &parser);
213
215 // check if we use an xyz file, the structure library or the input file
216 set_derived_value("source_name",
217 parser.value("input")); // will not override user input
218 std::string src_type = derive_source_type_from_name(source_name(), parser);
219 set_derived_value("source_type", src_type);
220 if (parser.key_exists("no_orient") and parser.value("no_orient") == "true") set_derived_value("no_orient", true);
221
222 // check for ambiguities in the derived source type
223 if (not is_user_defined("source_type")) {
224 std::ifstream f(source_name().c_str());
225 bool found_geometry_file = f.good();
226 // bool
227 // found_geometry_file=std::filesystem::exists(source_name());
228
229 bool geometry_found_in_library = true;
230 try { // check for existence of file and structure in the library
231 std::ifstream f;
233 } catch (...) {
235 }
236
238 madness::print("\n\n");
240 "geometry specification ambiguous: found geometry in "
241 "the structure library and in a file\n");
245 "\nPlease specify the location of your geometry input "
246 "by one of the two lines:\n");
247 madness::print(" source_type xyz");
248 madness::print(" source_type library\n\n");
249 MADNESS_EXCEPTION("faulty input\n\n", 1);
250 }
251 }
252
253 // std::vector<std::string> src=source();
254 //
255 // // some convenience for the user
256 //
257 // // if source is the input file provide the name of the input
258 // file if (src.size()==1 and src[0]=="inputfile")
259 // set_derived_value("source",std::vector<std::string>({src[0],parser.value("input")}));
260 // // if source is not "inputfile" or "library" assume an xyz
261 // file if (src.size()==1 and src[0]!="inputfile") {
262 // std::size_t found=src[0].find("xyz");
263 // if (found==src[0].size()-3) { // check input file ends
264 // with xyz
265 // set_user_defined_value("source",
266 // std::vector<std::string>({"xyz", src[0]}));
267 // } else {
268 // throw std::runtime_error("error in deriving geometry
269 // parameters");
270 // }
271 // }
272
273 // Resolve a relative xyz path to an absolute one *now*, while the process
274 // is still in the directory the user invoked it from: madqc chdir's into a
275 // per-task run directory before the task re-reads its geometry, and it
276 // propagates source_name through the deck it writes there, so a relative
277 // path would then resolve against the task directory and not be found.
278 // Only "xyz" is rewritten -- for "inputfile" the name must keep comparing
279 // equal to parser.value("input") in derive_source_type_from_name(), and
280 // "library" names are not paths.
281 if (source_type() == "xyz") {
282 const std::string abs = absolute_path(source_name());
283 if (abs != source_name()) set_user_defined_value("source_name", abs);
284 }
285
286 if (source_type() == "xyz") set_derived_value("units", std::string("angstrom"));
287 if (units() == "bohr" or units() == "au") set_derived_value("units", std::string("atomic"));
288 }
289
290 /// make a relative path absolute, relative to the current working directory
291
292 /// Returns \p path unchanged if it is already absolute or cannot be resolved
293 /// here -- the reader then reports the name as given, which is the more
294 /// useful diagnostic.
295 static std::string absolute_path(const std::string &path);
296
297 std::string source_type() const { return get<std::string>("source_type"); }
298 std::string source_name() const { return get<std::string>("source_name"); }
299 std::vector<double> field() const { return get<std::vector<double>>("field"); }
300 double eprec() const { return get<double>("eprec"); }
301 std::string units() const { return get<std::string>("units"); }
302 std::string core_type() const { return get<std::string>("core_type"); }
303 bool psp_calc() const { return get<bool>("psp_calc"); }
304 bool pure_ae() const { return get<bool>("pure_ae"); }
305 bool no_orient() const { return get<bool>("no_orient"); }
306 double symtol() const { return get<double>("symtol"); }
307
308 static std::string derive_source_type_from_name(const std::string name, const commandlineparser &parser) {
309 if (name == parser.value("input")) return "inputfile";
310 std::size_t pos = name.find(".xyz");
311 if (pos != std::string::npos) return "xyz";
312 return "library";
313 }
314 };
315
316 private:
317 // If you add more fields don't forget to serialize them
318 std::vector<Atom> atoms;
319 std::vector<double> rcut; // Reciprocal of the smoothing radius
322
323 /// The molecular point group is automatically assigned in the
324 /// identify_pointgroup function
325 std::string pointgroup_ = "c1";
326
327 public:
329
330 static void print_parameters();
331
332 std::string get_pointgroup() const { return pointgroup_; }
333
334 private:
335 void swapaxes(int ix, int iy);
336
337 template <typename opT>
338 bool test_for_op(opT op, const double symtol) const;
339
340 template <typename opT>
341 void symmetrize_for_op(opT op, const double symtol);
342
343 template <typename opT>
344 int find_symmetry_equivalent_atom(int iatom, opT op, const double symtol) const;
345
346 bool test_for_c2(double xaxis, double yaxis, double zaxis, const double symtol) const;
347
348 bool test_for_sigma(double xaxis, double yaxis, double zaxis, const double symtol) const;
349
350 bool test_for_inverse(const double symtol) const;
351
352 /// Apply to (x,y,z) a C2 rotation about an axis thru the origin and
353 /// (xaxis,yaxis,zaxis)
354 struct apply_c2 {
355 double xaxis, yaxis, zaxis;
356 apply_c2(double xaxis, double yaxis, double zaxis) : xaxis(xaxis), yaxis(yaxis), zaxis(zaxis) {}
357 void operator()(double &x, double &y, double &z) const {
358 double raxissq = xaxis * xaxis + yaxis * yaxis + zaxis * zaxis;
359 double dx = x * xaxis * xaxis / raxissq;
360 double dy = y * yaxis * yaxis / raxissq;
361 double dz = z * zaxis * zaxis / raxissq;
362 x = 2.0 * dx - x;
363 y = 2.0 * dy - y;
364 z = 2.0 * dz - z;
365 }
366 };
367
368 /// Apply to (x,y,z) a reflection through a plane containing the origin with
369 /// normal (xaxis,yaxis,zaxis)
370 struct apply_sigma {
371 double xaxis, yaxis, zaxis;
372 apply_sigma(double xaxis, double yaxis, double zaxis) : xaxis(xaxis), yaxis(yaxis), zaxis(zaxis) {}
373 void operator()(double &x, double &y, double &z) const {
374 double raxissq = xaxis * xaxis + yaxis * yaxis + zaxis * zaxis;
375 double dx = x * xaxis * xaxis / raxissq;
376 double dy = y * yaxis * yaxis / raxissq;
377 double dz = z * zaxis * zaxis / raxissq;
378
379 x = x - 2.0 * dx;
380 y = y - 2.0 * dy;
381 z = z - 2.0 * dz;
382 }
383 };
384
386 double xaxis, yaxis, zaxis;
387 apply_inverse(double xaxis, double yaxis, double zaxis) : xaxis(xaxis), yaxis(yaxis), zaxis(zaxis) {}
388 void operator()(double &x, double &y, double &z) const {
389 x = -x;
390 y = -y;
391 z = -z;
392 }
393 };
394
395 public:
396 /// Makes a molecule with zero atoms
397 Molecule() : atoms(), rcut(), core_pot(), field(3L){};
398
399 /// makes a molecule from a list of atoms
401
402 /// makes a molecule using contents of \p parser
403 Molecule(World &world, const commandlineparser &parser);
404
405 void get_structure();
406
407 void read_structure_from_library(const std::string &name);
408
409 static std::istream &position_stream_in_library(std::ifstream &f, const std::string &name);
410
411 static std::string get_structure_library_path();
412
413 /// print out a Gaussian cubefile header
414
415 /// @param[in] offset the offset to be subtracted from the coordinates
416 std::vector<std::string> cubefile_header(const Vector<double, 3> offset = Vector<double, 3>(0.0)) const;
417
418 // initializes Molecule using the contents of file \c filename
419 void read_file(const std::string &filename);
420
421 // initializes Molecule using the contents of stream \c f
422 void read(std::istream &f);
423
424 // initializes Molecule using the contents of file \c filenam assuming an xyz
425 // file
426 void read_xyz(const std::string filename);
427
428 void read_core_file(const std::string &filename);
429
430 std::string guess_file() const { return core_pot.guess_file(); };
431
432 unsigned int n_core_orb_all() const;
433
434 unsigned int n_core_orb(unsigned int atn) const {
435 if (core_pot.is_defined(atn))
436 return core_pot.n_core_orb_base(atn);
437 else
438 return 0;
439 };
440
441 unsigned int get_core_l(unsigned int atn, unsigned int c) const { return core_pot.get_core_l(atn, c); }
442
443 double get_core_bc(unsigned int atn, unsigned int c) const { return core_pot.get_core_bc(atn, c); }
444
445 double core_eval(int atom, unsigned int core, int m, double x, double y, double z) const;
446
447 double core_derivative(int atom, int axis, unsigned int core, int m, double x, double y, double z) const;
448
449 bool is_potential_defined(unsigned int atn) const { return core_pot.is_defined(atn); };
450
451 bool is_potential_defined_atom(int i) const { return core_pot.is_defined(atoms[i].atomic_number); };
452
453 void add_atom(double x, double y, double z, double q, int atn);
454
455 void add_atom(double x, double y, double z, double q, int atn, bool psat);
456
457 size_t natom() const { return atoms.size(); };
458
459 void set_atom_charge(unsigned int i, double zeff);
460
461 unsigned int get_atom_charge(unsigned int i) const;
462
463 unsigned int get_atomic_number(unsigned int i) const;
464
465 void set_pseudo_atom(unsigned int i, bool psat);
466
467 bool get_pseudo_atom(unsigned int i) const;
468
469 void set_atom_coords(unsigned int i, double x, double y, double z);
470
472
473 std::vector<madness::Vector<double, 3>> get_all_coords_vec() const;
474
475 std::vector<double> atomic_radii;
476
478
479 void update_rcut_with_eprec(double value);
480
481 void set_rcut(double value);
482
483 std::vector<double> get_rcut() const { return rcut; }
484
485 void set_core_eprec(double value) { core_pot.set_eprec(value); }
486
487 void set_core_rcut(double value) { core_pot.set_rcut(value); }
488
489 double get_eprec() const { return parameters.eprec(); }
490
491 double bounding_cube() const;
492
493 const Atom &get_atom(unsigned int i) const;
494
495 const std::vector<Atom> &get_atoms() const { return atoms; }
496
497 /// print all parameters and the molecular geometry
498 void print(std::ostream& os=std::cout, const bool defined_only=false) const;
499
500 /// print user-defined parameters and the molecular geometry
501 void print_defined_only(std::ostream& os=std::cout) const {
502 this->print(os,true);
503 };
504
505 double inter_atomic_distance(unsigned int i, unsigned int j) const;
506
507 double nuclear_repulsion_energy() const;
508
509 double nuclear_repulsion_derivative(size_t iatom, int axis) const;
510
511 /// compute the nuclear-nuclear contribution to the second derivatives
512
513 /// @param[in] iatom the i-th atom (row of the hessian)
514 /// @param[in] jatom the j-th atom (column of the hessian)
515 /// @param[in] iaxis the xyz axis of the i-th atom
516 /// @param[in] jaxis the xyz axis of the j-th atom
517 /// return the (3*iatom + iaxis, 3*jatom + jaxis) matix element of the hessian
518 double nuclear_repulsion_second_derivative(int iatom, int jatom, int iaxis, int jaxis) const;
519
520 /// return the hessian matrix of the second derivatives d^2/dxdy V
521
522 /// no factor 0.5 included
524
525 /// compute the dipole moment of the nuclei
526
527 /// @param[in] axis the axis (x, y, z)
528 double nuclear_dipole(int axis) const;
529
530 /// compute the derivative of the nuclear dipole wrt a nuclear displacement
531
532 /// @param[in] atom the atom which will be displaced
533 /// @param[in] axis the axis where the atom will be displaced
534 /// @return a vector which all 3 components of the dipole derivative
535 Tensor<double> nuclear_dipole_derivative(const int atom, const int axis) const;
536
537 /// evaluate the nuclear charge density at point `{x,y,z}` using the default
538 /// MADNESS nuclear model. See smoothed_density() for the description
539 /// of the default nuclear model.
540 /// \param x,y,z the point at which the nuclear charge density is evaluated
541 /// \param rscale setting `rscale>1` will make a nucleus larger by a factor of
542 /// \p rscale (in other words, `rcut` is multiplied by the inverse of by this)
543 /// \return the nuclear charge density at point `{x,y,z}`
544 /// \sa smoothed_density()
545 double nuclear_charge_density(double x, double y, double z, double rscale = 1.) const;
546
547 double smallest_length_scale() const;
548
549 std::string symmetrize_and_identify_point_group(const double symtol);
550
551 /// Moves the center of nuclear charge to the origin
552 void center();
553
554 /// rotates the molecule and the external field
555
556 void fix_phase();
557
558 /// @param[in] D the rotation matrix
559 void rotate(const Tensor<double> &D);
560
561 /// translate the molecule
562 void translate(const Tensor<double> &translation);
563
565
566 /// compute the mass-weighting matrix for the hessian
567
568 /// use as
569 /// mass_weighted_hessian=inner(massweights,inner(hessian,massweights));
571 Tensor<double> M(3 * natom(), 3 * natom());
572 for (size_t i = 0; i < natom(); i++) {
573 const double sqrtmass = 1.0 / sqrt(get_atom(i).get_mass_in_au());
574 M(3 * i, 3 * i) = sqrtmass;
575 M(3 * i + 1, 3 * i + 1) = sqrtmass;
576 M(3 * i + 2, 3 * i + 2) = sqrtmass;
577 }
578 return M;
579 }
580
582
583 void orient(bool verbose = false);
584
585 double total_nuclear_charge() const;
586
587 /// nuclear attraction potential for the whole molecule
588 double nuclear_attraction_potential(double x, double y, double z) const;
589
590 /// nuclear attraction potential for a specific atom in the molecule
591 double atomic_attraction_potential(int iatom, double x, double y, double z) const;
592
593 double molecular_core_potential(double x, double y, double z) const;
594
595 double core_potential_derivative(int atom, int axis, double x, double y, double z) const;
596
597 double nuclear_attraction_potential_derivative(int atom, int axis, double x, double y, double z) const;
598
599 double nuclear_attraction_potential_second_derivative(int atom, int iaxis, int jaxis, double x, double y, double z) const;
600
601 bool operator==(const Molecule& other) const {
602 if (atoms.size() != other.atoms.size() || rcut.size() != other.rcut.size() || pointgroup_ != other.pointgroup_) return false;
603 for (size_t i = 0; i < atoms.size(); ++i) {
604 if (not (atoms[i] == other.atoms[i])) return false;
605 }
606 for (size_t i = 0; i < rcut.size(); ++i) {
607 if (rcut[i] != other.rcut[i]) return false;
608 }
609
610 return (field-other.field).normf()<1.e-13 && parameters == other.parameters;
611 }
612
613 template <typename Archive>
614 void serialize(Archive &ar) {
616 }
617
618 hashT hash() const {
619 hashT h = hash_range(atoms.begin(), atoms.end());
620 hash_combine(h, hash_range(rcut.begin(), rcut.end()));
622 return h;
623 }
624 [[nodiscard]] json to_json() const;
626 void from_json(const json &mol_json);
627};
628
629} // namespace madness
630
631#endif
double q(double t)
Definition DKops.h:18
std::filesystem::path path
Definition InputWriter.cpp:3
Declaration of utility class and functions for atom.
Definition mentity.h:71
Definition molecule.h:60
Atom(double x, double y, double z, double q, unsigned int atomic_number)
Definition molecule.h:78
double y
Definition molecule.h:62
unsigned int atomic_number
Atomic number.
Definition molecule.h:63
int get_atomic_number() const
Definition molecule.h:104
Atom(double x, double y, double z, double q, unsigned int atomic_number, bool pseudo_atom)
Definition molecule.h:67
double x
Definition molecule.h:62
double z
Definition molecule.h:62
Atom(const Atom &a)
Definition molecule.h:90
bool operator==(const Atom &other) const
Definition molecule.h:95
madness::Vector< double, 3 > get_coords() const
Definition molecule.h:106
Atom()
Default construct makes a zero charge ghost atom at origin.
Definition molecule.h:93
double mass
Mass.
Definition molecule.h:64
double q
Coordinates and charge in atomic units.
Definition molecule.h:62
void serialize(Archive &ar)
Definition molecule.h:112
double get_mass_in_au() const
return the mass in atomic units (electron mass = 1 a.u.)
Definition molecule.h:109
hashT hash() const
Definition molecule.h:115
bool pseudo_atom
Indicates if this atom uses a pseudopotential.
Definition molecule.h:65
Definition corepotential.h:148
unsigned int n_core_orb_base(const unsigned int atn) const
Definition corepotential.h:173
std::string guess_file() const
Definition corepotential.h:177
bool is_defined(const unsigned int atn) const
Definition corepotential.h:165
unsigned int get_core_l(unsigned int atn, unsigned int core) const
Definition corepotential.h:187
void set_eprec(double value)
Definition corepotential.cc:369
void set_rcut(double value)
Definition corepotential.cc:379
double get_core_bc(unsigned int atn, unsigned int core) const
Definition corepotential.h:191
Definition molecule.h:129
void read_structure_from_library(const std::string &name)
Definition molecule.cc:251
std::vector< madness::Vector< double, 3 > > get_all_coords_vec() const
Definition molecule.cc:463
static std::string get_structure_library_path()
Definition molecule.cc:224
std::vector< double > get_rcut() const
Definition molecule.h:483
void read_core_file(const std::string &filename)
Definition molecule.cc:1265
double bounding_cube() const
Returns the half width of the bounding cube.
Definition molecule.cc:1070
std::vector< double > atomic_radii
Definition molecule.h:475
void symmetrize_for_op(opT op, const double symtol)
Definition molecule.cc:810
void update_rcut_with_eprec(double value)
updates rcuts with given eprec
Definition molecule.cc:484
Tensor< double > nuclear_dipole_derivative(const int atom, const int axis) const
compute the derivative of the nuclear dipole wrt a nuclear displacement
Definition molecule.cc:650
void set_all_coords(const madness::Tensor< double > &newcoords)
Definition molecule.cc:474
std::string guess_file() const
Definition molecule.h:430
double smallest_length_scale() const
Definition molecule.cc:750
double get_core_bc(unsigned int atn, unsigned int c) const
Definition molecule.h:443
double atomic_attraction_potential(int iatom, double x, double y, double z) const
nuclear attraction potential for a specific atom in the molecule
Definition molecule.cc:1112
double total_nuclear_charge() const
Definition molecule.cc:1080
double nuclear_dipole(int axis) const
compute the dipole moment of the nuclei
Definition molecule.cc:620
const std::vector< Atom > & get_atoms() const
Definition molecule.h:495
std::vector< Atom > atoms
Definition molecule.h:318
void translate(const Tensor< double > &translation)
translate the molecule
Definition molecule.cc:779
void center()
Moves the center of nuclear charge to the origin.
Definition molecule.cc:760
const Atom & get_atom(unsigned int i) const
Definition molecule.cc:502
bool operator==(const Molecule &other) const
Definition molecule.h:601
madness::Tensor< double > get_all_coords() const
Definition molecule.cc:452
void orient(bool verbose=false)
Centers and orients the molecule in a standard manner.
Definition molecule.cc:978
unsigned int get_atom_charge(unsigned int i) const
Definition molecule.cc:425
double core_derivative(int atom, int axis, unsigned int core, int m, double x, double y, double z) const
Definition molecule.cc:1222
int find_symmetry_equivalent_atom(int iatom, opT op, const double symtol) const
Definition molecule.cc:799
double molecular_core_potential(double x, double y, double z) const
Definition molecule.cc:1235
void print_defined_only(std::ostream &os=std::cout) const
print user-defined parameters and the molecular geometry
Definition molecule.h:501
std::vector< std::string > cubefile_header(const Vector< double, 3 > offset=Vector< double, 3 >(0.0)) const
print out a Gaussian cubefile header
Definition molecule.cc:264
std::string get_pointgroup() const
Definition molecule.h:332
bool get_pseudo_atom(unsigned int i) const
Definition molecule.cc:440
double nuclear_attraction_potential(double x, double y, double z) const
nuclear attraction potential for the whole molecule
Definition molecule.cc:1088
std::string symmetrize_and_identify_point_group(const double symtol)
Definition molecule.cc:866
void read_file(const std::string &filename)
Definition molecule.cc:279
Tensor< double > center_of_mass() const
compute the center of mass
Definition molecule.cc:948
std::string pointgroup_
Definition molecule.h:325
hashT hash() const
Definition molecule.h:618
void fix_phase()
rotates the molecule and the external field
Definition molecule.cc:1024
static std::istream & position_stream_in_library(std::ifstream &f, const std::string &name)
Definition molecule.cc:230
void set_atom_coords(unsigned int i, double x, double y, double z)
Definition molecule.cc:445
json to_json_if_precedence(std::string const &precedence) const
Definition molecule.h:133
double inter_atomic_distance(unsigned int i, unsigned int j) const
Definition molecule.cc:588
bool test_for_inverse(const double symtol) const
Definition molecule.cc:849
size_t natom() const
Definition molecule.h:457
double core_eval(int atom, unsigned int core, int m, double x, double y, double z) const
Definition molecule.cc:1213
double nuclear_repulsion_derivative(size_t iatom, int axis) const
Definition molecule.cc:657
std::vector< double > rcut
Definition molecule.h:319
void set_rcut(double value)
Definition molecule.cc:496
void set_core_rcut(double value)
Definition molecule.h:487
void set_core_eprec(double value)
Definition molecule.h:485
bool is_potential_defined(unsigned int atn) const
Definition molecule.h:449
double nuclear_attraction_potential_second_derivative(int atom, int iaxis, int jaxis, double x, double y, double z) const
the second derivative of the (smoothed) nuclear potential Z/r
Definition molecule.cc:1156
void serialize(Archive &ar)
Definition molecule.h:614
double nuclear_repulsion_energy() const
Definition molecule.cc:595
unsigned int get_atomic_number(unsigned int i) const
Definition molecule.cc:430
void swapaxes(int ix, int iy)
Definition molecule.cc:853
static constexpr char const * tag
Definition molecule.h:132
static void print_parameters()
Definition molecule.cc:120
json to_json() const
Definition molecule.cc:512
unsigned int get_core_l(unsigned int atn, unsigned int c) const
Definition molecule.h:441
Tensor< double > nuclear_repulsion_hessian() const
return the hessian matrix of the second derivatives d^2/dxdy V
Definition molecule.cc:677
void add_atom(double x, double y, double z, double q, int atn)
Definition molecule.cc:401
Tensor< double > moment_of_inertia() const
Definition molecule.cc:964
Molecule()
Makes a molecule with zero atoms.
Definition molecule.h:397
double nuclear_charge_density(double x, double y, double z, double rscale=1.) const
Definition molecule.cc:1184
void set_atom_charge(unsigned int i, double zeff)
Definition molecule.cc:420
double get_eprec() const
Definition molecule.h:489
double nuclear_repulsion_second_derivative(int iatom, int jatom, int iaxis, int jaxis) const
compute the nuclear-nuclear contribution to the second derivatives
Definition molecule.cc:701
GeometryParameters parameters
Definition molecule.h:328
void from_json(const json &mol_json)
Definition molecule.cc:537
void print(std::ostream &os=std::cout, const bool defined_only=false) const
print all parameters and the molecular geometry
Definition molecule.cc:568
unsigned int n_core_orb(unsigned int atn) const
Definition molecule.h:434
madness::Tensor< double > field
Definition molecule.h:321
unsigned int n_core_orb_all() const
Definition molecule.cc:1201
void set_pseudo_atom(unsigned int i, bool psat)
Definition molecule.cc:435
void insert_symbols_and_geometry(json &mol_json) const
Definition molecule.cc:523
CorePotentialManager core_pot
Definition molecule.h:320
Tensor< double > massweights() const
compute the mass-weighting matrix for the hessian
Definition molecule.h:570
void get_structure()
Definition molecule.cc:158
bool test_for_c2(double xaxis, double yaxis, double zaxis, const double symtol) const
Definition molecule.cc:841
double core_potential_derivative(int atom, int axis, double x, double y, double z) const
Definition molecule.cc:1250
void read_xyz(const std::string filename)
Definition molecule.cc:356
bool test_for_op(opT op, const double symtol) const
Definition molecule.cc:789
double nuclear_attraction_potential_derivative(int atom, int axis, double x, double y, double z) const
Definition molecule.cc:1125
bool is_potential_defined_atom(int i) const
Definition molecule.h:451
void read(std::istream &f)
Definition molecule.cc:307
bool test_for_sigma(double xaxis, double yaxis, double zaxis, const double symtol) const
Definition molecule.cc:845
void rotate(const Tensor< double > &D)
Definition molecule.cc:1053
class for holding the parameters for calculation
Definition chem/QCCalculationParametersBase.h:296
void read_input_and_commandline_options(World &world, const commandlineparser &parser, const std::string tag)
Definition chem/QCCalculationParametersBase.h:332
bool throw_if_datagroup_not_found
Definition chem/QCCalculationParametersBase.h:373
void set_user_defined_value(const std::string &key, const T &value)
Definition chem/QCCalculationParametersBase.h:542
void read_commandline_options(World &world, const commandlineparser &parser, const std::string tag)
read the parameters from the command line and broadcast
Definition QCCalculationParametersBase.cc:121
void print(const std::string header="", const std::string footer="") const
print all parameters
Definition QCCalculationParametersBase.cc:32
bool ignore_unknown_keys
Definition chem/QCCalculationParametersBase.h:371
bool ignore_unknown_keys_silently
Definition chem/QCCalculationParametersBase.h:372
bool is_user_defined(std::string key) const
Definition chem/QCCalculationParametersBase.h:315
json to_json_if_precedence(const std::string &precedence) const
convert all parameters to a json object, but only those with a given precedence
Definition chem/QCCalculationParametersBase.h:530
void set_derived_value(const std::string &key, const T &value)
Definition chem/QCCalculationParametersBase.h:429
A tensor is a multidimensional array.
Definition tensor.h:318
A simple, fixed dimension vector.
Definition vector.h:64
A parallel world class.
Definition world.h:134
Declaration of core potential related class.
static const double eprec
Definition hatom_sf_dirac.cc:18
Tensor< double > op(const Tensor< double > &x)
Definition kain.cc:508
#define MADNESS_EXCEPTION(msg, value)
Macro for throwing a MADNESS exception.
Definition madness_exception.h:119
Header to declare stuff which has not yet found a home.
constexpr double atomic_mass_in_au
Atomic mass in atomic units.
Definition constants.h:269
Namespace for all elements and tools of MADNESS.
Definition DFParameters.h:10
std::ostream & operator<<(std::ostream &os, const particle< PDIM > &p)
Definition lowrankfunction.h:401
void hash_range(hashT &seed, It first, It last)
Definition worldhash.h:280
static const char * filename
Definition legendre.cc:96
double abs(double x)
Definition complexfun.h:48
void hash_combine(hashT &seed, const T &v)
Combine hash values.
Definition worldhash.h:260
Key< NDIM > displacement(const Key< NDIM > &source, const Key< NDIM > &target)
given a source and a target, return the displacement in translation
Definition key.h:533
const AtomicData & get_atomic_data(unsigned int atomic_number)
Definition atomutil.cc:167
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
nlohmann::json json
Definition chem/QCCalculationParametersBase.h:30
NDIM & f
Definition mra.h:2622
std::size_t hashT
The hash value type.
Definition worldhash.h:145
static XNonlinearSolver< std::vector< Function< T, NDIM > >, T, vector_function_allocator< T, NDIM > > nonlinear_vector_solver(World &world, const long nvec)
Definition nonlinsol.h:371
std::string name(const FuncType &type, const int ex=-1)
Definition ccpairfunction.h:28
madness::hashT hash_value(const std::array< T, N > &a)
Hash std::array with madness hash.
Definition array_addons.h:78
static const double a
Definition nonlinschro.cc:118
static const double c
Definition relops.cc:10
static const double m
Definition relops.cc:9
static const double thresh
Definition rk.cc:45
Definition test_ar.cc:204
const double mass
the atomic mass
Definition atomutil.h:64
Definition molecule.h:141
bool psp_calc() const
Definition molecule.h:303
std::string source_name() const
Definition molecule.h:298
std::string core_type() const
Definition molecule.h:302
void set_global_convenience_options(const commandlineparser &parser)
Definition molecule.h:194
std::set< std::string > case_sensitive_keys() const override
source_name is a path (xyz file / input file) – never case-fold it
Definition molecule.h:190
double symtol() const
Definition molecule.h:306
bool no_orient() const
Definition molecule.h:305
static std::string derive_source_type_from_name(const std::string name, const commandlineparser &parser)
Definition molecule.h:308
static std::string input_tag(const commandlineparser &parser)
name of the data group carrying the geometry in the input file
Definition molecule.cc:145
bool pure_ae() const
Definition molecule.h:304
GeometryParameters(const GeometryParameters &other)=default
std::string get_tag() const override
Definition molecule.h:185
GeometryParameters()
Definition molecule.h:162
static std::string absolute_path(const std::string &path)
make a relative path absolute, relative to the current working directory
Definition molecule.cc:138
GeometryParameters(World &world, const commandlineparser &parser)
Definition molecule.h:144
std::string units() const
Definition molecule.h:301
std::vector< double > field() const
Definition molecule.h:299
double eprec() const
Definition molecule.h:300
std::string source_type() const
Definition molecule.h:297
void set_derived_values(const commandlineparser &parser)
Definition molecule.h:214
Definition molecule.h:354
double yaxis
Definition molecule.h:355
void operator()(double &x, double &y, double &z) const
Definition molecule.h:357
double xaxis
Definition molecule.h:355
apply_c2(double xaxis, double yaxis, double zaxis)
Definition molecule.h:356
double zaxis
Definition molecule.h:355
Definition molecule.h:385
double yaxis
Definition molecule.h:386
void operator()(double &x, double &y, double &z) const
Definition molecule.h:388
double zaxis
Definition molecule.h:386
apply_inverse(double xaxis, double yaxis, double zaxis)
Definition molecule.h:387
double xaxis
Definition molecule.h:386
Definition molecule.h:370
void operator()(double &x, double &y, double &z) const
Definition molecule.h:373
apply_sigma(double xaxis, double yaxis, double zaxis)
Definition molecule.h:372
double xaxis
Definition molecule.h:371
double yaxis
Definition molecule.h:371
double zaxis
Definition molecule.h:371
very simple command line parser
Definition commandlineparser.h:28
std::string value(const std::string key) const
Definition commandlineparser.h:84
bool key_exists(std::string key) const
Definition commandlineparser.h:80
std::string value_raw(const std::string key) const
Definition commandlineparser.h:93
Defines and implements most of Tensor.
void e()
Definition test_sig.cc:75
const double offset
Definition testfuns.cc:143
double h(const coord_1d &r)
Definition testgconv.cc:175
std::size_t axis
Definition testpdiff.cc:59
Implement the madness:Vector class, an extension of std::array that supports some mathematical operat...