pub struct MixCutOffEnergy {
pub cutoff_energy: f64,
pub unit: Option<EnergyUnit>,
}Expand description
This keyword determines the cutoff energy for the densities used in the density mixing scheme. The value specified determines the extent of the grid used for mixing old and new densities. Density components with wave vectors higher than that specified are not mixed.
§Default
The default value is the CUT_OFF_ENERGY.
§Example
MIX_CUT_OFF_ENERGY : 250.0 eV
Fields§
§cutoff_energy: f64§unit: Option<EnergyUnit>Trait Implementations§
Source§impl Clone for MixCutOffEnergy
impl Clone for MixCutOffEnergy
Source§fn clone(&self) -> MixCutOffEnergy
fn clone(&self) -> MixCutOffEnergy
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 moreSource§impl Debug for MixCutOffEnergy
impl Debug for MixCutOffEnergy
Source§impl Default for MixCutOffEnergy
impl Default for MixCutOffEnergy
Source§fn default() -> MixCutOffEnergy
fn default() -> MixCutOffEnergy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MixCutOffEnergy
impl<'de> Deserialize<'de> for MixCutOffEnergy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MixCutOffEnergy
impl Display for MixCutOffEnergy
Source§impl From<f64> for MixCutOffEnergy
impl From<f64> for MixCutOffEnergy
Source§fn from(value: f64) -> MixCutOffEnergy
fn from(value: f64) -> MixCutOffEnergy
Converts to this type from the input type.
Source§impl KeywordDisplay for MixCutOffEnergy
impl KeywordDisplay for MixCutOffEnergy
Source§impl PartialEq for MixCutOffEnergy
impl PartialEq for MixCutOffEnergy
Source§impl PartialOrd for MixCutOffEnergy
impl PartialOrd for MixCutOffEnergy
Source§impl Serialize for MixCutOffEnergy
impl Serialize for MixCutOffEnergy
impl Copy for MixCutOffEnergy
impl StructuralPartialEq for MixCutOffEnergy
Auto Trait Implementations§
impl Freeze for MixCutOffEnergy
impl RefUnwindSafe for MixCutOffEnergy
impl Send for MixCutOffEnergy
impl Sync for MixCutOffEnergy
impl Unpin for MixCutOffEnergy
impl UnwindSafe for MixCutOffEnergy
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