Skip to main content

RadiationDamage

Struct RadiationDamage 

Source
pub struct RadiationDamage {
    pub displacement_energy: f64,
    pub pka_energy: f64,
    pub atomic_number: u32,
    pub atomic_mass: f64,
}
Expand description

Radiation damage model for crystalline metals.

Implements the NRT (Norgett-Robinson-Torrens) displacement model, Kinchin-Pease approximation, cascade statistics, recombination, and void swelling correlations relevant to structural materials in fission and fusion reactors.

Fields§

§displacement_energy: f64

Threshold displacement energy Ed [eV] for the host lattice atom.

§pka_energy: f64

Primary knock-on atom (PKA) kinetic energy [eV].

§atomic_number: u32

Atomic number of the target atom.

§atomic_mass: f64

Atomic mass of the target atom [amu].

Implementations§

Source§

impl RadiationDamage

Source

pub fn new( displacement_energy: f64, pka_energy: f64, atomic_number: u32, atomic_mass: f64, ) -> Self

Create a new radiation damage model.

§Arguments
  • displacement_energy – Ed in eV (typical: 25–40 eV for metals).
  • pka_energy – PKA recoil energy in eV.
  • atomic_number – Z of host lattice.
  • atomic_mass – M of host lattice in amu.
Source

pub fn nrt_dpa(&self, fluence: f64) -> f64

NRT displacements per atom (dpa) for a given neutron fluence.

dpa = 0.8 · ν_NRT · fluence / (2 · Ed) where ν_NRT is the number of displacements from one PKA event.

§Arguments
  • fluence – Neutron fluence [n/m²].
Source

pub fn kinchin_pease(&self, energy: f64) -> usize

Kinchin-Pease number of displacements from a single PKA.

Returns the integer number of Frenkel pairs produced:

  • 0 if energy < Ed
  • 1 if Ed ≤ energy < 2Ed
  • energy/(2Ed) otherwise (integer division)
§Arguments
  • energy – PKA kinetic energy in eV.
Source

pub fn cascade_size(&self, energy: f64) -> usize

Estimate the number of atoms in a displacement cascade.

Uses an empirical power law: N_cascade ≈ (E_PKA / Ed)^0.75.

§Arguments
  • energy – PKA energy in eV.
Source

pub fn recombination_fraction(&self) -> f64

Recombination fraction of Frenkel pairs in a cascade.

Based on Brinkman’s model: f_rec = 1 − 1/(1 + α·ν) where α = 0.15.

Source

pub fn swelling(&self, dpa: f64) -> f64

Void swelling as a function of cumulative damage in dpa.

Empirical model: ΔV/V ≈ A · (dpa − dpa_inc)^n for dpa > dpa_inc, with A = 1.5e-3 %/dpa^n, dpa_inc = 5 dpa (incubation dose), n = 1.5.

Returns swelling in percent.

§Arguments
  • dpa – Cumulative dose in displacements per atom.

Trait Implementations§

Source§

impl Clone for RadiationDamage

Source§

fn clone(&self) -> RadiationDamage

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RadiationDamage

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.