Skip to main content

CftCoreProps

Struct CftCoreProps 

Source
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: f64

St.Venant ねじり定数 [mm⁴]。

Trait Implementations§

Source§

impl Clone for CftCoreProps

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl Copy for CftCoreProps

Source§

impl Debug for CftCoreProps

Source§

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

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

impl PartialEq for CftCoreProps

Source§

fn eq(&self, other: &CftCoreProps) -> 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 StructuralPartialEq for CftCoreProps

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.