pub struct SnowFactors {
pub delta1: f64,
pub delta3: f64,
}Expand description
多雪区域の積雪荷重低減係数(令86条 多雪区域の荷重組合せ)。
delta1: 長期積雪DL+LL+δ1・SLの低減係数(既定 0.7)delta3: 地震時DL+LL+δ3・SL±EX/EYの低減係数(既定 0.35)
本実装では直接入力が可能(デフォルト δ1=0.7、δ3=0.35)。 暴風時の δ2 は、風荷重の組合せを生成しないため持たない。
Fields§
§delta1: f64§delta3: f64Trait Implementations§
Source§impl Clone for SnowFactors
impl Clone for SnowFactors
Source§fn clone(&self) -> SnowFactors
fn clone(&self) -> SnowFactors
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 SnowFactors
Source§impl Debug for SnowFactors
impl Debug for SnowFactors
Source§impl Default for SnowFactors
impl Default for SnowFactors
Source§impl PartialEq for SnowFactors
impl PartialEq for SnowFactors
Source§fn eq(&self, other: &SnowFactors) -> bool
fn eq(&self, other: &SnowFactors) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SnowFactors
Auto Trait Implementations§
impl Freeze for SnowFactors
impl RefUnwindSafe for SnowFactors
impl Send for SnowFactors
impl Sync for SnowFactors
impl Unpin for SnowFactors
impl UnsafeUnpin for SnowFactors
impl UnwindSafe for SnowFactors
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