Slab: Weight
This example shows how to compute the weight of the applicable floors, shown with a plot and a table.
Floor type |
Slab weight per m2 [kN/m2] |
---|---|
Flat Slab |
10.000000 |
Ribbed Slab |
4.473684 |
Waffle Slab |
5.090909 |
Steel-Concrete Composite Slab |
3.750000 |
Holedeck |
2.272727 |
Voided Biaxial Slabs |
5.454545 |
from buildings_analytics.analyzer import Slab
# Create a Slab object with requirements in brackets
my_slab = Slab(span=10, prefab='no', use='residential', MEP_integration='yes')
# Outputs the estimated weight per m2 and plots them for each available slab
my_slab.compute_weight(output = True, plot = True)