Skip to main content

StructuralGlass

Struct StructuralGlass 

Source
pub struct StructuralGlass {
    pub width: f64,
    pub height: f64,
    pub thickness: f64,
    pub e_glass: f64,
    pub nu_glass: f64,
    pub density: f64,
    pub wind_pressure: f64,
    pub delta_temp: f64,
    pub alpha_cte: f64,
    pub sealant_width: f64,
    pub sealant_shear_strength: f64,
}
Expand description

Structural glass panel — sizing under wind, thermal, and self-weight loads.

Covers monolithic, laminated, and insulating glass units (IGU).

Fields§

§width: f64

Panel width (m).

§height: f64

Panel height (m).

§thickness: f64

Total glass thickness (m) — sum of all plies.

§e_glass: f64

Young’s modulus of glass (Pa) — typically 70 GPa.

§nu_glass: f64

Poisson’s ratio of glass — typically 0.23.

§density: f64

Density of glass (kg/m³) — typically 2500.

§wind_pressure: f64

Design wind pressure (Pa) — positive = inward.

§delta_temp: f64

Temperature delta for thermal stress calculation (°C).

§alpha_cte: f64

Coefficient of thermal expansion (1/°C) — typically 9e-6.

§sealant_width: f64

Silicone joint width (m).

§sealant_shear_strength: f64

Silicone design shear stress capacity (Pa) — typically 0.14 MPa.

Implementations§

Source§

impl StructuralGlass

Source

pub fn monolithic_10mm() -> Self

Default single glazing: 10 mm monolithic, 3×5 m panel.

Source

pub fn self_weight_pressure(&self) -> f64

Self-weight per unit area (Pa = N/m²).

Source

pub fn max_bending_stress_wind(&self) -> f64

Maximum bending stress under uniform wind pressure (Pa).

Approximated as simply supported plate: σ = α · q · a² / t², where α ≈ 0.287 for a/b = 1.67 (typical facade aspect ratio), a is the shorter span, t is thickness.

Source

pub fn thermal_stress(&self) -> f64

Thermal stress in a fully restrained glass pane (Pa).

σ_thermal = E · α · ΔT

Source

pub fn combined_stress(&self) -> f64

Maximum combined stress (wind + thermal) (Pa).

Source

pub fn sealant_shear_capacity(&self) -> f64

Structural silicone joint capacity check.

Returns the maximum transferable line load (N/m) via the silicone bead, limited by the sealant shear strength and joint geometry.

Source

pub fn edge_reaction_wind(&self) -> f64

Wind load reaction at each of the four edges (N/m) for a simply supported panel.

Source

pub fn centre_deflection_wind(&self) -> f64

Centre deflection under uniform wind pressure (m).

Thin plate formula for simply supported edges: δ = β · q · a⁴ / (E · t³), β ≈ 0.0443.

Source

pub fn span_deflection_ratio(&self) -> f64

Span-to-deflection ratio (serviceability check; ≥ 200 typically required).

Source

pub fn igu_self_weight_pressure(&self) -> f64

Insulating glass unit (IGU) sealed unit weight per unit area (Pa).

Assumes 16 mm argon cavity + second pane of equal thickness.

Trait Implementations§

Source§

impl Clone for StructuralGlass

Source§

fn clone(&self) -> StructuralGlass

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StructuralGlass

Source§

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

Formats the value using the given formatter. Read more

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
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.