Source code for wnnet.nuc

"""This module handles `webnucleo <https://webnucleo.readthedocs.io>`_ collections of nuclides."""

import wnutils.xml as wx
import numpy as np
from scipy.interpolate import interp1d
import wnnet.consts as wc


[docs] class Nuc: """A class for handling nuclei and their data. Args: ``file`` (:obj:`str`): A string giving the XML file name with the\ nuclide data. ``nuc_xpath`` (:obj:`str`, optional): An XPath expression to select\ nuclides. Default is all nuclides. """ def __init__(self, file, nuc_xpath=""): self.xml = wx.Xml(file) self.nuclides = {} self.nuclides[""] = self.xml.get_nuclide_data(nuc_xpath=nuc_xpath)
[docs] def get_nuclides(self, nuc_xpath=""): """Method to return a collection of nuclides. Args: ``nuc_xpath`` (:obj:`str`, optional): An XPath expression to select\ the nuclides. Default is all species in the underlying collection\ of nuclides. Returns: A :obj:`dict` containing `wnutils <https://wnutils.readthedocs.io>`_ nuclides. """ if nuc_xpath not in self.nuclides: self.nuclides[nuc_xpath] = {} new_nuclides = self.xml.get_nuclide_data(nuc_xpath=nuc_xpath) for key, value in new_nuclides.items(): if key in self.nuclides[""]: self.nuclides[nuc_xpath][key] = value return self.nuclides[nuc_xpath]
[docs] def compute_nuclear_partition_function(self, name, t_9): """Method to compute the nuclear partition function for a species. Args: ``name`` (:obj:`str`): A string giving the name of the nuclide\ whose partition function should be computed. ``t_9`` (:obj:`float`): The temperature in 10\\ :sup:`9` K at which\ to compute the partition function. Returns: A :obj:`float` giving the nuclear partition function for the\ species at the input temperature. """ nuclide = self.get_nuclides()[name] v_t = nuclide["t9"] if len(v_t) == 0: return 2.0 * nuclide["spin"] + 1 l_g = np.log10(nuclide["partf"]) if t_9 < v_t[0]: return np.power(10.0, l_g[0]) if t_9 > v_t[len(v_t) - 1]: return np.power(10.0, l_g[len(v_t) - 1]) if len(v_t) <= 2: f_int = interp1d(v_t, l_g, kind="linear") return np.power(10.0, f_int(t_9)) f_int = interp1d(v_t, l_g, kind="cubic") return np.power(10.0, f_int(t_9))
[docs] def compute_quantum_abundance(self, name, t_9, rho): """Method to compute the quantum abundance of the nuclide at the input temperature and density. Args: ``name`` (:obj:`str`): The name of the species. ``t_9`` (:obj:`float`): The temperature in 10\\ :sup:`9` K at\ which to compute the quantum abundance. ``rho`` (:obj:`float`): The density in g/cc at which to compute\ the quantum abundance. Returns: A :obj:`float` giving the quantum abundance for the species\ at the input conditions. """ assert t_9 > 0 and rho > 0, "t_9 and rho must be > 0." mass = self.compute_atomic_mass(name) result = self.compute_nuclear_partition_function(name, t_9) / ( rho * wc.N_A ) p_1 = (mass * wc.MeV_to_ergs) * wc.k_B * t_9 * 1.0e9 p_2 = 2.0 * np.pi * np.power(wc.hbar * wc.c, 2) result *= np.power((p_1 / p_2), 1.5) return result
[docs] def compute_atomic_mass(self, name): """Method to compute the atomic mass of a species. Args: ``name`` (:obj:`str`): The name of the species. Returns: A :obj:`float` containing the atomic mass in MeV. """ nuclide = self.get_nuclides()[name] return nuclide["mass excess"] + nuclide["a"] * wc.m_u_in_MeV
[docs] def compute_binding_energy(self, name): """Method to compute the nuclear binding energy of a species. Args: ``name`` (:obj:`str`): The name of the species. Returns: A :obj:`float` containing the binding energy in MeV. """ nuclides = self.get_nuclides() nuclide = nuclides[name] delta_p = nuclides["h1"]["mass excess"] delta_n = nuclides["n"]["mass excess"] return ( nuclide["z"] * delta_p + (nuclide["a"] - nuclide["z"]) * delta_n - nuclide["mass excess"] )
[docs] def compute_nse_factor(self, name, t_9, rho): """Method to compute the NSE factor for a species. Args: ``name`` (:obj:`str`): The name of the species. ``t_9`` (:obj:`float`): The temperature in 10\\ :sup:`9` K at\ which to compute the NSE factor. ``rho`` (:obj:`float`): The density in g/cc at which to compute\ the NSE factor. Returns: A :obj:`float` giving the NSE factor for the species\ at the input conditions. This factor is the binding energy\ of the species divided by kT plus the logarithm of the\ quantum abundance of the species. """ return np.log(self.compute_quantum_abundance(name, t_9, rho)) + ( (self.compute_binding_energy(name) * wc.MeV_to_ergs) ) / (wc.k_B * (t_9 * 1.0e9))