Skip to main content

RcCapacityInput

Struct RcCapacityInput 

Source
pub struct RcCapacityInput {
    pub b: f64,
    pub d: f64,
    pub at: f64,
    pub d_eff: f64,
    pub sigma_y: f64,
    pub fc: f64,
    pub pw: f64,
    pub sigma_wy: f64,
    pub clear_span: f64,
    pub sigma_0: f64,
}
Expand description

RC 矩形断面の簡易終局耐力算定用の入力一式。

Clone, Copy はプッシュオーバー解析(squid_n_solver::nonlinear::pushover)が σ0 を 除く入力一式を保持し、各ステップで σ0 のみ差し替えて rc_qsu_simple を 呼び直す用途(DirThreshold::RcArakawa)のために付与する。全フィールドが f64 のみのため、値のコピーは軽量。

Fields§

§b: f64

断面幅 b [mm]

§d: f64

断面せい D [mm]

§at: f64

引張側主筋の総断面積 at [mm²](片側)

§d_eff: f64

有効せい d_e [mm](= D − dt。dt は crate::rc_rebar_geom::tension_dt と同規約)

§sigma_y: f64

主筋降伏強度 σy [N/mm²]

§fc: f64

コンクリート強度 Fc [N/mm²]

§pw: f64

せん断補強筋比 pw(= aw・組数/(b・ピッチ))

§sigma_wy: f64

せん断補強筋降伏強度 σwy [N/mm²]

§clear_span: f64

内法スパン h0 [mm](反曲点中央を仮定し Qmu = 2Mu/h0)

§sigma_0: f64

軸方向圧縮応力度 σ0 [N/mm²](既定 0)。rc_qsu_simple の軸力項 0.1・σ0・b・j に用いる。荒川式の適用範囲である 0〜0.4Fc に rc_qsu_simple 内でクランプされる(要・原典照合)。

Trait Implementations§

Source§

impl Clone for RcCapacityInput

Source§

fn clone(&self) -> RcCapacityInput

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 RcCapacityInput

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.