sononicola / Static-and-Dynamic-thermal-characterics-of-buildings-components

Calculation of Glaser diagram (static conditions), thermal displacement and periodic thermal transmittance (dynamic conditions) according to EN ISO 13788 - EN ISO 13786

Home Page:https://sononicola-static-and-dynamic-thermal-cha-main-streamlit-7m4aig.streamlitapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage:

After importing

from thermo_hygrometric import Layer, Wall

Create the Layers of the compund wall

gessofibra = Layer(
    name="Gessofibra",
    thickness=0.015,
    thermal_conductivity=0.21,
    vapor_permeability=5.0,
    density=1150,
    specific_heat=1100,
)
xlam = Layer(
    name="X-LAM",
    thickness=0.096,
    thermal_conductivity=0.13,
    vapor_permeability=25.0,
    density=500.0,
    specific_heat=1600,
)
isolante = Layer(
    name="Isolante alta densità",
    thickness=0.13,
    thermal_conductivity=0.043,
    vapor_permeability=5.0,
    density=190,
    specific_heat=2100,
)
intonaco = Layer(
    name="Gessofibra",
    thickness=0.015,
    thermal_conductivity=0.9,
    vapor_permeability=20,
    density=1800,
    specific_heat=1000,
)

Then add them to a Wall

wall_3c = Wall(name="3c", layers=[gessofibra, xlam, isolante, intonaco])

Finally, for example:

print(wall_3c.calc_trasmittanza_termica_periodica())

gives 0.04397424174344255

or to get a Glaser diagram:

fig = wall_3c.plot_glaser()
plt.show()

glaser

Plotting a comparasion between two Walls:

plt.style.use(['science' , 'retro']) # not really needed
from thermo_hygrometric.utils import plot_bar_chart_comparasion

wall_3c = Wall(name="3c", layers=[gessofibra, xlam, isolante, intonaco])
wall_3d = Wall(name="3d", layers=[gessofibra, isolante, xlam, intonaco])
plot_bar_chart_comparasion([wall_3c, wall_3d], latex=True)
plt.show()

glaser

About

Calculation of Glaser diagram (static conditions), thermal displacement and periodic thermal transmittance (dynamic conditions) according to EN ISO 13788 - EN ISO 13786

https://sononicola-static-and-dynamic-thermal-cha-main-streamlit-7m4aig.streamlitapp.com/

License:GNU General Public License v3.0


Languages

Language:Python 100.0%