Buildings.Fluid.Geothermal.Borefields.Data.Filling

Collection of records of filling data

Information

This package contains data records for use with ground heat exchanger models in Buildings.Fluid.Geothermal.Borefields. The filling data records contain the heat transfer properties of the borehole filling material.

Extends from Modelica.Icons.MaterialPropertiesPackage (Icon for package containing property classes).

Package Content

Name Description
Buildings.Fluid.Geothermal.Borefields.Data.Filling.Bentonite Bentonite Filling data record of Bentonite heat transfer properties
Buildings.Fluid.Geothermal.Borefields.Data.Filling.Template Template Template for filling data records

Buildings.Fluid.Geothermal.Borefields.Data.Filling.Bentonite Buildings.Fluid.Geothermal.Borefields.Data.Filling.Bentonite

Filling data record of Bentonite heat transfer properties

Information

This filling data record contains the heat transfer properties of bentonite.

Extends from Buildings.Fluid.Geothermal.Borefields.Data.Filling.Template (Template for filling data records).

Parameters

TypeNameDefaultDescription
ThermalConductivitykFil1.15Thermal conductivity of the borehole filling material [W/(m.K)]
SpecificHeatCapacitycFil800Specific heat capacity of the borehole filling material [J/(kg.K)]
DensitydFil1600Density of the borehole filling material [kg/m3]
BooleansteadyState(cFil < Modelica.Constants.e...Flag, if true, then material is computed using steady-state heat conduction

Modelica definition

record Bentonite "Filling data record of Bentonite heat transfer properties" extends Buildings.Fluid.Geothermal.Borefields.Data.Filling.Template( kFil=1.15, dFil=1600, cFil=800); end Bentonite;

Buildings.Fluid.Geothermal.Borefields.Data.Filling.Template Buildings.Fluid.Geothermal.Borefields.Data.Filling.Template

Template for filling data records

Information

This record is a template for the records in Buildings.Fluid.Geothermal.Borefields.Data.Filling.

Extends from Modelica.Icons.Record (Icon for records).

Parameters

TypeNameDefaultDescription
ThermalConductivitykFil Thermal conductivity of the borehole filling material [W/(m.K)]
SpecificHeatCapacitycFil Specific heat capacity of the borehole filling material [J/(kg.K)]
DensitydFil Density of the borehole filling material [kg/m3]
BooleansteadyState(cFil < Modelica.Constants.e...Flag, if true, then material is computed using steady-state heat conduction

Modelica definition

record Template "Template for filling data records" extends Modelica.Icons.Record; parameter Modelica.Units.SI.ThermalConductivity kFil "Thermal conductivity of the borehole filling material"; parameter Modelica.Units.SI.SpecificHeatCapacity cFil "Specific heat capacity of the borehole filling material"; parameter Modelica.Units.SI.Density dFil(displayUnit="kg/m3") "Density of the borehole filling material"; parameter Boolean steadyState = (cFil < Modelica.Constants.eps or dFil < Modelica.Constants.eps) "Flag, if true, then material is computed using steady-state heat conduction"; final parameter Modelica.Units.SI.ThermalDiffusivity aFil=kFil/(dFil*cFil) "Heat diffusion coefficient of the borehole filling material"; end Template;