Duflo-Zuker mass formula from tables. More...
#include <nucmass_dz.h>
Public Member Functions | |
nucmass_dz_table (std::string model="96", bool external=false) | |
Create a new mass formula object. More... | |
virtual bool | is_included (int Z, int N) |
Return false if the mass formula does not include specified nucleus. | |
virtual double | mass_excess (int Z, int N) |
Given Z and N , return the mass excess in MeV. | |
bool | is_loaded () |
Verify that the constructor properly loaded the table. | |
virtual const char * | type () |
Return the type, "nucmass_dz_table" . | |
int | get_nentries () |
Return number of entries. | |
![]() | |
virtual double | mass_excess_d (double Z, double N) |
Given Z and N , return the mass excess in MeV. | |
![]() | |
virtual int | get_nucleus (int Z, int N, nucleus &n) |
Fill n with the information from nucleus with the given neutron and proton number. More... | |
virtual double | electron_binding (double Z) |
Return the approximate electron binding energy in MeV. | |
virtual double | binding_energy (int Z, int N) |
Return the binding energy in MeV. More... | |
virtual double | binding_energy_d (double Z, double N) |
Return the binding energy in MeV. More... | |
virtual double | total_mass (int Z, int N) |
Return the total mass of the nucleus (without the electrons) in MeV. | |
virtual double | total_mass_d (double Z, double N) |
Return the total mass of the nucleus (without the electrons) in MeV. | |
virtual double | atomic_mass (int Z, int N) |
Return the atomic mass of the nucleus in MeV (includes electrons and their binding energy) | |
virtual double | atomic_mass_d (double Z, double N) |
Return the atomic mass of the nucleus in MeV (includes electrons and their binding energy) | |
![]() | |
int | parse_elstring (std::string ela, int &Z, int &N, int &A) |
Parse a string representing an element. More... | |
int | eltoZ (std::string el) |
Return Z given the element name abbreviation. More... | |
std::string | Ztoel (size_t Z) |
Return the element name abbreviation given Z. More... | |
std::string | tostring (size_t Z, size_t N) |
Return a string of the form "Pb208" for a given Z and N. More... | |
Protected Attributes | |
std::string | reference |
The reference for the original data. | |
table | data |
Table containing the data. | |
int | last |
The last table index for caching. | |
int | n |
The total number of entries. | |
![]() | |
std::map< std::string, int, std::greater< std::string > > | element_table |
A map containing the proton numbers organized by element abbreviation. | |
std::string | element_list [nelements] |
The list of elements organized by proton number. | |
Additional Inherited Members | |
![]() | |
double | m_neut |
Neutron mass in ![]() | |
double | m_prot |
Proton mass in ![]() | |
double | m_elec |
Electron mass in ![]() | |
double | m_amu |
Atomic mass unit in ![]() | |
![]() | |
typedef std::map< std::string, int, std::greater< std::string > >::iterator | table_it |
A convenient typedef for an iterator for element_table. | |
![]() | |
static const int | nelements =119 |
The number of elements (proton number) | |
The mass formulas from Duflo95 as given in the files du_zu_28.feb95
and du_zu_10.feb96
as obtained from http://amdc.in2p3.fr/web/dz.html . These data files have been reformatted for O2scl into HDF files with names du_zu_95.o2
and du_zu_96.o2
.
Definition at line 48 of file nucmass_dz.h.
o2scl::nucmass_dz_table::nucmass_dz_table | ( | std::string | model = "96" , |
bool | external = false |
||
) |
The string model
is either "95"
or "96"
.
Documentation generated with Doxygen. Provided under the
GNU Free Documentation License (see License Information).