Skip to main content

HysteresisModel

Enum HysteresisModel 

Source
pub enum HysteresisModel {
    Auto,
    Retrograde,
    Standard,
    OriginOriented,
    MaxPointOriented,
    Takeda,
    TsujiYamada,
    SteelBuckling,
    KarsanJirsa,
}
Expand description

部材の復元力特性(履歴則)。各履歴則の原典(武田モデル等)に基づく 履歴特性で、既定の非線形特性は本実装の既定として与える。 材端集中バネ(ConcentratedSpringBeam)の曲げ履歴に適用され、Auto は 構造種別ごとの既定(default_member_hysteresis)へ解決される。

Variants§

§

Auto

既定(構造種別で自動判定: RC/SRC/CFT=武田型、S=標準型)。

§

Retrograde

逆行型(常にスケルトン上、履歴ループなし)。

§

Standard

標準型(Masing 則。除荷開始剛性=初期剛性)。

§

OriginOriented

原点指向型(除荷・再載荷は原点指向の割線)。

§

MaxPointOriented

最大点指向型(Clough 系。反対側の最大経験点を指向)。

§

Takeda

武田型(剛性低下型トリリニア。RC/SRC/CFT 梁の既定)。

§

TsujiYamada

辻・山田型(バイリニア+β 混合硬化。座屈補剛ブレース等)。

§

SteelBuckling

鉄骨大梁の座屈考慮履歴(耐力劣化型+RO 除荷。局部/横/連成座屈)。

§

KarsanJirsa

Karsan–Jirsa 型(Yassin 1994 / Concrete02 系。残留塑性ひずみを通る割線 除荷・ひび割れ開閉。ファイバー断面・MS のコンクリートの時刻歴既定)。

Implementations§

Source§

impl HysteresisModel

Source

pub const ALL: [HysteresisModel; 9]

UI・列挙用の全候補。

Source

pub fn label(&self) -> &'static str

表示用の日本語名。

Trait Implementations§

Source§

impl Clone for HysteresisModel

Source§

fn clone(&self) -> HysteresisModel

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 Copy for HysteresisModel

Source§

impl Debug for HysteresisModel

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for HysteresisModel

Source§

fn default() -> HysteresisModel

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for HysteresisModel

Source§

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 Eq for HysteresisModel

Source§

impl PartialEq for HysteresisModel

Source§

fn eq(&self, other: &HysteresisModel) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for HysteresisModel

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for HysteresisModel

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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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.