67 : fName(name), fSymbol(symbol)
72 ed <<
"Failed to create G4Element " << name <<
" Z= " << zeff <<
" < 1 !";
75 if (std::abs(zeff - iz) > perMillion) {
77 ed <<
"G4Element Warning: " << name <<
" Z= " << zeff <<
" A= " << aeff / (g / mole);
85 fNeff = fAeff / (g / mole);
93 ed <<
"Failed to create G4Element " << name <<
" with Z= " << zeff <<
" N= " << fNeff
94 <<
" N < Z is not allowed" <<
G4endl;
99 fAtomicShells =
new G4double[fNbOfAtomicShells];
100 fNbOfShellElectrons =
new G4int[fNbOfAtomicShells];
102 AddNaturalIsotopes();
104 for (
G4int i = 0; i < fNbOfAtomicShells; ++i) {
108 ComputeDerivedQuantities();
117 : fName(name), fSymbol(symbol)
119 InitializePointers();
121 if (0 >= nIsotopes) {
123 ed <<
"Failed to create G4Element " << name <<
" <" << symbol <<
"> with " << nIsotopes
128 auto n = (std::size_t)nIsotopes;
130 fRelativeAbundanceVector =
new G4double[nIsotopes];
140 if (theIsotopeVector ==
nullptr) {
142 ed <<
"Failed to add Isotope to G4Element " << fName <<
" with Z= " << fZeff
150 if (fNumberOfIsotopes < (
G4int)theIsotopeVector->size()) {
152 if (fNumberOfIsotopes == 0) {
157 ed <<
"Failed to add Isotope Z= " << iz <<
" to G4Element " << fName
158 <<
" with different Z= " << fZeff << fNeff;
163 fRelativeAbundanceVector[fNumberOfIsotopes] = abundance;
164 (*theIsotopeVector)[fNumberOfIsotopes] = isotope;
169 ed <<
"Failed to add Isotope Z= " << iz <<
" to G4Element " << fName
170 <<
" - more isotopes than declared.";
176 if (fNumberOfIsotopes == (
G4int)theIsotopeVector->size()) {
179 for (
G4int i = 0; i < fNumberOfIsotopes; ++i) {
180 fAeff += fRelativeAbundanceVector[i] * (*theIsotopeVector)[i]->GetA();
181 wtSum += fRelativeAbundanceVector[i];
186 fNeff = fAeff / (g / mole);
189 for (
G4int i = 0; i < fNumberOfIsotopes; ++i) {
190 fRelativeAbundanceVector[i] /= wtSum;
195 fAtomicShells =
new G4double[fNbOfAtomicShells];
196 fNbOfShellElectrons =
new G4int[fNbOfAtomicShells];
198 for (
G4int j = 0; j < fNbOfAtomicShells; ++j) {
202 ComputeDerivedQuantities();
208void G4Element::InitializePointers()
210 theIsotopeVector =
nullptr;
211 fRelativeAbundanceVector =
nullptr;
212 fAtomicShells =
nullptr;
213 fNbOfShellElectrons =
nullptr;
215 fNumberOfIsotopes = 0;
216 fNaturalAbundance =
false;
222 fNbOfAtomicShells = 0;
233 delete theIsotopeVector;
234 delete[] fRelativeAbundanceVector;
235 delete[] fAtomicShells;
236 delete[] fNbOfShellElectrons;
240 GetElementTableRef()[fIndexInTable] =
nullptr;
245void G4Element::ComputeDerivedQuantities()
250 GetElementTableRef().push_back(
this);
251 fIndexInTable = GetElementTableRef().size() - 1;
254 ComputeCoulombFactor();
255 ComputeLradTsaiFactor();
265void G4Element::ComputeCoulombFactor()
270 static const G4double k1 = 0.0083, k2 = 0.20206, k3 = 0.0020, k4 = 0.0369;
272 G4double az2 = (fine_structure_const * fZeff) * (fine_structure_const * fZeff);
275 fCoulomb = (k1 * az4 + k2 + 1. / (1. + az2)) * az2 - (k3 * az4 + k4) * az4;
280void G4Element::ComputeLradTsaiFactor()
286 static const G4double Lrad_light[] = {5.31, 4.79, 4.74, 4.71};
287 static const G4double Lprad_light[] = {6.144, 5.621, 5.805, 5.924};
296 Lrad = Lrad_light[iz];
297 Lprad = Lprad_light[iz];
300 Lrad = log184 - logZ3;
301 Lprad = log1194 - 2 * logZ3;
304 fRadTsai = 4 * alpha_rcl2 * fZeff * (fZeff * (Lrad - fCoulomb) + Lprad);
309void G4Element::AddNaturalIsotopes()
316 if (fSymbol.empty()) {
318 if (Z < (
G4int)elmnames.size()) {
319 fSymbol = elmnames[Z];
326 fNumberOfIsotopes = 0;
327 for (
G4int i = 0; i <
n; ++i) {
332 theIsotopeVector =
new G4IsotopeVector((std::size_t)fNumberOfIsotopes,
nullptr);
333 fRelativeAbundanceVector =
new G4double[fNumberOfIsotopes];
336 for (
G4int i = 0; i <
n; ++i) {
340 std::ostringstream strm;
341 strm << fSymbol <<
N;
342 (*theIsotopeVector)[idx] =
new G4Isotope(strm.str(), Z,
N, 0.0, 0);
343 fRelativeAbundanceVector[idx] = x;
348 if (xsum != 0.0 && xsum != 1.0) {
349 for (
G4int i = 0; i < idx; ++i) {
350 fRelativeAbundanceVector[i] /= xsum;
353 fNaturalAbundance =
true;
360 if (i < 0 || i >= fNbOfAtomicShells) {
362 ed <<
"Invalid argument " << i <<
" in for G4Element " << fName <<
" with Z= " << fZeff
363 <<
" and Nshells= " << fNbOfAtomicShells;
367 return fAtomicShells[i];
374 if (i < 0 || i >= fNbOfAtomicShells) {
376 ed <<
"Invalid argument " << i <<
" for G4Element " << fName <<
" with Z= " << fZeff
377 <<
" and Nshells= " << fNbOfAtomicShells;
381 return fNbOfShellElectrons[i];
395 static Holder _holder;
396 return _holder.instance;
403 return &GetElementTableRef();
415 for (
auto const & J : GetElementTableRef())
417 if(J->GetName() == elementName)
425 G4cout <<
"\n---> warning from G4Element::GetElement(). The element: " << elementName
426 <<
" does not exist in the table. Return NULL pointer." <<
G4endl;
435 std::ios::fmtflags mode = flux.flags();
436 flux.setf(std::ios::fixed, std::ios::floatfield);
437 G4long prec = flux.precision(3);
439 flux <<
" Element: " << element->fName <<
" (" << element->fSymbol <<
")"
440 <<
" Z = " << std::setw(4) << std::setprecision(1) << element->fZeff
441 <<
" N = " << std::setw(5) << std::setprecision(1) <<
G4lrint(element->fNeff)
442 <<
" A = " << std::setw(6) << std::setprecision(3) << (element->fAeff) / (g / mole)
445 for (
G4int i = 0; i < element->fNumberOfIsotopes; i++) {
446 flux <<
"\n ---> " << (*(element->theIsotopeVector))[i]
447 <<
" abundance: " << std::setw(6) << std::setprecision(3)
448 << (element->fRelativeAbundanceVector[i]) / perCent <<
" %";
451 flux.precision(prec);
452 flux.setf(mode, std::ios::floatfield);
469 flux <<
"\n***** Table : Nb of elements = " << ElementTable.size() <<
" *****\n" <<
G4endl;
471 for (
auto const & i : ElementTable) {
483 flux <<
"\n***** Vector : Nb of elements = " << ElementVector.size() <<
" *****\n" <<
G4endl;
485 for (
auto const & i : ElementVector) {
std::vector< G4Element * > G4ElementTable
std::vector< const G4Element * > G4ElementVector
std::ostream & operator<<(std::ostream &flux, const G4Element *element)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
std::vector< G4Isotope * > G4IsotopeVector
G4double G4Log(G4double x)
G4TemplateRNGHelper< G4long > * G4TemplateRNGHelper< G4long >::instance
G4GLOB_DLL std::ostream G4cout
static G4int GetNumberOfElectrons(G4int Z, G4int SubshellNb)
static G4double GetBindingEnergy(G4int Z, G4int SubshellNb)
static G4int GetNumberOfShells(G4int Z)
static std::size_t GetNumberOfElements()
void AddIsotope(G4Isotope *isotope, G4double RelativeAbundance)
G4Element(const G4String &name, const G4String &symbol, G4double Zeff, G4double Aeff)
static const G4ElementTable * GetElementTable()
G4int GetNbOfShellElectrons(G4int index) const
static G4Element * GetElement(const G4String &name, G4bool warning=true)
G4double GetAtomicShell(G4int index) const
G4int GetNumberOfNistIsotopes(G4int Z) const
const std::vector< G4String > & GetNistElementNames() const
G4int GetNistFirstIsotopeN(G4int Z) const
static G4NistManager * Instance()
G4double GetIsotopeAbundance(G4int Z, G4int N) const