pub struct FlexuralStrengthFactors {
pub steel: f64,
pub rebar: f64,
}Expand description
曲げ降伏 My 算定に用いる材料強度係数。
公称値解析では (1.0, 1.0)、保有水平耐力計算では鋼材・主筋それぞれの
材料強度割増係数を与える。
Fields§
§steel: f64鋼材(部材材料)の σy 倍率。
rebar: f64RC 主筋の σy 倍率。
Implementations§
Trait Implementations§
Source§impl Clone for FlexuralStrengthFactors
impl Clone for FlexuralStrengthFactors
Source§fn clone(&self) -> FlexuralStrengthFactors
fn clone(&self) -> FlexuralStrengthFactors
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 FlexuralStrengthFactors
Source§impl Debug for FlexuralStrengthFactors
impl Debug for FlexuralStrengthFactors
Source§impl PartialEq for FlexuralStrengthFactors
impl PartialEq for FlexuralStrengthFactors
Source§fn eq(&self, other: &FlexuralStrengthFactors) -> bool
fn eq(&self, other: &FlexuralStrengthFactors) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FlexuralStrengthFactors
Auto Trait Implementations§
impl Freeze for FlexuralStrengthFactors
impl RefUnwindSafe for FlexuralStrengthFactors
impl Send for FlexuralStrengthFactors
impl Sync for FlexuralStrengthFactors
impl Unpin for FlexuralStrengthFactors
impl UnsafeUnpin for FlexuralStrengthFactors
impl UnwindSafe for FlexuralStrengthFactors
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