pub struct ScanPointResult {
pub coord1: f64,
pub coord2: f64,
pub energy_a: f64,
pub energy_b: f64,
pub energy_diff: f64,
pub converged: bool,
pub num_steps: usize,
pub geometry: Geometry,
}Expand description
Represents the result of a single PES scan point.
Fields§
§coord1: f64First scan coordinate value
coord2: f64Second scan coordinate value (may be dummy for 1D scans)
energy_a: f64Energy of state A at this point
energy_b: f64Energy of state B at this point
energy_diff: f64Energy difference (E_A - E_B)
converged: boolWhether the optimization converged at this point
num_steps: usizeNumber of optimization steps taken
geometry: GeometryFinal geometry at this scan point
Trait Implementations§
Source§impl Clone for ScanPointResult
impl Clone for ScanPointResult
Source§fn clone(&self) -> ScanPointResult
fn clone(&self) -> ScanPointResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ScanPointResult
impl RefUnwindSafe for ScanPointResult
impl Send for ScanPointResult
impl Sync for ScanPointResult
impl Unpin for ScanPointResult
impl UnsafeUnpin for ScanPointResult
impl UnwindSafe for ScanPointResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.