Skip to main content

DiaphragmRef

Struct DiaphragmRef 

Source
pub struct DiaphragmRef<'a> {
    pub story: StoryId,
    pub master: NodeId,
    pub slaves: &'a [NodeId],
    pub weight: Option<f64>,
    pub ci_override: Option<f64>,
}
Expand description

階に属する剛床の参照ビュー(Constraint::RigidDiaphragm の内容)。

剛床の実体は拘束として保持されるため、階から剛床を辿る側は本ビューを介する (Model::diaphragms_of)。

Fields§

§story: StoryId§master: NodeId§slaves: &'a [NodeId]§weight: Option<f64>

この剛床が負担する地震用重量 [N]。多剛床の階では層の水平力 Pi を 剛床ごとの重量比で分配するために用いる(多剛床の設計用せん断力。 令88条・昭55建告1793号)。None は未算定(階に単一剛床なら層重量全量)。

§ci_override: Option<f64>

副剛床の層せん断力係数 Ci の直接入力(令88条・昭55建告1793号の 層せん断力係数)。Some の剛床は主系統の Ai 分布から 除外され、水平力 = ci_override × 剛床重量(等価震度扱い。上階に同一系統の 剛床が積み上がらない副剛床を想定)として作用する。None は主系統(Ai 分布)。

Trait Implementations§

Source§

impl<'a> Clone for DiaphragmRef<'a>

Source§

fn clone(&self) -> DiaphragmRef<'a>

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<'a> Copy for DiaphragmRef<'a>

Source§

impl<'a> Debug for DiaphragmRef<'a>

Source§

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

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

impl<'a> PartialEq for DiaphragmRef<'a>

Source§

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

Auto Trait Implementations§

§

impl<'a> Freeze for DiaphragmRef<'a>

§

impl<'a> RefUnwindSafe for DiaphragmRef<'a>

§

impl<'a> Send for DiaphragmRef<'a>

§

impl<'a> Sync for DiaphragmRef<'a>

§

impl<'a> Unpin for DiaphragmRef<'a>

§

impl<'a> UnsafeUnpin for DiaphragmRef<'a>

§

impl<'a> UnwindSafe for DiaphragmRef<'a>

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.