pub struct CftCoreProps {
pub inner_width: f64,
pub inner_height: f64,
pub area: f64,
pub iy: f64,
pub iz: f64,
pub j: f64,
}Expand description
CFT 断面の充填コンクリート部分(鋼管の内法で囲まれる部分)の諸元。
剛性側(SectionShape::cft_equivalent_props。等価断面性能の累加)と
耐力側(squid-n-design-jp の CFT 軸終局検定)が同じ値を使うために切り出す。
片方だけ式を直せば静かに食い違うため、算定はここ 1 か所に置く。
Fields§
§inner_width: f64内法幅 [mm](角形は 幅 − 2t、円形は内法径 外径 − 2t)。
inner_height: f64内法せい [mm](角形は せい − 2t、円形は内法径)。
area: f64充填コンクリートの断面積 [mm²]。
iy: f64強軸(せい方向まわり)の断面二次モーメント [mm⁴]。
iz: f64弱軸(幅方向まわり)の断面二次モーメント [mm⁴]。円形は iy と同値。
j: f64St.Venant ねじり定数 [mm⁴]。
Trait Implementations§
Source§impl Clone for CftCoreProps
impl Clone for CftCoreProps
Source§fn clone(&self) -> CftCoreProps
fn clone(&self) -> CftCoreProps
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 CftCoreProps
Source§impl Debug for CftCoreProps
impl Debug for CftCoreProps
Source§impl PartialEq for CftCoreProps
impl PartialEq for CftCoreProps
Source§fn eq(&self, other: &CftCoreProps) -> bool
fn eq(&self, other: &CftCoreProps) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CftCoreProps
Auto Trait Implementations§
impl Freeze for CftCoreProps
impl RefUnwindSafe for CftCoreProps
impl Send for CftCoreProps
impl Sync for CftCoreProps
impl Unpin for CftCoreProps
impl UnsafeUnpin for CftCoreProps
impl UnwindSafe for CftCoreProps
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