pub enum DamperKind {
Maxwell,
HystereticBilinear,
}Expand description
制振ダンパーの種別(各制振部材の力学モデル)。
Variants§
Maxwell
マクスウェル要素(バネ Kd と粘性ダッシュポットの直列。速度依存型)。
HystereticBilinear
履歴型(弾塑性バイリニア)ダンパー。鋼材系ダンパー(SUB/アンボンドブレース/ 二重鋼管座屈補剛ブレース/鉛ダンパー/U 型ダンパー等の標準型バイリニア)。
Trait Implementations§
Source§impl Clone for DamperKind
impl Clone for DamperKind
Source§fn clone(&self) -> DamperKind
fn clone(&self) -> DamperKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DamperKind
Source§impl Debug for DamperKind
impl Debug for DamperKind
Source§impl Default for DamperKind
impl Default for DamperKind
Source§fn default() -> DamperKind
fn default() -> DamperKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DamperKind
impl<'de> Deserialize<'de> for DamperKind
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
impl Eq for DamperKind
Source§impl PartialEq for DamperKind
impl PartialEq for DamperKind
Source§fn eq(&self, other: &DamperKind) -> bool
fn eq(&self, other: &DamperKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DamperKind
impl Serialize for DamperKind
impl StructuralPartialEq for DamperKind
Auto Trait Implementations§
impl Freeze for DamperKind
impl RefUnwindSafe for DamperKind
impl Send for DamperKind
impl Sync for DamperKind
impl Unpin for DamperKind
impl UnsafeUnpin for DamperKind
impl UnwindSafe for DamperKind
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