Plot Database: Weight and Embodied Energy

This example shows how to plot the weight and the embodied energy from the database. The weight as well as the embodied energy scale linearly with the span, so an example span of 8m allows to compare the whole database.

../_images/01-1.png
../_images/01-2.png
from buildings_analytics.analyzer import Slab

#create slab with span=8m
df = Slab(span=8)

# Plot the slab weight and embodied energy for span=8m (includes all the slabs)
df.compute_weight(plot=True, output=False)
df.compute_energy(plot=True, output=False)