// // atominfo.h // // Copyright (C) 1996 Limit Point Systems, Inc. // // Author: Curtis Janssen // Maintainer: LPS // // This file is part of the SC Toolkit. // // The SC Toolkit is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // // The SC Toolkit is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with the SC Toolkit; see the file COPYING.LIB. If not, write to // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // The U.S. Government is granted a limited license as per AL 91-7. // #ifndef _chemistry_molecule_atominfo_h #define _chemistry_molecule_atominfo_h #include #include #include #include #include namespace sc { class Units; /** The AtomInfo class provides information about atoms. The information is kept in a file named atominfo.kv in the SC library directory. That information can be overridden by the user. */ class AtomInfo: public SavableState { private: enum { Nelement = 118, DefaultZ = 0 }; struct atom { int Z; char *name; char *symbol; }; static struct atom elements_[Nelement]; std::map name_to_Z_; std::map symbol_to_Z_; std::map Z_to_names_; std::map Z_to_symbols_; std::map Z_to_mass_; std::map Z_to_atomic_radius_; std::map Z_to_vdw_radius_; std::map Z_to_bragg_radius_; std::map Z_to_maxprob_radius_; std::map > Z_to_rgb_; std::map Z_to_ip_; double atomic_radius_scale_; double vdw_radius_scale_; double bragg_radius_scale_; double maxprob_radius_scale_; char *overridden_values_; void load_library_values(); void override_library_values(const Ref &keyval); void load_values(const Ref& keyval, int override); void load_values(std::map&, double *scale, const char *keyword, const Ref &keyval, int override, const Ref &); void load_values(std::map >&, const char *keyword, const Ref &keyval, int override); void add_overridden_value(const char *assignment); void initialize_names(); double lookup_value(const std::map& values, int Z) const; double lookup_array_value(const std::map >& values, int Z, int i) const; public: AtomInfo(); /** The AtomInfo KeyVal constructor is used to generate a AtomInfo object from the input. Default values will be read in from the atominfo.kv file in library directory. These can be overridden by specifying the keyword below. The library file is also read using a KeyVal constructor syntax, so consult that file for an example.
KeywordTypeDefaultDescription
mass:unitstringamuThe unit to be used for masses. See the Units class for more information about units.
mass:symboldoublelibrary valueThe mass associated with the given atomic symbol.
vdw_radius:unitstringbohrThe unit to be used for van der Waals radii. See the Units class for more information about units.
vdw_radius:scaling_factordouble1.0The scaling factor to be used for all van der Waals radii, including library values.
vdw_radius:symboldoublelibrary value The van der Waals radius associated with the given atomic symbol.
atomic_radius:unitstringbohrThe unit to be used for atomic radii. See the Units class for more information about units.
atomic_radius:scaling_factordouble1.0The scaling factor to be used for all atomic radii, including library values.
atomic_radius:symboldoublelibrary value The atomic radius associated with the given atomic symbol.
bragg_radius:unitstringbohrThe unit to be used for Bragg radii. See the Units class for more information about units.
bragg_radius:scaling_factordouble1.0The scaling factor to be used for all Bragg radii, including library values.
bragg_radius:symboldoublelibrary value The Bragg radius associated with the given atomic symbol.
maxprob_radius:unitstringbohrThe unit to be used for maximum probability radii. See the Units class for more information about units.
maxprob_radius:scaling_factordouble1.0The scaling factor to be used for all maximum probability radii, including library values.
maxprob_radius:symboldoublelibrary valueThe maximum probability radius associated with the given atomic symbol.
ip:unitstringHartreeThe unit to be used for ionization potentials. See the Units class for more information about units.
ip:symboldoublelibrary valueThe ionization potential for the given atom.
rgb:symboldouble[3]library valueA vector with the red, green, and blue values used to color each atom. Each element is between 0 (off) and 1 (on).
*/ AtomInfo(const Ref&); AtomInfo(StateIn&); ~AtomInfo(); void save_data_state(StateOut& s); /// These return various measures of the atom's radius. double vdw_radius(int Z) const; double bragg_radius(int Z) const; double atomic_radius(int Z) const; double maxprob_radius(int Z) const; /// Returns the atomization potential for atomic number Z. double ip(int Z) const; /// Return the scale factor for the VdW radii. double vdw_radius_scale() const { return vdw_radius_scale_; } /// Return the scale factor for the Bragg radii. double bragg_radius_scale() const { return bragg_radius_scale_; } /// Return the scale factor for the atomic radii. double atomic_radius_scale() const { return atomic_radius_scale_; } /// Return the scale factor for the maximum probability radii. double maxprob_radius_scale() const { return maxprob_radius_scale_; } /** These return information about the color of the atom for visualization programs. */ double rgb(int Z, int color) const; double red(int Z) const; double green(int Z) const; double blue(int Z) const; /// This returns the mass of the most abundant isotope. double mass(int Z) const; /// This returns the full name of the element. std::string name(int Z); /// This returns the symbol for the element. std::string symbol(int Z); /// This converts a name or symbol to the atomic number. int string_to_Z(const std::string &, int allow_exceptions = 1); }; } #endif // Local Variables: // mode: c++ // c-file-style: "CLJ" // End: