simdesign.rcmrf.bdim.eu_cdm.beam

This module provides the beam class implementation for the eu_cdm design class in the BDIM layer.

simdesign.rcmrf.bdim.eu_cdm.beam.ECONOMIC_MU_EB: float = 0.25

Maximum mu value considered for the economic emergent beam design.

simdesign.rcmrf.bdim.eu_cdm.beam.ECONOMIC_MU_WB: float = 0.25

Maximum mu value considered for the economic wide beam design.

simdesign.rcmrf.bdim.eu_cdm.beam.TAU_C_VECT = array([ 500.,  600.,  650.,  750.,  850.,  900., 1000., 1100., 1150.])

Vector of allowable shear stresses that carried by the concrete or vector of the design shear strength values of concrete.

simdesign.rcmrf.bdim.eu_cdm.beam.TAU_MAX_VECT = array([ 2400.,  3200.,  4000.,  5000.,  6000.,  7000.,  8000.,  9000.,        10000.])

Vector of allowable shear stresses that can be carried by the beam section.

simdesign.rcmrf.bdim.eu_cdm.beam.FCK_VECT = array([12000., 16000., 20000., 25000., 30000., 35000., 40000., 45000.,        50000.])

Vector of characteristic concrete compressive strength values.

class simdesign.rcmrf.bdim.eu_cdm.beam.Beam(line, typology, gamma_rc)[source]

Bases: BeamBase

Beam implementation for design class eu_cdm.

This class extends BeamBase by narrowing the attribute types and overriding design methods per REBAP (1983).

Variables:
  • steel (Steel) – Steel material assigned to the beam.

  • concrete (Concrete) – Concrete material assigned to the beam.

  • MIN_B_EB (float : float) – The default minimum breadth (width) of emergent beams.

Parameters:
  • line (Line)

  • typology (Literal[1, 2])

  • gamma_rc (float)

See also

BeamBase

Base class defining the core behaviour and configuration.

References

REBAP (1983). Regulamento de Estruturas de Betão Armado e Pré-Esforçado. Decreto-Lei N.° 349-C/83, Lisbon, Portugal.

d’Arga e Lima, J., Monteiro, V., Mun, M. (2005). Betão armado: esforços normais e de flexão: REBAP-83. Laboratório Nacional de Engenharia Civil, Lisboa.

steel: Steel
concrete: Concrete
MIN_B_EB: float = 0.25
property rhol_min_tens: float
Returns:

Minimum longitudinal reinforcement ratio in tension zone.

Return type:

float

property rhol_max_tens: float
Returns:

Maximum longitudinal reinforcement ratio in tension and compression zones.

Return type:

float

property rhoh_min: float
Returns:

Minimum transverse reinforcement ratio.

Return type:

float

verify_section_adequacy()[source]

Verify the beam section dimensions for design forces.

Return type:

None

compute_required_longitudinal_reinforcement()[source]

Compute the required longitudinal reinforcement for design forces.

Notes

  • Top reinforcement is calculated as the maximum of required reinforcement in tension for maximum of negative bending moments and required reinforcement in compression for maximum of positive bending moments.

  • Bottom reinforcement is calculated as the maximum of required reinforcement in compression for maximum of negative bending moments and required reinforcement in tension for maximum of positive bending moments.

  • Required reinforcement is computed at three different sections: start, middle, end.

Return type:

None

compute_required_transverse_reinforcement()[source]

Compute the required transverse reinforcement for design forces.

Notes

Reinforcement is computed at three sections: start, mid, and end.

Return type:

None