From 78e3d4c725567b30d095b01896de8b7f15151f93 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Tue, 17 Dec 2019 23:39:14 +0100 Subject: [PATCH] Arch: add gitattributes file to let git manage file endings and normalize them --- src/Mod/Arch/.gitattributes | 29 + src/Mod/Arch/Dice3DS/dice3ds.dox | 10 +- src/Mod/Arch/Init.py | 68 +- src/Mod/Arch/Presets/profiles.csv | 2106 ++++++++++----------- src/Mod/Arch/Presets/pset_definitions.csv | 702 +++---- src/Mod/Arch/Resources/Arch.qrc | 304 +-- src/Mod/Arch/arch.dox | 6 +- src/Mod/Arch/importGBXML.py | 1004 +++++----- 8 files changed, 2129 insertions(+), 2100 deletions(-) create mode 100644 src/Mod/Arch/.gitattributes diff --git a/src/Mod/Arch/.gitattributes b/src/Mod/Arch/.gitattributes new file mode 100644 index 0000000000..fff4c50e15 --- /dev/null +++ b/src/Mod/Arch/.gitattributes @@ -0,0 +1,29 @@ +# for more information see forum topic and pull request +# https://github.com/FreeCAD/FreeCAD/pull/2752 +# https://forum.freecadweb.org/viewtopic.php?f=17&t=41117 + + +# get all used file types +# in a directory in a bash use +# find . -type f -name '*.*' | sed 's|.*\.||' | sort -u +# add all of them either to text or binary + + +# Explicitly declare which files we wish to always normalize line-endings on +# standard endings +*.cpp text +*.csv text +*.dox text +*.json text +*.h text +*.py text +*.qrc text +*.sh text +*.ts text +*.txt text +*.ui text +*.yml text + + +# use git to manually correct the file endings +# git add --renormalize . diff --git a/src/Mod/Arch/Dice3DS/dice3ds.dox b/src/Mod/Arch/Dice3DS/dice3ds.dox index df8cc4ff3c..b825eaff50 100644 --- a/src/Mod/Arch/Dice3DS/dice3ds.dox +++ b/src/Mod/Arch/Dice3DS/dice3ds.dox @@ -1,5 +1,5 @@ -/** - \defgroup DICE3DS Dice 3DS - \ingroup EMBEDDED - \brief The Dice 3DS library provides 3DStudio files import to the Arch module - */ +/** + \defgroup DICE3DS Dice 3DS + \ingroup EMBEDDED + \brief The Dice 3DS library provides 3DStudio files import to the Arch module + */ diff --git a/src/Mod/Arch/Init.py b/src/Mod/Arch/Init.py index f139150f3e..e7c2c3d3a1 100644 --- a/src/Mod/Arch/Init.py +++ b/src/Mod/Arch/Init.py @@ -1,34 +1,34 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011 * -#* Yorik van Havre * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -# add import/export types -FreeCAD.addImportType("Industry Foundation Classes (*.ifc)","importIFC") -FreeCAD.addExportType("Industry Foundation Classes (*.ifc)","exportIFC") -FreeCAD.addImportType("Wavefront OBJ - Arch module (*.obj)","importOBJ") -FreeCAD.addExportType("Wavefront OBJ - Arch module (*.obj)","importOBJ") -FreeCAD.addExportType("WebGL file (*.html)","importWebGL") -FreeCAD.addExportType("JavaScript Object Notation (*.json)","importJSON") -FreeCAD.addImportType("Collada (*.dae)","importDAE") -FreeCAD.addExportType("Collada (*.dae)","importDAE") -FreeCAD.addImportType("3D Studio mesh (*.3ds)","import3DS") -FreeCAD.addImportType("SweetHome3D XML export (*.zip)","importSH3D") +#*************************************************************************** +#* * +#* Copyright (c) 2011 * +#* Yorik van Havre * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +# add import/export types +FreeCAD.addImportType("Industry Foundation Classes (*.ifc)","importIFC") +FreeCAD.addExportType("Industry Foundation Classes (*.ifc)","exportIFC") +FreeCAD.addImportType("Wavefront OBJ - Arch module (*.obj)","importOBJ") +FreeCAD.addExportType("Wavefront OBJ - Arch module (*.obj)","importOBJ") +FreeCAD.addExportType("WebGL file (*.html)","importWebGL") +FreeCAD.addExportType("JavaScript Object Notation (*.json)","importJSON") +FreeCAD.addImportType("Collada (*.dae)","importDAE") +FreeCAD.addExportType("Collada (*.dae)","importDAE") +FreeCAD.addImportType("3D Studio mesh (*.3ds)","import3DS") +FreeCAD.addImportType("SweetHome3D XML export (*.zip)","importSH3D") diff --git a/src/Mod/Arch/Presets/profiles.csv b/src/Mod/Arch/Presets/profiles.csv index a287775c0d..fa1482272a 100644 --- a/src/Mod/Arch/Presets/profiles.csv +++ b/src/Mod/Arch/Presets/profiles.csv @@ -1,1053 +1,1053 @@ -# Data structure: - -# Category, Name, Profile class, geometric data... - -# All measures must be in millimeters - -# Possible profile classes are: - -# C= Circular tube -# H= H- or I-profile -# R= Rectangular -# RH= Rectangular hollow -# U= U-profile - -# Additional profile types must be implemented in ArchProfile.py first - -########################################### - -# Circular tube - -# Category,Name,C,Outside diameter,Thickness - -CTH,CTH423,C,42.4,3.2 - -# Circular Hollow Sections - -# Category,Name,C,Outside diameter,Thickness - -CHS,CHS21.3x2.6,C,21.3,2.6 -CHS,CHS21.3x2.9,C,21.3,2.9 -CHS,CHS21.3x3.2,C,21.3,3.2 -CHS,CHS26.9x2.6,C,26.9,2.6 -CHS,CHS26.9x2.9,C,26.9,2.9 -CHS,CHS26.9x3.2,C,26.9,3.2 -CHS,CHS26.9x3.6,C,26.9,3.6 -CHS,CHS33.7x2.6,C,33.7,2.6 -CHS,CHS33.7x2.9,C,33.7,2.9 -CHS,CHS33.7x3.2,C,33.7,3.2 -CHS,CHS33.7x3.6,C,33.7,3.6 -CHS,CHS33.7x4,C,33.7,4 -CHS,CHS33.7x4.5,C,33.7,4.5 -CHS,CHS42.4x2.6,C,42.4,2.6 -CHS,CHS42.4x2.9,C,42.4,2.9 -CHS,CHS42.4x3.2,C,42.4,3.2 -CHS,CHS42.4x3.6,C,42.4,3.6 -CHS,CHS42.4x4,C,42.4,4 -CHS,CHS42.4x4.5,C,42.4,4.5 -CHS,CHS48.3x2.6,C,48.3,2.6 -CHS,CHS48.3x2.9,C,48.3,2.9 -CHS,CHS48.3x3.2,C,48.3,3.2 -CHS,CHS48.3x3.6,C,48.3,3.6 -CHS,CHS48.3x4,C,48.3,4 -CHS,CHS48.3x4.5,C,48.3,4.5 -CHS,CHS48.3x5,C,48.3,5 -CHS,CHS48.3x5.6,C,48.3,5.6 -CHS,CHS48.3x6.3,C,48.3,6.3 -CHS,CHS60.3x2.6,C,60.3,2.6 -CHS,CHS60.3x2.9,C,60.3,2.9 -CHS,CHS60.3x3.2,C,60.3,3.2 -CHS,CHS60.3x3.6,C,60.3,3.6 -CHS,CHS60.3x4,C,60.3,4 -CHS,CHS60.3x4.5,C,60.3,4.5 -CHS,CHS60.3x5,C,60.3,5 -CHS,CHS60.3x5.6,C,60.3,5.6 -CHS,CHS60.3x6.3,C,60.3,6.3 -CHS,CHS60.3x7.1,C,60.3,7.1 -CHS,CHS60.3x8,C,60.3,8 -CHS,CHS76.1x2.9,C,76.1,2.9 -CHS,CHS76.1x3.2,C,76.1,3.2 -CHS,CHS76.1x3.6,C,76.1,3.6 -CHS,CHS76.1x4,C,76.1,4 -CHS,CHS76.1x4.5,C,76.1,4.5 -CHS,CHS76.1x5,C,76.1,5 -CHS,CHS76.1x5.6,C,76.1,5.6 -CHS,CHS76.1x6.3,C,76.1,6.3 -CHS,CHS76.1x7.1,C,76.1,7.1 -CHS,CHS76.1x8,C,76.1,8 -CHS,CHS88.9x3.2,C,88.9,3.2 -CHS,CHS88.9x3.6,C,88.9,3.6 -CHS,CHS88.9x4,C,88.9,4 -CHS,CHS88.9x4.5,C,88.9,4.5 -CHS,CHS88.9x5,C,88.9,5 -CHS,CHS88.9x5.6,C,88.9,5.6 -CHS,CHS88.9x6.3,C,88.9,6.3 -CHS,CHS88.9x7.1,C,88.9,7.1 -CHS,CHS88.9x8,C,88.9,8 -CHS,CHS88.9x10,C,88.9,10 -CHS,CHS101.6x3.6,C,101.6,3.6 -CHS,CHS101.6x4,C,101.6,4 -CHS,CHS101.6x4.5,C,101.6,4.5 -CHS,CHS101.6x5,C,101.6,5 -CHS,CHS101.6x5.6,C,101.6,5.6 -CHS,CHS101.6x6.3,C,101.6,6.3 -CHS,CHS101.6x7.1,C,101.6,7.1 -CHS,CHS101.6x8,C,101.6,8 -CHS,CHS101.6x10,C,101.6,10 -CHS,CHS114.3x3.6,C,114.3,3.6 -CHS,CHS114.3x4,C,114.3,4 -CHS,CHS114.3x4.5,C,114.3,4.5 -CHS,CHS114.3x5,C,114.3,5 -CHS,CHS114.3x5.6,C,114.3,5.6 -CHS,CHS114.3x6.3,C,114.3,6.3 -CHS,CHS114.3x7.1,C,114.3,7.1 -CHS,CHS114.3x8,C,114.3,8 -CHS,CHS114.3x10,C,114.3,10 -CHS,CHS139.7x3.6,C,139.7,3.6 -CHS,CHS139.7x4,C,139.7,4 -CHS,CHS139.7x4.5,C,139.7,4.5 -CHS,CHS139.7x5,C,139.7,5 -CHS,CHS139.7x5.6,C,139.7,5.6 -CHS,CHS139.7x6.3,C,139.7,6.3 -CHS,CHS139.7x7.1,C,139.7,7.1 -CHS,CHS139.7x8,C,139.7,8 -CHS,CHS139.7x10,C,139.7,10 -CHS,CHS168.3x5,C,168.3,5 -CHS,CHS168.3x5.6,C,168.3,5.6 -CHS,CHS168.3x6.3,C,168.3,6.3 -CHS,CHS168.3x7.1,C,168.3,7.1 -CHS,CHS168.3x8,C,168.3,8 -CHS,CHS168.3x10,C,168.3,10 -CHS,CHS168.3x11,C,168.3,11 -CHS,CHS168.3x12.5,C,168.3,12.5 -CHS,CHS193.7x5,C,193.7,5 -CHS,CHS193.7x5.6,C,193.7,5.6 -CHS,CHS193.7x6.3,C,193.7,6.3 -CHS,CHS193.7x7.1,C,193.7,7.1 -CHS,CHS193.7x8,C,193.7,8 -CHS,CHS193.7x10,C,193.7,10 -CHS,CHS193.7x11,C,193.7,11 -CHS,CHS193.7x12.5,C,193.7,12.5 -CHS,CHS193.7x14.2,C,193.7,14.2 -CHS,CHS193.7x16,C,193.7,16 -CHS,CHS219.1x4.5,C,219.1,4.5 -CHS,CHS219.1x5,C,219.1,5 -CHS,CHS219.1x5.6,C,219.1,5.6 -CHS,CHS219.1x6.3,C,219.1,6.3 -CHS,CHS219.1x7.1,C,219.1,7.1 -CHS,CHS219.1x8,C,219.1,8 -CHS,CHS219.1x10,C,219.1,10 -CHS,CHS219.1x11,C,219.1,11 -CHS,CHS219.1x12.5,C,219.1,12.5 -CHS,CHS219.1x14.2,C,219.1,14.2 -CHS,CHS219.1x16,C,219.1,16 -CHS,CHS244.5x5,C,244.5,5 -CHS,CHS244.5x5.6,C,244.5,5.6 -CHS,CHS244.5x6.3,C,244.5,6.3 -CHS,CHS244.5x7.1,C,244.5,7.1 -CHS,CHS244.5x8,C,244.5,8 -CHS,CHS244.5x10,C,244.5,10 -CHS,CHS244.5x11,C,244.5,11 -CHS,CHS244.5x12.5,C,244.5,12.5 -CHS,CHS244.5x14.2,C,244.5,14.2 -CHS,CHS244.5x16,C,244.5,16 -CHS,CHS273x5,C,273,5 -CHS,CHS273x5.6,C,273,5.6 -CHS,CHS273x6.3,C,273,6.3 -CHS,CHS273x7.1,C,273,7.1 -CHS,CHS273x8,C,273,8 -CHS,CHS273x10,C,273,10 -CHS,CHS273x11,C,273,11 -CHS,CHS273x12.5,C,273,12.5 -CHS,CHS273x14.2,C,273,14.2 -CHS,CHS273x16,C,273,16 -CHS,CHS323.9x5,C,323.9,5 -CHS,CHS323.9x5.6,C,323.9,5.6 -CHS,CHS323.9x6.3,C,323.9,6.3 -CHS,CHS323.9x7.1,C,323.9,7.1 -CHS,CHS323.9x8,C,323.9,8 -CHS,CHS323.9x10,C,323.9,10 -CHS,CHS323.9x11,C,323.9,11 -CHS,CHS323.9x12.5,C,323.9,12.5 -CHS,CHS323.9x14.2,C,323.9,14.2 -CHS,CHS323.9x16,C,323.9,16 -CHS,CHS355.6x6.3,C,355.6,6.3 -CHS,CHS355.6x7.1,C,355.6,7.1 -CHS,CHS355.6x8,C,355.6,8 -CHS,CHS355.6x10,C,355.6,10 -CHS,CHS355.6x11,C,355.6,11 -CHS,CHS355.6x12.5,C,355.6,12.5 -CHS,CHS355.6x14.2,C,355.6,14.2 -CHS,CHS355.6x16,C,355.6,16 -CHS,CHS406.4x10,C,406.4,10 -CHS,CHS406.4x11,C,406.4,11 -CHS,CHS406.4x12.5,C,406.4,12.5 -CHS,CHS406.4x14.2,C,406.4,14.2 -CHS,CHS406.4x16,C,406.4,16 -CHS,CHS457x10,C,457,10 -CHS,CHS457x11,C,457,11 -CHS,CHS457x12.5,C,457,12.5 -CHS,CHS457x14.2,C,457,14.2 -CHS,CHS457x16,C,457,16 -CHS,CHS508x10,C,508,10 -CHS,CHS508x11,C,508,11 -CHS,CHS508x12.5,C,508,12.5 -CHS,CHS508x14.2,C,508,14.2 -CHS,CHS508x16,C,508,16 - - -# H- or I-profile - -# Category,Name,H,width,height,web thickness,flange thickness - -# HEA profiles - -HEA,HEA100,H,100,96,5,8 -HEA,HEA120,H,120,114,5,8 -HEA,HEA140,H,140,133,5.5,8.5 -HEA,HEA160,H,160,152,6,9 -HEA,HEA180,H,180,171,6,9.5 -HEA,HEA200,H,200,190,6.5,10 -HEA,HEA220,H,220,210,7,11 -HEA,HEA240,H,240,230,7.5,12 -HEA,HEA260,H,260,250,7.5,12.5 -HEA,HEA280,H,280,270,8,13 -HEA,HEA300,H,300,290,8.5,14 -HEA,HEA320,H,300,310,9,15.5 -HEA,HEA340,H,300,330,9.5,16.5 -HEA,HEA360,H,300,350,10,17.5 -HEA,HEA400,H,300,390,11,19 -HEA,HEA450,H,300,440,11.5,21 -HEA,HEA500,H,300,490,12,23 -HEA,HEA550,H,300,540,12.5,24 -HEA,HEA600,H,300,590,13,25 -HEA,HEA650,H,300,640,13.5,26 -HEA,HEA700,H,300,690,14.5,27 -HEA,HEA800,H,300,790,15,28 -HEA,HEA900,H,300,890,16,30 -HEA,HEA1000,H,300,990,16.5,31 -HEA,HEAA100,H,100,91,4.2,5.5 -HEA,HEAA120,H,120,109,4.2,5.5 -HEA,HEAA140,H,140,128,4.3,6 -HEA,HEAA160,H,160,148,4.5,7 -HEA,HEAA180,H,180,167,5,7.5 -HEA,HEAA200,H,200,186,5.5,8 -HEA,HEAA220,H,220,205,6,8.5 -HEA,HEAA240,H,240,224,6.5,9 -HEA,HEAA260,H,260,244,6.5,9.5 -HEA,HEAA280,H,280,264,7,10 -HEA,HEAA300,H,300,283,7.5,10.5 -HEA,HEAA320,H,300,301,8,11 -HEA,HEAA340,H,300,320,8.5,11.5 -HEA,HEAA360,H,300,339,9,12 -HEA,HEAA400,H,300,378,9.5,13 -HEA,HEAA450,H,300,425,10,13.5 -HEA,HEAA500,H,300,472,10.5,14 -HEA,HEAA550,H,300,522,11.5,15 -HEA,HEAA600,H,300,571,12,15.5 -HEA,HEAA650,H,300,620,12.5,16 -HEA,HEAA700,H,300,670,13,17 -HEA,HEAA800,H,300,770,14,18 -HEA,HEAA900,H,300,870,15,20 -HEA,HEAA1000,H,300,970,16,21 - -# HEB profiles - -HEB,HEB100,H,100,100,6,10 -HEB,HEB120,H,120,120,6.5,11 -HEB,HEB140,H,140,140,7,12 -HEB,HEB160,H,160,160,8,13 -HEB,HEB180,H,180,180,8.5,14 -HEB,HEB200,H,200,200,9,15 -HEB,HEB220,H,220,220,9.5,16 -HEB,HEB240,H,240,240,10,17 -HEB,HEB260,H,260,260,10,17.5 -HEB,HEB280,H,280,280,10.5,18 -HEB,HEB300,H,300,300,11,19 -HEB,HEB320,H,300,320,11.5,20.5 -HEB,HEB340,H,300,340,12,21.5 -HEB,HEB360,H,300,360,12.5,22.5 -HEB,HEB400,H,300,400,13.5,24 -HEB,HEB450,H,300,450,14,26 -HEB,HEB500,H,300,500,14.5,28 -HEB,HEB550,H,300,550,15,29 -HEB,HEB600,H,300,600,15.5,30 -HEB,HEB650,H,300,650,16,31 -HEB,HEB700,H,300,700,17,32 -HEB,HEB800,H,300,800,17.5,33 -HEB,HEB900,H,300,900,18.5,35 -HEB,HEB1000,H,300,1000,19,36 - -# HEM profiles - -HEM,HEM160,H,166,180,14,23 -HEM,HEM180,H,186,200,14.5,24 -HEM,HEM200,H,206,220,15,25 -HEM,HEM220,H,226,240,15.5,26 -HEM,HEM240,H,248,270,18,32 -HEM,HEM260,H,268,290,18,32.5 -HEM,HEM280,H,288,310,18.5,33 -HEM,HEM300,H,310,340,21,39 -HEM,HEM320,H,309,359,21,40 -HEM,HEM340,H,309,377,21,40 -HEM,HEM360,H,308,395,21,40 -HEM,HEM400,H,307,432,21,40 -HEM,HEM450,H,307,478,21,40 -HEM,HEM500,H,306,524,21,40 -HEM,HEM550,H,306,572,21,40 -HEM,HEM600,H,305,620,21,40 -HEM,HEM650,H,305,668,21,40 -HEM,HEM700,H,304,716,21,40 -HEM,HEM800,H,303,814,21,40 -HEM,HEM900,H,302,910,21,40 -HEM,HEM1000,H,302,1008,21,40 - -# British Universal Column (UC) profiles - -UC,UC152x152x23,H,152.2,152.4,5.8,6.8 -UC,UC152x152x30,H,152.9,157.6,6.5,9.4 -UC,UC152x152x37,H,154.4,161.8,8,11.5 -UC,UC203x203x46,H,203.6,203.2,7.2,11 -UC,UC203x203x52,H,204.3,206.2,7.9,12.5 -UC,UC203x203x60,H,205.8,209.6,9.4,14.2 -UC,UC203x203x71,H,206.4,215.8,10,17.3 -UC,UC203x203x86,H,209.1,222.2,12.7,20.5 -UC,UC254x254x73,H,254.6,254.1,8.6,14.2 -UC,UC254x254x89,H,256.3,260.3,10.3,17.3 -UC,UC254x254x107,H,258.8,266.7,12.8,20.5 -UC,UC254x254x132,H,261.3,276.3,15.3,25.3 -UC,UC254x254x167,H,265.2,289.1,19.2,31.7 -UC,UC305x305x97,H,305.3,307.9,9.9,15.4 -UC,UC305x305x118,H,307.4,314.5,12,18.7 -UC,UC305x305x137,H,309.2,320.5,13.8,21.7 -UC,UC305x305x158,H,311.2,327.1,15.8,25 -UC,UC305x305x198,H,314.5,339.9,19.1,31.4 -UC,UC305x305x240,H,318.4,352.5,23,37.7 -UC,UC305x305x283,H,322.2,365.3,26.8,44.1 -UC,UC356x368x129,H,368.6,355.6,10.4,17.5 -UC,UC356x368x153,H,370.5,362,12.3,20.7 -UC,UC356x368x177,H,372.6,368.2,14.4,23.8 -UC,UC356x368x202,H,374.7,374.6,16.5,27 -UC,UC356x406x235,H,394.8,381,18.4,30.2 -UC,UC356x406x287,H,399,393.6,22.6,36.5 -UC,UC356x406x340,H,403,406.4,26.6,42.9 -UC,UC356x406x393,H,407,419,30.6,49.2 -UC,UC356x406x467,H,412.2,436.6,35.8,58 -UC,UC356x406x551,H,418.5,455.6,42.1,67.5 -UC,UC356x406x634,H,424,474.6,47.6,77 - - -# INP profiles - -INP,INP80,H,42,80,3.9,5.9 -INP,INP100,H,50,100,4.5,6.8 -INP,INP120,H,58,120,5.1,7.7 -INP,INP140,H,66,140,5.7,8.6 -INP,INP160,H,74,160,6.3,9.5 -INP,INP180,H,82,180,6.9,10.4 -INP,INP200,H,90,200,7.5,11.3 -INP,INP220,H,98,220,8.1,12.2 -INP,INP240,H,106,240,8.7,13.1 -INP,INP260,H,113,260,9.4,14.1 -INP,INP280,H,119,280,10.1,15.2 -INP,INP300,H,125,300,10.8,16.2 -INP,INP320,H,131,320,11.5,17.3 -INP,INP340,H,137,340,12.2,18.3 -INP,INP360,H,143,360,13,19.5 -INP,INP380,H,149,380,13.7,20.5 -INP,INP400,H,155,400,14.4,21.6 - -# IPE profiles - -IPE,IPE100,H,55,100,4.1,5.7 -IPE,IPE120,H,64,120,4.4,6.3 -IPE,IPE140,H,73,140,4.7,6.9 -IPE,IPE160,H,82,160,5,7.4 -IPE,IPE180,H,91,180,5.3,8 -IPE,IPE200,H,100,200,5.6,8.5 -IPE,IPE220,H,110,220,5.9,9.2 -IPE,IPE240,H,120,240,6.2,9.8 -IPE,IPE270,H,135,270,6.6,10.2 -IPE,IPE300,H,150,300,7.1,10.7 -IPE,IPE330,H,160,330,7.5,11.5 -IPE,IPE360,H,170,360,8,12.7 -IPE,IPE400,H,180,400,8.6,13.5 -IPE,IPE450,H,190,450,9.4,14.6 -IPE,IPE500,H,200,500,10.2,16 -IPE,IPE550,H,210,550,11.1,17.2 -IPE,IPE600,H,220,600,12,19 -IPE,IPEA100,H,55,98,3.6,4.7 -IPE,IPEA120,H,64,118,3.8,5.1 -IPE,IPEA140,H,73,138,3.8,5.6 -IPE,IPEA160,H,82,157,4,5.9 -IPE,IPEA180,H,91,177,4.3,6.5 -IPE,IPEA200,H,100,197,4.5,7 -IPE,IPEA220,H,110,217,5,7.7 -IPE,IPEA240,H,120,237,5.2,8.3 -IPE,IPEA270,H,135,267,5.5,8.7 -IPE,IPEA300,H,150,297,6.1,9.2 -IPE,IPEA330,H,160,327,6.5,10 -IPE,IPEA360,H,170,357.6,6.6,11.5 -IPE,IPEA400,H,180,397,7,12 -IPE,IPEA450,H,190,447,7.6,13.1 -IPE,IPEA500,H,200,497,8.4,14.5 -IPE,IPEA550,H,210,547,9,15.7 -IPE,IPEA600,H,220,597,9.8,17.5 -IPE,IPEO180,H,89,182,6.4,9.5 -IPE,IPEO200,H,102,202,6.2,9.5 -IPE,IPEO220,H,112,222,6.6,10.2 -IPE,IPEO240,H,122,242,7,10.8 -IPE,IPEO270,H,136,274,7.5,12.2 -IPE,IPEO300,H,152,304,8,12.7 -IPE,IPEO330,H,162,334,8.5,13.5 -IPE,IPEO360,H,172,364,9.2,14.7 -IPE,IPEO400,H,182,404,9.7,15.5 -IPE,IPEO450,H,192,456,11,17.6 -IPE,IPEO500,H,202,506,12,19 -IPE,IPEO550,H,212,556,12.7,20.2 -IPE,IPEO600,H,224,610,15,24 -IPE,IPER140,H,72,142,5.3,7.8 -IPE,IPER160,H,81,162,5.6,8.5 -IPE,IPER180,H,92,183,6,9 -IPE,IPER200,H,98,204,6.6,10.5 -IPE,IPER220,H,108,225,6.7,11.8 -IPE,IPER240,H,118,245,7.5,12.3 -IPE,IPER270,H,133,276,7.1,13.1 -IPE,IPER300,H,147,306,8.5,13.7 -IPE,IPER330,H,158,336,9.2,14.5 -IPE,IPER360,H,168,366,9.9,16 -IPE,IPER400,H,178,407,10.6,17 -IPE,IPER450,H,188,458,11.3,18.6 -IPE,IPER500,H,198,508,12.6,20 -IPE,IPER550,H,210,560,14,22.2 -IPE,IPER600,H,218,608,14,23 -IPE,IPEV400,H,182,408,10.6,17.5 -IPE,IPEV450,H,194,460,12.4,19.6 -IPE,IPEV500,H,204,514,14.2,23 -IPE,IPEV550,H,216,566,17.1,25.2 -IPE,IPEV600,H,228,618,18,28 -IPE,IPE750x137,H,263,753,11.5,17 -IPE,IPE750x147,H,265,753,13.2,17 -IPE,IPE750x161,H,266,758,13.8,19.3 -IPE,IPE750x173,H,267,762,14.4,21.6 -IPE,IPE750x185,H,267,766,14.9,23.6 -IPE,IPE750x196,H,268,770,15.6,25.4 -IPE,IPE750x210,H,268,775,16,28 -IPE,IPE750x222,H,269,778,17,29.5 - -# British Universal Beam (UB) profiles - -UB,UB127x76x13,H,76,127,4,7.6 -UB,UB152x89x16,H,88.7,152.4,4.5,7.7 -UB,UB178x102x19,H,101.2,177.8,4.8,7.9 -UB,UB203x102x23,H,101.8,203.2,5.4,9.3 -UB,UB203x133x25,H,133.2,203.2,5.7,7.8 -UB,UB203x133x30,H,133.9,206.8,6.4,9.6 -UB,UB254x102x22,H,101.6,254,5.7,6.8 -UB,UB254x102x25,H,101.9,257.2,6,8.4 -UB,UB254x102x28,H,102.2,260.4,6.3,10 -UB,UB254x146x31,H,146.1,251.4,6,8.6 -UB,UB254x146x37,H,146.4,256,6.3,10.9 -UB,UB254x146x43,H,147.3,259.6,7.2,12.7 -UB,UB305x102x25,H,101.6,305.1,5.8,7 -UB,UB305x102x28,H,101.8,308.7,6,8.8 -UB,UB305x102x33,H,102.4,312.7,6.6,10.8 -UB,UB305x127x37,H,123.4,304.4,7.1,10.7 -UB,UB305x127x42,H,124.3,307.2,8,12.1 -UB,UB305x127x48,H,125.3,311,9,14 -UB,UB305x165x40,H,165,303.4,6,10.2 -UB,UB305x165x46,H,165.7,306.6,6.7,11.8 -UB,UB305x165x54,H,166.9,310.4,7.9,13.7 -UB,UB356x127x33,H,125.4,349,6,8.5 -UB,UB356x127x39,H,126,353.4,6.6,10.7 -UB,UB356x171x45,H,171.1,351.4,7,9.7 -UB,UB356x171x51,H,171.5,355,7.4,11.5 -UB,UB356x171x57,H,172.2,358,8.1,13 -UB,UB356x171x67,H,173.2,363.4,9.1,15.7 -UB,UB406x140x39,H,141.8,398,6.4,8.6 -UB,UB406x140x46,H,142.2,403.2,6.8,11.2 -UB,UB406x178x54,H,177.7,402.6,7.7,10.9 -UB,UB406x178x60,H,177.9,406.4,7.9,12.8 -UB,UB406x178x67,H,178.8,409.4,8.8,14.3 -UB,UB406x178x74,H,179.5,412.8,9.5,16 -UB,UB457x152x52,H,152.4,449.8,7.6,10.9 -UB,UB457x152x60,H,152.9,454.6,8.1,13.3 -UB,UB457x152x67,H,153.8,458,9,15 -UB,UB457x152x74,H,154.4,462,9.6,17 -UB,UB457x152x82,H,155.3,465.8,10.5,18.9 -UB,UB457x191x67,H,189.9,453.4,8.5,12.7 -UB,UB457x191x74,H,190.4,457,9,14.5 -UB,UB457x191x82,H,191.3,460,9.9,16 -UB,UB457x191x89,H,191.9,463.4,10.5,17.7 -UB,UB457x191x98,H,192.8,467.2,11.4,19.6 -UB,UB533x210x82,H,208.8,528.3,9.6,13.2 -UB,UB533x210x92,H,209.3,533.1,10.1,15.6 -UB,UB533x210x101,H,210,536.7,10.8,17.4 -UB,UB533x210x109,H,210.8,539.5,11.6,18.8 -UB,UB533x210x122,H,211.9,544.5,12.7,21.3 -UB,UB610x229x101,H,227.6,602.6,10.5,14.8 -UB,UB610x229x113,H,228.2,607.6,11.1,17.3 -UB,UB610x229x125,H,229,612.2,11.9,19.6 -UB,UB610x229x140,H,230.2,617.2,13.1,22.1 -UB,UB610x305x149,H,304.8,612.4,11.8,19.7 -UB,UB610x305x179,H,307.1,620.2,14.1,23.6 -UB,UB610x305x238,H,311.4,635.8,18.4,31.4 -UB,UB686x254x125,H,253,677.9,11.7,16.2 -UB,UB686x254x140,H,253.7,683.5,12.4,19 -UB,UB686x254x152,H,254.5,687.5,13.2,21 -UB,UB686x254x170,H,255.8,692.9,14.5,23.7 -UB,UB762x267x134,H,264.4,750,12,15.5 -UB,UB762x267x147,H,265.2,754,12.8,17.5 -UB,UB762x267x173,H,266.7,762.2,14.3,21.6 -UB,UB762x267x197,H,268,769.8,15.6,25.4 -UB,UB838x292x176,H,291.7,834.9,14,18.8 -UB,UB838x292x194,H,292.4,840.7,14.7,21.7 -UB,UB838x292x226,H,293.8,850.9,16.1,26.8 -UB,UB914x305x201,H,303.3,903,15.1,20.2 -UB,UB914x305x224,H,304.1,910.4,15.9,23.9 -UB,UB914x305x253,H,305.5,918.4,17.3,27.9 -UB,UB914x305x289,H,307.7,926.6,19.5,32 -UB,UB914x419x343,H,418.5,911.8,19.4,32 -UB,UB914x419x388,H,420.5,921,21.4,36.6 -UB,UB1016x305x222,H,300,970.3,16,21.1 -UB,UB1016x305x249,H,300,980.2,16.5,26 -UB,UB1016x305x272,H,300,990.1,16.5,31 -UB,UB1016x305x314,H,300,1000,19.1,35.9 -UB,UB1016x305x349,H,302,1008.1,21.1,40 -UB,UB1016x305x393,H,303,1016,24.4,43.9 -UB,UB1016x305x437,H,305.4,1025.9,26.9,49 -UB,UB1016x305x487,H,308.5,1036.1,30,54.1 - - -# American Wide Flange W profiles - -American Wide Flange,W4x13,H,103.124,105.664,7.112,8.763 -American Wide Flange,W5x16,H,127,127.254,6.096,9.144 -American Wide Flange,W5x19,H,127.762,130.81,6.858,10.922 -American Wide Flange,W6x9,H,100.076,149.86,4.318,5.461 -American Wide Flange,W6x12,H,101.6,153.162,5.842,7.112 -American Wide Flange,W6x15,H,152.146,152.146,5.842,6.604 -American Wide Flange,W6x16,H,102.362,159.512,6.604,10.287 -American Wide Flange,W6x20,H,152.908,157.48,6.604,9.271 -American Wide Flange,W6x25,H,154.432,162.052,8.128,11.557 -American Wide Flange,W8x10,H,100.076,200.406,4.318,5.207 -American Wide Flange,W8x13,H,101.6,202.946,5.842,6.477 -American Wide Flange,W8x15,H,101.981,205.994,6.223,8.001 -American Wide Flange,W8x18,H,133.35,206.756,5.842,8.382 -American Wide Flange,W8x21,H,133.858,210.312,6.35,10.16 -American Wide Flange,W8x24,H,164.973,201.422,6.223,10.16 -American Wide Flange,W8x28,H,165.989,204.724,7.239,11.811 -American Wide Flange,W8x31,H,203.073,203.2,7.239,11.049 -American Wide Flange,W8x35,H,203.708,206.248,7.874,12.573 -American Wide Flange,W8x40,H,204.978,209.55,9.144,14.224 -American Wide Flange,W8x48,H,205.994,215.9,10.16,17.399 -American Wide Flange,W8x58,H,208.788,222.25,12.954,20.574 -American Wide Flange,W8x67,H,210.312,228.6,14.478,23.749 -American Wide Flange,W10x12,H,100.584,250.698,4.826,5.334 -American Wide Flange,W10x15,H,101.6,253.746,5.842,6.858 -American Wide Flange,W10x17,H,101.854,256.794,6.096,8.382 -American Wide Flange,W10x19,H,102.108,260.096,6.35,10.033 -American Wide Flange,W10x22,H,146.05,258.318,6.096,9.144 -American Wide Flange,W10x26,H,146.558,262.382,6.604,11.176 -American Wide Flange,W10x30,H,147.574,265.938,7.62,12.954 -American Wide Flange,W10x33,H,202.184,247.142,7.366,11.049 -American Wide Flange,W10x39,H,202.819,251.968,8.001,13.462 -American Wide Flange,W10x45,H,203.708,256.54,8.89,15.748 -American Wide Flange,W10x49,H,254,253.492,8.636,14.224 -American Wide Flange,W10x54,H,254.762,256.286,9.398,15.621 -American Wide Flange,W10x60,H,256.032,259.588,10.668,17.272 -American Wide Flange,W10x68,H,257.302,264.16,11.938,19.558 -American Wide Flange,W10x77,H,258.826,269.24,13.462,22.098 -American Wide Flange,W10x88,H,260.731,275.336,15.367,25.146 -American Wide Flange,W10x100,H,262.636,281.94,17.272,28.2448 -American Wide Flange,W10x112,H,264.541,288.544,19.177,31.75 -American Wide Flange,W12x14,H,100.838,302.514,5.08,5.715 -American Wide Flange,W12x16,H,101.346,304.546,5.588,6.731 -American Wide Flange,W12x19,H,101.727,308.864,5.969,8.89 -American Wide Flange,W12x22,H,102.362,312.674,6.604,10.795 -American Wide Flange,W12x26,H,164.846,310.388,5.842,9.652 -American Wide Flange,W12x30,H,165.608,313.436,6.604,11.176 -American Wide Flange,W12x35,H,166.624,317.5,7.62,13.208 -American Wide Flange,W12x40,H,203.327,303.276,7.493,13.081 -American Wide Flange,W12x45,H,204.343,306.324,8.509,14.605 -American Wide Flange,W12x50,H,205.232,309.626,9.398,16.256 -American Wide Flange,W12x53,H,253.873,306.324,8.763,14.605 -American Wide Flange,W12x58,H,254.254,309.626,9.144,16.256 -American Wide Flange,W12x65,H,304.8,307.848,9.906,15.367 -American Wide Flange,W12x72,H,305.816,311.15,10.922,17.018 -American Wide Flange,W12x79,H,306.832,314.452,11.938,18.669 -American Wide Flange,W12x87,H,307.975,318.262,13.081,20.574 -American Wide Flange,W12x96,H,308.864,322.834,13.97,22.86 -American Wide Flange,W12x106,H,310.388,327.406,15.494,25.146 -American Wide Flange,W12x120,H,312.928,333.248,18.034,28.067 -American Wide Flange,W12x136,H,314.96,340.614,20.066,31.75 -American Wide Flange,W14x22,H,127,348.996,5.842,8.509 -American Wide Flange,W14x26,H,127.635,353.314,6.477,10.668 -American Wide Flange,W14x30,H,170.942,351.536,6.858,9.779 -American Wide Flange,W14x34,H,171.323,355.092,7.239,11.557 -American Wide Flange,W14x38,H,171.958,358.14,7.874,13.081 -American Wide Flange,W14x43,H,203.073,346.964,7.747,13.462 -American Wide Flange,W14x48,H,203.962,350.266,8.636,15.113 -American Wide Flange,W14x53,H,204.724,353.568,9.398,16.764 -American Wide Flange,W14x61,H,253.873,352.806,9.525,16.383 -American Wide Flange,W14x68,H,254.889,356.616,10.541,18.288 -American Wide Flange,W14x74,H,255.778,359.918,11.43,19.939 -American Wide Flange,W14x82,H,257.302,363.474,12.954,21.717 -American Wide Flange,W14x90,H,368.808,356.108,11.176,18.034 -American Wide Flange,W14x99,H,369.951,359.664,12.319,19.812 -American Wide Flange,W14x109,H,370.967,363.728,13.335,21.844 -American Wide Flange,W14x120,H,372.618,367.792,14.986,23.876 -American Wide Flange,W14x132,H,374.015,372.364,16.383,26.162 -American Wide Flange,W16x26,H,139.7,398.526,6.35,8.763 -American Wide Flange,W16x31,H,140.335,403.352,6.985,11.176 -American Wide Flange,W16x36,H,177.419,402.844,7.493,10.922 -American Wide Flange,W16x40,H,177.673,406.654,7.747,12.827 -American Wide Flange,W16x45,H,178.689,409.702,8.763,14.351 -American Wide Flange,W16x50,H,179.578,413.004,9.652,16.002 -American Wide Flange,W16x57,H,180.848,417.322,10.922,18.161 -American Wide Flange,W16x67,H,259.969,414.782,10.033,16.891 -American Wide Flange,W16x77,H,261.493,419.608,11.557,19.304 -American Wide Flange,W16x89,H,263.271,425.45,13.335,22.225 -American Wide Flange,W16x100,H,264.795,431.038,14.859,25.019 -American Wide Flange,W18x35,H,152.4,449.58,7.62,10.795 -American Wide Flange,W18x40,H,152.908,454.66,8.001,13.335 -American Wide Flange,W18x46,H,153.924,459.74,9.144,15.367 -American Wide Flange,W18x50,H,190.5,457.2,9.017,14.478 -American Wide Flange,W18x55,H,191.262,459.74,9.906,16.002 -American Wide Flange,W18x60,H,192.024,462.28,10.541,17.653 -American Wide Flange,W18x65,H,192.786,467.36,11.43,19.05 -American Wide Flange,W18x71,H,194.056,469.9,12.573,20.574 -American Wide Flange,W18x76,H,280.416,462.28,10.795,17.272 -American Wide Flange,W18x86,H,281.686,467.36,12.192,19.558 -American Wide Flange,W18x97,H,283.21,472.44,13.589,22.098 -American Wide Flange,W18x106,H,284.48,474.98,14.986,23.876 -American Wide Flange,W18x119,H,286.258,482.6,16.637,26.924 -American Wide Flange,W21x44,H,165.1,525.78,8.89,11.43 -American Wide Flange,W21x50,H,165.862,528.32,9.652,13.589 -American Wide Flange,W21x57,H,166.624,535.94,10.287,16.51 -American Wide Flange,W21x62,H,209.296,533.4,10.16,15.621 -American Wide Flange,W21x68,H,210.058,535.94,10.922,17.399 -American Wide Flange,W21x73,H,210.82,538.48,11.557,18.796 -American Wide Flange,W21x83,H,212.344,543.56,13.081,21.209 -American Wide Flange,W21x93,H,213.868,548.64,14.732,23.622 -American Wide Flange,W21x101,H,312.166,543.56,12.7,20.32 -American Wide Flange,W21x111,H,313.436,546.1,13.97,22.225 -American Wide Flange,W21x122,H,314.706,551.18,15.24,24.384 -American Wide Flange,W21x132,H,315.976,553.72,16.51,26.289 -American Wide Flange,W21x147,H,317.754,561.34,18.288,29.21 -American Wide Flange,W24x55,H,178.054,599.44,10.033,12.827 -American Wide Flange,W24x62,H,178.816,601.98,10.922,14.986 -American Wide Flange,W24x68,H,227.838,601.98,10.541,14.859 -American Wide Flange,W24x76,H,228.6,607.06,11.176,17.272 -American Wide Flange,W24x84,H,229.108,612.14,11.938,19.558 -American Wide Flange,W24x94,H,230.378,612.14,13.081,22.225 -American Wide Flange,W24x104,H,323.85,612.14,12.7,19.05 -American Wide Flange,W24x117,H,325.12,617.22,13.97,21.59 -American Wide Flange,W24x131,H,327.66,622.3,15.367,24.384 -American Wide Flange,W24x146,H,327.66,627.38,16.51,27.686 -American Wide Flange,W24x162,H,330.2,635,17.907,30.988 -American Wide Flange,W27x84,H,252.984,678.18,11.684,16.256 -American Wide Flange,W27x94,H,254,683.26,12.446,18.923 -American Wide Flange,W27x102,H,254.508,688.34,13.081,21.082 -American Wide Flange,W27x114,H,255.778,693.42,14.478,23.622 -American Wide Flange,W27x146,H,355.6,695.96,15.367,24.765 -American Wide Flange,W27x161,H,356.108,701.04,16.764,27.432 -American Wide Flange,W27x178,H,357.886,706.12,18.415,30.226 - -# Rectangular - -# Category,Name,R,width,height - -North America Lumber,1x2in,R,19,28 -North America Lumber,1x3in,R,19,64 -North America Lumber,1x4in,R,19,89 -North America Lumber,1x6in,R,19,89 -North America Lumber,1x8in,R,19,140 -North America Lumber,1x10in,R,19,184 -North America Lumber,1x12in,R,19,286 -North America Lumber,2x2in,R,38,38 -North America Lumber,2x3in,R,38,64 -North America Lumber,2x4in,R,38,89 -North America Lumber,2x6in,R,38,140 -North America Lumber,2x8in,R,38,184 -North America Lumber,2x10in,R,38,235 -North America Lumber,2x12in,R,38,286 -North America Lumber,4x4in,R,89,89 -North America Lumber,4x6in,R,89,140 -North America Lumber,6x6in,R,140,140 -North America Lumber,8x8in,R,184,184 - -# Eurocode timber - -Eurocode timber,22x100 ,R,22,100 -Eurocode timber,38x100,R,38,100 -Eurocode timber,38x150,R,38,150 -Eurocode timber,38x175,R,38,175 -Eurocode timber,38x200,R,38,200 -Eurocode timber,38x225,R,38,225 -Eurocode timber,47x75,R,47,75 -Eurocode timber,47x100,R,47,100 -Eurocode timber,47x125,R,47,125 -Eurocode timber,47x150,R,47,150 -Eurocode timber,47x175,R,47,175 -Eurocode timber,47x200,R,47,200 -Eurocode timber,47x225,R,47,225 -Eurocode timber,47x250,R,47,250 -Eurocode timber,47x300,R,47,300 -Eurocode timber,63x150,R,63,150 -Eurocode timber,63x175,R,63,175 -Eurocode timber,63x200,R,63,200 -Eurocode timber,63x225,R,63,225 -Eurocode timber,75x100,R,75,100 -Eurocode timber,75x150,R,75,150 -Eurocode timber,75x175,R,75,175 -Eurocode timber,75x200,R,75,200 -Eurocode timber,75x225,R,75,225 -Eurocode timber,75x250,R,75,250 -Eurocode timber,75x300,R,75,300 -Eurocode timber,100x100,R,100,100 -Eurocode timber,100x150,R,100,150 -Eurocode timber,100x200,R,100,200 -Eurocode timber,100x225,R,100,225 -Eurocode timber,100x250,R,100,250 -Eurocode timber,100x300,R,100,300 -Eurocode timber,150x150,R,150,150 -Eurocode timber,150x300,R,150,300 -Eurocode timber,300x300,R,300,300 - -# Rectangular Hollow Section (RHS) profiles - -# Category,Name,RH,width,height,thickness - -RHS,RHS50x30,RH,50,30,2.9 -RHS,RHS50x30,RH,50,30,3.0 -RHS,RHS50x30,RH,50,30,3.2 -RHS,RHS50x30,RH,50,30,3.6 -RHS,RHS50x30,RH,50,30,4.0 -RHS,RHS50x30,RH,50,30,5.0 -RHS,RHS50x30,RH,50,30,5.6 -RHS,RHS50x30,RH,50,30,6.3 -RHS,RHS60x40,RH,60,40,2.9 -RHS,RHS60x40,RH,60,40,3.0 -RHS,RHS60x40,RH,60,40,3.2 -RHS,RHS60x40,RH,60,40,3.6 -RHS,RHS60x40,RH,60,40,4.0 -RHS,RHS60x40,RH,60,40,5.0 -RHS,RHS60x40,RH,60,40,5.6 -RHS,RHS60x40,RH,60,40,6.3 -RHS,RHS60x40,RH,60,40,7.1 -RHS,RHS60x40,RH,60,40,8.0 -RHS,RHS80x40,RH,80,40,2.9 -RHS,RHS80x40,RH,80,40,3.0 -RHS,RHS80x40,RH,80,40,3.2 -RHS,RHS80x40,RH,80,40,3.6 -RHS,RHS80x40,RH,80,40,4.0 -RHS,RHS80x40,RH,80,40,5.0 -RHS,RHS80x40,RH,80,40,5.6 -RHS,RHS80x40,RH,80,40,6.3 -RHS,RHS80x40,RH,80,40,7.1 -RHS,RHS80x40,RH,80,40,8.0 -RHS,RHS90x50,RH,90,50,3.0 -RHS,RHS90x50,RH,90,50,3.2 -RHS,RHS90x50,RH,90,50,3.6 -RHS,RHS90x50,RH,90,50,4.0 -RHS,RHS90x50,RH,90,50,5.0 -RHS,RHS90x50,RH,90,50,5.6 -RHS,RHS90x50,RH,90,50,6.3 -RHS,RHS90x50,RH,90,50,7.1 -RHS,RHS90x50,RH,90,50,8.0 -RHS,RHS90x50,RH,90,50,8.8 -RHS,RHS100x50,RH,100,50,3.2 -RHS,RHS100x50,RH,100,50,3.6 -RHS,RHS100x50,RH,100,50,4.0 -RHS,RHS100x50,RH,100,50,5.0 -RHS,RHS100x50,RH,100,50,5.6 -RHS,RHS100x50,RH,100,50,6.3 -RHS,RHS100x50,RH,100,50,7.1 -RHS,RHS100x50,RH,100,50,8.0 -RHS,RHS100x50,RH,100,50,8.8 -RHS,RHS100x50,RH,100,50,10.0 -RHS,RHS100x60,RH,100,60,3.2 -RHS,RHS100x60,RH,100,60,3.6 -RHS,RHS100x60,RH,100,60,4.0 -RHS,RHS100x60,RH,100,60,5.0 -RHS,RHS100x60,RH,100,60,5.6 -RHS,RHS100x60,RH,100,60,6.3 -RHS,RHS100x60,RH,100,60,7.1 -RHS,RHS100x60,RH,100,60,8.0 -RHS,RHS100x60,RH,100,60,8.8 -RHS,RHS100x60,RH,100,60,10.0 -RHS,RHS120x60,RH,120,60,3.6 -RHS,RHS120x60,RH,120,60,4.0 -RHS,RHS120x60,RH,120,60,5.0 -RHS,RHS120x60,RH,120,60,5.6 -RHS,RHS120x60,RH,120,60,6.3 -RHS,RHS120x60,RH,120,60,7.1 -RHS,RHS120x60,RH,120,60,8.0 -RHS,RHS120x60,RH,120,60,8.8 -RHS,RHS120x60,RH,120,60,10.0 -RHS,RHS120x80,RH,120,80,3.6 -RHS,RHS120x80,RH,120,80,4.0 -RHS,RHS120x80,RH,120,80,5.0 -RHS,RHS120x80,RH,120,80,5.6 -RHS,RHS120x80,RH,120,80,6.3 -RHS,RHS120x80,RH,120,80,7.1 -RHS,RHS120x80,RH,120,80,8.0 -RHS,RHS120x80,RH,120,80,8.8 -RHS,RHS120x80,RH,120,80,10.0 -RHS,RHS150x100,RH,150,100,4.0 -RHS,RHS150x100,RH,150,100,5.0 -RHS,RHS150x100,RH,150,100,5.6 -RHS,RHS150x100,RH,150,100,6.3 -RHS,RHS150x100,RH,150,100,7.1 -RHS,RHS150x100,RH,150,100,8.0 -RHS,RHS150x100,RH,150,100,8.8 -RHS,RHS150x100,RH,150,100,10.0 -RHS,RHS150x100,RH,150,100,11.0 -RHS,RHS150x100,RH,150,100,12.5 -RHS,RHS160x80,RH,160,80,4.0 -RHS,RHS160x80,RH,160,80,5.0 -RHS,RHS160x80,RH,160,80,5.6 -RHS,RHS160x80,RH,160,80,6.3 -RHS,RHS160x80,RH,160,80,7.1 -RHS,RHS160x80,RH,160,80,8.0 -RHS,RHS160x80,RH,160,80,8.8 -RHS,RHS160x80,RH,160,80,10.0 -RHS,RHS160x80,RH,160,80,11.0 -RHS,RHS160x80,RH,160,80,12.5 -RHS,RHS180x60,RH,180,60,4.0 -RHS,RHS180x60,RH,180,60,5.0 -RHS,RHS180x60,RH,180,60,5.6 -RHS,RHS180x60,RH,180,60,6.3 -RHS,RHS180x60,RH,180,60,7.1 -RHS,RHS180x60,RH,180,60,8.0 -RHS,RHS180x60,RH,180,60,8.8 -RHS,RHS180x60,RH,180,60,10.0 -RHS,RHS180x60,RH,180,60,11.0 -RHS,RHS180x60,RH,180,60,12.5 -RHS,RHS180x100,RH,180,100,4.0 -RHS,RHS180x100,RH,180,100,5.0 -RHS,RHS180x100,RH,180,100,5.6 -RHS,RHS180x100,RH,180,100,6.3 -RHS,RHS180x100,RH,180,100,7.1 -RHS,RHS180x100,RH,180,100,8.0 -RHS,RHS180x100,RH,180,100,8.8 -RHS,RHS180x100,RH,180,100,10.0 -RHS,RHS180x100,RH,180,100,11.0 -RHS,RHS180x100,RH,180,100,12.5 -RHS,RHS180x100,RH,180,100,14.2 -RHS,RHS200x100,RH,200,100,4.0 -RHS,RHS200x100,RH,200,100,5.0 -RHS,RHS200x100,RH,200,100,5.6 -RHS,RHS200x100,RH,200,100,6.3 -RHS,RHS200x100,RH,200,100,7.1 -RHS,RHS200x100,RH,200,100,8.0 -RHS,RHS200x100,RH,200,100,8.8 -RHS,RHS200x100,RH,200,100,10.0 -RHS,RHS200x100,RH,200,100,11.0 -RHS,RHS200x100,RH,200,100,12.5 -RHS,RHS200x100,RH,200,100,14.2 -RHS,RHS200x100,RH,200,100,16.0 -RHS,RHS200x120,RH,200,120,5.0 -RHS,RHS200x120,RH,200,120,5.6 -RHS,RHS200x120,RH,200,120,6.3 -RHS,RHS200x120,RH,200,120,7.1 -RHS,RHS200x120,RH,200,120,8.0 -RHS,RHS200x120,RH,200,120,8.8 -RHS,RHS200x120,RH,200,120,10.0 -RHS,RHS200x120,RH,200,120,11.0 -RHS,RHS200x120,RH,200,120,12.5 -RHS,RHS200x120,RH,200,120,14.2 -RHS,RHS200x120,RH,200,120,16.0 -RHS,RHS200x150,RH,200,150,5.0 -RHS,RHS200x150,RH,200,150,5.6 -RHS,RHS200x150,RH,200,150,6.3 -RHS,RHS200x150,RH,200,150,7.1 -RHS,RHS200x150,RH,200,150,8.0 -RHS,RHS200x150,RH,200,150,8.8 -RHS,RHS200x150,RH,200,150,10.0 -RHS,RHS200x150,RH,200,150,11.0 -RHS,RHS200x150,RH,200,150,12.5 -RHS,RHS200x150,RH,200,150,14.2 -RHS,RHS200x150,RH,200,150,16.0 -RHS,RHS220x120,RH,220,120,7.1 -RHS,RHS220x120,RH,220,120,8.0 -RHS,RHS220x120,RH,220,120,8.8 -RHS,RHS220x120,RH,220,120,10.0 -RHS,RHS220x120,RH,220,120,11.0 -RHS,RHS220x120,RH,220,120,12.5 -RHS,RHS220x120,RH,220,120,14.2 -RHS,RHS220x120,RH,220,120,16.0 -RHS,RHS250x100,RH,250,100,5.0 -RHS,RHS250x100,RH,250,100,5.6 -RHS,RHS250x100,RH,250,100,6.3 -RHS,RHS250x100,RH,250,100,7.1 -RHS,RHS250x100,RH,250,100,8.0 -RHS,RHS250x100,RH,250,100,8.8 -RHS,RHS250x100,RH,250,100,10.0 -RHS,RHS250x100,RH,250,100,11.0 -RHS,RHS250x100,RH,250,100,12.5 -RHS,RHS250x100,RH,250,100,14.2 -RHS,RHS250x100,RH,250,100,16.0 -RHS,RHS250x150,RH,250,150,5.0 -RHS,RHS250x150,RH,250,150,5.6 -RHS,RHS250x150,RH,250,150,6.3 -RHS,RHS250x150,RH,250,150,7.1 -RHS,RHS250x150,RH,250,150,8.0 -RHS,RHS250x150,RH,250,150,8.8 -RHS,RHS250x150,RH,250,150,10.0 -RHS,RHS250x150,RH,250,150,11.0 -RHS,RHS250x150,RH,250,150,12.5 -RHS,RHS250x150,RH,250,150,14.2 -RHS,RHS250x150,RH,250,150,16.0 -RHS,RHS260x140,RH,260,140,5.0 -RHS,RHS260x140,RH,260,140,5.6 -RHS,RHS260x140,RH,260,140,6.3 -RHS,RHS260x140,RH,260,140,7.1 -RHS,RHS260x140,RH,260,140,8.0 -RHS,RHS260x140,RH,260,140,8.8 -RHS,RHS260x140,RH,260,140,10.0 -RHS,RHS260x140,RH,260,140,11.0 -RHS,RHS260x140,RH,260,140,12.5 -RHS,RHS260x140,RH,260,140,14.2 -RHS,RHS260x140,RH,260,140,16.0 -RHS,RHS260x180,RH,260,180,8.0 -RHS,RHS260x180,RH,260,180,8.8 -RHS,RHS260x180,RH,260,180,10.0 -RHS,RHS260x180,RH,260,180,11.0 -RHS,RHS260x180,RH,260,180,12.5 -RHS,RHS260x180,RH,260,180,14.2 -RHS,RHS260x180,RH,260,180,16.0 -RHS,RHS300x100,RH,300,100,5.0 -RHS,RHS300x100,RH,300,100,5.6 -RHS,RHS300x100,RH,300,100,6.3 -RHS,RHS300x100,RH,300,100,7.1 -RHS,RHS300x100,RH,300,100,8.0 -RHS,RHS300x100,RH,300,100,8.8 -RHS,RHS300x100,RH,300,100,10.0 -RHS,RHS300x100,RH,300,100,11.0 -RHS,RHS300x100,RH,300,100,12.5 -RHS,RHS300x100,RH,300,100,14.2 -RHS,RHS300x100,RH,300,100,16.0 -RHS,RHS300x200,RH,300,200,5.0 -RHS,RHS300x200,RH,300,200,5.6 -RHS,RHS300x200,RH,300,200,6.3 -RHS,RHS300x200,RH,300,200,7.1 -RHS,RHS300x200,RH,300,200,8.0 -RHS,RHS300x200,RH,300,200,8.8 -RHS,RHS300x200,RH,300,200,10.0 -RHS,RHS300x200,RH,300,200,11.0 -RHS,RHS300x200,RH,300,200,12.5 -RHS,RHS300x200,RH,300,200,14.2 -RHS,RHS300x200,RH,300,200,16.0 -RHS,RHS300x250,RH,300,250,6.3 -RHS,RHS300x250,RH,300,250,7.1 -RHS,RHS300x250,RH,300,250,8.0 -RHS,RHS300x250,RH,300,250,8.8 -RHS,RHS300x250,RH,300,250,10.0 -RHS,RHS300x250,RH,300,250,11.0 -RHS,RHS300x250,RH,300,250,12.5 -RHS,RHS300x250,RH,300,250,14.2 -RHS,RHS300x250,RH,300,250,16.0 -RHS,RHS350x150,RH,350,150,5.0 -RHS,RHS350x150,RH,350,150,5.6 -RHS,RHS350x150,RH,350,150,6.3 -RHS,RHS350x150,RH,350,150,7.1 -RHS,RHS350x150,RH,350,150,8.0 -RHS,RHS350x150,RH,350,150,8.8 -RHS,RHS350x150,RH,350,150,10.0 -RHS,RHS350x150,RH,350,150,11.0 -RHS,RHS350x150,RH,350,150,12.5 -RHS,RHS350x150,RH,350,150,14.2 -RHS,RHS350x150,RH,350,150,16.0 -RHS,RHS350x200,RH,350,200,6.3 -RHS,RHS350x200,RH,350,200,7.1 -RHS,RHS350x200,RH,350,200,8.0 -RHS,RHS350x200,RH,350,200,8.8 -RHS,RHS350x200,RH,350,200,10.0 -RHS,RHS350x200,RH,350,200,11.0 -RHS,RHS350x200,RH,350,200,12.5 -RHS,RHS350x200,RH,350,200,14.2 -RHS,RHS350x200,RH,350,200,16.0 -RHS,RHS350x250,RH,350,250,6.3 -RHS,RHS350x250,RH,350,250,7.1 -RHS,RHS350x250,RH,350,250,8.0 -RHS,RHS350x250,RH,350,250,8.8 -RHS,RHS350x250,RH,350,250,10.0 -RHS,RHS350x250,RH,350,250,11.0 -RHS,RHS350x250,RH,350,250,12.5 -RHS,RHS350x250,RH,350,250,14.2 -RHS,RHS350x250,RH,350,250,16.0 -RHS,RHS400x150,RH,400,150,6.3 -RHS,RHS400x150,RH,400,150,7.1 -RHS,RHS400x150,RH,400,150,8.0 -RHS,RHS400x150,RH,400,150,8.8 -RHS,RHS400x150,RH,400,150,10.0 -RHS,RHS400x150,RH,400,150,11.0 -RHS,RHS400x150,RH,400,150,12.5 -RHS,RHS400x150,RH,400,150,14.2 -RHS,RHS400x150,RH,400,150,16.0 -RHS,RHS400x200,RH,400,200,6.3 -RHS,RHS400x200,RH,400,200,7.1 -RHS,RHS400x200,RH,400,200,8.0 -RHS,RHS400x200,RH,400,200,8.8 -RHS,RHS400x200,RH,400,200,10.0 -RHS,RHS400x200,RH,400,200,11.0 -RHS,RHS400x200,RH,400,200,12.5 -RHS,RHS400x200,RH,400,200,14.2 -RHS,RHS400x200,RH,400,200,16.0 -RHS,RHS400x300,RH,400,300,8.0 -RHS,RHS400x300,RH,400,300,8.8 -RHS,RHS400x300,RH,400,300,10.0 -RHS,RHS400x300,RH,400,300,11.0 -RHS,RHS400x300,RH,400,300,12.5 -RHS,RHS400x300,RH,400,300,14.2 -RHS,RHS400x300,RH,400,300,16.0 -RHS,RHS450x150,RH,450,150,8.0 -RHS,RHS450x150,RH,450,150,8.8 -RHS,RHS450x150,RH,450,150,10.0 -RHS,RHS450x150,RH,450,150,11.0 -RHS,RHS450x150,RH,450,150,12.5 -RHS,RHS450x150,RH,450,150,14.2 -RHS,RHS450x150,RH,450,150,16.0 -RHS,RHS450x250,RH,450,250,8.0 -RHS,RHS450x250,RH,450,250,8.8 -RHS,RHS450x250,RH,450,250,10.0 -RHS,RHS450x250,RH,450,250,11.0 -RHS,RHS450x250,RH,450,250,12.5 -RHS,RHS450x250,RH,450,250,14.2 -RHS,RHS450x250,RH,450,250,16.0 -RHS,RHS500x200,RH,500,200,8.0 -RHS,RHS500x200,RH,500,200,8.8 -RHS,RHS500x200,RH,500,200,10.0 -RHS,RHS500x200,RH,500,200,11.0 -RHS,RHS500x200,RH,500,200,12.5 -RHS,RHS500x200,RH,500,200,14.2 -RHS,RHS500x200,RH,500,200,16.0 -RHS,RHS500x300,RH,500,300,8.0 -RHS,RHS500x300,RH,500,300,8.8 -RHS,RHS500x300,RH,500,300,10.0 -RHS,RHS500x300,RH,500,300,11.0 -RHS,RHS500x300,RH,500,300,12.5 -RHS,RHS500x300,RH,500,300,14.2 -RHS,RHS500x300,RH,500,300,16.0 - - -# U-profile - -# Category,Name,U,width,height,web thickness,flange thickness - -UPE,UPE80,U,80,50,4,7 -UPE,UPE100,U,100,55,4.5,7.5 -UPE,UPE120,U,120,60,5,8 -UPE,UPE140,U,140,65,5,9 -UPE,UPE160,U,160,70,5.5,9.5 -UPE,UPE180,U,180,75,5.5,10.5 -UPE,UPE200,U,200,80,6,11 -UPE,UPE220,U,220,85,6.5,12 -UPE,UPE240,U,240,90,7,12.5 -UPE,UPE270,U,270,95,7.5,13.5 -UPE,UPE300,U,300,100,9.5,15 -UPE,UPE330,U,330,105,11,16 -UPE,UPE360,U,360,110,12,17 -UPE,UPE400,U,400,115,13.5,18 +# Data structure: + +# Category, Name, Profile class, geometric data... + +# All measures must be in millimeters + +# Possible profile classes are: + +# C= Circular tube +# H= H- or I-profile +# R= Rectangular +# RH= Rectangular hollow +# U= U-profile + +# Additional profile types must be implemented in ArchProfile.py first + +########################################### + +# Circular tube + +# Category,Name,C,Outside diameter,Thickness + +CTH,CTH423,C,42.4,3.2 + +# Circular Hollow Sections + +# Category,Name,C,Outside diameter,Thickness + +CHS,CHS21.3x2.6,C,21.3,2.6 +CHS,CHS21.3x2.9,C,21.3,2.9 +CHS,CHS21.3x3.2,C,21.3,3.2 +CHS,CHS26.9x2.6,C,26.9,2.6 +CHS,CHS26.9x2.9,C,26.9,2.9 +CHS,CHS26.9x3.2,C,26.9,3.2 +CHS,CHS26.9x3.6,C,26.9,3.6 +CHS,CHS33.7x2.6,C,33.7,2.6 +CHS,CHS33.7x2.9,C,33.7,2.9 +CHS,CHS33.7x3.2,C,33.7,3.2 +CHS,CHS33.7x3.6,C,33.7,3.6 +CHS,CHS33.7x4,C,33.7,4 +CHS,CHS33.7x4.5,C,33.7,4.5 +CHS,CHS42.4x2.6,C,42.4,2.6 +CHS,CHS42.4x2.9,C,42.4,2.9 +CHS,CHS42.4x3.2,C,42.4,3.2 +CHS,CHS42.4x3.6,C,42.4,3.6 +CHS,CHS42.4x4,C,42.4,4 +CHS,CHS42.4x4.5,C,42.4,4.5 +CHS,CHS48.3x2.6,C,48.3,2.6 +CHS,CHS48.3x2.9,C,48.3,2.9 +CHS,CHS48.3x3.2,C,48.3,3.2 +CHS,CHS48.3x3.6,C,48.3,3.6 +CHS,CHS48.3x4,C,48.3,4 +CHS,CHS48.3x4.5,C,48.3,4.5 +CHS,CHS48.3x5,C,48.3,5 +CHS,CHS48.3x5.6,C,48.3,5.6 +CHS,CHS48.3x6.3,C,48.3,6.3 +CHS,CHS60.3x2.6,C,60.3,2.6 +CHS,CHS60.3x2.9,C,60.3,2.9 +CHS,CHS60.3x3.2,C,60.3,3.2 +CHS,CHS60.3x3.6,C,60.3,3.6 +CHS,CHS60.3x4,C,60.3,4 +CHS,CHS60.3x4.5,C,60.3,4.5 +CHS,CHS60.3x5,C,60.3,5 +CHS,CHS60.3x5.6,C,60.3,5.6 +CHS,CHS60.3x6.3,C,60.3,6.3 +CHS,CHS60.3x7.1,C,60.3,7.1 +CHS,CHS60.3x8,C,60.3,8 +CHS,CHS76.1x2.9,C,76.1,2.9 +CHS,CHS76.1x3.2,C,76.1,3.2 +CHS,CHS76.1x3.6,C,76.1,3.6 +CHS,CHS76.1x4,C,76.1,4 +CHS,CHS76.1x4.5,C,76.1,4.5 +CHS,CHS76.1x5,C,76.1,5 +CHS,CHS76.1x5.6,C,76.1,5.6 +CHS,CHS76.1x6.3,C,76.1,6.3 +CHS,CHS76.1x7.1,C,76.1,7.1 +CHS,CHS76.1x8,C,76.1,8 +CHS,CHS88.9x3.2,C,88.9,3.2 +CHS,CHS88.9x3.6,C,88.9,3.6 +CHS,CHS88.9x4,C,88.9,4 +CHS,CHS88.9x4.5,C,88.9,4.5 +CHS,CHS88.9x5,C,88.9,5 +CHS,CHS88.9x5.6,C,88.9,5.6 +CHS,CHS88.9x6.3,C,88.9,6.3 +CHS,CHS88.9x7.1,C,88.9,7.1 +CHS,CHS88.9x8,C,88.9,8 +CHS,CHS88.9x10,C,88.9,10 +CHS,CHS101.6x3.6,C,101.6,3.6 +CHS,CHS101.6x4,C,101.6,4 +CHS,CHS101.6x4.5,C,101.6,4.5 +CHS,CHS101.6x5,C,101.6,5 +CHS,CHS101.6x5.6,C,101.6,5.6 +CHS,CHS101.6x6.3,C,101.6,6.3 +CHS,CHS101.6x7.1,C,101.6,7.1 +CHS,CHS101.6x8,C,101.6,8 +CHS,CHS101.6x10,C,101.6,10 +CHS,CHS114.3x3.6,C,114.3,3.6 +CHS,CHS114.3x4,C,114.3,4 +CHS,CHS114.3x4.5,C,114.3,4.5 +CHS,CHS114.3x5,C,114.3,5 +CHS,CHS114.3x5.6,C,114.3,5.6 +CHS,CHS114.3x6.3,C,114.3,6.3 +CHS,CHS114.3x7.1,C,114.3,7.1 +CHS,CHS114.3x8,C,114.3,8 +CHS,CHS114.3x10,C,114.3,10 +CHS,CHS139.7x3.6,C,139.7,3.6 +CHS,CHS139.7x4,C,139.7,4 +CHS,CHS139.7x4.5,C,139.7,4.5 +CHS,CHS139.7x5,C,139.7,5 +CHS,CHS139.7x5.6,C,139.7,5.6 +CHS,CHS139.7x6.3,C,139.7,6.3 +CHS,CHS139.7x7.1,C,139.7,7.1 +CHS,CHS139.7x8,C,139.7,8 +CHS,CHS139.7x10,C,139.7,10 +CHS,CHS168.3x5,C,168.3,5 +CHS,CHS168.3x5.6,C,168.3,5.6 +CHS,CHS168.3x6.3,C,168.3,6.3 +CHS,CHS168.3x7.1,C,168.3,7.1 +CHS,CHS168.3x8,C,168.3,8 +CHS,CHS168.3x10,C,168.3,10 +CHS,CHS168.3x11,C,168.3,11 +CHS,CHS168.3x12.5,C,168.3,12.5 +CHS,CHS193.7x5,C,193.7,5 +CHS,CHS193.7x5.6,C,193.7,5.6 +CHS,CHS193.7x6.3,C,193.7,6.3 +CHS,CHS193.7x7.1,C,193.7,7.1 +CHS,CHS193.7x8,C,193.7,8 +CHS,CHS193.7x10,C,193.7,10 +CHS,CHS193.7x11,C,193.7,11 +CHS,CHS193.7x12.5,C,193.7,12.5 +CHS,CHS193.7x14.2,C,193.7,14.2 +CHS,CHS193.7x16,C,193.7,16 +CHS,CHS219.1x4.5,C,219.1,4.5 +CHS,CHS219.1x5,C,219.1,5 +CHS,CHS219.1x5.6,C,219.1,5.6 +CHS,CHS219.1x6.3,C,219.1,6.3 +CHS,CHS219.1x7.1,C,219.1,7.1 +CHS,CHS219.1x8,C,219.1,8 +CHS,CHS219.1x10,C,219.1,10 +CHS,CHS219.1x11,C,219.1,11 +CHS,CHS219.1x12.5,C,219.1,12.5 +CHS,CHS219.1x14.2,C,219.1,14.2 +CHS,CHS219.1x16,C,219.1,16 +CHS,CHS244.5x5,C,244.5,5 +CHS,CHS244.5x5.6,C,244.5,5.6 +CHS,CHS244.5x6.3,C,244.5,6.3 +CHS,CHS244.5x7.1,C,244.5,7.1 +CHS,CHS244.5x8,C,244.5,8 +CHS,CHS244.5x10,C,244.5,10 +CHS,CHS244.5x11,C,244.5,11 +CHS,CHS244.5x12.5,C,244.5,12.5 +CHS,CHS244.5x14.2,C,244.5,14.2 +CHS,CHS244.5x16,C,244.5,16 +CHS,CHS273x5,C,273,5 +CHS,CHS273x5.6,C,273,5.6 +CHS,CHS273x6.3,C,273,6.3 +CHS,CHS273x7.1,C,273,7.1 +CHS,CHS273x8,C,273,8 +CHS,CHS273x10,C,273,10 +CHS,CHS273x11,C,273,11 +CHS,CHS273x12.5,C,273,12.5 +CHS,CHS273x14.2,C,273,14.2 +CHS,CHS273x16,C,273,16 +CHS,CHS323.9x5,C,323.9,5 +CHS,CHS323.9x5.6,C,323.9,5.6 +CHS,CHS323.9x6.3,C,323.9,6.3 +CHS,CHS323.9x7.1,C,323.9,7.1 +CHS,CHS323.9x8,C,323.9,8 +CHS,CHS323.9x10,C,323.9,10 +CHS,CHS323.9x11,C,323.9,11 +CHS,CHS323.9x12.5,C,323.9,12.5 +CHS,CHS323.9x14.2,C,323.9,14.2 +CHS,CHS323.9x16,C,323.9,16 +CHS,CHS355.6x6.3,C,355.6,6.3 +CHS,CHS355.6x7.1,C,355.6,7.1 +CHS,CHS355.6x8,C,355.6,8 +CHS,CHS355.6x10,C,355.6,10 +CHS,CHS355.6x11,C,355.6,11 +CHS,CHS355.6x12.5,C,355.6,12.5 +CHS,CHS355.6x14.2,C,355.6,14.2 +CHS,CHS355.6x16,C,355.6,16 +CHS,CHS406.4x10,C,406.4,10 +CHS,CHS406.4x11,C,406.4,11 +CHS,CHS406.4x12.5,C,406.4,12.5 +CHS,CHS406.4x14.2,C,406.4,14.2 +CHS,CHS406.4x16,C,406.4,16 +CHS,CHS457x10,C,457,10 +CHS,CHS457x11,C,457,11 +CHS,CHS457x12.5,C,457,12.5 +CHS,CHS457x14.2,C,457,14.2 +CHS,CHS457x16,C,457,16 +CHS,CHS508x10,C,508,10 +CHS,CHS508x11,C,508,11 +CHS,CHS508x12.5,C,508,12.5 +CHS,CHS508x14.2,C,508,14.2 +CHS,CHS508x16,C,508,16 + + +# H- or I-profile + +# Category,Name,H,width,height,web thickness,flange thickness + +# HEA profiles + +HEA,HEA100,H,100,96,5,8 +HEA,HEA120,H,120,114,5,8 +HEA,HEA140,H,140,133,5.5,8.5 +HEA,HEA160,H,160,152,6,9 +HEA,HEA180,H,180,171,6,9.5 +HEA,HEA200,H,200,190,6.5,10 +HEA,HEA220,H,220,210,7,11 +HEA,HEA240,H,240,230,7.5,12 +HEA,HEA260,H,260,250,7.5,12.5 +HEA,HEA280,H,280,270,8,13 +HEA,HEA300,H,300,290,8.5,14 +HEA,HEA320,H,300,310,9,15.5 +HEA,HEA340,H,300,330,9.5,16.5 +HEA,HEA360,H,300,350,10,17.5 +HEA,HEA400,H,300,390,11,19 +HEA,HEA450,H,300,440,11.5,21 +HEA,HEA500,H,300,490,12,23 +HEA,HEA550,H,300,540,12.5,24 +HEA,HEA600,H,300,590,13,25 +HEA,HEA650,H,300,640,13.5,26 +HEA,HEA700,H,300,690,14.5,27 +HEA,HEA800,H,300,790,15,28 +HEA,HEA900,H,300,890,16,30 +HEA,HEA1000,H,300,990,16.5,31 +HEA,HEAA100,H,100,91,4.2,5.5 +HEA,HEAA120,H,120,109,4.2,5.5 +HEA,HEAA140,H,140,128,4.3,6 +HEA,HEAA160,H,160,148,4.5,7 +HEA,HEAA180,H,180,167,5,7.5 +HEA,HEAA200,H,200,186,5.5,8 +HEA,HEAA220,H,220,205,6,8.5 +HEA,HEAA240,H,240,224,6.5,9 +HEA,HEAA260,H,260,244,6.5,9.5 +HEA,HEAA280,H,280,264,7,10 +HEA,HEAA300,H,300,283,7.5,10.5 +HEA,HEAA320,H,300,301,8,11 +HEA,HEAA340,H,300,320,8.5,11.5 +HEA,HEAA360,H,300,339,9,12 +HEA,HEAA400,H,300,378,9.5,13 +HEA,HEAA450,H,300,425,10,13.5 +HEA,HEAA500,H,300,472,10.5,14 +HEA,HEAA550,H,300,522,11.5,15 +HEA,HEAA600,H,300,571,12,15.5 +HEA,HEAA650,H,300,620,12.5,16 +HEA,HEAA700,H,300,670,13,17 +HEA,HEAA800,H,300,770,14,18 +HEA,HEAA900,H,300,870,15,20 +HEA,HEAA1000,H,300,970,16,21 + +# HEB profiles + +HEB,HEB100,H,100,100,6,10 +HEB,HEB120,H,120,120,6.5,11 +HEB,HEB140,H,140,140,7,12 +HEB,HEB160,H,160,160,8,13 +HEB,HEB180,H,180,180,8.5,14 +HEB,HEB200,H,200,200,9,15 +HEB,HEB220,H,220,220,9.5,16 +HEB,HEB240,H,240,240,10,17 +HEB,HEB260,H,260,260,10,17.5 +HEB,HEB280,H,280,280,10.5,18 +HEB,HEB300,H,300,300,11,19 +HEB,HEB320,H,300,320,11.5,20.5 +HEB,HEB340,H,300,340,12,21.5 +HEB,HEB360,H,300,360,12.5,22.5 +HEB,HEB400,H,300,400,13.5,24 +HEB,HEB450,H,300,450,14,26 +HEB,HEB500,H,300,500,14.5,28 +HEB,HEB550,H,300,550,15,29 +HEB,HEB600,H,300,600,15.5,30 +HEB,HEB650,H,300,650,16,31 +HEB,HEB700,H,300,700,17,32 +HEB,HEB800,H,300,800,17.5,33 +HEB,HEB900,H,300,900,18.5,35 +HEB,HEB1000,H,300,1000,19,36 + +# HEM profiles + +HEM,HEM160,H,166,180,14,23 +HEM,HEM180,H,186,200,14.5,24 +HEM,HEM200,H,206,220,15,25 +HEM,HEM220,H,226,240,15.5,26 +HEM,HEM240,H,248,270,18,32 +HEM,HEM260,H,268,290,18,32.5 +HEM,HEM280,H,288,310,18.5,33 +HEM,HEM300,H,310,340,21,39 +HEM,HEM320,H,309,359,21,40 +HEM,HEM340,H,309,377,21,40 +HEM,HEM360,H,308,395,21,40 +HEM,HEM400,H,307,432,21,40 +HEM,HEM450,H,307,478,21,40 +HEM,HEM500,H,306,524,21,40 +HEM,HEM550,H,306,572,21,40 +HEM,HEM600,H,305,620,21,40 +HEM,HEM650,H,305,668,21,40 +HEM,HEM700,H,304,716,21,40 +HEM,HEM800,H,303,814,21,40 +HEM,HEM900,H,302,910,21,40 +HEM,HEM1000,H,302,1008,21,40 + +# British Universal Column (UC) profiles + +UC,UC152x152x23,H,152.2,152.4,5.8,6.8 +UC,UC152x152x30,H,152.9,157.6,6.5,9.4 +UC,UC152x152x37,H,154.4,161.8,8,11.5 +UC,UC203x203x46,H,203.6,203.2,7.2,11 +UC,UC203x203x52,H,204.3,206.2,7.9,12.5 +UC,UC203x203x60,H,205.8,209.6,9.4,14.2 +UC,UC203x203x71,H,206.4,215.8,10,17.3 +UC,UC203x203x86,H,209.1,222.2,12.7,20.5 +UC,UC254x254x73,H,254.6,254.1,8.6,14.2 +UC,UC254x254x89,H,256.3,260.3,10.3,17.3 +UC,UC254x254x107,H,258.8,266.7,12.8,20.5 +UC,UC254x254x132,H,261.3,276.3,15.3,25.3 +UC,UC254x254x167,H,265.2,289.1,19.2,31.7 +UC,UC305x305x97,H,305.3,307.9,9.9,15.4 +UC,UC305x305x118,H,307.4,314.5,12,18.7 +UC,UC305x305x137,H,309.2,320.5,13.8,21.7 +UC,UC305x305x158,H,311.2,327.1,15.8,25 +UC,UC305x305x198,H,314.5,339.9,19.1,31.4 +UC,UC305x305x240,H,318.4,352.5,23,37.7 +UC,UC305x305x283,H,322.2,365.3,26.8,44.1 +UC,UC356x368x129,H,368.6,355.6,10.4,17.5 +UC,UC356x368x153,H,370.5,362,12.3,20.7 +UC,UC356x368x177,H,372.6,368.2,14.4,23.8 +UC,UC356x368x202,H,374.7,374.6,16.5,27 +UC,UC356x406x235,H,394.8,381,18.4,30.2 +UC,UC356x406x287,H,399,393.6,22.6,36.5 +UC,UC356x406x340,H,403,406.4,26.6,42.9 +UC,UC356x406x393,H,407,419,30.6,49.2 +UC,UC356x406x467,H,412.2,436.6,35.8,58 +UC,UC356x406x551,H,418.5,455.6,42.1,67.5 +UC,UC356x406x634,H,424,474.6,47.6,77 + + +# INP profiles + +INP,INP80,H,42,80,3.9,5.9 +INP,INP100,H,50,100,4.5,6.8 +INP,INP120,H,58,120,5.1,7.7 +INP,INP140,H,66,140,5.7,8.6 +INP,INP160,H,74,160,6.3,9.5 +INP,INP180,H,82,180,6.9,10.4 +INP,INP200,H,90,200,7.5,11.3 +INP,INP220,H,98,220,8.1,12.2 +INP,INP240,H,106,240,8.7,13.1 +INP,INP260,H,113,260,9.4,14.1 +INP,INP280,H,119,280,10.1,15.2 +INP,INP300,H,125,300,10.8,16.2 +INP,INP320,H,131,320,11.5,17.3 +INP,INP340,H,137,340,12.2,18.3 +INP,INP360,H,143,360,13,19.5 +INP,INP380,H,149,380,13.7,20.5 +INP,INP400,H,155,400,14.4,21.6 + +# IPE profiles + +IPE,IPE100,H,55,100,4.1,5.7 +IPE,IPE120,H,64,120,4.4,6.3 +IPE,IPE140,H,73,140,4.7,6.9 +IPE,IPE160,H,82,160,5,7.4 +IPE,IPE180,H,91,180,5.3,8 +IPE,IPE200,H,100,200,5.6,8.5 +IPE,IPE220,H,110,220,5.9,9.2 +IPE,IPE240,H,120,240,6.2,9.8 +IPE,IPE270,H,135,270,6.6,10.2 +IPE,IPE300,H,150,300,7.1,10.7 +IPE,IPE330,H,160,330,7.5,11.5 +IPE,IPE360,H,170,360,8,12.7 +IPE,IPE400,H,180,400,8.6,13.5 +IPE,IPE450,H,190,450,9.4,14.6 +IPE,IPE500,H,200,500,10.2,16 +IPE,IPE550,H,210,550,11.1,17.2 +IPE,IPE600,H,220,600,12,19 +IPE,IPEA100,H,55,98,3.6,4.7 +IPE,IPEA120,H,64,118,3.8,5.1 +IPE,IPEA140,H,73,138,3.8,5.6 +IPE,IPEA160,H,82,157,4,5.9 +IPE,IPEA180,H,91,177,4.3,6.5 +IPE,IPEA200,H,100,197,4.5,7 +IPE,IPEA220,H,110,217,5,7.7 +IPE,IPEA240,H,120,237,5.2,8.3 +IPE,IPEA270,H,135,267,5.5,8.7 +IPE,IPEA300,H,150,297,6.1,9.2 +IPE,IPEA330,H,160,327,6.5,10 +IPE,IPEA360,H,170,357.6,6.6,11.5 +IPE,IPEA400,H,180,397,7,12 +IPE,IPEA450,H,190,447,7.6,13.1 +IPE,IPEA500,H,200,497,8.4,14.5 +IPE,IPEA550,H,210,547,9,15.7 +IPE,IPEA600,H,220,597,9.8,17.5 +IPE,IPEO180,H,89,182,6.4,9.5 +IPE,IPEO200,H,102,202,6.2,9.5 +IPE,IPEO220,H,112,222,6.6,10.2 +IPE,IPEO240,H,122,242,7,10.8 +IPE,IPEO270,H,136,274,7.5,12.2 +IPE,IPEO300,H,152,304,8,12.7 +IPE,IPEO330,H,162,334,8.5,13.5 +IPE,IPEO360,H,172,364,9.2,14.7 +IPE,IPEO400,H,182,404,9.7,15.5 +IPE,IPEO450,H,192,456,11,17.6 +IPE,IPEO500,H,202,506,12,19 +IPE,IPEO550,H,212,556,12.7,20.2 +IPE,IPEO600,H,224,610,15,24 +IPE,IPER140,H,72,142,5.3,7.8 +IPE,IPER160,H,81,162,5.6,8.5 +IPE,IPER180,H,92,183,6,9 +IPE,IPER200,H,98,204,6.6,10.5 +IPE,IPER220,H,108,225,6.7,11.8 +IPE,IPER240,H,118,245,7.5,12.3 +IPE,IPER270,H,133,276,7.1,13.1 +IPE,IPER300,H,147,306,8.5,13.7 +IPE,IPER330,H,158,336,9.2,14.5 +IPE,IPER360,H,168,366,9.9,16 +IPE,IPER400,H,178,407,10.6,17 +IPE,IPER450,H,188,458,11.3,18.6 +IPE,IPER500,H,198,508,12.6,20 +IPE,IPER550,H,210,560,14,22.2 +IPE,IPER600,H,218,608,14,23 +IPE,IPEV400,H,182,408,10.6,17.5 +IPE,IPEV450,H,194,460,12.4,19.6 +IPE,IPEV500,H,204,514,14.2,23 +IPE,IPEV550,H,216,566,17.1,25.2 +IPE,IPEV600,H,228,618,18,28 +IPE,IPE750x137,H,263,753,11.5,17 +IPE,IPE750x147,H,265,753,13.2,17 +IPE,IPE750x161,H,266,758,13.8,19.3 +IPE,IPE750x173,H,267,762,14.4,21.6 +IPE,IPE750x185,H,267,766,14.9,23.6 +IPE,IPE750x196,H,268,770,15.6,25.4 +IPE,IPE750x210,H,268,775,16,28 +IPE,IPE750x222,H,269,778,17,29.5 + +# British Universal Beam (UB) profiles + +UB,UB127x76x13,H,76,127,4,7.6 +UB,UB152x89x16,H,88.7,152.4,4.5,7.7 +UB,UB178x102x19,H,101.2,177.8,4.8,7.9 +UB,UB203x102x23,H,101.8,203.2,5.4,9.3 +UB,UB203x133x25,H,133.2,203.2,5.7,7.8 +UB,UB203x133x30,H,133.9,206.8,6.4,9.6 +UB,UB254x102x22,H,101.6,254,5.7,6.8 +UB,UB254x102x25,H,101.9,257.2,6,8.4 +UB,UB254x102x28,H,102.2,260.4,6.3,10 +UB,UB254x146x31,H,146.1,251.4,6,8.6 +UB,UB254x146x37,H,146.4,256,6.3,10.9 +UB,UB254x146x43,H,147.3,259.6,7.2,12.7 +UB,UB305x102x25,H,101.6,305.1,5.8,7 +UB,UB305x102x28,H,101.8,308.7,6,8.8 +UB,UB305x102x33,H,102.4,312.7,6.6,10.8 +UB,UB305x127x37,H,123.4,304.4,7.1,10.7 +UB,UB305x127x42,H,124.3,307.2,8,12.1 +UB,UB305x127x48,H,125.3,311,9,14 +UB,UB305x165x40,H,165,303.4,6,10.2 +UB,UB305x165x46,H,165.7,306.6,6.7,11.8 +UB,UB305x165x54,H,166.9,310.4,7.9,13.7 +UB,UB356x127x33,H,125.4,349,6,8.5 +UB,UB356x127x39,H,126,353.4,6.6,10.7 +UB,UB356x171x45,H,171.1,351.4,7,9.7 +UB,UB356x171x51,H,171.5,355,7.4,11.5 +UB,UB356x171x57,H,172.2,358,8.1,13 +UB,UB356x171x67,H,173.2,363.4,9.1,15.7 +UB,UB406x140x39,H,141.8,398,6.4,8.6 +UB,UB406x140x46,H,142.2,403.2,6.8,11.2 +UB,UB406x178x54,H,177.7,402.6,7.7,10.9 +UB,UB406x178x60,H,177.9,406.4,7.9,12.8 +UB,UB406x178x67,H,178.8,409.4,8.8,14.3 +UB,UB406x178x74,H,179.5,412.8,9.5,16 +UB,UB457x152x52,H,152.4,449.8,7.6,10.9 +UB,UB457x152x60,H,152.9,454.6,8.1,13.3 +UB,UB457x152x67,H,153.8,458,9,15 +UB,UB457x152x74,H,154.4,462,9.6,17 +UB,UB457x152x82,H,155.3,465.8,10.5,18.9 +UB,UB457x191x67,H,189.9,453.4,8.5,12.7 +UB,UB457x191x74,H,190.4,457,9,14.5 +UB,UB457x191x82,H,191.3,460,9.9,16 +UB,UB457x191x89,H,191.9,463.4,10.5,17.7 +UB,UB457x191x98,H,192.8,467.2,11.4,19.6 +UB,UB533x210x82,H,208.8,528.3,9.6,13.2 +UB,UB533x210x92,H,209.3,533.1,10.1,15.6 +UB,UB533x210x101,H,210,536.7,10.8,17.4 +UB,UB533x210x109,H,210.8,539.5,11.6,18.8 +UB,UB533x210x122,H,211.9,544.5,12.7,21.3 +UB,UB610x229x101,H,227.6,602.6,10.5,14.8 +UB,UB610x229x113,H,228.2,607.6,11.1,17.3 +UB,UB610x229x125,H,229,612.2,11.9,19.6 +UB,UB610x229x140,H,230.2,617.2,13.1,22.1 +UB,UB610x305x149,H,304.8,612.4,11.8,19.7 +UB,UB610x305x179,H,307.1,620.2,14.1,23.6 +UB,UB610x305x238,H,311.4,635.8,18.4,31.4 +UB,UB686x254x125,H,253,677.9,11.7,16.2 +UB,UB686x254x140,H,253.7,683.5,12.4,19 +UB,UB686x254x152,H,254.5,687.5,13.2,21 +UB,UB686x254x170,H,255.8,692.9,14.5,23.7 +UB,UB762x267x134,H,264.4,750,12,15.5 +UB,UB762x267x147,H,265.2,754,12.8,17.5 +UB,UB762x267x173,H,266.7,762.2,14.3,21.6 +UB,UB762x267x197,H,268,769.8,15.6,25.4 +UB,UB838x292x176,H,291.7,834.9,14,18.8 +UB,UB838x292x194,H,292.4,840.7,14.7,21.7 +UB,UB838x292x226,H,293.8,850.9,16.1,26.8 +UB,UB914x305x201,H,303.3,903,15.1,20.2 +UB,UB914x305x224,H,304.1,910.4,15.9,23.9 +UB,UB914x305x253,H,305.5,918.4,17.3,27.9 +UB,UB914x305x289,H,307.7,926.6,19.5,32 +UB,UB914x419x343,H,418.5,911.8,19.4,32 +UB,UB914x419x388,H,420.5,921,21.4,36.6 +UB,UB1016x305x222,H,300,970.3,16,21.1 +UB,UB1016x305x249,H,300,980.2,16.5,26 +UB,UB1016x305x272,H,300,990.1,16.5,31 +UB,UB1016x305x314,H,300,1000,19.1,35.9 +UB,UB1016x305x349,H,302,1008.1,21.1,40 +UB,UB1016x305x393,H,303,1016,24.4,43.9 +UB,UB1016x305x437,H,305.4,1025.9,26.9,49 +UB,UB1016x305x487,H,308.5,1036.1,30,54.1 + + +# American Wide Flange W profiles + +American Wide Flange,W4x13,H,103.124,105.664,7.112,8.763 +American Wide Flange,W5x16,H,127,127.254,6.096,9.144 +American Wide Flange,W5x19,H,127.762,130.81,6.858,10.922 +American Wide Flange,W6x9,H,100.076,149.86,4.318,5.461 +American Wide Flange,W6x12,H,101.6,153.162,5.842,7.112 +American Wide Flange,W6x15,H,152.146,152.146,5.842,6.604 +American Wide Flange,W6x16,H,102.362,159.512,6.604,10.287 +American Wide Flange,W6x20,H,152.908,157.48,6.604,9.271 +American Wide Flange,W6x25,H,154.432,162.052,8.128,11.557 +American Wide Flange,W8x10,H,100.076,200.406,4.318,5.207 +American Wide Flange,W8x13,H,101.6,202.946,5.842,6.477 +American Wide Flange,W8x15,H,101.981,205.994,6.223,8.001 +American Wide Flange,W8x18,H,133.35,206.756,5.842,8.382 +American Wide Flange,W8x21,H,133.858,210.312,6.35,10.16 +American Wide Flange,W8x24,H,164.973,201.422,6.223,10.16 +American Wide Flange,W8x28,H,165.989,204.724,7.239,11.811 +American Wide Flange,W8x31,H,203.073,203.2,7.239,11.049 +American Wide Flange,W8x35,H,203.708,206.248,7.874,12.573 +American Wide Flange,W8x40,H,204.978,209.55,9.144,14.224 +American Wide Flange,W8x48,H,205.994,215.9,10.16,17.399 +American Wide Flange,W8x58,H,208.788,222.25,12.954,20.574 +American Wide Flange,W8x67,H,210.312,228.6,14.478,23.749 +American Wide Flange,W10x12,H,100.584,250.698,4.826,5.334 +American Wide Flange,W10x15,H,101.6,253.746,5.842,6.858 +American Wide Flange,W10x17,H,101.854,256.794,6.096,8.382 +American Wide Flange,W10x19,H,102.108,260.096,6.35,10.033 +American Wide Flange,W10x22,H,146.05,258.318,6.096,9.144 +American Wide Flange,W10x26,H,146.558,262.382,6.604,11.176 +American Wide Flange,W10x30,H,147.574,265.938,7.62,12.954 +American Wide Flange,W10x33,H,202.184,247.142,7.366,11.049 +American Wide Flange,W10x39,H,202.819,251.968,8.001,13.462 +American Wide Flange,W10x45,H,203.708,256.54,8.89,15.748 +American Wide Flange,W10x49,H,254,253.492,8.636,14.224 +American Wide Flange,W10x54,H,254.762,256.286,9.398,15.621 +American Wide Flange,W10x60,H,256.032,259.588,10.668,17.272 +American Wide Flange,W10x68,H,257.302,264.16,11.938,19.558 +American Wide Flange,W10x77,H,258.826,269.24,13.462,22.098 +American Wide Flange,W10x88,H,260.731,275.336,15.367,25.146 +American Wide Flange,W10x100,H,262.636,281.94,17.272,28.2448 +American Wide Flange,W10x112,H,264.541,288.544,19.177,31.75 +American Wide Flange,W12x14,H,100.838,302.514,5.08,5.715 +American Wide Flange,W12x16,H,101.346,304.546,5.588,6.731 +American Wide Flange,W12x19,H,101.727,308.864,5.969,8.89 +American Wide Flange,W12x22,H,102.362,312.674,6.604,10.795 +American Wide Flange,W12x26,H,164.846,310.388,5.842,9.652 +American Wide Flange,W12x30,H,165.608,313.436,6.604,11.176 +American Wide Flange,W12x35,H,166.624,317.5,7.62,13.208 +American Wide Flange,W12x40,H,203.327,303.276,7.493,13.081 +American Wide Flange,W12x45,H,204.343,306.324,8.509,14.605 +American Wide Flange,W12x50,H,205.232,309.626,9.398,16.256 +American Wide Flange,W12x53,H,253.873,306.324,8.763,14.605 +American Wide Flange,W12x58,H,254.254,309.626,9.144,16.256 +American Wide Flange,W12x65,H,304.8,307.848,9.906,15.367 +American Wide Flange,W12x72,H,305.816,311.15,10.922,17.018 +American Wide Flange,W12x79,H,306.832,314.452,11.938,18.669 +American Wide Flange,W12x87,H,307.975,318.262,13.081,20.574 +American Wide Flange,W12x96,H,308.864,322.834,13.97,22.86 +American Wide Flange,W12x106,H,310.388,327.406,15.494,25.146 +American Wide Flange,W12x120,H,312.928,333.248,18.034,28.067 +American Wide Flange,W12x136,H,314.96,340.614,20.066,31.75 +American Wide Flange,W14x22,H,127,348.996,5.842,8.509 +American Wide Flange,W14x26,H,127.635,353.314,6.477,10.668 +American Wide Flange,W14x30,H,170.942,351.536,6.858,9.779 +American Wide Flange,W14x34,H,171.323,355.092,7.239,11.557 +American Wide Flange,W14x38,H,171.958,358.14,7.874,13.081 +American Wide Flange,W14x43,H,203.073,346.964,7.747,13.462 +American Wide Flange,W14x48,H,203.962,350.266,8.636,15.113 +American Wide Flange,W14x53,H,204.724,353.568,9.398,16.764 +American Wide Flange,W14x61,H,253.873,352.806,9.525,16.383 +American Wide Flange,W14x68,H,254.889,356.616,10.541,18.288 +American Wide Flange,W14x74,H,255.778,359.918,11.43,19.939 +American Wide Flange,W14x82,H,257.302,363.474,12.954,21.717 +American Wide Flange,W14x90,H,368.808,356.108,11.176,18.034 +American Wide Flange,W14x99,H,369.951,359.664,12.319,19.812 +American Wide Flange,W14x109,H,370.967,363.728,13.335,21.844 +American Wide Flange,W14x120,H,372.618,367.792,14.986,23.876 +American Wide Flange,W14x132,H,374.015,372.364,16.383,26.162 +American Wide Flange,W16x26,H,139.7,398.526,6.35,8.763 +American Wide Flange,W16x31,H,140.335,403.352,6.985,11.176 +American Wide Flange,W16x36,H,177.419,402.844,7.493,10.922 +American Wide Flange,W16x40,H,177.673,406.654,7.747,12.827 +American Wide Flange,W16x45,H,178.689,409.702,8.763,14.351 +American Wide Flange,W16x50,H,179.578,413.004,9.652,16.002 +American Wide Flange,W16x57,H,180.848,417.322,10.922,18.161 +American Wide Flange,W16x67,H,259.969,414.782,10.033,16.891 +American Wide Flange,W16x77,H,261.493,419.608,11.557,19.304 +American Wide Flange,W16x89,H,263.271,425.45,13.335,22.225 +American Wide Flange,W16x100,H,264.795,431.038,14.859,25.019 +American Wide Flange,W18x35,H,152.4,449.58,7.62,10.795 +American Wide Flange,W18x40,H,152.908,454.66,8.001,13.335 +American Wide Flange,W18x46,H,153.924,459.74,9.144,15.367 +American Wide Flange,W18x50,H,190.5,457.2,9.017,14.478 +American Wide Flange,W18x55,H,191.262,459.74,9.906,16.002 +American Wide Flange,W18x60,H,192.024,462.28,10.541,17.653 +American Wide Flange,W18x65,H,192.786,467.36,11.43,19.05 +American Wide Flange,W18x71,H,194.056,469.9,12.573,20.574 +American Wide Flange,W18x76,H,280.416,462.28,10.795,17.272 +American Wide Flange,W18x86,H,281.686,467.36,12.192,19.558 +American Wide Flange,W18x97,H,283.21,472.44,13.589,22.098 +American Wide Flange,W18x106,H,284.48,474.98,14.986,23.876 +American Wide Flange,W18x119,H,286.258,482.6,16.637,26.924 +American Wide Flange,W21x44,H,165.1,525.78,8.89,11.43 +American Wide Flange,W21x50,H,165.862,528.32,9.652,13.589 +American Wide Flange,W21x57,H,166.624,535.94,10.287,16.51 +American Wide Flange,W21x62,H,209.296,533.4,10.16,15.621 +American Wide Flange,W21x68,H,210.058,535.94,10.922,17.399 +American Wide Flange,W21x73,H,210.82,538.48,11.557,18.796 +American Wide Flange,W21x83,H,212.344,543.56,13.081,21.209 +American Wide Flange,W21x93,H,213.868,548.64,14.732,23.622 +American Wide Flange,W21x101,H,312.166,543.56,12.7,20.32 +American Wide Flange,W21x111,H,313.436,546.1,13.97,22.225 +American Wide Flange,W21x122,H,314.706,551.18,15.24,24.384 +American Wide Flange,W21x132,H,315.976,553.72,16.51,26.289 +American Wide Flange,W21x147,H,317.754,561.34,18.288,29.21 +American Wide Flange,W24x55,H,178.054,599.44,10.033,12.827 +American Wide Flange,W24x62,H,178.816,601.98,10.922,14.986 +American Wide Flange,W24x68,H,227.838,601.98,10.541,14.859 +American Wide Flange,W24x76,H,228.6,607.06,11.176,17.272 +American Wide Flange,W24x84,H,229.108,612.14,11.938,19.558 +American Wide Flange,W24x94,H,230.378,612.14,13.081,22.225 +American Wide Flange,W24x104,H,323.85,612.14,12.7,19.05 +American Wide Flange,W24x117,H,325.12,617.22,13.97,21.59 +American Wide Flange,W24x131,H,327.66,622.3,15.367,24.384 +American Wide Flange,W24x146,H,327.66,627.38,16.51,27.686 +American Wide Flange,W24x162,H,330.2,635,17.907,30.988 +American Wide Flange,W27x84,H,252.984,678.18,11.684,16.256 +American Wide Flange,W27x94,H,254,683.26,12.446,18.923 +American Wide Flange,W27x102,H,254.508,688.34,13.081,21.082 +American Wide Flange,W27x114,H,255.778,693.42,14.478,23.622 +American Wide Flange,W27x146,H,355.6,695.96,15.367,24.765 +American Wide Flange,W27x161,H,356.108,701.04,16.764,27.432 +American Wide Flange,W27x178,H,357.886,706.12,18.415,30.226 + +# Rectangular + +# Category,Name,R,width,height + +North America Lumber,1x2in,R,19,28 +North America Lumber,1x3in,R,19,64 +North America Lumber,1x4in,R,19,89 +North America Lumber,1x6in,R,19,89 +North America Lumber,1x8in,R,19,140 +North America Lumber,1x10in,R,19,184 +North America Lumber,1x12in,R,19,286 +North America Lumber,2x2in,R,38,38 +North America Lumber,2x3in,R,38,64 +North America Lumber,2x4in,R,38,89 +North America Lumber,2x6in,R,38,140 +North America Lumber,2x8in,R,38,184 +North America Lumber,2x10in,R,38,235 +North America Lumber,2x12in,R,38,286 +North America Lumber,4x4in,R,89,89 +North America Lumber,4x6in,R,89,140 +North America Lumber,6x6in,R,140,140 +North America Lumber,8x8in,R,184,184 + +# Eurocode timber + +Eurocode timber,22x100 ,R,22,100 +Eurocode timber,38x100,R,38,100 +Eurocode timber,38x150,R,38,150 +Eurocode timber,38x175,R,38,175 +Eurocode timber,38x200,R,38,200 +Eurocode timber,38x225,R,38,225 +Eurocode timber,47x75,R,47,75 +Eurocode timber,47x100,R,47,100 +Eurocode timber,47x125,R,47,125 +Eurocode timber,47x150,R,47,150 +Eurocode timber,47x175,R,47,175 +Eurocode timber,47x200,R,47,200 +Eurocode timber,47x225,R,47,225 +Eurocode timber,47x250,R,47,250 +Eurocode timber,47x300,R,47,300 +Eurocode timber,63x150,R,63,150 +Eurocode timber,63x175,R,63,175 +Eurocode timber,63x200,R,63,200 +Eurocode timber,63x225,R,63,225 +Eurocode timber,75x100,R,75,100 +Eurocode timber,75x150,R,75,150 +Eurocode timber,75x175,R,75,175 +Eurocode timber,75x200,R,75,200 +Eurocode timber,75x225,R,75,225 +Eurocode timber,75x250,R,75,250 +Eurocode timber,75x300,R,75,300 +Eurocode timber,100x100,R,100,100 +Eurocode timber,100x150,R,100,150 +Eurocode timber,100x200,R,100,200 +Eurocode timber,100x225,R,100,225 +Eurocode timber,100x250,R,100,250 +Eurocode timber,100x300,R,100,300 +Eurocode timber,150x150,R,150,150 +Eurocode timber,150x300,R,150,300 +Eurocode timber,300x300,R,300,300 + +# Rectangular Hollow Section (RHS) profiles + +# Category,Name,RH,width,height,thickness + +RHS,RHS50x30,RH,50,30,2.9 +RHS,RHS50x30,RH,50,30,3.0 +RHS,RHS50x30,RH,50,30,3.2 +RHS,RHS50x30,RH,50,30,3.6 +RHS,RHS50x30,RH,50,30,4.0 +RHS,RHS50x30,RH,50,30,5.0 +RHS,RHS50x30,RH,50,30,5.6 +RHS,RHS50x30,RH,50,30,6.3 +RHS,RHS60x40,RH,60,40,2.9 +RHS,RHS60x40,RH,60,40,3.0 +RHS,RHS60x40,RH,60,40,3.2 +RHS,RHS60x40,RH,60,40,3.6 +RHS,RHS60x40,RH,60,40,4.0 +RHS,RHS60x40,RH,60,40,5.0 +RHS,RHS60x40,RH,60,40,5.6 +RHS,RHS60x40,RH,60,40,6.3 +RHS,RHS60x40,RH,60,40,7.1 +RHS,RHS60x40,RH,60,40,8.0 +RHS,RHS80x40,RH,80,40,2.9 +RHS,RHS80x40,RH,80,40,3.0 +RHS,RHS80x40,RH,80,40,3.2 +RHS,RHS80x40,RH,80,40,3.6 +RHS,RHS80x40,RH,80,40,4.0 +RHS,RHS80x40,RH,80,40,5.0 +RHS,RHS80x40,RH,80,40,5.6 +RHS,RHS80x40,RH,80,40,6.3 +RHS,RHS80x40,RH,80,40,7.1 +RHS,RHS80x40,RH,80,40,8.0 +RHS,RHS90x50,RH,90,50,3.0 +RHS,RHS90x50,RH,90,50,3.2 +RHS,RHS90x50,RH,90,50,3.6 +RHS,RHS90x50,RH,90,50,4.0 +RHS,RHS90x50,RH,90,50,5.0 +RHS,RHS90x50,RH,90,50,5.6 +RHS,RHS90x50,RH,90,50,6.3 +RHS,RHS90x50,RH,90,50,7.1 +RHS,RHS90x50,RH,90,50,8.0 +RHS,RHS90x50,RH,90,50,8.8 +RHS,RHS100x50,RH,100,50,3.2 +RHS,RHS100x50,RH,100,50,3.6 +RHS,RHS100x50,RH,100,50,4.0 +RHS,RHS100x50,RH,100,50,5.0 +RHS,RHS100x50,RH,100,50,5.6 +RHS,RHS100x50,RH,100,50,6.3 +RHS,RHS100x50,RH,100,50,7.1 +RHS,RHS100x50,RH,100,50,8.0 +RHS,RHS100x50,RH,100,50,8.8 +RHS,RHS100x50,RH,100,50,10.0 +RHS,RHS100x60,RH,100,60,3.2 +RHS,RHS100x60,RH,100,60,3.6 +RHS,RHS100x60,RH,100,60,4.0 +RHS,RHS100x60,RH,100,60,5.0 +RHS,RHS100x60,RH,100,60,5.6 +RHS,RHS100x60,RH,100,60,6.3 +RHS,RHS100x60,RH,100,60,7.1 +RHS,RHS100x60,RH,100,60,8.0 +RHS,RHS100x60,RH,100,60,8.8 +RHS,RHS100x60,RH,100,60,10.0 +RHS,RHS120x60,RH,120,60,3.6 +RHS,RHS120x60,RH,120,60,4.0 +RHS,RHS120x60,RH,120,60,5.0 +RHS,RHS120x60,RH,120,60,5.6 +RHS,RHS120x60,RH,120,60,6.3 +RHS,RHS120x60,RH,120,60,7.1 +RHS,RHS120x60,RH,120,60,8.0 +RHS,RHS120x60,RH,120,60,8.8 +RHS,RHS120x60,RH,120,60,10.0 +RHS,RHS120x80,RH,120,80,3.6 +RHS,RHS120x80,RH,120,80,4.0 +RHS,RHS120x80,RH,120,80,5.0 +RHS,RHS120x80,RH,120,80,5.6 +RHS,RHS120x80,RH,120,80,6.3 +RHS,RHS120x80,RH,120,80,7.1 +RHS,RHS120x80,RH,120,80,8.0 +RHS,RHS120x80,RH,120,80,8.8 +RHS,RHS120x80,RH,120,80,10.0 +RHS,RHS150x100,RH,150,100,4.0 +RHS,RHS150x100,RH,150,100,5.0 +RHS,RHS150x100,RH,150,100,5.6 +RHS,RHS150x100,RH,150,100,6.3 +RHS,RHS150x100,RH,150,100,7.1 +RHS,RHS150x100,RH,150,100,8.0 +RHS,RHS150x100,RH,150,100,8.8 +RHS,RHS150x100,RH,150,100,10.0 +RHS,RHS150x100,RH,150,100,11.0 +RHS,RHS150x100,RH,150,100,12.5 +RHS,RHS160x80,RH,160,80,4.0 +RHS,RHS160x80,RH,160,80,5.0 +RHS,RHS160x80,RH,160,80,5.6 +RHS,RHS160x80,RH,160,80,6.3 +RHS,RHS160x80,RH,160,80,7.1 +RHS,RHS160x80,RH,160,80,8.0 +RHS,RHS160x80,RH,160,80,8.8 +RHS,RHS160x80,RH,160,80,10.0 +RHS,RHS160x80,RH,160,80,11.0 +RHS,RHS160x80,RH,160,80,12.5 +RHS,RHS180x60,RH,180,60,4.0 +RHS,RHS180x60,RH,180,60,5.0 +RHS,RHS180x60,RH,180,60,5.6 +RHS,RHS180x60,RH,180,60,6.3 +RHS,RHS180x60,RH,180,60,7.1 +RHS,RHS180x60,RH,180,60,8.0 +RHS,RHS180x60,RH,180,60,8.8 +RHS,RHS180x60,RH,180,60,10.0 +RHS,RHS180x60,RH,180,60,11.0 +RHS,RHS180x60,RH,180,60,12.5 +RHS,RHS180x100,RH,180,100,4.0 +RHS,RHS180x100,RH,180,100,5.0 +RHS,RHS180x100,RH,180,100,5.6 +RHS,RHS180x100,RH,180,100,6.3 +RHS,RHS180x100,RH,180,100,7.1 +RHS,RHS180x100,RH,180,100,8.0 +RHS,RHS180x100,RH,180,100,8.8 +RHS,RHS180x100,RH,180,100,10.0 +RHS,RHS180x100,RH,180,100,11.0 +RHS,RHS180x100,RH,180,100,12.5 +RHS,RHS180x100,RH,180,100,14.2 +RHS,RHS200x100,RH,200,100,4.0 +RHS,RHS200x100,RH,200,100,5.0 +RHS,RHS200x100,RH,200,100,5.6 +RHS,RHS200x100,RH,200,100,6.3 +RHS,RHS200x100,RH,200,100,7.1 +RHS,RHS200x100,RH,200,100,8.0 +RHS,RHS200x100,RH,200,100,8.8 +RHS,RHS200x100,RH,200,100,10.0 +RHS,RHS200x100,RH,200,100,11.0 +RHS,RHS200x100,RH,200,100,12.5 +RHS,RHS200x100,RH,200,100,14.2 +RHS,RHS200x100,RH,200,100,16.0 +RHS,RHS200x120,RH,200,120,5.0 +RHS,RHS200x120,RH,200,120,5.6 +RHS,RHS200x120,RH,200,120,6.3 +RHS,RHS200x120,RH,200,120,7.1 +RHS,RHS200x120,RH,200,120,8.0 +RHS,RHS200x120,RH,200,120,8.8 +RHS,RHS200x120,RH,200,120,10.0 +RHS,RHS200x120,RH,200,120,11.0 +RHS,RHS200x120,RH,200,120,12.5 +RHS,RHS200x120,RH,200,120,14.2 +RHS,RHS200x120,RH,200,120,16.0 +RHS,RHS200x150,RH,200,150,5.0 +RHS,RHS200x150,RH,200,150,5.6 +RHS,RHS200x150,RH,200,150,6.3 +RHS,RHS200x150,RH,200,150,7.1 +RHS,RHS200x150,RH,200,150,8.0 +RHS,RHS200x150,RH,200,150,8.8 +RHS,RHS200x150,RH,200,150,10.0 +RHS,RHS200x150,RH,200,150,11.0 +RHS,RHS200x150,RH,200,150,12.5 +RHS,RHS200x150,RH,200,150,14.2 +RHS,RHS200x150,RH,200,150,16.0 +RHS,RHS220x120,RH,220,120,7.1 +RHS,RHS220x120,RH,220,120,8.0 +RHS,RHS220x120,RH,220,120,8.8 +RHS,RHS220x120,RH,220,120,10.0 +RHS,RHS220x120,RH,220,120,11.0 +RHS,RHS220x120,RH,220,120,12.5 +RHS,RHS220x120,RH,220,120,14.2 +RHS,RHS220x120,RH,220,120,16.0 +RHS,RHS250x100,RH,250,100,5.0 +RHS,RHS250x100,RH,250,100,5.6 +RHS,RHS250x100,RH,250,100,6.3 +RHS,RHS250x100,RH,250,100,7.1 +RHS,RHS250x100,RH,250,100,8.0 +RHS,RHS250x100,RH,250,100,8.8 +RHS,RHS250x100,RH,250,100,10.0 +RHS,RHS250x100,RH,250,100,11.0 +RHS,RHS250x100,RH,250,100,12.5 +RHS,RHS250x100,RH,250,100,14.2 +RHS,RHS250x100,RH,250,100,16.0 +RHS,RHS250x150,RH,250,150,5.0 +RHS,RHS250x150,RH,250,150,5.6 +RHS,RHS250x150,RH,250,150,6.3 +RHS,RHS250x150,RH,250,150,7.1 +RHS,RHS250x150,RH,250,150,8.0 +RHS,RHS250x150,RH,250,150,8.8 +RHS,RHS250x150,RH,250,150,10.0 +RHS,RHS250x150,RH,250,150,11.0 +RHS,RHS250x150,RH,250,150,12.5 +RHS,RHS250x150,RH,250,150,14.2 +RHS,RHS250x150,RH,250,150,16.0 +RHS,RHS260x140,RH,260,140,5.0 +RHS,RHS260x140,RH,260,140,5.6 +RHS,RHS260x140,RH,260,140,6.3 +RHS,RHS260x140,RH,260,140,7.1 +RHS,RHS260x140,RH,260,140,8.0 +RHS,RHS260x140,RH,260,140,8.8 +RHS,RHS260x140,RH,260,140,10.0 +RHS,RHS260x140,RH,260,140,11.0 +RHS,RHS260x140,RH,260,140,12.5 +RHS,RHS260x140,RH,260,140,14.2 +RHS,RHS260x140,RH,260,140,16.0 +RHS,RHS260x180,RH,260,180,8.0 +RHS,RHS260x180,RH,260,180,8.8 +RHS,RHS260x180,RH,260,180,10.0 +RHS,RHS260x180,RH,260,180,11.0 +RHS,RHS260x180,RH,260,180,12.5 +RHS,RHS260x180,RH,260,180,14.2 +RHS,RHS260x180,RH,260,180,16.0 +RHS,RHS300x100,RH,300,100,5.0 +RHS,RHS300x100,RH,300,100,5.6 +RHS,RHS300x100,RH,300,100,6.3 +RHS,RHS300x100,RH,300,100,7.1 +RHS,RHS300x100,RH,300,100,8.0 +RHS,RHS300x100,RH,300,100,8.8 +RHS,RHS300x100,RH,300,100,10.0 +RHS,RHS300x100,RH,300,100,11.0 +RHS,RHS300x100,RH,300,100,12.5 +RHS,RHS300x100,RH,300,100,14.2 +RHS,RHS300x100,RH,300,100,16.0 +RHS,RHS300x200,RH,300,200,5.0 +RHS,RHS300x200,RH,300,200,5.6 +RHS,RHS300x200,RH,300,200,6.3 +RHS,RHS300x200,RH,300,200,7.1 +RHS,RHS300x200,RH,300,200,8.0 +RHS,RHS300x200,RH,300,200,8.8 +RHS,RHS300x200,RH,300,200,10.0 +RHS,RHS300x200,RH,300,200,11.0 +RHS,RHS300x200,RH,300,200,12.5 +RHS,RHS300x200,RH,300,200,14.2 +RHS,RHS300x200,RH,300,200,16.0 +RHS,RHS300x250,RH,300,250,6.3 +RHS,RHS300x250,RH,300,250,7.1 +RHS,RHS300x250,RH,300,250,8.0 +RHS,RHS300x250,RH,300,250,8.8 +RHS,RHS300x250,RH,300,250,10.0 +RHS,RHS300x250,RH,300,250,11.0 +RHS,RHS300x250,RH,300,250,12.5 +RHS,RHS300x250,RH,300,250,14.2 +RHS,RHS300x250,RH,300,250,16.0 +RHS,RHS350x150,RH,350,150,5.0 +RHS,RHS350x150,RH,350,150,5.6 +RHS,RHS350x150,RH,350,150,6.3 +RHS,RHS350x150,RH,350,150,7.1 +RHS,RHS350x150,RH,350,150,8.0 +RHS,RHS350x150,RH,350,150,8.8 +RHS,RHS350x150,RH,350,150,10.0 +RHS,RHS350x150,RH,350,150,11.0 +RHS,RHS350x150,RH,350,150,12.5 +RHS,RHS350x150,RH,350,150,14.2 +RHS,RHS350x150,RH,350,150,16.0 +RHS,RHS350x200,RH,350,200,6.3 +RHS,RHS350x200,RH,350,200,7.1 +RHS,RHS350x200,RH,350,200,8.0 +RHS,RHS350x200,RH,350,200,8.8 +RHS,RHS350x200,RH,350,200,10.0 +RHS,RHS350x200,RH,350,200,11.0 +RHS,RHS350x200,RH,350,200,12.5 +RHS,RHS350x200,RH,350,200,14.2 +RHS,RHS350x200,RH,350,200,16.0 +RHS,RHS350x250,RH,350,250,6.3 +RHS,RHS350x250,RH,350,250,7.1 +RHS,RHS350x250,RH,350,250,8.0 +RHS,RHS350x250,RH,350,250,8.8 +RHS,RHS350x250,RH,350,250,10.0 +RHS,RHS350x250,RH,350,250,11.0 +RHS,RHS350x250,RH,350,250,12.5 +RHS,RHS350x250,RH,350,250,14.2 +RHS,RHS350x250,RH,350,250,16.0 +RHS,RHS400x150,RH,400,150,6.3 +RHS,RHS400x150,RH,400,150,7.1 +RHS,RHS400x150,RH,400,150,8.0 +RHS,RHS400x150,RH,400,150,8.8 +RHS,RHS400x150,RH,400,150,10.0 +RHS,RHS400x150,RH,400,150,11.0 +RHS,RHS400x150,RH,400,150,12.5 +RHS,RHS400x150,RH,400,150,14.2 +RHS,RHS400x150,RH,400,150,16.0 +RHS,RHS400x200,RH,400,200,6.3 +RHS,RHS400x200,RH,400,200,7.1 +RHS,RHS400x200,RH,400,200,8.0 +RHS,RHS400x200,RH,400,200,8.8 +RHS,RHS400x200,RH,400,200,10.0 +RHS,RHS400x200,RH,400,200,11.0 +RHS,RHS400x200,RH,400,200,12.5 +RHS,RHS400x200,RH,400,200,14.2 +RHS,RHS400x200,RH,400,200,16.0 +RHS,RHS400x300,RH,400,300,8.0 +RHS,RHS400x300,RH,400,300,8.8 +RHS,RHS400x300,RH,400,300,10.0 +RHS,RHS400x300,RH,400,300,11.0 +RHS,RHS400x300,RH,400,300,12.5 +RHS,RHS400x300,RH,400,300,14.2 +RHS,RHS400x300,RH,400,300,16.0 +RHS,RHS450x150,RH,450,150,8.0 +RHS,RHS450x150,RH,450,150,8.8 +RHS,RHS450x150,RH,450,150,10.0 +RHS,RHS450x150,RH,450,150,11.0 +RHS,RHS450x150,RH,450,150,12.5 +RHS,RHS450x150,RH,450,150,14.2 +RHS,RHS450x150,RH,450,150,16.0 +RHS,RHS450x250,RH,450,250,8.0 +RHS,RHS450x250,RH,450,250,8.8 +RHS,RHS450x250,RH,450,250,10.0 +RHS,RHS450x250,RH,450,250,11.0 +RHS,RHS450x250,RH,450,250,12.5 +RHS,RHS450x250,RH,450,250,14.2 +RHS,RHS450x250,RH,450,250,16.0 +RHS,RHS500x200,RH,500,200,8.0 +RHS,RHS500x200,RH,500,200,8.8 +RHS,RHS500x200,RH,500,200,10.0 +RHS,RHS500x200,RH,500,200,11.0 +RHS,RHS500x200,RH,500,200,12.5 +RHS,RHS500x200,RH,500,200,14.2 +RHS,RHS500x200,RH,500,200,16.0 +RHS,RHS500x300,RH,500,300,8.0 +RHS,RHS500x300,RH,500,300,8.8 +RHS,RHS500x300,RH,500,300,10.0 +RHS,RHS500x300,RH,500,300,11.0 +RHS,RHS500x300,RH,500,300,12.5 +RHS,RHS500x300,RH,500,300,14.2 +RHS,RHS500x300,RH,500,300,16.0 + + +# U-profile + +# Category,Name,U,width,height,web thickness,flange thickness + +UPE,UPE80,U,80,50,4,7 +UPE,UPE100,U,100,55,4.5,7.5 +UPE,UPE120,U,120,60,5,8 +UPE,UPE140,U,140,65,5,9 +UPE,UPE160,U,160,70,5.5,9.5 +UPE,UPE180,U,180,75,5.5,10.5 +UPE,UPE200,U,200,80,6,11 +UPE,UPE220,U,220,85,6.5,12 +UPE,UPE240,U,240,90,7,12.5 +UPE,UPE270,U,270,95,7.5,13.5 +UPE,UPE300,U,300,100,9.5,15 +UPE,UPE330,U,330,105,11,16 +UPE,UPE360,U,360,110,12,17 +UPE,UPE400,U,400,115,13.5,18 diff --git a/src/Mod/Arch/Presets/pset_definitions.csv b/src/Mod/Arch/Presets/pset_definitions.csv index 86362c34fe..a96d59f81d 100644 --- a/src/Mod/Arch/Presets/pset_definitions.csv +++ b/src/Mod/Arch/Presets/pset_definitions.csv @@ -1,351 +1,351 @@ -Pset_ActionRequest;RequestSourceLabel;IfcLabel;RequestComments;IfcText -Pset_ActorCommon;NumberOfActors;IfcCountMeasure;Category;IfcLabel;SkillLevel;IfcLabel -Pset_ActuatorTypeCommon;Reference;IfcIdentifier;ManualOverride;IfcBoolean -Pset_ActuatorTypeElectricActuator;ActuatorInputPower;IfcPowerMeasure -Pset_ActuatorTypeHydraulicActuator;InputPressure;IfcPressureMeasure;InputFlowrate;IfcVolumetricFlowRateMeasure -Pset_ActuatorTypeLinearActuation;Force;IfcForceMeasure;Stroke;IfcLengthMeasure -Pset_ActuatorTypePneumaticActuator;InputPressure;IfcPressureMeasure;InputFlowrate;IfcVolumetricFlowRateMeasure -Pset_ActuatorTypeRotationalActuation;Torque;IfcTorqueMeasure;RangeAngle;IfcPlaneAngleMeasure -Pset_AirSideSystemInformation;Name;IfcLabel;Description;IfcLabel;TotalAirflow;IfcVolumetricFlowRateMeasure;EnergyGainTotal;IfcPowerMeasure;AirflowSensible;IfcVolumetricFlowRateMeasure;EnergyGainSensible;IfcPowerMeasure;EnergyLoss;IfcPowerMeasure;LightingDiversity;IfcPositiveRatioMeasure;InfiltrationDiversitySummer;IfcPositiveRatioMeasure;InfiltrationDiversityWinter;IfcPositiveRatioMeasure;ApplianceDiversity;IfcPositiveRatioMeasure;LoadSafetyFactor;IfcPositiveRatioMeasure;HeatingTemperatureDelta;IfcThermodynamicTemperatureMeasure;CoolingTemperatureDelta;IfcThermodynamicTemperatureMeasure;Ventilation;IfcVolumetricFlowRateMeasure;FanPower;IfcPowerMeasure -Pset_AirTerminalBoxTypeCommon;Reference;IfcIdentifier;AirflowRateRange;IfcVolumetricFlowRateMeasure;AirPressureRange;IfcPressureMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;HasSoundAttenuator;IfcBoolean;HasReturnAir;IfcBoolean;HasFan;IfcBoolean;NominalInletAirPressure;IfcPressureMeasure;NominalDamperDiameter;IfcPositiveLengthMeasure;HousingThickness;IfcLengthMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;ReturnAirFractionRange;IfcPositiveRatioMeasure -Pset_AirTerminalOccurrence;AirFlowRate;IfcVolumetricFlowRateMeasure -Pset_AirTerminalPHistory;InductionRatio;IfcLengthMeasure;CenterlineAirVelocity;IfcLengthMeasure -Pset_AirTerminalTypeCommon;Reference;IfcIdentifier;SlotWidth;IfcPositiveLengthMeasure;SlotLength;IfcPositiveLengthMeasure;NumberOfSlots;IfcInteger;AirFlowrateRange;IfcVolumetricFlowRateMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;ThrowLength;IfcLengthMeasure;AirDiffusionPerformanceIndex;IfcReal;FinishColor;IfcLabel;CoreSetHorizontal;IfcPlaneAngleMeasure;CoreSetVertical;IfcPlaneAngleMeasure;HasIntegralControl;IfcBoolean;HasSoundAttenuator;IfcBoolean;HasThermalInsulation;IfcBoolean;NeckArea;IfcAreaMeasure;EffectiveArea;IfcAreaMeasure;AirFlowrateVersusFlowControlElement;IfcPositiveRatioMeasure -Pset_AirToAirHeatRecoveryTypeCommon;Reference;IfcIdentifier;HasDefrost;IfcBoolean;OperationalTemperatureRange;IfcThermodynamicTemperatureMeasure;PrimaryAirflowRateRange;IfcVolumetricFlowRateMeasure;SecondaryAirflowRateRange;IfcPressureMeasure -Pset_AlarmTypeCommon;Reference;IfcIdentifier;Condition;IfcLabel -Pset_AnnotationContourLine;ContourValue;IfcLengthMeasure -Pset_AnnotationLineOfSight;SetbackDistance;IfcPositiveLengthMeasure;VisibleAngleLeft;IfcPositivePlaneAngleMeasure;VisibleAngleRight;IfcPositivePlaneAngleMeasure;RoadVisibleDistanceLeft;IfcPositiveLengthMeasure;RoadVisibleDistanceRight;IfcPositiveLengthMeasure -Pset_AnnotationSurveyArea;AccuracyQualityObtained;IfcRatioMeasure;AccuracyQualityExpected;IfcRatioMeasure -Pset_AudioVisualApplianceTypeAmplifier;AudioAmplification;IfcSoundPowerMeasure;AudioMode;IfcLabel -Pset_AudioVisualApplianceTypeCamera;IsOutdoors;IfcBoolean;VideoResolutionWidth;IfcInteger;VideoResolutionHeight;IfcInteger;VideoResolutionMode;IfcLabel;VideoCaptureInterval;IfcTimeMeasure;PanTiltZoomPreset;IfcLabel;PanHorizontal;IfcLengthMeasure;PanVertical;IfcLengthMeasure;TiltHorizontal;IfcPlaneAngleMeasure;TiltVertical;IfcPlaneAngleMeasure;Zoom;IfcPositiveLengthMeasure -Pset_AudioVisualApplianceTypeCommon;Reference;IfcIdentifier;MediaSource;IfcLabel;AudioVolume;IfcSoundPowerMeasure -Pset_AudioVisualApplianceTypeDisplay;NominalSize;IfcPositiveLengthMeasure;DisplayWidth;IfcPositiveLengthMeasure;DisplayHeight;IfcPositiveLengthMeasure;Brightness;IfcIlluminanceMeasure;ContrastRatio;IfcPositiveRatioMeasure;RefreshRate;IfcFrequencyMeasure;VideoResolutionWidth;IfcInteger;VideoResolutionHeight;IfcInteger;VideoResolutionMode;IfcLabel;VideoScaleMode;IfcLabel;VideoCaptionMode;IfcLabel;AudioMode;IfcLabel -Pset_AudioVisualApplianceTypePlayer;PlayerMediaEject;IfcBoolean;PlayerMediaFormat;IfcLabel -Pset_AudioVisualApplianceTypeProjector;VideoResolutionWidth;IfcInteger;VideoResolutionHeight;IfcInteger;VideoResolutionMode;IfcLabel;VideoScaleMode;IfcLabel;VideoCaptionMode;IfcLabel -Pset_AudioVisualApplianceTypeReceiver;AudioAmplification;IfcRatioMeasure;AudioMode;IfcLabel -Pset_AudioVisualApplianceTypeSpeaker;SpeakerDriverSize;IfcPositiveLengthMeasure;FrequencyResponse;IfcSoundPowerMeasure;Impedence;IfcFrequencyMeasure -Pset_AudioVisualApplianceTypeTuner;TunerMode;IfcLabel;TunerChannel;IfcLabel;TunerFrequency;IfcFrequencyMeasure -Pset_BeamCommon;Reference;IfcIdentifier;Span;IfcPositiveLengthMeasure;Slope;IfcPlaneAngleMeasure;Roll;IfcPlaneAngleMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_BoilerTypeCommon;Reference;IfcIdentifier;PressureRating;IfcPressureMeasure;HeatTransferSurfaceArea;IfcAreaMeasure;NominalPartLoadRatio;IfcReal;WaterInletTemperatureRange;IfcThermodynamicTemperatureMeasure;WaterStorageCapacity;IfcVolumeMeasure;IsWaterStorageHeater;IfcBoolean;PartialLoadEfficiencyCurves;IfcNormalisedRatioMeasure;OutletTemperatureRange;IfcThermodynamicTemperatureMeasure;NominalEnergyConsumption;IfcPowerMeasure -Pset_BoilerTypeSteam;MaximumOutletPressure;IfcLabel;NominalEfficiency;IfcNormalisedRatioMeasure;HeatOutput;IfcEnergyMeasure -Pset_BoilerTypeWater;NominalEfficiency;IfcNormalisedRatioMeasure;HeatOutput;IfcEnergyMeasure -Pset_BuildingCommon;Reference;IfcIdentifier;BuildingID;IfcIdentifier;IsPermanentID;IfcBoolean;ConstructionMethod;IfcLabel;FireProtectionClass;IfcLabel;SprinklerProtection;IfcBoolean;SprinklerProtectionAutomatic;IfcBoolean;OccupancyType;IfcLabel;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure;NumberOfStoreys;IfcInteger;YearOfConstruction;IfcLabel;YearOfLastRefurbishment;IfcLabel;IsLandmarked;IfcLogical -Pset_BuildingElementProxyCommon;Reference;IfcIdentifier;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_BuildingElementProxyProvisionForVoid;Shape;IfcLabel;Width;IfcPositiveLengthMeasure;Height;IfcPositiveLengthMeasure;Diameter;IfcPositiveLengthMeasure;Depth;IfcPositiveLengthMeasure;System;IfcLabel -Pset_BuildingStoreyCommon;Reference;IfcIdentifier;EntranceLevel;IfcBoolean;AboveGround;IfcLogical;SprinklerProtection;IfcBoolean;SprinklerProtectionAutomatic;IfcBoolean;LoadBearingCapacity;IfcPlanarForceMeasure;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure -Pset_BuildingSystemCommon;Reference;IfcIdentifier -Pset_BuildingUse;MarketCategory;IfcLabel;MarketSubCategory;IfcLabel;PlanningControlStatus;IfcLabel;NarrativeText;IfcText;VacancyRateInCategoryNow;IfcPositiveRatioMeasure;TenureModesAvailableNow;IfcLabel;MarketSubCategoriesAvailableNow;IfcLabel;RentalRatesInCategoryNow;IfcMonetaryMeasure;VacancyRateInCategoryFuture;IfcPositiveRatioMeasure;TenureModesAvailableFuture;IfcLabel;MarketSubCategoriesAvailableFuture;IfcLabel;RentalRatesInCategoryFuture;IfcMonetaryMeasure -Pset_BuildingUseAdjacent;MarketCategory;IfcLabel;MarketSubCategory;IfcLabel;PlanningControlStatus;IfcLabel;NarrativeText;IfcText -Pset_BurnerTypeCommon;Reference;IfcIdentifier -Pset_CableCarrierFittingTypeCommon;Reference;IfcIdentifier -Pset_CableCarrierSegmentTypeCableLadderSegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;LadderConfiguration;IfcText -Pset_CableCarrierSegmentTypeCableTraySegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;HasCover;IfcBoolean -Pset_CableCarrierSegmentTypeCableTrunkingSegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;NumberOfCompartments;IfcInteger -Pset_CableCarrierSegmentTypeCommon;Reference;IfcIdentifier -Pset_CableCarrierSegmentTypeConduitSegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;IsRigid;IfcBoolean -Pset_CableFittingTypeCommon;Reference;IfcIdentifier -Pset_CableSegmentOccurrence;DesignAmbientTemperature;IfcThermodynamicTemperatureMeasure;UserCorrectionFactor;IfcReal;NumberOfParallelCircuits;IfcInteger;InstallationMethod;IfcLabel;DistanceBetweenParallelCircuits;IfcLengthMeasure;SoilConductivity;IfcThermalConductivityMeasure;CarrierStackNumber;IfcInteger;IsHorizontalCable;IfcBoolean;IsMountedFlatCable;IfcBoolean;CurrentCarryingCapasity;IfcElectricCurrentMeasure;MaximumCableLength;IfcLengthMeasure;PowerLoss;IfcElectricCurrentMeasure -Pset_CableSegmentTypeBusBarSegment;IsHorizontalBusbar;IfcBoolean -Pset_CableSegmentTypeCableSegment;Standard;IfcLabel;NumberOfCores;IfcInteger;OverallDiameter;IfcPositiveLengthMeasure;RatedVoltage;IfcElectricVoltageMeasure;RatedTemperature;IfcThermodynamicTemperatureMeasure;ScreenDiameter;IfcPositiveLengthMeasure;HasProtectiveEarth;IfcBoolean;MaximumOperatingTemperature;IfcThermodynamicTemperatureMeasure;MaximumShortCircuitTemperature;IfcThermodynamicTemperatureMeasure;SpecialConstruction;IfcLabel;Weight;IfcMassMeasure;SelfExtinguishing60332_1;IfcBoolean;SelfExtinguishing60332_3;IfcBoolean;HalogenProof;IfcBoolean;FunctionReliable;IfcBoolean -Pset_CableSegmentTypeCommon;Reference;IfcIdentifier -Pset_CableSegmentTypeConductorSegment;CrossSectionalArea;IfcAreaMeasure -Pset_CableSegmentTypeCoreSegment;OverallDiameter;IfcPositiveLengthMeasure;RatedVoltage;IfcElectricVoltageMeasure;RatedTemperature;IfcThermodynamicTemperatureMeasure;ScreenDiameter;IfcPositiveLengthMeasure;CoreIdentifier;IfcIdentifier;Weight;IfcMassMeasure;SelfExtinguishing60332_1;IfcBoolean;SelfExtinguishing60332_3;IfcBoolean;HalogenProof;IfcBoolean;FunctionReliable;IfcBoolean;Standard;IfcLabel -Pset_ChillerTypeCommon;Reference;IfcIdentifier;NominalCapacity;IfcPowerMeasure;NominalEfficiency;IfcPositiveRatioMeasure;NominalCondensingTemperature;IfcThermodynamicTemperatureMeasure;NominalEvaporatingTemperature;IfcThermodynamicTemperatureMeasure;NominalHeatRejectionRate;IfcPowerMeasure;NominalPowerConsumption;IfcPowerMeasure;CapacityCurve;IfcPowerMeasure;CoefficientOfPerformanceCurve;IfcReal;FullLoadRatioCurve;IfcNormalisedRatioMeasure -Pset_ChimneyCommon;Reference;IfcIdentifier;NumberOfDrafts;IfcCountMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_CivilElementCommon;Reference;IfcIdentifier -Pset_CoilOccurrence;HasSoundAttenuation;IfcBoolean -Pset_CoilTypeCommon;Reference;IfcIdentifier;OperationalTemperatureRange;IfcThermodynamicTemperatureMeasure;AirflowRateRange;IfcVolumetricFlowRateMeasure;NominalSensibleCapacity;IfcPowerMeasure;NominalLatentCapacity;IfcPowerMeasure;NominalUA;IfcReal -Pset_CoilTypeHydronic;FluidPressureRange;IfcPressureMeasure;CoilFaceArea;IfcAreaMeasure;HeatExchangeSurfaceArea;IfcAreaMeasure;PrimarySurfaceArea;IfcAreaMeasure;SecondarySurfaceArea;IfcAreaMeasure;TotalUACurves;IfcVolumetricFlowRateMeasure;WaterPressureDropCurve;IfcPressureMeasure;BypassFactor;IfcNormalisedRatioMeasure;SensibleHeatRatio;IfcNormalisedRatioMeasure;WetCoilFraction;IfcNormalisedRatioMeasure -Pset_ColumnCommon;Reference;IfcIdentifier;Slope;IfcPlaneAngleMeasure;Roll;IfcPlaneAngleMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_CommunicationsApplianceTypeCommon;Reference;IfcIdentifier -Pset_CompressorTypeCommon;Reference;IfcIdentifier;MinimumPartLoadRatio;IfcPositiveRatioMeasure;MaximumPartLoadRatio;IfcPositiveRatioMeasure;CompressorSpeed;IfcRotationalFrequencyMeasure;NominalCapacity;IfcPowerMeasure;IdealCapacity;IfcPowerMeasure;IdealShaftPower;IfcPowerMeasure;HasHotGasBypass;IfcBoolean;ImpellerDiameter;IfcPositiveLengthMeasure -Pset_ConcreteElementGeneral;ConstructionMethod;IfcLabel;StructuralClass;IfcLabel;StrengthClass;IfcLabel;ExposureClass;IfcLabel;ReinforcementVolumeRatio;IfcMassDensityMeasure;ReinforcementAreaRatio;IfcAreaDensityMeasure;DimensionalAccuracyClass;IfcLabel;ConstructionToleranceClass;IfcLabel;ConcreteCover;IfcPositiveLengthMeasure;ConcreteCoverAtMainBars;IfcPositiveLengthMeasure;ConcreteCoverAtLinks;IfcPositiveLengthMeasure;ReinforcementStrengthClass;IfcLabel -Pset_CondenserTypeCommon;Reference;IfcIdentifier;ExternalSurfaceArea;IfcAreaMeasure;InternalSurfaceArea;IfcAreaMeasure;InternalRefrigerantVolume;IfcVolumeMeasure;InternalWaterVolume;IfcVolumeMeasure;NominalHeatTransferArea;IfcAreaMeasure;NominalHeatTransferCoefficient;IfcThermalTransmittanceMeasure -Pset_Condition;AssessmentDate;IfcDate;AssessmentCondition;IfcLabel;AssessmentDescription;IfcText -Pset_ControllerTypeCommon;Reference;IfcIdentifier -Pset_ControllerTypeFloating;Labels;IfcLabel;Range;IfcReal;Value;IfcReal;SignalOffset;IfcReal;SignalFactor;IfcReal;SignalTime;IfcTimeMeasure -Pset_ControllerTypeMultiPosition;Labels;IfcLabel;Range;IfcInteger;Value;IfcInteger -Pset_ControllerTypeProgrammable;FirmwareVersion;IfcLabel;SoftwareVersion;IfcLabel -Pset_ControllerTypeProportional;Labels;IfcLabel;Range;IfcReal;Value;IfcReal;ProportionalConstant;IfcReal;IntegralConstant;IfcReal;DerivativeConstant;IfcReal;SignalTimeIncrease;IfcTimeMeasure;SignalTimeDecrease;IfcTimeMeasure -Pset_ControllerTypeTwoPosition;Labels;IfcLabel;Polarity;IfcBoolean;Value;IfcBoolean -Pset_CooledBeamTypeActive;AirflowRateRange;IfcVolumetricFlowRateMeasure;ConnectionSize;IfcLengthMeasure -Pset_CooledBeamTypeCommon;Reference;IfcIdentifier;IsFreeHanging;IfcBoolean;WaterPressureRange;IfcPressureMeasure;NominalCoolingCapacity;IfcPowerMeasure;NominalSurroundingTemperatureCooling;IfcThermodynamicTemperatureMeasure;NominalSurroundingHumidityCooling;IfcNormalisedRatioMeasure;NominalSupplyWaterTemperatureCooling;IfcThermodynamicTemperatureMeasure;NominalReturnWaterTemperatureCooling;IfcThermodynamicTemperatureMeasure;NominalWaterFlowCooling;IfcVolumetricFlowRateMeasure;NominalHeatingCapacity;IfcPowerMeasure;NominalSurroundingTemperatureHeating;IfcThermodynamicTemperatureMeasure;NominalSupplyWaterTemperatureHeating;IfcThermodynamicTemperatureMeasure;NominalReturnWaterTemperatureHeating;IfcThermodynamicTemperatureMeasure;NominalWaterFlowHeating;IfcVolumetricFlowRateMeasure;FinishColor;IfcLabel;CoilLength;IfcPositiveLengthMeasure;CoilWidth;IfcPositiveLengthMeasure -Pset_CoolingTowerTypeCommon;Reference;IfcIdentifier;NominalCapacity;IfcPowerMeasure;NumberOfCells;IfcInteger;BasinReserveVolume;IfcVolumeMeasure;LiftElevationDifference;IfcPositiveLengthMeasure;WaterRequirement;IfcVolumetricFlowRateMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;AmbientDesignDryBulbTemperature;IfcThermodynamicTemperatureMeasure;AmbientDesignWetBulbTemperature;IfcThermodynamicTemperatureMeasure -Pset_CoveringCeiling;Permeability;IfcNormalisedRatioMeasure;TileLength;IfcPositiveLengthMeasure;TileWidth;IfcPositiveLengthMeasure -Pset_CoveringCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FlammabilityRating;IfcLabel;FragilityRating;IfcLabel;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;Finish;IfcText;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;FireRating;IfcLabel -Pset_CoveringFlooring;HasNonSkidSurface;IfcBoolean;HasAntiStaticSurface;IfcBoolean -Pset_CurtainWallCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;ThermalTransmittance;IfcThermalTransmittanceMeasure;IsExternal;IfcBoolean -Pset_DamperTypeCommon;Reference;IfcIdentifier;BladeThickness;IfcPositiveLengthMeasure;NumberofBlades;IfcInteger;FaceArea;IfcAreaMeasure;MaximumAirFlowRate;IfcVolumetricFlowRateMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;MaximumWorkingPressure;IfcPressureMeasure;TemperatureRating;IfcThermodynamicTemperatureMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;OpenPressureDrop;IfcPressureMeasure;LeakageFullyClosed;IfcVolumetricFlowRateMeasure;LossCoefficentCurve;IfcReal;LeakageCurve;IfcPressureMeasure;RegeneratedSoundCurve;IfcSoundPressureMeasure;FrameType;IfcLabel;FrameDepth;IfcPositiveLengthMeasure;FrameThickness;IfcPositiveLengthMeasure;CloseOffRating;IfcPressureMeasure -Pset_DamperTypeControlDamper;TorqueRange;IfcTorqueMeasure -Pset_DamperTypeFireDamper;FireResistanceRating;IfcLabel;FusibleLinkTemperature;IfcThermodynamicTemperatureMeasure -Pset_DamperTypeFireSmokeDamper;ControlType;IfcLabel;FireResistanceRating;IfcLabel;FusibleLinkTemperature;IfcThermodynamicTemperatureMeasure -Pset_DamperTypeSmokeDamper;ControlType;IfcLabel -Pset_DiscreteAccessoryColumnShoe;ColumnShoeBasePlateThickness;IfcPositiveLengthMeasure;ColumnShoeBasePlateWidth;IfcPositiveLengthMeasure;ColumnShoeBasePlateDepth;IfcPositiveLengthMeasure;ColumnShoeCasingHeight;IfcPositiveLengthMeasure;ColumnShoeCasingWidth;IfcPositiveLengthMeasure;ColumnShoeCasingDepth;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryCornerFixingPlate;CornerFixingPlateLength;IfcPositiveLengthMeasure;CornerFixingPlateThickness;IfcPositiveLengthMeasure;CornerFixingPlateFlangeWidthInPlaneZ;IfcPositiveLengthMeasure;CornerFixingPlateFlangeWidthInPlaneX;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryDiagonalTrussConnector;DiagonalTrussHeight;IfcPositiveLengthMeasure;DiagonalTrussLength;IfcPositiveLengthMeasure;DiagonalTrussCrossBarSpacing;IfcPositiveLengthMeasure;DiagonalTrussBaseBarDiameter;IfcPositiveLengthMeasure;DiagonalTrussSecondaryBarDiameter;IfcPositiveLengthMeasure;DiagonalTrussCrossBarDiameter;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryEdgeFixingPlate;EdgeFixingPlateLength;IfcPositiveLengthMeasure;EdgeFixingPlateThickness;IfcPositiveLengthMeasure;EdgeFixingPlateFlangeWidthInPlaneZ;IfcPositiveLengthMeasure;EdgeFixingPlateFlangeWidthInPlaneX;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryFixingSocket;FixingSocketHeight;IfcPositiveLengthMeasure;FixingSocketThreadDiameter;IfcPositiveLengthMeasure;FixingSocketThreadLength;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryLadderTrussConnector;LadderTrussHeight;IfcPositiveLengthMeasure;LadderTrussLength;IfcPositiveLengthMeasure;LadderTrussCrossBarSpacing;IfcPositiveLengthMeasure;LadderTrussBaseBarDiameter;IfcPositiveLengthMeasure;LadderTrussSecondaryBarDiameter;IfcPositiveLengthMeasure;LadderTrussCrossBarDiameter;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryStandardFixingPlate;StandardFixingPlateWidth;IfcPositiveLengthMeasure;StandardFixingPlateDepth;IfcPositiveLengthMeasure;StandardFixingPlateThickness;IfcPositiveLengthMeasure -Pset_DiscreteAccessoryWireLoop;WireLoopBasePlateThickness;IfcPositiveLengthMeasure;WireLoopBasePlateWidth;IfcPositiveLengthMeasure;WireLoopBasePlateLength;IfcPositiveLengthMeasure;WireDiameter;IfcPositiveLengthMeasure;WireEmbeddingLength;IfcPositiveLengthMeasure;WireLoopLength;IfcPositiveLengthMeasure -Pset_DistributionChamberElementCommon;Reference;IfcIdentifier -Pset_DistributionChamberElementTypeFormedDuct;ClearWidth;IfcPositiveLengthMeasure;ClearDepth;IfcPositiveLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure;AccessCoverLoadRating;IfcText -Pset_DistributionChamberElementTypeInspectionChamber;ChamberLengthOrRadius;IfcPositiveLengthMeasure;ChamberWidth;IfcPositiveLengthMeasure;InvertLevel;IfcLengthMeasure;SoffitLevel;IfcLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure;WithBackdrop;IfcBoolean;AccessLengthOrRadius;IfcPositiveLengthMeasure;AccessWidth;IfcPositiveLengthMeasure;AccessCoverLoadRating;IfcText -Pset_DistributionChamberElementTypeInspectionPit;Length;IfcPositiveLengthMeasure;Width;IfcPositiveLengthMeasure;Depth;IfcPositiveLengthMeasure -Pset_DistributionChamberElementTypeManhole;InvertLevel;IfcLengthMeasure;SoffitLevel;IfcLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure;IsShallow;IfcBoolean;HasSteps;IfcBoolean;WithBackdrop;IfcBoolean;AccessLengthOrRadius;IfcPositiveLengthMeasure;AccessWidth;IfcPositiveLengthMeasure;AccessCoverLoadRating;IfcText -Pset_DistributionChamberElementTypeMeterChamber;ChamberLengthOrRadius;IfcPositiveLengthMeasure;ChamberWidth;IfcPositiveLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure -Pset_DistributionChamberElementTypeSump;Length;IfcPositiveLengthMeasure;Width;IfcPositiveLengthMeasure;InvertLevel;IfcPositiveLengthMeasure -Pset_DistributionChamberElementTypeTrench;Width;IfcPositiveLengthMeasure;Depth;IfcPositiveLengthMeasure;InvertLevel;IfcLengthMeasure -Pset_DistributionChamberElementTypeValveChamber;ChamberLengthOrRadius;IfcPositiveLengthMeasure;ChamberWidth;IfcPositiveLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure -Pset_DistributionPortCommon;PortNumber;IfcInteger;ColorCode;IfcLabel -Pset_DistributionPortTypeCable;ConnectionSubtype;IfcLabel;CurrentContent3rdHarmonic;IfcPositiveRatioMeasure;Current;IfcElectricCurrentMeasure;Voltage;IfcElectricVoltageMeasure;Power;IfcPowerMeasure;Protocols;IfcIdentifier -Pset_DistributionPortTypeDuct;ConnectionSubType;IfcLabel;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;NominalThickness;IfcPositiveLengthMeasure;DryBulbTemperature;IfcThermodynamicTemperatureMeasure;WetBulbTemperature;IfcThermodynamicTemperatureMeasure;VolumetricFlowRate;IfcVolumetricFlowRateMeasure;Velocity;IfcLinearVelocityMeasure;Pressure;IfcPressureMeasure -Pset_DistributionPortTypePipe;ConnectionSubType;IfcLabel;NominalDiameter;IfcPositiveLengthMeasure;InnerDiameter;IfcPositiveLengthMeasure;OuterDiameter;IfcPositiveLengthMeasure;Temperature;IfcThermodynamicTemperatureMeasure;VolumetricFlowRate;IfcVolumetricFlowRateMeasure;MassFlowRate;IfcMassFlowRateMeasure;FlowCondition;IfcPositiveRatioMeasure;Velocity;IfcLinearVelocityMeasure;Pressure;IfcPressureMeasure -Pset_DistributionSystemCommon;Reference;IfcIdentifier -Pset_DistributionSystemTypeElectrical;Diversity;IfcPositiveRatioMeasure;NumberOfLiveConductors;IfcInteger;MaximumAllowedVoltageDrop;IfcElectricVoltageMeasure;NetImpedance;IfcElectricResistanceMeasure -Pset_DistributionSystemTypeVentilation;DesignName;IfcLabel;PressureClass;IfcPressureMeasure;LeakageClass;IfcPressureMeasure;FrictionLoss;IfcReal;ScrapFactor;IfcReal;MaximumVelocity;IfcLinearVelocityMeasure;AspectRatio;IfcReal;MinimumHeight;IfcPositiveLengthMeasure;MinimumWidth;IfcPositiveLengthMeasure -Pset_DoorCommon;Reference;IfcIdentifier;FireRating;IfcLabel;AcousticRating;IfcLabel;SecurityRating;IfcLabel;DurabilityRating;IfcLabel;HygrothermalRating;IfcLabel;WaterTightnessRating;IfcLabel;MechanicalLoadRating;IfcLabel;WindLoadRating;IfcLabel;Infiltration;IfcVolumetricFlowRateMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;GlazingAreaFraction;IfcPositiveRatioMeasure;HandicapAccessible;IfcBoolean;FireExit;IfcBoolean;HasDrive;IfcBoolean;SelfClosing;IfcBoolean;SmokeStop;IfcBoolean -Pset_DoorWindowGlazingType;GlassLayers;IfcCountMeasure;GlassThickness1;IfcPositiveLengthMeasure;GlassThickness2;IfcPositiveLengthMeasure;GlassThickness3;IfcPositiveLengthMeasure;FillGas;IfcLabel;GlassColor;IfcLabel;IsTempered;IfcBoolean;IsLaminated;IfcBoolean;IsCoated;IfcBoolean;IsWired;IfcBoolean;VisibleLightReflectance;IfcNormalisedRatioMeasure;VisibleLightTransmittance;IfcNormalisedRatioMeasure;SolarAbsorption;IfcNormalisedRatioMeasure;SolarReflectance;IfcNormalisedRatioMeasure;SolarTransmittance;IfcNormalisedRatioMeasure;SolarHeatGainTransmittance;IfcNormalisedRatioMeasure;ShadingCoefficient;IfcNormalisedRatioMeasure;ThermalTransmittanceSummer;IfcThermalTransmittanceMeasure;ThermalTransmittanceWinter;IfcThermalTransmittanceMeasure -Pset_DuctFittingOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;HasLiner;IfcBoolean;Color;IfcLabel -Pset_DuctFittingTypeCommon;Reference;IfcIdentifier;PressureClass;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure -Pset_DuctSegmentOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;HasLiner;IfcBoolean;Color;IfcLabel -Pset_DuctSegmentTypeCommon;Reference;IfcIdentifier;WorkingPressure;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;LongitudinalSeam;IfcText;NominalDiameterOrWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;Reinforcement;IfcLabel;ReinforcementSpacing;IfcPositiveLengthMeasure -Pset_DuctSilencerTypeCommon;Reference;IfcIdentifier;HydraulicDiameter;IfcLengthMeasure;Length;IfcLengthMeasure;Weight;IfcMassMeasure;AirFlowrateRange;IfcVolumetricFlowRateMeasure;WorkingPressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;HasExteriorInsulation;IfcBoolean -Pset_ElectricalDeviceCommon;RatedCurrent;IfcElectricCurrentMeasure;RatedVoltage;IfcElectricVoltageMeasure;NominalFrequencyRange;IfcFrequencyMeasure;PowerFactor;IfcNormalisedRatioMeasure;NumberOfPoles;IfcInteger;HasProtectiveEarth;IfcBoolean;IP_Code;IfcLabel;IK_Code;IfcLabel -Pset_ElectricApplianceTypeCommon;Reference;IfcIdentifier -Pset_ElectricDistributionBoardOccurrence;IsMain;IfcBoolean;IsSkilledOperator;IfcBoolean -Pset_ElectricDistributionBoardTypeCommon;Reference;IfcIdentifier -Pset_ElectricFlowStorageDeviceTypeCommon;Reference;IfcIdentifier;NominalSupplyVoltage;IfcElectricVoltageMeasure;NominalSupplyVoltageOffset;IfcElectricVoltageMeasure;NominalFrequency;IfcFrequencyMeasure;ShortCircuit3PoleMaximumState;IfcElectricCurrentMeasure;ShortCircuit3PolePowerFactorMaximumState;IfcReal;ShortCircuit2PoleMinimumState;IfcElectricCurrentMeasure;ShortCircuit2PolePowerFactorMinimumState;IfcReal;ShortCircuit1PoleMaximumState;IfcElectricCurrentMeasure;ShortCircuit1PolePowerFactorMaximumState;IfcReal;ShortCircuit1PoleMinimumState;IfcElectricCurrentMeasure;ShortCircuit1PolePowerFactorMinimumState;IfcReal;EarthFault1PoleMaximumState;IfcElectricCurrentMeasure;EarthFault1PolePowerFactorMaximumState;IfcReal;EarthFault1PoleMinimumState;IfcElectricCurrentMeasure;EarthFault1PolePowerFactorMinimumState;IfcReal -Pset_ElectricGeneratorTypeCommon;Reference;IfcIdentifier;ElectricGeneratorEfficiency;IfcPositiveRatioMeasure;StartCurrentFactor;IfcReal;MaximumPowerOutput;IfcPowerMeasure -Pset_ElectricMotorTypeCommon;Reference;IfcIdentifier;MaximumPowerOutput;IfcPowerMeasure;ElectricMotorEfficiency;IfcPositiveRatioMeasure;StartCurrentFactor;IfcReal;StartingTime;IfcTimeMeasure;TeTime;IfcTimeMeasure;LockedRotorCurrent;IfcElectricCurrentMeasure;FrameSize;IfcLabel;IsGuarded;IfcBoolean;HasPartWinding;IfcBoolean -Pset_ElectricTimeControlTypeCommon;Reference;IfcIdentifier -Pset_ElementAssemblyCommon;Reference;IfcLabel -Pset_ElementComponentCommon;Reference;IfcIdentifier -Pset_EngineTypeCommon;Reference;IfcIdentifier -Pset_EnvironmentalImpactIndicators;Reference;IfcIdentifier;FunctionalUnitReference;IfcLabel;Unit;IfcText;ExpectedServiceLife;IfcTimeMeasure;TotalPrimaryEnergyConsumptionPerUnit;IfcEnergyMeasure;WaterConsumptionPerUnit;IfcVolumeMeasure;HazardousWastePerUnit;IfcMassMeasure;NonHazardousWastePerUnit;IfcMassMeasure;ClimateChangePerUnit;IfcMassMeasure;AtmosphericAcidificationPerUnit;IfcMassMeasure;RenewableEnergyConsumptionPerUnit;IfcEnergyMeasure;NonRenewableEnergyConsumptionPerUnit;IfcEnergyMeasure;ResourceDepletionPerUnit;IfcMassMeasure;InertWastePerUnit;IfcMassMeasure;RadioactiveWastePerUnit;IfcMassMeasure;StratosphericOzoneLayerDestructionPerUnit;IfcMassMeasure;PhotochemicalOzoneFormationPerUnit;IfcMassMeasure;EutrophicationPerUnit;IfcMassMeasure -Pset_EnvironmentalImpactValues;TotalPrimaryEnergyConsumption;IfcEnergyMeasure;WaterConsumption;IfcVolumeMeasure;HazardousWaste;IfcMassMeasure;NonHazardousWaste;IfcMassMeasure;ClimateChange;IfcMassMeasure;AtmosphericAcidification;IfcMassMeasure;RenewableEnergyConsumption;IfcEnergyMeasure;NonRenewableEnergyConsumption;IfcEnergyMeasure;ResourceDepletion;IfcMassMeasure;InertWaste;IfcMassMeasure;RadioactiveWaste;IfcMassMeasure;StratosphericOzoneLayerDestruction;IfcMassMeasure;PhotochemicalOzoneFormation;IfcMassMeasure;Eutrophication;IfcMassMeasure;LeadInTime;IfcDuration;Duration;IfcDuration;LeadOutTime;IfcDuration -Pset_EvaporativeCoolerTypeCommon;Reference;IfcIdentifier;HeatExchangeArea;IfcAreaMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;WaterRequirement;IfcVolumetricFlowRateMeasure;EffectivenessTable;IfcReal;AirPressureDropCurve;IfcPressureMeasure;WaterPressDropCurve;IfcPressureMeasure -Pset_EvaporatorTypeCommon;Reference;IfcIdentifier;ExternalSurfaceArea;IfcAreaMeasure;InternalSurfaceArea;IfcAreaMeasure;InternalRefrigerantVolume;IfcVolumeMeasure;InternalWaterVolume;IfcVolumeMeasure;NominalHeatTransferArea;IfcAreaMeasure;NominalHeatTransferCoefficient;IfcThermalTransmittanceMeasure -Pset_FanOccurrence;FractionOfMotorHeatToAirStream;IfcNormalisedRatioMeasure;ImpellerDiameter;IfcPositiveLengthMeasure -Pset_FanTypeCommon;Reference;IfcIdentifier;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;NominalTotalPressure;IfcPressureMeasure;NominalStaticPressure;IfcPressureMeasure;NominalRotationSpeed;IfcRotationalFrequencyMeasure;NominalPowerRate;IfcPowerMeasure;OperationalCriteria;IfcTimeMeasure;PressureCurve;IfcPressureMeasure;EfficiencyCurve;IfcNormalisedRatioMeasure -Pset_FastenerWeld;Type1;IfcLabel;Type2;IfcLabel;Surface1;IfcLabel;Surface2;IfcLabel;Process;IfcInteger;ProcessName;IfcLabel;a;IfcPositiveLengthMeasure;c;IfcPositiveLengthMeasure;d;IfcPositiveLengthMeasure;e;IfcPositiveLengthMeasure;l;IfcPositiveLengthMeasure;n;IfcCountMeasure;s;IfcPositiveLengthMeasure;z;IfcPositiveLengthMeasure;Intermittent;IfcBoolean;Staggered;IfcBoolean -Pset_FilterTypeAirParticleFilter;DustHoldingCapacity;IfcMassMeasure;FaceSurfaceArea;IfcAreaMeasure;MediaExtendedArea;IfcAreaMeasure;NominalCountedEfficiency;IfcReal;NominalWeightedEfficiency;IfcReal;PressureDropCurve;IfcPressureMeasure;CountedEfficiencyCurve;IfcReal;WeightedEfficiencyCurve;IfcReal -Pset_FilterTypeCommon;Reference;IfcIdentifier;Weight;IfcMassMeasure;InitialResistance;IfcPressureMeasure;FinalResistance;IfcPressureMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;FlowRateRange;IfcVolumetricFlowRateMeasure;NominalFilterFaceVelocity;IfcLinearVelocityMeasure;NominalMediaSurfaceVelocity;IfcLinearVelocityMeasure;NominalPressureDrop;IfcPressureMeasure;NominalFlowrate;IfcVolumetricFlowRateMeasure;NominalParticleGeometricMeanDiameter;IfcPositiveLengthMeasure;NominalParticleGeometricStandardDeviation;IfcReal -Pset_FilterTypeCompressedAirFilter;OperationPressureMax;IfcPressureMeasure;ParticleAbsorptionCurve;IfcPositiveRatioMeasure;AutomaticCondensateDischarge;IfcBoolean;CloggingIndicator;IfcBoolean -Pset_FireSuppressionTerminalTypeBreechingInlet;InletDiameter;IfcPositiveLengthMeasure;OutletDiameter;IfcPositiveLengthMeasure;HasCaps;IfcBoolean -Pset_FireSuppressionTerminalTypeCommon;Reference;IfcIdentifier -Pset_FireSuppressionTerminalTypeFireHydrant;PumperConnectionSize;IfcPositiveLengthMeasure;NumberOfHoseConnections;IfcInteger;HoseConnectionSize;IfcPositiveLengthMeasure;DischargeFlowRate;IfcVolumetricFlowRateMeasure;FlowClass;IfcLabel;WaterIsPotable;IfcBoolean;PressureRating;IfcPressureMeasure;BodyColor;IfcText;CapColor;IfcText -Pset_FireSuppressionTerminalTypeHoseReel;InletConnectionSize;IfcPositiveLengthMeasure;HoseDiameter;IfcPositiveLengthMeasure;HoseLength;IfcPositiveLengthMeasure;ClassOfService;IfcLabel;ClassificationAuthority;IfcLabel -Pset_FireSuppressionTerminalTypeSprinkler;ActivationTemperature;IfcThermodynamicTemperatureMeasure;CoverageArea;IfcAreaMeasure;HasDeflector;IfcBoolean;DischargeFlowRate;IfcVolumetricFlowRateMeasure;ResidualFlowingPressure;IfcPressureMeasure;DischargeCoefficient;IfcReal;MaximumWorkingPressure;IfcPressureMeasure;ConnectionSize;IfcPositiveLengthMeasure -Pset_FlowInstrumentTypeCommon;Reference;IfcIdentifier -Pset_FlowInstrumentTypePressureGauge;DisplaySize;IfcPositiveLengthMeasure -Pset_FlowInstrumentTypeThermometer;DisplaySize;IfcPositiveLengthMeasure -Pset_FlowMeterTypeCommon;Reference;IfcIdentifier;RemoteReading;IfcBoolean -Pset_FlowMeterTypeEnergyMeter;NominalCurrent;IfcElectricCurrentMeasure;MaximumCurrent;IfcElectricCurrentMeasure;MultipleTarriff;IfcBoolean -Pset_FlowMeterTypeGasMeter;ConnectionSize;IfcPositiveLengthMeasure;MaximumFlowRate;IfcVolumetricFlowRateMeasure;MaximumPressureLoss;IfcPressureMeasure -Pset_FlowMeterTypeOilMeter;ConnectionSize;IfcPositiveLengthMeasure;MaximumFlowRate;IfcVolumetricFlowRateMeasure -Pset_FlowMeterTypeWaterMeter;ConnectionSize;IfcPositiveLengthMeasure;MaximumFlowRate;IfcVolumetricFlowRateMeasure;MaximumPressureLoss;IfcPressureMeasure -Pset_FootingCommon;Reference;IfcIdentifier;LoadBearing;IfcBoolean -Pset_FurnitureTypeChair;SeatingHeight;IfcPositiveLengthMeasure;HighestSeatingHeight;IfcPositiveLengthMeasure;LowestSeatingHeight;IfcPositiveLengthMeasure -Pset_FurnitureTypeCommon;Reference;IfcIdentifier;Style;IfcLabel;NominalHeight;IfcPositiveLengthMeasure;NominalLength;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure;MainColor;IfcLabel;IsBuiltIn;IfcBoolean -Pset_FurnitureTypeDesk;WorksurfaceArea;IfcAreaMeasure -Pset_FurnitureTypeFileCabinet;WithLock;IfcBoolean -Pset_FurnitureTypeTable;WorksurfaceArea;IfcAreaMeasure;NumberOfChairs;IfcInteger -Pset_HeatExchangerTypeCommon;Reference;IfcIdentifier -Pset_HeatExchangerTypePlate;NumberOfPlates;IfcInteger -Pset_HumidifierTypeCommon;Reference;IfcIdentifier;Weight;IfcMassMeasure;NominalMoistureGain;IfcMassFlowRateMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;WaterRequirement;IfcVolumetricFlowRateMeasure;SaturationEfficiencyCurve;IfcNormalisedRatioMeasure;AirPressureDropCurve;IfcPressureMeasure -Pset_InterceptorTypeCommon;Reference;IfcIdentifier;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure;VentilatingPipeSize;IfcPositiveLengthMeasure -Pset_JunctionBoxTypeCommon;Reference;IfcIdentifier;NumberOfGangs;IfcInteger;ClearDepth;IfcPositiveLengthMeasure;IsExternal;IfcBoolean;IP_Code;IfcLabel -Pset_LampTypeCommon;Reference;IfcIdentifier;ContributedLuminousFlux;IfcLuminousFluxMeasure;LightEmitterNominalPower;IfcPowerMeasure;LampMaintenanceFactor;IfcReal;ColorAppearance;IfcLabel;Spectrum;IfcNumericMeasure;ColorTemperature;IfcThermodynamicTemperatureMeasure;ColorRenderingIndex;IfcInteger -Pset_LandRegistration;LandID;IfcIdentifier;IsPermanentID;IfcBoolean;LandTitleID;IfcIdentifier -Pset_LightFixtureTypeCommon;Reference;IfcIdentifier;NumberOfSources;IfcInteger;TotalWattage;IfcPowerMeasure;MaintenanceFactor;IfcReal;MaximumPlenumSensibleLoad;IfcPowerMeasure;MaximumSpaceSensibleLoad;IfcPowerMeasure;SensibleLoadToRadiant;IfcPositiveRatioMeasure -Pset_LightFixtureTypeSecurityLighting;FixtureHeight;IfcPositiveLengthMeasure -Pset_ManufacturerOccurrence;AcquisitionDate;IfcDate;BarCode;IfcIdentifier;SerialNumber;IfcIdentifier;BatchReference;IfcIdentifier -Pset_ManufacturerTypeInformation;GlobalTradeItemNumber;IfcIdentifier;ArticleNumber;IfcIdentifier;ModelReference;IfcLabel;ModelLabel;IfcLabel;Manufacturer;IfcLabel;ProductionYear;IfcLabel -Pset_MaterialCombustion;SpecificHeatCapacity;IfcSpecificHeatCapacityMeasure;N20Content;IfcPositiveRatioMeasure;COContent;IfcPositiveRatioMeasure;CO2Content;IfcPositiveRatioMeasure -Pset_MaterialCommon;MolecularWeight;IfcMolecularWeightMeasure;Porosity;IfcNormalisedRatioMeasure;MassDensity;IfcMassDensityMeasure -Pset_MaterialConcrete;CompressiveStrength;IfcPressureMeasure;MaxAggregateSize;IfcPositiveLengthMeasure;AdmixturesDescription;IfcText;Workability;IfcText;WaterImpermeability;IfcText;ProtectivePoreRatio;IfcNormalisedRatioMeasure -Pset_MaterialEnergy;ViscosityTemperatureDerivative;IfcReal;MoistureCapacityThermalGradient;IfcReal;ThermalConductivityTemperatureDerivative;IfcReal;SpecificHeatTemperatureDerivative;IfcReal;VisibleRefractionIndex;IfcReal;SolarRefractionIndex;IfcReal;GasPressure;IfcPressureMeasure -Pset_MaterialFuel;CombustionTemperature;IfcThermodynamicTemperatureMeasure;CarbonContent;IfcPositiveRatioMeasure;LowerHeatingValue;IfcHeatingValueMeasure;HigherHeatingValue;IfcHeatingValueMeasure -Pset_MaterialHygroscopic;UpperVaporResistanceFactor;IfcPositiveRatioMeasure;LowerVaporResistanceFactor;IfcPositiveRatioMeasure;IsothermalMoistureCapacity;IfcIsothermalMoistureCapacityMeasure;VaporPermeability;IfcVaporPermeabilityMeasure;MoistureDiffusivity;IfcMoistureDiffusivityMeasure -Pset_MaterialMechanical;DynamicViscosity;IfcDynamicViscosityMeasure;YoungModulus;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;PoissonRatio;IfcPositiveRatioMeasure;ThermalExpansionCoefficient;IfcThermalExpansionCoefficientMeasure -Pset_MaterialOptical;VisibleTransmittance;IfcPositiveRatioMeasure;SolarTransmittance;IfcPositiveRatioMeasure;ThermalIrTransmittance;IfcPositiveRatioMeasure;ThermalIrEmissivityBack;IfcPositiveRatioMeasure;ThermalIrEmissivityFront;IfcPositiveRatioMeasure;VisibleReflectanceBack;IfcPositiveRatioMeasure;VisibleReflectanceFront;IfcPositiveRatioMeasure;SolarReflectanceBack;IfcPositiveRatioMeasure;SolarReflectanceFront;IfcPositiveRatioMeasure -Pset_MaterialSteel;YieldStress;IfcPressureMeasure;UltimateStress;IfcPressureMeasure;UltimateStrain;IfcPositiveRatioMeasure;HardeningModule;IfcModulusOfElasticityMeasure;ProportionalStress;IfcPressureMeasure;PlasticStrain;IfcPositiveRatioMeasure;Relaxations;IfcNormalisedRatioMeasure -Pset_MaterialThermal;SpecificHeatCapacity;IfcSpecificHeatCapacityMeasure;BoilingPoint;IfcThermodynamicTemperatureMeasure;FreezingPoint;IfcThermodynamicTemperatureMeasure;ThermalConductivity;IfcThermalConductivityMeasure -Pset_MaterialWater;IsPotable;IfcBoolean;Hardness;IfcIonConcentrationMeasure;AlkalinityConcentration;IfcIonConcentrationMeasure;AcidityConcentration;IfcIonConcentrationMeasure;ImpuritiesContent;IfcNormalisedRatioMeasure;DissolvedSolidsContent;IfcNormalisedRatioMeasure;PHLevel;IfcPHMeasure -Pset_MaterialWood;Species;IfcLabel;StrengthGrade;IfcLabel;AppearanceGrade;IfcLabel;Layup;IfcLabel;Layers;IfcInteger;Plies;IfcInteger;MoistureContent;IfcPositiveRatioMeasure;DimensionalChangeCoefficient;IfcPositiveRatioMeasure;ThicknessSwelling;IfcPositiveRatioMeasure -Pset_MaterialWoodBasedBeam;ApplicableStructuralDesignMethod;IfcLabel;InPlane;IfcModulusOfElasticityMeasure;YoungModulusMin;IfcModulusOfElasticityMeasure;YoungModulusPerp;IfcModulusOfElasticityMeasure;YoungModulusPerpMin;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;ShearModulusMin;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;TensileStrengthPerp;IfcPressureMeasure;CompStrength;IfcPressureMeasure;CompStrengthPerp;IfcPressureMeasure;RaisedCompStrengthPerp;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;TorsionalStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;InstabilityFactors;IfcPositiveRatioMeasure;InPlaneNegative;IfcModulusOfElasticityMeasure;YoungModulusMin;IfcModulusOfElasticityMeasure;YoungModulusPerp;IfcModulusOfElasticityMeasure;YoungModulusPerpMin;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;ShearModulusMin;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;TensileStrengthPerp;IfcPressureMeasure;CompStrength;IfcPressureMeasure;CompStrengthPerp;IfcPressureMeasure;RaisedCompStrengthPerp;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;TorsionalStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;InstabilityFactors;IfcPositiveRatioMeasure;OutOfPlane;IfcModulusOfElasticityMeasure;YoungModulusMin;IfcModulusOfElasticityMeasure;YoungModulusPerp;IfcModulusOfElasticityMeasure;YoungModulusPerpMin;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;ShearModulusMin;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;TensileStrengthPerp;IfcPressureMeasure;CompStrength;IfcPressureMeasure;CompStrengthPerp;IfcPressureMeasure;RaisedCompStrengthPerp;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;TorsionalStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;InstabilityFactors;IfcPositiveRatioMeasure -Pset_MaterialWoodBasedPanel;ApplicableStructuralDesignMethod;IfcLabel;InPlane;IfcModulusOfElasticityMeasure;YoungModulusTension;IfcModulusOfElasticityMeasure;YoungModulusCompression;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;CompressiveStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;BearingStrength;IfcPressureMeasure;RaisedCompressiveStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;OutOfPlane;IfcModulusOfElasticityMeasure;YoungModulusTension;IfcModulusOfElasticityMeasure;YoungModulusCompression;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;CompressiveStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;BearingStrength;IfcPressureMeasure;RaisedCompressiveStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;OutOfPlaneNegative;IfcModulusOfElasticityMeasure;YoungModulusTension;IfcModulusOfElasticityMeasure;YoungModulusCompression;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;CompressiveStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;BearingStrength;IfcPressureMeasure;RaisedCompressiveStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure -Pset_MechanicalFastenerAnchorBolt;AnchorBoltLength;IfcPositiveLengthMeasure;AnchorBoltDiameter;IfcPositiveLengthMeasure;AnchorBoltThreadLength;IfcPositiveLengthMeasure;AnchorBoltProtrusionLength;IfcPositiveLengthMeasure -Pset_MechanicalFastenerBolt;ThreadDiameter;IfcPositiveLengthMeasure;ThreadLength;IfcPositiveLengthMeasure;NutsCount;IfcCountMeasure;WashersCount;IfcCountMeasure;HeadShape;IfcLabel;KeyShape;IfcLabel;NutShape;IfcLabel;WasherShape;IfcLabel -Pset_MedicalDeviceTypeCommon;Reference;IfcIdentifier -Pset_MemberCommon;Reference;IfcIdentifier;Span;IfcPositiveLengthMeasure;Slope;IfcPlaneAngleMeasure;Roll;IfcPlaneAngleMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_MotorConnectionTypeCommon;Reference;IfcIdentifier -Pset_OpeningElementCommon;Reference;IfcIdentifier;Purpose;IfcLabel;FireExit;IfcBoolean;ProtectedOpening;IfcBoolean -Pset_OutletTypeCommon;Reference;IfcIdentifier;IsPluggableOutlet;IfcLogical;NumberOfSockets;IfcInteger -Pset_OutsideDesignCriteria;HeatingDryBulb;IfcThermodynamicTemperatureMeasure;HeatingWetBulb;IfcThermodynamicTemperatureMeasure;HeatingDesignDay;IfcDateTime;CoolingDryBulb;IfcThermodynamicTemperatureMeasure;CoolingWetBulb;IfcThermodynamicTemperatureMeasure;CoolingDesignDay;IfcDateTime;WeatherDataStation;IfcText;WeatherDataDate;IfcDateTime;PrevailingWindDirection;IfcPlaneAngleMeasure;PrevailingWindVelocity;IfcLinearVelocityMeasure -Pset_PackingInstructions;SpecialInstructions;IfcText -Pset_Permit;EscortRequirement;IfcBoolean;StartDate;IfcDateTime;EndDate;IfcDateTime;SpecialRequirements;IfcText -Pset_PileCommon;Reference;IfcIdentifier;LoadBearing;IfcBoolean -Pset_PipeConnectionFlanged;FlangeTable;IfcLabel;FlangeStandard;IfcLabel;BoreSize;IfcPositiveLengthMeasure;FlangeDiameter;IfcPositiveLengthMeasure;FlangeThickness;IfcPositiveLengthMeasure;NumberOfBoltholes;IfcInteger;BoltSize;IfcPositiveLengthMeasure;BoltholePitch;IfcPositiveLengthMeasure -Pset_PipeFittingOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;Color;IfcLabel -Pset_PipeFittingTypeBend;BendAngle;IfcPositivePlaneAngleMeasure;BendRadius;IfcPositiveLengthMeasure -Pset_PipeFittingTypeCommon;Reference;IfcIdentifier;PressureClass;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;FittingLossFactor;IfcReal -Pset_PipeFittingTypeJunction;JunctionLeftAngle;IfcPositivePlaneAngleMeasure;JunctionLeftRadius;IfcPositiveLengthMeasure;JunctionRightAngle;IfcPositivePlaneAngleMeasure;JunctionRightRadius;IfcPositiveLengthMeasure -Pset_PipeSegmentOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;Color;IfcLabel;Gradient;IfcPositiveRatioMeasure;InvertElevation;IfcLengthMeasure -Pset_PipeSegmentTypeCommon;Reference;IfcIdentifier;WorkingPressure;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;NominalDiameter;IfcPositiveLengthMeasure;InnerDiameter;IfcPositiveLengthMeasure;OuterDiameter;IfcPositiveLengthMeasure -Pset_PipeSegmentTypeCulvert;InternalWidth;IfcLengthMeasure;ClearDepth;IfcLengthMeasure -Pset_PipeSegmentTypeGutter;Slope;IfcPlaneAngleMeasure;FlowRating;IfcVolumetricFlowRateMeasure -Pset_PlateCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_PrecastConcreteElementFabrication;TypeDesignator;IfcLabel;ProductionLotId;IfcIdentifier;SerialNumber;IfcIdentifier;PieceMark;IfcLabel;AsBuiltLocationNumber;IfcLabel;ActualProductionDate;IfcDateTime;ActualErectionDate;IfcDateTime -Pset_PrecastConcreteElementGeneral;TypeDesignator;IfcLabel;CornerChamfer;IfcPositiveLengthMeasure;ManufacturingToleranceClass;IfcLabel;FormStrippingStrength;IfcPressureMeasure;LiftingStrength;IfcPressureMeasure;ReleaseStrength;IfcPressureMeasure;MinimumAllowableSupportLength;IfcPositiveLengthMeasure;InitialTension;IfcPressureMeasure;TendonRelaxation;IfcPositiveRatioMeasure;TransportationStrength;IfcPressureMeasure;SupportDuringTransportDescription;IfcText;HollowCorePlugging;IfcLabel;CamberAtMidspan;IfcRatioMeasure;BatterAtStart;IfcPlaneAngleMeasure;BatterAtEnd;IfcPlaneAngleMeasure;Twisting;IfcPlaneAngleMeasure;Shortening;IfcRatioMeasure;PieceMark;IfcLabel;DesignLocationNumber;IfcLabel -Pset_PrecastSlab;TypeDesignator;IfcLabel;ToppingType;IfcLabel;EdgeDistanceToFirstAxis;IfcPositiveLengthMeasure;DistanceBetweenComponentAxes;IfcPositiveLengthMeasure;AngleToFirstAxis;IfcPlaneAngleMeasure;AngleBetweenComponentAxes;IfcPlaneAngleMeasure;NominalThickness;IfcPositiveLengthMeasure;NominalToppingThickness;IfcPositiveLengthMeasure -Pset_ProfileArbitraryDoubleT;OverallWidth;IfcPositiveLengthMeasure;LeftFlangeWidth;IfcPositiveLengthMeasure;RightFlangeWidth;IfcPositiveLengthMeasure;OverallDepth;IfcPositiveLengthMeasure;FlangeDepth;IfcPositiveLengthMeasure;FlangeDraft;IfcNonNegativeLengthMeasure;FlangeChamfer;IfcNonNegativeLengthMeasure;FlangeBaseFillet;IfcNonNegativeLengthMeasure;FlangeTopFillet;IfcNonNegativeLengthMeasure;StemBaseWidth;IfcPositiveLengthMeasure;StemTopWidth;IfcPositiveLengthMeasure;StemBaseChamfer;IfcNonNegativeLengthMeasure;StemTopChamfer;IfcNonNegativeLengthMeasure;StemBaseFillet;IfcNonNegativeLengthMeasure;StemTopFillet;IfcNonNegativeLengthMeasure -Pset_ProfileArbitraryHollowCore;OverallWidth;IfcPositiveLengthMeasure;OverallDepth;IfcPositiveLengthMeasure;EdgeDraft;IfcNonNegativeLengthMeasure;DraftBaseOffset;IfcNonNegativeLengthMeasure;DraftSideOffset;IfcNonNegativeLengthMeasure;BaseChamfer;IfcNonNegativeLengthMeasure;KeyDepth;IfcNonNegativeLengthMeasure;KeyHeight;IfcNonNegativeLengthMeasure;KeyOffset;IfcNonNegativeLengthMeasure;BottomCover;IfcPositiveLengthMeasure;CoreSpacing;IfcPositiveLengthMeasure;CoreBaseHeight;IfcPositiveLengthMeasure;CoreMiddleHeight;IfcPositiveLengthMeasure;CoreTopHeight;IfcPositiveLengthMeasure;CoreBaseWidth;IfcPositiveLengthMeasure;CoreTopWidth;IfcPositiveLengthMeasure;CenterCoreSpacing;IfcPositiveLengthMeasure;CenterCoreBaseHeight;IfcPositiveLengthMeasure;CenterCoreMiddleHeight;IfcPositiveLengthMeasure;CenterCoreTopHeight;IfcPositiveLengthMeasure;CenterCoreBaseWidth;IfcPositiveLengthMeasure;CenterCoreTopWidth;IfcPositiveLengthMeasure;NumberOfCores;IfcCountMeasure -Pset_ProfileMechanical;MassPerLength;IfcMassPerLengthMeasure;CrossSectionArea;IfcAreaMeasure;Perimeter;IfcPositiveLengthMeasure;MinimumPlateThickness;IfcPositiveLengthMeasure;MaximumPlateThickness;IfcPositiveLengthMeasure;CentreOfGravityInX;IfcLengthMeasure;CentreOfGravityInY;IfcLengthMeasure;ShearCentreZ;IfcLengthMeasure;ShearCentreY;IfcLengthMeasure;MomentOfInertiaY;IfcMomentOfInertiaMeasure;MomentOfInertiaZ;IfcMomentOfInertiaMeasure;MomentOfInertiaYZ;IfcMomentOfInertiaMeasure;TorsionalConstantX;IfcMomentOfInertiaMeasure;WarpingConstant;IfcWarpingConstantMeasure;ShearDeformationAreaZ;IfcAreaMeasure;ShearDeformationAreaY;IfcAreaMeasure;MaximumSectionModulusY;IfcSectionModulusMeasure;MinimumSectionModulusY;IfcSectionModulusMeasure;MaximumSectionModulusZ;IfcSectionModulusMeasure;MinimumSectionModulusZ;IfcSectionModulusMeasure;TorsionalSectionModulus;IfcSectionModulusMeasure;ShearAreaZ;IfcAreaMeasure;ShearAreaY;IfcAreaMeasure;PlasticShapeFactorY;IfcPositiveRatioMeasure;PlasticShapeFactorZ;IfcPositiveRatioMeasure -Pset_ProjectOrderChangeOrder;ReasonForChange;IfcText;BudgetSource;IfcText -Pset_ProjectOrderMaintenanceWorkOrder;ProductDescription;IfcText;WorkTypeRequested;IfcText;ContractualType;IfcText;IfNotAccomplished;IfcText;ScheduledFrequency;IfcTimeMeasure -Pset_ProjectOrderMoveOrder;SpecialInstructions;IfcText -Pset_ProjectOrderPurchaseOrder;IsFOB;IfcBoolean;ShipMethod;IfcText -Pset_ProjectOrderWorkOrder;ProductDescription;IfcText;WorkTypeRequested;IfcText;ContractualType;IfcText;IfNotAccomplished;IfcText -Pset_PropertyAgreement;Identifier;IfcIdentifier;Version;IfcLabel;VersionDate;IfcDate;PropertyName;IfcLabel;CommencementDate;IfcDate;TerminationDate;IfcDate;Duration;IfcDuration;Options;IfcText;ConditionCommencement;IfcText;Restrictions;IfcText;ConditionTermination;IfcText -Pset_ProtectiveDeviceBreakerUnitI2TCurve;NominalCurrent;IfcElectricCurrentMeasure;BreakerUnitCurve;IfcReal -Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve;BreakerUnitFuseMeltingCurve;IfcReal;BreakerUnitFuseBreakingingCurve;IfcReal -Pset_ProtectiveDeviceBreakerUnitIPICurve;NominalCurrent;IfcElectricCurrentMeasure;BreakerUnitIPICurve;IfcElectricCurrentMeasure -Pset_ProtectiveDeviceBreakerUnitTypeMCB;PowerLoss;IfcPowerMeasure;NominalCurrents;IfcElectricCurrentMeasure;ICU60947;IfcElectricCurrentMeasure;ICS60947;IfcElectricCurrentMeasure;ICN60898;IfcElectricCurrentMeasure;ICS60898;IfcElectricCurrentMeasure -Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection;PerformanceClasses;IfcLabel;ICU60947;IfcElectricCurrentMeasure;ICS60947;IfcElectricCurrentMeasure;ICW60947;IfcElectricCurrentMeasure;ICM60947;IfcElectricCurrentMeasure -Pset_ProtectiveDeviceOccurrence;LongTimeFunction;IfcBoolean;ShortTimeFunction;IfcBoolean;ShortTimei2tFunction;IfcBoolean;GroundFaultFunction;IfcBoolean;GroundFaulti2tFunction;IfcBoolean;LongTimeCurrentSetValue;IfcElectricCurrentMeasure;ShortTimeCurrentSetValue;IfcElectricCurrentMeasure;InstantaneousCurrentSetValue;IfcElectricCurrentMeasure;GroundFaultCurrentSetValue;IfcElectricCurrentMeasure;LongTimeDelay;IfcTimeMeasure;ShortTimeTrippingTime;IfcTimeMeasure;InstantaneousTrippingTime;IfcTimeMeasure;GroundFaultTrippingTime;IfcTimeMeasure -Pset_ProtectiveDeviceTrippingCurve;TrippingCurve;IfcTimeMeasure -Pset_ProtectiveDeviceTrippingFunctionGCurve;IsSelectable;IfcBoolean;NominalCurrentAdjusted;IfcBoolean;ExternalAdjusted;IfcBoolean;ReleaseCurrent;IfcElectricCurrentMeasure;ReleaseTime;IfcTimeMeasure;CurrentTolerance1;IfcPositiveRatioMeasure;CurrentToleranceLimit1;IfcTimeMeasure;CurrentTolerance2;IfcPositiveRatioMeasure;IsCurrentTolerancePositiveOnly;IfcBoolean;TimeTolerance1;IfcPositiveRatioMeasure;TimeToleranceLimit1;IfcElectricCurrentMeasure;TimeTolerance2;IfcPositiveRatioMeasure;IsTimeTolerancePositiveOnly;IfcBoolean;ReleaseCurrentI2tStart;IfcElectricCurrentMeasure;ReleaseTimeI2tStart;IfcTimeMeasure;ReleaseCurrentI2tEnd;IfcElectricCurrentMeasure;ReleaseTimeI2tEnd;IfcTimeMeasure -Pset_ProtectiveDeviceTrippingFunctionICurve;IsSelectable;IfcBoolean;NominalCurrentAdjusted;IfcBoolean;ReleaseCurrent;IfcElectricCurrentMeasure;ReleaseTime;IfcTimeMeasure;CurrentTolerance1;IfcPositiveRatioMeasure;CurrentToleranceLimit1;IfcTimeMeasure;CurrentTolerance2;IfcPositiveRatioMeasure;IsCurrentTolerancePositiveOnly;IfcBoolean;TimeTolerance1;IfcPositiveRatioMeasure;TimeToleranceLimit1;IfcElectricCurrentMeasure;TimeTolerance2;IfcPositiveRatioMeasure;IsTimeTolerancePositiveOnly;IfcBoolean;MaxAdjustmentX_ICS;IfcElectricCurrentMeasure;IsOffWhenSFunctionOn;IfcBoolean -Pset_ProtectiveDeviceTrippingFunctionLCurve;IsSelectable;IfcBoolean;UpperCurrent1;IfcElectricCurrentMeasure;UpperCurrent2;IfcElectricCurrentMeasure;UpperTime1;IfcTimeMeasure;UpperTime2;IfcTimeMeasure;LowerCurrent1;IfcElectricCurrentMeasure;LowerCurrent2;IfcElectricCurrentMeasure;LowerTime1;IfcTimeMeasure;LowerTime2;IfcTimeMeasure -Pset_ProtectiveDeviceTrippingFunctionSCurve;IsSelectable;IfcBoolean;NominalCurrentAdjusted;IfcBoolean;ReleaseCurrent;IfcElectricCurrentMeasure;ReleaseTime;IfcTimeMeasure;CurrentTolerance1;IfcPositiveRatioMeasure;CurrentToleranceLimit1;IfcTimeMeasure;CurrentTolerance2;IfcPositiveRatioMeasure;IsCurrentTolerancePositiveOnly;IfcBoolean;TimeTolerance1;IfcPositiveRatioMeasure;TimeToleranceLimit1;IfcElectricCurrentMeasure;TimeTolerance2;IfcPositiveRatioMeasure;IsTimeTolerancePositiveOnly;IfcBoolean;ReleaseCurrentI2tStart;IfcElectricCurrentMeasure;ReleaseTimeI2tStart;IfcTimeMeasure;ReleaseCurrentI2tEnd;IfcElectricCurrentMeasure;ReleaseTimeI2tEnd;IfcTimeMeasure;IsOffWhenLfunctionOn;IfcBoolean -Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment;AdjustmentRange;IfcElectricCurrentMeasure;AdjustmentRangeStepValue;IfcElectricCurrentMeasure;AdjustmentValues;IfcElectricCurrentMeasure;AdjustmentDesignation;IfcLabel -Pset_ProtectiveDeviceTrippingUnitTimeAdjustment;AdjustmentRange;IfcTimeMeasure;AdjustmentRangeStepValue;IfcTimeMeasure;AdjustmentValues;IfcTimeMeasure;AdjustmentDesignation;IfcLabel;CurrentForTimeDelay;IfcTimeMeasure -Pset_ProtectiveDeviceTrippingUnitTypeCommon;Reference;IfcIdentifier;Standard;IfcLabel;UseInDiscrimination;IfcBoolean;AtexVerified;IfcBoolean;OldDevice;IfcBoolean;LimitingTerminalSize;IfcAreaMeasure -Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic;I1;IfcReal;I2;IfcReal;T2;IfcTimeMeasure;DefinedTemperature;IfcThermodynamicTemperatureMeasure;TemperatureFactor;IfcRatioMeasure;I4;IfcReal;I5;IfcReal;T5;IfcTimeMeasure;CurveDesignation;IfcLabel -Pset_ProtectiveDeviceTrippingUnitTypeElectronic;NominalCurrents;IfcElectricCurrentMeasure;N_Protection;IfcBoolean;N_Protection_50;IfcBoolean;N_Protection_100;IfcBoolean;N_Protection_Select;IfcBoolean -Pset_ProtectiveDeviceTrippingUnitTypeThermal;I1;IfcReal;I2;IfcReal;T2;IfcTimeMeasure;DefinedTemperature;IfcThermodynamicTemperatureMeasure;TemperatureFactor;IfcRatioMeasure;CurveDesignation;IfcLabel -Pset_ProtectiveDeviceTypeCircuitBreaker;PerformanceClasses;IfcLabel;ICU60947;IfcElectricCurrentMeasure;ICS60947;IfcElectricCurrentMeasure;ICW60947;IfcElectricCurrentMeasure;ICM60947;IfcElectricCurrentMeasure -Pset_ProtectiveDeviceTypeCommon;Reference;IfcIdentifier -Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker;Sensitivity;IfcElectricCurrentMeasure -Pset_ProtectiveDeviceTypeFuseDisconnector;IC60269;IfcElectricCurrentMeasure;PowerLoss;IfcPowerMeasure -Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker;Sensitivity;IfcElectricCurrentMeasure -Pset_ProtectiveDeviceTypeResidualCurrentSwitch;Sensitivity;IfcElectricCurrentMeasure -Pset_PumpOccurrence;ImpellerDiameter;IfcPositiveLengthMeasure -Pset_PumpTypeCommon;Reference;IfcIdentifier;FlowRateRange;IfcMassFlowRateMeasure;FlowResistanceRange;IfcPressureMeasure;ConnectionSize;IfcPositiveLengthMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;NetPositiveSuctionHead;IfcPressureMeasure;NominalRotationSpeed;IfcRotationalFrequencyMeasure -Pset_RailingCommon;Reference;IfcIdentifier;Height;IfcPositiveLengthMeasure;Diameter;IfcPositiveLengthMeasure;IsExternal;IfcBoolean -Pset_RampCommon;Reference;IfcIdentifier;RequiredHeadroom;IfcPositiveLengthMeasure;RequiredSlope;IfcPlaneAngleMeasure;HandicapAccessible;IfcBoolean;HasNonSkidSurface;IfcBoolean;FireExit;IfcBoolean;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_RampFlightCommon;Reference;IfcIdentifier;Headroom;IfcPositiveLengthMeasure;ClearWidth;IfcPositiveLengthMeasure;Slope;IfcPlaneAngleMeasure;CounterSlope;IfcPlaneAngleMeasure -Pset_ReinforcementBarCountOfIndependentFooting;Description;IfcText;Reference;IfcLabel;XDirectionLowerBarCount;IfcInteger;YDirectionLowerBarCount;IfcInteger;XDirectionUpperBarCount;IfcInteger;YDirectionUpperBarCount;IfcInteger -Pset_ReinforcementBarPitchOfBeam;Description;IfcText;Reference;IfcLabel;StirrupBarPitch;IfcPositiveLengthMeasure;SpacingBarPitch;IfcPositiveLengthMeasure -Pset_ReinforcementBarPitchOfColumn;Description;IfcText;Reference;IfcLabel;HoopBarPitch;IfcPositiveLengthMeasure;XDirectionTieHoopBarPitch;IfcPositiveLengthMeasure;XDirectionTieHoopCount;IfcInteger;YDirectionTieHoopBarPitch;IfcPositiveLengthMeasure;YDirectionTieHoopCount;IfcInteger -Pset_ReinforcementBarPitchOfContinuousFooting;Description;IfcText;Reference;IfcLabel;CrossingUpperBarPitch;IfcPositiveLengthMeasure;CrossingLowerBarPitch;IfcPositiveLengthMeasure -Pset_ReinforcementBarPitchOfSlab;Description;IfcText;Reference;IfcLabel;LongOutsideTopBarPitch;IfcPositiveLengthMeasure;LongInsideCenterTopBarPitch;IfcPositiveLengthMeasure;LongInsideEndTopBarPitch;IfcPositiveLengthMeasure;ShortOutsideTopBarPitch;IfcPositiveLengthMeasure;ShortInsideCenterTopBarPitch;IfcPositiveLengthMeasure;ShortInsideEndTopBarPitch;IfcPositiveLengthMeasure;LongOutsideLowerBarPitch;IfcPositiveLengthMeasure;LongInsideCenterLowerBarPitch;IfcPositiveLengthMeasure;LongInsideEndLowerBarPitch;IfcPositiveLengthMeasure;ShortOutsideLowerBarPitch;IfcPositiveLengthMeasure;ShortInsideCenterLowerBarPitch;IfcPositiveLengthMeasure;ShortInsideEndLowerBarPitch;IfcPositiveLengthMeasure -Pset_ReinforcementBarPitchOfWall;Description;IfcText;Reference;IfcLabel;VerticalBarPitch;IfcPositiveLengthMeasure;HorizontalBarPitch;IfcPositiveLengthMeasure;SpacingBarPitch;IfcPositiveLengthMeasure -Pset_Risk;NatureOfRisk;IfcLabel;SubNatureOfRisk1;IfcLabel;SubNatureOfRisk2;IfcLabel;RiskCause;IfcText;AffectsSurroundings;IfcBoolean;PreventiveMeassures;IfcText -Pset_RoofCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel -Pset_SanitaryTerminalTypeBath;DrainSize;IfcPositiveLengthMeasure;HasGrabHandles;IfcBoolean -Pset_SanitaryTerminalTypeBidet;SpilloverLevel;IfcPositiveLengthMeasure;DrainSize;IfcPositiveLengthMeasure -Pset_SanitaryTerminalTypeCistern;CisternCapacity;IfcVolumeMeasure;IsSingleFlush;IfcBoolean;FlushRate;IfcVolumeMeasure;IsAutomaticFlush;IfcBoolean -Pset_SanitaryTerminalTypeCommon;Reference;IfcIdentifier;NominalLength;IfcPositiveLengthMeasure;NominalWidth;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure;Color;IfcLabel -Pset_SanitaryTerminalTypeSanitaryFountain;DrainSize;IfcPositiveLengthMeasure -Pset_SanitaryTerminalTypeShower;HasTray;IfcBoolean;ShowerHeadDescription;IfcText;DrainSize;IfcPositiveLengthMeasure -Pset_SanitaryTerminalTypeSink;Color;IfcLabel;DrainSize;IfcPositiveLengthMeasure;MountingOffset;IfcLengthMeasure -Pset_SanitaryTerminalTypeToiletPan;SpilloverLevel;IfcPositiveLengthMeasure -Pset_SanitaryTerminalTypeUrinal;SpilloverLevel;IfcPositiveLengthMeasure -Pset_SanitaryTerminalTypeWashHandBasin;DrainSize;IfcPositiveLengthMeasure;MountingOffset;IfcLengthMeasure -Pset_SensorTypeCO2Sensor;SetPointConcentration;IfcPositiveRatioMeasure -Pset_SensorTypeCommon;Reference;IfcIdentifier -Pset_SensorTypeConductanceSensor;SetPointConductance;IfcElectricConductanceMeasure -Pset_SensorTypeContactSensor;SetPointContact;IfcInteger -Pset_SensorTypeFireSensor;FireSensorSetPoint;IfcThermodynamicTemperatureMeasure;AccuracyOfFireSensor;IfcThermodynamicTemperatureMeasure;TimeConstant;IfcTimeMeasure -Pset_SensorTypeFlowSensor;SetPointFlow;IfcVolumetricFlowRateMeasure -Pset_SensorTypeFrostSensor;SetPointFrost;IfcPositiveRatioMeasure -Pset_SensorTypeGasSensor;GasDetected;IfcLabel;SetPointConcentration;IfcPositiveRatioMeasure;CoverageArea;IfcAreaMeasure -Pset_SensorTypeHeatSensor;CoverageArea;IfcAreaMeasure;SetPointTemperature;IfcThermodynamicTemperatureMeasure;RateOfTemperatureRise;IfcTemperatureRateOfChangeMeasure -Pset_SensorTypeHumiditySensor;SetPointHumidity;IfcPositiveRatioMeasure -Pset_SensorTypeIdentifierSensor;SetPointIdentifier;IfcIdentifier -Pset_SensorTypeIonConcentrationSensor;SubstanceDetected;IfcLabel;SetPointConcentration;IfcIonConcentrationMeasure -Pset_SensorTypeLevelSensor;SetPointLevel;IfcPositiveLengthMeasure -Pset_SensorTypeLightSensor;SetPointIlluminance;IfcIlluminanceMeasure -Pset_SensorTypeMoistureSensor;SetPointMoisture;IfcPositiveRatioMeasure -Pset_SensorTypeMovementSensor;SetPointMovement;IfcPositiveRatioMeasure -Pset_SensorTypePHSensor;SetPointPH;IfcPHMeasure -Pset_SensorTypePressureSensor;SetPointPressure;IfcPressureMeasure;IsSwitch;IfcBoolean -Pset_SensorTypeRadiationSensor;SetPointRadiation;IfcPowerMeasure -Pset_SensorTypeRadioactivitySensor;SetPointRadioactivity;IfcRadioActivityMeasure -Pset_SensorTypeSmokeSensor;CoverageArea;IfcAreaMeasure;SetPointConcentration;IfcPositiveRatioMeasure;HasBuiltInAlarm;IfcBoolean -Pset_SensorTypeSoundSensor;SetPointSound;IfcSoundPressureMeasure -Pset_SensorTypeTemperatureSensor;SetPointTemperature;IfcThermodynamicTemperatureMeasure -Pset_SensorTypeWindSensor;SetPointSpeed;IfcLinearVelocityMeasure -Pset_ServiceLife;ServiceLifeDuration;IfcDuration;MeanTimeBetweenFailure;IfcDuration -Pset_ServiceLifeFactors;QualityOfComponents;IfcPositiveRatioMeasure;DesignLevel;IfcPositiveRatioMeasure;WorkExecutionLevel;IfcPositiveRatioMeasure;IndoorEnvironment;IfcPositiveRatioMeasure;OutdoorEnvironment;IfcPositiveRatioMeasure;InUseConditions;IfcPositiveRatioMeasure;MaintenanceLevel;IfcPositiveRatioMeasure -Pset_ShadingDeviceCommon;Reference;IfcIdentifier;MechanicalOperated;IfcBoolean;SolarTransmittance;IfcPositiveRatioMeasure;SolarReflectance;IfcPositiveRatioMeasure;VisibleLightTransmittance;IfcPositiveRatioMeasure;VisibleLightReflectance;IfcPositiveRatioMeasure;ThermalTransmittance;IfcThermalTransmittanceMeasure;IsExternal;IfcBoolean;Roughness;IfcLabel;SurfaceColor;IfcLabel -Pset_SiteCommon;Reference;IfcIdentifier;BuildableArea;IfcAreaMeasure;SiteCoverageRatio;IfcPositiveRatioMeasure;FloorAreaRatio;IfcPositiveRatioMeasure;BuildingHeightLimit;IfcPositiveLengthMeasure;TotalArea;IfcAreaMeasure -Pset_SlabCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;PitchAngle;IfcPlaneAngleMeasure;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;Compartmentation;IfcBoolean;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean -Pset_SolarDeviceTypeCommon;Reference;IfcIdentifier -Pset_SoundAttenuation;SoundFrequency;IfcFrequencyMeasure -Pset_SoundGeneration;SoundCurve;IfcSoundPowerMeasure -Pset_SpaceCommon;Reference;IfcIdentifier;IsExternal;IfcBoolean;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure;PubliclyAccessible;IfcBoolean;HandicapAccessible;IfcBoolean -Pset_SpaceCoveringRequirements;FloorCovering;IfcLabel;FloorCoveringThickness;IfcPositiveLengthMeasure;WallCovering;IfcLabel;WallCoveringThickness;IfcPositiveLengthMeasure;CeilingCovering;IfcLabel;CeilingCoveringThickness;IfcPositiveLengthMeasure;SkirtingBoard;IfcLabel;SkirtingBoardHeight;IfcPositiveLengthMeasure;Molding;IfcLabel;MoldingHeight;IfcPositiveLengthMeasure;ConcealedFlooring;IfcBoolean;ConcealedFlooringOffset;IfcNonNegativeLengthMeasure;ConcealedCeiling;IfcBoolean;ConcealedCeilingOffset;IfcNonNegativeLengthMeasure -Pset_SpaceFireSafetyRequirements;FireRiskFactor;IfcLabel;FlammableStorage;IfcBoolean;FireExit;IfcBoolean;SprinklerProtection;IfcBoolean;SprinklerProtectionAutomatic;IfcBoolean;AirPressurization;IfcBoolean -Pset_SpaceHeaterTypeCommon;Reference;IfcIdentifier;BodyMass;IfcMassMeasure;ThermalMassHeatCapacity;IfcReal;OutputCapacity;IfcPowerMeasure;ThermalEfficiency;IfcNormalisedRatioMeasure;NumberOfPanels;IfcInteger;NumberOfSections;IfcInteger -Pset_SpaceHeaterTypeRadiator;TubingLength;IfcPositiveLengthMeasure;WaterContent;IfcMassMeasure -Pset_SpaceLightingRequirements;ArtificialLighting;IfcBoolean;Illuminance;IfcIlluminanceMeasure -Pset_SpaceOccupancyRequirements;OccupancyType;IfcLabel;OccupancyNumber;IfcCountMeasure;OccupancyNumberPeak;IfcCountMeasure;OccupancyTimePerDay;IfcTimeMeasure;AreaPerOccupant;IfcAreaMeasure;MinimumHeadroom;IfcLengthMeasure;IsOutlookDesirable;IfcBoolean -Pset_SpaceParking;ParkingUse;IfcLabel;ParkingUnits;IfcCountMeasure;IsAisle;IfcBoolean;IsOneWay;IfcBoolean -Pset_SpaceThermalDesign;CoolingDesignAirflow;IfcVolumetricFlowRateMeasure;HeatingDesignAirflow;IfcVolumetricFlowRateMeasure;TotalSensibleHeatGain;IfcPowerMeasure;TotalHeatGain;IfcPowerMeasure;TotalHeatLoss;IfcPowerMeasure;CoolingDryBulb;IfcThermodynamicTemperatureMeasure;CoolingRelativeHumidity;IfcPositiveRatioMeasure;HeatingDryBulb;IfcThermodynamicTemperatureMeasure;HeatingRelativeHumidity;IfcPositiveRatioMeasure;VentilationAirFlowrate;IfcVolumetricFlowRateMeasure;ExhaustAirFlowrate;IfcVolumetricFlowRateMeasure;CeilingRAPlenum;IfcBoolean;BoundaryAreaHeatLoss;IfcHeatFluxDensityMeasure -Pset_SpaceThermalLoad;People;IfcPowerMeasure;Lighting;IfcPowerMeasure;EquipmentSensible;IfcPowerMeasure;VentilationIndoorAir;IfcPowerMeasure;VentilationOutdoorAir;IfcPowerMeasure;RecirculatedAir;IfcPowerMeasure;ExhaustAir;IfcPowerMeasure;AirExchangeRate;IfcPowerMeasure;DryBulbTemperature;IfcPowerMeasure;RelativeHumidity;IfcPowerMeasure;InfiltrationSensible;IfcPowerMeasure;TotalSensibleLoad;IfcPowerMeasure;TotalLatentLoad;IfcPowerMeasure;TotalRadiantLoad;IfcPowerMeasure -Pset_SpaceThermalRequirements;SpaceTemperature;IfcThermodynamicTemperatureMeasure;SpaceTemperatureMax;IfcThermodynamicTemperatureMeasure;SpaceTemperatureMin;IfcThermodynamicTemperatureMeasure;SpaceTemperatureSummerMax;IfcThermodynamicTemperatureMeasure;SpaceTemperatureSummerMin;IfcThermodynamicTemperatureMeasure;SpaceTemperatureWinterMax;IfcThermodynamicTemperatureMeasure;SpaceTemperatureWinterMin;IfcThermodynamicTemperatureMeasure;SpaceHumidity;IfcRatioMeasure;SpaceHumidityMax;IfcRatioMeasure;SpaceHumidityMin;IfcRatioMeasure;SpaceHumiditySummer;IfcRatioMeasure;SpaceHumidityWinter;IfcRatioMeasure;DiscontinuedHeating;IfcBoolean;NaturalVentilation;IfcBoolean;NaturalVentilationRate;IfcCountMeasure;MechanicalVentilationRate;IfcCountMeasure;AirConditioning;IfcBoolean;AirConditioningCentral;IfcBoolean -Pset_SpatialZoneCommon;Reference;IfcLabel;IsExternal;IfcBoolean -Pset_StackTerminalTypeCommon;Reference;IfcIdentifier -Pset_StairCommon;Reference;IfcIdentifier;NumberOfRiser;IfcCountMeasure;NumberOfTreads;IfcCountMeasure;RiserHeight;IfcPositiveLengthMeasure;TreadLength;IfcPositiveLengthMeasure;NosingLength;IfcLengthMeasure;WalkingLineOffset;IfcPositiveLengthMeasure;TreadLengthAtOffset;IfcPositiveLengthMeasure;TreadLengthAtInnerSide;IfcPositiveLengthMeasure;WaistThickness;IfcPositiveLengthMeasure;RequiredHeadroom;IfcPositiveLengthMeasure;HandicapAccessible;IfcBoolean;HasNonSkidSurface;IfcBoolean;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel;FireExit;IfcBoolean -Pset_StairFlightCommon;Reference;IfcIdentifier;NumberOfRiser;IfcCountMeasure;NumberOfTreads;IfcCountMeasure;RiserHeight;IfcPositiveLengthMeasure;TreadLength;IfcPositiveLengthMeasure;NosingLength;IfcLengthMeasure;WalkingLineOffset;IfcPositiveLengthMeasure;TreadLengthAtOffset;IfcPositiveLengthMeasure;TreadLengthAtInnerSide;IfcPositiveLengthMeasure;Headroom;IfcPositiveLengthMeasure;WaistThickness;IfcPositiveLengthMeasure -Pset_StructuralSurfaceMemberVaryingThickness;Thickness1;IfcPositiveLengthMeasure;Location1Local;IfcLengthMeasure;Location1Global;IfcLengthMeasure;Thickness2;IfcPositiveLengthMeasure;Location2Local;IfcLengthMeasure;Location2Global;IfcLengthMeasure;Thickness3;IfcPositiveLengthMeasure;Location3Local;IfcLengthMeasure;Location3Global;IfcLengthMeasure -Pset_SwitchingDeviceTypeCommon;Reference;IfcIdentifier;NumberOfGangs;IfcInteger;HasLock;IfcBoolean;IsIlluminated;IfcBoolean;Legend;IfcLabel;SetPoint;IfcLabel -Pset_SystemFurnitureElementTypeCommon;IsUsed;IfcBoolean;GroupCode;IfcIdentifier;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;Finishing;IfcLabel -Pset_SystemFurnitureElementTypePanel;HasOpening;IfcBoolean;NominalThickness;IfcPositiveLengthMeasure -Pset_SystemFurnitureElementTypeWorkSurface;UsePurpose;IfcLabel;HangingHeight;IfcPositiveLengthMeasure;NominalThickness;IfcPositiveLengthMeasure;ShapeDescription;IfcLabel -Pset_TankOccurrence;HasLadder;IfcBoolean;HasVisualIndicator;IfcBoolean -Pset_TankTypeCommon;Reference;IfcIdentifier;NominalLengthOrDiameter;IfcPositiveLengthMeasure;NominalWidthOrDiameter;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure;NominalCapacity;IfcVolumeMeasure;EffectiveCapacity;IfcVolumeMeasure;OperatingWeight;IfcMassMeasure;FirstCurvatureRadius;IfcPositiveLengthMeasure;SecondCurvatureRadius;IfcPositiveLengthMeasure;NumberOfSections;IfcInteger -Pset_TankTypeExpansion;ChargePressure;IfcPressureMeasure;PressureRegulatorSetting;IfcPressureMeasure;ReliefValveSetting;IfcPressureMeasure -Pset_TankTypePreformed;FirstCurvatureRadius;IfcPositiveLengthMeasure;SecondCurvatureRadius;IfcPositiveLengthMeasure -Pset_TankTypePressureVessel;ChargePressure;IfcPressureMeasure;PressureRegulatorSetting;IfcPressureMeasure;ReliefValveSetting;IfcPressureMeasure -Pset_TankTypeSectional;NumberOfSections;IfcInteger;SectionLength;IfcPositiveLengthMeasure;SectionWidth;IfcPositiveLengthMeasure -Pset_ThermalLoadAggregate;TotalCoolingLoad;IfcPowerMeasure;TotalHeatingLoad;IfcPowerMeasure;LightingDiversity;IfcPositiveRatioMeasure;InfiltrationDiversitySummer;IfcPositiveRatioMeasure;InfiltrationDiversityWinter;IfcPositiveRatioMeasure;ApplianceDiversity;IfcPositiveRatioMeasure;LoadSafetyFactor;IfcPositiveRatioMeasure -Pset_ThermalLoadDesignCriteria;OccupancyDiversity;IfcPositiveRatioMeasure;OutsideAirPerPerson;IfcVolumetricFlowRateMeasure;ReceptacleLoadIntensity;IfcReal;AppliancePercentLoadToRadiant;IfcPositiveRatioMeasure;LightingLoadIntensity;IfcReal;LightingPercentLoadToReturnAir;IfcPositiveRatioMeasure -Pset_TransformerTypeCommon;Reference;IfcIdentifier;PrimaryVoltage;IfcElectricVoltageMeasure;SecondaryVoltage;IfcElectricVoltageMeasure;PrimaryCurrent;IfcElectricCurrentMeasure;SecondaryCurrent;IfcElectricCurrentMeasure;PrimaryFrequency;IfcFrequencyMeasure;SecondaryFrequency;IfcFrequencyMeasure;PrimaryApparentPower;IfcPowerMeasure;SecondaryApparentPower;IfcPowerMeasure;MaximumApparentPower;IfcPowerMeasure;ShortCircuitVoltage;IfcComplexNumber;RealImpedanceRatio;IfcRatioMeasure;ImaginaryImpedanceRatio;IfcRatioMeasure;IsNeutralPrimaryTerminalAvailable;IfcBoolean;IsNeutralSecondaryTerminalAvailable;IfcBoolean -Pset_TransportElementCommon;Reference;IfcIdentifier;CapacityPeople;IfcCountMeasure;CapacityWeight;IfcMassMeasure;FireExit;IfcBoolean -Pset_TransportElementElevator;FireFightingLift;IfcBoolean;ClearWidth;IfcPositiveLengthMeasure;ClearDepth;IfcPositiveLengthMeasure;ClearHeight;IfcPositiveLengthMeasure -Pset_TubeBundleTypeCommon;Reference;IfcIdentifier;NumberOfRows;IfcInteger;StaggeredRowSpacing;IfcPositiveLengthMeasure;InLineRowSpacing;IfcPositiveLengthMeasure;NumberOfCircuits;IfcInteger;FoulingFactor;IfcThermalResistanceMeasure;ThermalConductivity;IfcThermalConductivityMeasure;Length;IfcPositiveLengthMeasure;Volume;IfcVolumeMeasure;NominalDiameter;IfcPositiveLengthMeasure;OutsideDiameter;IfcPositiveLengthMeasure;InsideDiameter;IfcPositiveLengthMeasure;HorizontalSpacing;IfcPositiveLengthMeasure;VerticalSpacing;IfcPositiveLengthMeasure;HasTurbulator;IfcBoolean -Pset_TubeBundleTypeFinned;Spacing;IfcPositiveLengthMeasure;Thickness;IfcPositiveLengthMeasure;ThermalConductivity;IfcThermalConductivityMeasure;Length;IfcPositiveLengthMeasure;Height;IfcPositiveLengthMeasure;Diameter;IfcPositiveLengthMeasure;FinCorrugatedType;IfcLabel;HasCoating;IfcBoolean -Pset_UnitaryControlElementTypeCommon;Reference;IfcIdentifier;Mode;IfcLabel -Pset_UnitaryControlElementTypeThermostat;TemperatureSetPoint;IfcThermodynamicTemperatureMeasure -Pset_UnitaryEquipmentTypeAirConditioningUnit;SensibleCoolingCapacity;IfcPowerMeasure;LatentCoolingCapacity;IfcPowerMeasure;CoolingEfficiency;IfcPositiveRatioMeasure;HeatingCapacity;IfcPowerMeasure;HeatingEfficiency;IfcPositiveRatioMeasure;CondenserFlowrate;IfcVolumetricFlowRateMeasure;CondenserEnteringTemperature;IfcThermodynamicTemperatureMeasure;CondenserLeavingTemperature;IfcThermodynamicTemperatureMeasure;OutsideAirFlowrate;IfcVolumetricFlowRateMeasure -Pset_UnitaryEquipmentTypeAirHandler;DualDeck;IfcBoolean -Pset_UnitaryEquipmentTypeCommon;Reference;IfcIdentifier -Pset_ValveTypeAirRelease;IsAutomatic;IfcBoolean -Pset_ValveTypeCommon;Reference;IfcIdentifier;Size;IfcPositiveLengthMeasure;TestPressure;IfcPressureMeasure;WorkingPressure;IfcPressureMeasure;FlowCoefficient;IfcReal;CloseOffRating;IfcPressureMeasure -Pset_ValveTypeDrawOffCock;HasHoseUnion;IfcBoolean -Pset_ValveTypeFaucet;Finish;IfcText;FaucetTopDescription;IfcText -Pset_ValveTypeFlushing;FlushingRate;IfcVolumetricFlowRateMeasure;HasIntegralShutOffDevice;IfcBoolean;IsHighPressure;IfcBoolean -Pset_ValveTypeGasTap;HasHoseUnion;IfcBoolean -Pset_ValveTypeIsolating;IsNormallyOpen;IfcBoolean -Pset_ValveTypeMixing;OutletConnectionSize;IfcPositiveLengthMeasure -Pset_ValveTypePressureReducing;UpstreamPressure;IfcPressureMeasure;DownstreamPressure;IfcPressureMeasure -Pset_ValveTypePressureRelief;ReliefPressure;IfcPressureMeasure -Pset_VibrationIsolatorTypeCommon;Reference;IfcIdentifier;VibrationTransmissibility;IfcPositiveRatioMeasure;IsolatorStaticDeflection;IfcLengthMeasure;IsolatorCompressibility;IfcRatioMeasure;MaximumSupportedWeight;IfcMassMeasure;NominalHeight;IfcPositiveLengthMeasure -Pset_WallCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;ThermalTransmittance;IfcThermalTransmittanceMeasure;IsExternal;IfcBoolean;LoadBearing;IfcBoolean;ExtendToStructure;IfcBoolean;Compartmentation;IfcBoolean -Pset_Warranty;WarrantyIdentifier;IfcIdentifier;WarrantyStartDate;IfcDate;WarrantyEndDate;IfcDate;IsExtendedWarranty;IfcBoolean;WarrantyPeriod;IfcDuration;WarrantyContent;IfcText;PointOfContact;IfcLabel;Exclusions;IfcText -Pset_WasteTerminalTypeCommon;Reference;IfcIdentifier -Pset_WasteTerminalTypeFloorTrap;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;IsForSullageWater;IfcBoolean;SpilloverLevel;IfcPositiveLengthMeasure;HasStrainer;IfcBoolean;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure -Pset_WasteTerminalTypeFloorWaste;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure -Pset_WasteTerminalTypeGullySump;NominalSumpLength;IfcPositiveLengthMeasure;NominalSumpWidth;IfcPositiveLengthMeasure;NominalSumpDepth;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure -Pset_WasteTerminalTypeGullyTrap;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;HasStrainer;IfcBoolean;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure -Pset_WasteTerminalTypeRoofDrain;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure -Pset_WasteTerminalTypeWasteDisposalUnit;DrainConnectionSize;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure -Pset_WasteTerminalTypeWasteTrap;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure -Pset_WindowCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;SecurityRating;IfcLabel;IsExternal;IfcBoolean;Infiltration;IfcVolumetricFlowRateMeasure;ThermalTransmittance;IfcThermalTransmittanceMeasure;GlazingAreaFraction;IfcPositiveRatioMeasure;HasSillExternal;IfcBoolean;HasSillInternal;IfcBoolean;HasDrive;IfcBoolean;SmokeStop;IfcBoolean;FireExit;IfcBoolean;WaterTightnessRating;IfcLabel;MechanicalLoadRating;IfcLabel;WindLoadRating;IfcLabel -Pset_WorkControlCommon;WorkStartTime;IfcTime;WorkFinishTime;IfcTime;WorkDayDuration;IfcDuration;WorkWeekDuration;IfcDuration;WorkMonthDuration;IfcDuration -Pset_ZoneCommon;Reference;IfcIdentifier;IsExternal;IfcBoolean;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure;PubliclyAccessible;IfcBoolean;HandicapAccessible;IfcBoolean +Pset_ActionRequest;RequestSourceLabel;IfcLabel;RequestComments;IfcText +Pset_ActorCommon;NumberOfActors;IfcCountMeasure;Category;IfcLabel;SkillLevel;IfcLabel +Pset_ActuatorTypeCommon;Reference;IfcIdentifier;ManualOverride;IfcBoolean +Pset_ActuatorTypeElectricActuator;ActuatorInputPower;IfcPowerMeasure +Pset_ActuatorTypeHydraulicActuator;InputPressure;IfcPressureMeasure;InputFlowrate;IfcVolumetricFlowRateMeasure +Pset_ActuatorTypeLinearActuation;Force;IfcForceMeasure;Stroke;IfcLengthMeasure +Pset_ActuatorTypePneumaticActuator;InputPressure;IfcPressureMeasure;InputFlowrate;IfcVolumetricFlowRateMeasure +Pset_ActuatorTypeRotationalActuation;Torque;IfcTorqueMeasure;RangeAngle;IfcPlaneAngleMeasure +Pset_AirSideSystemInformation;Name;IfcLabel;Description;IfcLabel;TotalAirflow;IfcVolumetricFlowRateMeasure;EnergyGainTotal;IfcPowerMeasure;AirflowSensible;IfcVolumetricFlowRateMeasure;EnergyGainSensible;IfcPowerMeasure;EnergyLoss;IfcPowerMeasure;LightingDiversity;IfcPositiveRatioMeasure;InfiltrationDiversitySummer;IfcPositiveRatioMeasure;InfiltrationDiversityWinter;IfcPositiveRatioMeasure;ApplianceDiversity;IfcPositiveRatioMeasure;LoadSafetyFactor;IfcPositiveRatioMeasure;HeatingTemperatureDelta;IfcThermodynamicTemperatureMeasure;CoolingTemperatureDelta;IfcThermodynamicTemperatureMeasure;Ventilation;IfcVolumetricFlowRateMeasure;FanPower;IfcPowerMeasure +Pset_AirTerminalBoxTypeCommon;Reference;IfcIdentifier;AirflowRateRange;IfcVolumetricFlowRateMeasure;AirPressureRange;IfcPressureMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;HasSoundAttenuator;IfcBoolean;HasReturnAir;IfcBoolean;HasFan;IfcBoolean;NominalInletAirPressure;IfcPressureMeasure;NominalDamperDiameter;IfcPositiveLengthMeasure;HousingThickness;IfcLengthMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;ReturnAirFractionRange;IfcPositiveRatioMeasure +Pset_AirTerminalOccurrence;AirFlowRate;IfcVolumetricFlowRateMeasure +Pset_AirTerminalPHistory;InductionRatio;IfcLengthMeasure;CenterlineAirVelocity;IfcLengthMeasure +Pset_AirTerminalTypeCommon;Reference;IfcIdentifier;SlotWidth;IfcPositiveLengthMeasure;SlotLength;IfcPositiveLengthMeasure;NumberOfSlots;IfcInteger;AirFlowrateRange;IfcVolumetricFlowRateMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;ThrowLength;IfcLengthMeasure;AirDiffusionPerformanceIndex;IfcReal;FinishColor;IfcLabel;CoreSetHorizontal;IfcPlaneAngleMeasure;CoreSetVertical;IfcPlaneAngleMeasure;HasIntegralControl;IfcBoolean;HasSoundAttenuator;IfcBoolean;HasThermalInsulation;IfcBoolean;NeckArea;IfcAreaMeasure;EffectiveArea;IfcAreaMeasure;AirFlowrateVersusFlowControlElement;IfcPositiveRatioMeasure +Pset_AirToAirHeatRecoveryTypeCommon;Reference;IfcIdentifier;HasDefrost;IfcBoolean;OperationalTemperatureRange;IfcThermodynamicTemperatureMeasure;PrimaryAirflowRateRange;IfcVolumetricFlowRateMeasure;SecondaryAirflowRateRange;IfcPressureMeasure +Pset_AlarmTypeCommon;Reference;IfcIdentifier;Condition;IfcLabel +Pset_AnnotationContourLine;ContourValue;IfcLengthMeasure +Pset_AnnotationLineOfSight;SetbackDistance;IfcPositiveLengthMeasure;VisibleAngleLeft;IfcPositivePlaneAngleMeasure;VisibleAngleRight;IfcPositivePlaneAngleMeasure;RoadVisibleDistanceLeft;IfcPositiveLengthMeasure;RoadVisibleDistanceRight;IfcPositiveLengthMeasure +Pset_AnnotationSurveyArea;AccuracyQualityObtained;IfcRatioMeasure;AccuracyQualityExpected;IfcRatioMeasure +Pset_AudioVisualApplianceTypeAmplifier;AudioAmplification;IfcSoundPowerMeasure;AudioMode;IfcLabel +Pset_AudioVisualApplianceTypeCamera;IsOutdoors;IfcBoolean;VideoResolutionWidth;IfcInteger;VideoResolutionHeight;IfcInteger;VideoResolutionMode;IfcLabel;VideoCaptureInterval;IfcTimeMeasure;PanTiltZoomPreset;IfcLabel;PanHorizontal;IfcLengthMeasure;PanVertical;IfcLengthMeasure;TiltHorizontal;IfcPlaneAngleMeasure;TiltVertical;IfcPlaneAngleMeasure;Zoom;IfcPositiveLengthMeasure +Pset_AudioVisualApplianceTypeCommon;Reference;IfcIdentifier;MediaSource;IfcLabel;AudioVolume;IfcSoundPowerMeasure +Pset_AudioVisualApplianceTypeDisplay;NominalSize;IfcPositiveLengthMeasure;DisplayWidth;IfcPositiveLengthMeasure;DisplayHeight;IfcPositiveLengthMeasure;Brightness;IfcIlluminanceMeasure;ContrastRatio;IfcPositiveRatioMeasure;RefreshRate;IfcFrequencyMeasure;VideoResolutionWidth;IfcInteger;VideoResolutionHeight;IfcInteger;VideoResolutionMode;IfcLabel;VideoScaleMode;IfcLabel;VideoCaptionMode;IfcLabel;AudioMode;IfcLabel +Pset_AudioVisualApplianceTypePlayer;PlayerMediaEject;IfcBoolean;PlayerMediaFormat;IfcLabel +Pset_AudioVisualApplianceTypeProjector;VideoResolutionWidth;IfcInteger;VideoResolutionHeight;IfcInteger;VideoResolutionMode;IfcLabel;VideoScaleMode;IfcLabel;VideoCaptionMode;IfcLabel +Pset_AudioVisualApplianceTypeReceiver;AudioAmplification;IfcRatioMeasure;AudioMode;IfcLabel +Pset_AudioVisualApplianceTypeSpeaker;SpeakerDriverSize;IfcPositiveLengthMeasure;FrequencyResponse;IfcSoundPowerMeasure;Impedence;IfcFrequencyMeasure +Pset_AudioVisualApplianceTypeTuner;TunerMode;IfcLabel;TunerChannel;IfcLabel;TunerFrequency;IfcFrequencyMeasure +Pset_BeamCommon;Reference;IfcIdentifier;Span;IfcPositiveLengthMeasure;Slope;IfcPlaneAngleMeasure;Roll;IfcPlaneAngleMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_BoilerTypeCommon;Reference;IfcIdentifier;PressureRating;IfcPressureMeasure;HeatTransferSurfaceArea;IfcAreaMeasure;NominalPartLoadRatio;IfcReal;WaterInletTemperatureRange;IfcThermodynamicTemperatureMeasure;WaterStorageCapacity;IfcVolumeMeasure;IsWaterStorageHeater;IfcBoolean;PartialLoadEfficiencyCurves;IfcNormalisedRatioMeasure;OutletTemperatureRange;IfcThermodynamicTemperatureMeasure;NominalEnergyConsumption;IfcPowerMeasure +Pset_BoilerTypeSteam;MaximumOutletPressure;IfcLabel;NominalEfficiency;IfcNormalisedRatioMeasure;HeatOutput;IfcEnergyMeasure +Pset_BoilerTypeWater;NominalEfficiency;IfcNormalisedRatioMeasure;HeatOutput;IfcEnergyMeasure +Pset_BuildingCommon;Reference;IfcIdentifier;BuildingID;IfcIdentifier;IsPermanentID;IfcBoolean;ConstructionMethod;IfcLabel;FireProtectionClass;IfcLabel;SprinklerProtection;IfcBoolean;SprinklerProtectionAutomatic;IfcBoolean;OccupancyType;IfcLabel;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure;NumberOfStoreys;IfcInteger;YearOfConstruction;IfcLabel;YearOfLastRefurbishment;IfcLabel;IsLandmarked;IfcLogical +Pset_BuildingElementProxyCommon;Reference;IfcIdentifier;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_BuildingElementProxyProvisionForVoid;Shape;IfcLabel;Width;IfcPositiveLengthMeasure;Height;IfcPositiveLengthMeasure;Diameter;IfcPositiveLengthMeasure;Depth;IfcPositiveLengthMeasure;System;IfcLabel +Pset_BuildingStoreyCommon;Reference;IfcIdentifier;EntranceLevel;IfcBoolean;AboveGround;IfcLogical;SprinklerProtection;IfcBoolean;SprinklerProtectionAutomatic;IfcBoolean;LoadBearingCapacity;IfcPlanarForceMeasure;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure +Pset_BuildingSystemCommon;Reference;IfcIdentifier +Pset_BuildingUse;MarketCategory;IfcLabel;MarketSubCategory;IfcLabel;PlanningControlStatus;IfcLabel;NarrativeText;IfcText;VacancyRateInCategoryNow;IfcPositiveRatioMeasure;TenureModesAvailableNow;IfcLabel;MarketSubCategoriesAvailableNow;IfcLabel;RentalRatesInCategoryNow;IfcMonetaryMeasure;VacancyRateInCategoryFuture;IfcPositiveRatioMeasure;TenureModesAvailableFuture;IfcLabel;MarketSubCategoriesAvailableFuture;IfcLabel;RentalRatesInCategoryFuture;IfcMonetaryMeasure +Pset_BuildingUseAdjacent;MarketCategory;IfcLabel;MarketSubCategory;IfcLabel;PlanningControlStatus;IfcLabel;NarrativeText;IfcText +Pset_BurnerTypeCommon;Reference;IfcIdentifier +Pset_CableCarrierFittingTypeCommon;Reference;IfcIdentifier +Pset_CableCarrierSegmentTypeCableLadderSegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;LadderConfiguration;IfcText +Pset_CableCarrierSegmentTypeCableTraySegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;HasCover;IfcBoolean +Pset_CableCarrierSegmentTypeCableTrunkingSegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;NumberOfCompartments;IfcInteger +Pset_CableCarrierSegmentTypeCommon;Reference;IfcIdentifier +Pset_CableCarrierSegmentTypeConduitSegment;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;IsRigid;IfcBoolean +Pset_CableFittingTypeCommon;Reference;IfcIdentifier +Pset_CableSegmentOccurrence;DesignAmbientTemperature;IfcThermodynamicTemperatureMeasure;UserCorrectionFactor;IfcReal;NumberOfParallelCircuits;IfcInteger;InstallationMethod;IfcLabel;DistanceBetweenParallelCircuits;IfcLengthMeasure;SoilConductivity;IfcThermalConductivityMeasure;CarrierStackNumber;IfcInteger;IsHorizontalCable;IfcBoolean;IsMountedFlatCable;IfcBoolean;CurrentCarryingCapasity;IfcElectricCurrentMeasure;MaximumCableLength;IfcLengthMeasure;PowerLoss;IfcElectricCurrentMeasure +Pset_CableSegmentTypeBusBarSegment;IsHorizontalBusbar;IfcBoolean +Pset_CableSegmentTypeCableSegment;Standard;IfcLabel;NumberOfCores;IfcInteger;OverallDiameter;IfcPositiveLengthMeasure;RatedVoltage;IfcElectricVoltageMeasure;RatedTemperature;IfcThermodynamicTemperatureMeasure;ScreenDiameter;IfcPositiveLengthMeasure;HasProtectiveEarth;IfcBoolean;MaximumOperatingTemperature;IfcThermodynamicTemperatureMeasure;MaximumShortCircuitTemperature;IfcThermodynamicTemperatureMeasure;SpecialConstruction;IfcLabel;Weight;IfcMassMeasure;SelfExtinguishing60332_1;IfcBoolean;SelfExtinguishing60332_3;IfcBoolean;HalogenProof;IfcBoolean;FunctionReliable;IfcBoolean +Pset_CableSegmentTypeCommon;Reference;IfcIdentifier +Pset_CableSegmentTypeConductorSegment;CrossSectionalArea;IfcAreaMeasure +Pset_CableSegmentTypeCoreSegment;OverallDiameter;IfcPositiveLengthMeasure;RatedVoltage;IfcElectricVoltageMeasure;RatedTemperature;IfcThermodynamicTemperatureMeasure;ScreenDiameter;IfcPositiveLengthMeasure;CoreIdentifier;IfcIdentifier;Weight;IfcMassMeasure;SelfExtinguishing60332_1;IfcBoolean;SelfExtinguishing60332_3;IfcBoolean;HalogenProof;IfcBoolean;FunctionReliable;IfcBoolean;Standard;IfcLabel +Pset_ChillerTypeCommon;Reference;IfcIdentifier;NominalCapacity;IfcPowerMeasure;NominalEfficiency;IfcPositiveRatioMeasure;NominalCondensingTemperature;IfcThermodynamicTemperatureMeasure;NominalEvaporatingTemperature;IfcThermodynamicTemperatureMeasure;NominalHeatRejectionRate;IfcPowerMeasure;NominalPowerConsumption;IfcPowerMeasure;CapacityCurve;IfcPowerMeasure;CoefficientOfPerformanceCurve;IfcReal;FullLoadRatioCurve;IfcNormalisedRatioMeasure +Pset_ChimneyCommon;Reference;IfcIdentifier;NumberOfDrafts;IfcCountMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_CivilElementCommon;Reference;IfcIdentifier +Pset_CoilOccurrence;HasSoundAttenuation;IfcBoolean +Pset_CoilTypeCommon;Reference;IfcIdentifier;OperationalTemperatureRange;IfcThermodynamicTemperatureMeasure;AirflowRateRange;IfcVolumetricFlowRateMeasure;NominalSensibleCapacity;IfcPowerMeasure;NominalLatentCapacity;IfcPowerMeasure;NominalUA;IfcReal +Pset_CoilTypeHydronic;FluidPressureRange;IfcPressureMeasure;CoilFaceArea;IfcAreaMeasure;HeatExchangeSurfaceArea;IfcAreaMeasure;PrimarySurfaceArea;IfcAreaMeasure;SecondarySurfaceArea;IfcAreaMeasure;TotalUACurves;IfcVolumetricFlowRateMeasure;WaterPressureDropCurve;IfcPressureMeasure;BypassFactor;IfcNormalisedRatioMeasure;SensibleHeatRatio;IfcNormalisedRatioMeasure;WetCoilFraction;IfcNormalisedRatioMeasure +Pset_ColumnCommon;Reference;IfcIdentifier;Slope;IfcPlaneAngleMeasure;Roll;IfcPlaneAngleMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_CommunicationsApplianceTypeCommon;Reference;IfcIdentifier +Pset_CompressorTypeCommon;Reference;IfcIdentifier;MinimumPartLoadRatio;IfcPositiveRatioMeasure;MaximumPartLoadRatio;IfcPositiveRatioMeasure;CompressorSpeed;IfcRotationalFrequencyMeasure;NominalCapacity;IfcPowerMeasure;IdealCapacity;IfcPowerMeasure;IdealShaftPower;IfcPowerMeasure;HasHotGasBypass;IfcBoolean;ImpellerDiameter;IfcPositiveLengthMeasure +Pset_ConcreteElementGeneral;ConstructionMethod;IfcLabel;StructuralClass;IfcLabel;StrengthClass;IfcLabel;ExposureClass;IfcLabel;ReinforcementVolumeRatio;IfcMassDensityMeasure;ReinforcementAreaRatio;IfcAreaDensityMeasure;DimensionalAccuracyClass;IfcLabel;ConstructionToleranceClass;IfcLabel;ConcreteCover;IfcPositiveLengthMeasure;ConcreteCoverAtMainBars;IfcPositiveLengthMeasure;ConcreteCoverAtLinks;IfcPositiveLengthMeasure;ReinforcementStrengthClass;IfcLabel +Pset_CondenserTypeCommon;Reference;IfcIdentifier;ExternalSurfaceArea;IfcAreaMeasure;InternalSurfaceArea;IfcAreaMeasure;InternalRefrigerantVolume;IfcVolumeMeasure;InternalWaterVolume;IfcVolumeMeasure;NominalHeatTransferArea;IfcAreaMeasure;NominalHeatTransferCoefficient;IfcThermalTransmittanceMeasure +Pset_Condition;AssessmentDate;IfcDate;AssessmentCondition;IfcLabel;AssessmentDescription;IfcText +Pset_ControllerTypeCommon;Reference;IfcIdentifier +Pset_ControllerTypeFloating;Labels;IfcLabel;Range;IfcReal;Value;IfcReal;SignalOffset;IfcReal;SignalFactor;IfcReal;SignalTime;IfcTimeMeasure +Pset_ControllerTypeMultiPosition;Labels;IfcLabel;Range;IfcInteger;Value;IfcInteger +Pset_ControllerTypeProgrammable;FirmwareVersion;IfcLabel;SoftwareVersion;IfcLabel +Pset_ControllerTypeProportional;Labels;IfcLabel;Range;IfcReal;Value;IfcReal;ProportionalConstant;IfcReal;IntegralConstant;IfcReal;DerivativeConstant;IfcReal;SignalTimeIncrease;IfcTimeMeasure;SignalTimeDecrease;IfcTimeMeasure +Pset_ControllerTypeTwoPosition;Labels;IfcLabel;Polarity;IfcBoolean;Value;IfcBoolean +Pset_CooledBeamTypeActive;AirflowRateRange;IfcVolumetricFlowRateMeasure;ConnectionSize;IfcLengthMeasure +Pset_CooledBeamTypeCommon;Reference;IfcIdentifier;IsFreeHanging;IfcBoolean;WaterPressureRange;IfcPressureMeasure;NominalCoolingCapacity;IfcPowerMeasure;NominalSurroundingTemperatureCooling;IfcThermodynamicTemperatureMeasure;NominalSurroundingHumidityCooling;IfcNormalisedRatioMeasure;NominalSupplyWaterTemperatureCooling;IfcThermodynamicTemperatureMeasure;NominalReturnWaterTemperatureCooling;IfcThermodynamicTemperatureMeasure;NominalWaterFlowCooling;IfcVolumetricFlowRateMeasure;NominalHeatingCapacity;IfcPowerMeasure;NominalSurroundingTemperatureHeating;IfcThermodynamicTemperatureMeasure;NominalSupplyWaterTemperatureHeating;IfcThermodynamicTemperatureMeasure;NominalReturnWaterTemperatureHeating;IfcThermodynamicTemperatureMeasure;NominalWaterFlowHeating;IfcVolumetricFlowRateMeasure;FinishColor;IfcLabel;CoilLength;IfcPositiveLengthMeasure;CoilWidth;IfcPositiveLengthMeasure +Pset_CoolingTowerTypeCommon;Reference;IfcIdentifier;NominalCapacity;IfcPowerMeasure;NumberOfCells;IfcInteger;BasinReserveVolume;IfcVolumeMeasure;LiftElevationDifference;IfcPositiveLengthMeasure;WaterRequirement;IfcVolumetricFlowRateMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;AmbientDesignDryBulbTemperature;IfcThermodynamicTemperatureMeasure;AmbientDesignWetBulbTemperature;IfcThermodynamicTemperatureMeasure +Pset_CoveringCeiling;Permeability;IfcNormalisedRatioMeasure;TileLength;IfcPositiveLengthMeasure;TileWidth;IfcPositiveLengthMeasure +Pset_CoveringCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FlammabilityRating;IfcLabel;FragilityRating;IfcLabel;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;Finish;IfcText;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;FireRating;IfcLabel +Pset_CoveringFlooring;HasNonSkidSurface;IfcBoolean;HasAntiStaticSurface;IfcBoolean +Pset_CurtainWallCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;ThermalTransmittance;IfcThermalTransmittanceMeasure;IsExternal;IfcBoolean +Pset_DamperTypeCommon;Reference;IfcIdentifier;BladeThickness;IfcPositiveLengthMeasure;NumberofBlades;IfcInteger;FaceArea;IfcAreaMeasure;MaximumAirFlowRate;IfcVolumetricFlowRateMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;MaximumWorkingPressure;IfcPressureMeasure;TemperatureRating;IfcThermodynamicTemperatureMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;OpenPressureDrop;IfcPressureMeasure;LeakageFullyClosed;IfcVolumetricFlowRateMeasure;LossCoefficentCurve;IfcReal;LeakageCurve;IfcPressureMeasure;RegeneratedSoundCurve;IfcSoundPressureMeasure;FrameType;IfcLabel;FrameDepth;IfcPositiveLengthMeasure;FrameThickness;IfcPositiveLengthMeasure;CloseOffRating;IfcPressureMeasure +Pset_DamperTypeControlDamper;TorqueRange;IfcTorqueMeasure +Pset_DamperTypeFireDamper;FireResistanceRating;IfcLabel;FusibleLinkTemperature;IfcThermodynamicTemperatureMeasure +Pset_DamperTypeFireSmokeDamper;ControlType;IfcLabel;FireResistanceRating;IfcLabel;FusibleLinkTemperature;IfcThermodynamicTemperatureMeasure +Pset_DamperTypeSmokeDamper;ControlType;IfcLabel +Pset_DiscreteAccessoryColumnShoe;ColumnShoeBasePlateThickness;IfcPositiveLengthMeasure;ColumnShoeBasePlateWidth;IfcPositiveLengthMeasure;ColumnShoeBasePlateDepth;IfcPositiveLengthMeasure;ColumnShoeCasingHeight;IfcPositiveLengthMeasure;ColumnShoeCasingWidth;IfcPositiveLengthMeasure;ColumnShoeCasingDepth;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryCornerFixingPlate;CornerFixingPlateLength;IfcPositiveLengthMeasure;CornerFixingPlateThickness;IfcPositiveLengthMeasure;CornerFixingPlateFlangeWidthInPlaneZ;IfcPositiveLengthMeasure;CornerFixingPlateFlangeWidthInPlaneX;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryDiagonalTrussConnector;DiagonalTrussHeight;IfcPositiveLengthMeasure;DiagonalTrussLength;IfcPositiveLengthMeasure;DiagonalTrussCrossBarSpacing;IfcPositiveLengthMeasure;DiagonalTrussBaseBarDiameter;IfcPositiveLengthMeasure;DiagonalTrussSecondaryBarDiameter;IfcPositiveLengthMeasure;DiagonalTrussCrossBarDiameter;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryEdgeFixingPlate;EdgeFixingPlateLength;IfcPositiveLengthMeasure;EdgeFixingPlateThickness;IfcPositiveLengthMeasure;EdgeFixingPlateFlangeWidthInPlaneZ;IfcPositiveLengthMeasure;EdgeFixingPlateFlangeWidthInPlaneX;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryFixingSocket;FixingSocketHeight;IfcPositiveLengthMeasure;FixingSocketThreadDiameter;IfcPositiveLengthMeasure;FixingSocketThreadLength;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryLadderTrussConnector;LadderTrussHeight;IfcPositiveLengthMeasure;LadderTrussLength;IfcPositiveLengthMeasure;LadderTrussCrossBarSpacing;IfcPositiveLengthMeasure;LadderTrussBaseBarDiameter;IfcPositiveLengthMeasure;LadderTrussSecondaryBarDiameter;IfcPositiveLengthMeasure;LadderTrussCrossBarDiameter;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryStandardFixingPlate;StandardFixingPlateWidth;IfcPositiveLengthMeasure;StandardFixingPlateDepth;IfcPositiveLengthMeasure;StandardFixingPlateThickness;IfcPositiveLengthMeasure +Pset_DiscreteAccessoryWireLoop;WireLoopBasePlateThickness;IfcPositiveLengthMeasure;WireLoopBasePlateWidth;IfcPositiveLengthMeasure;WireLoopBasePlateLength;IfcPositiveLengthMeasure;WireDiameter;IfcPositiveLengthMeasure;WireEmbeddingLength;IfcPositiveLengthMeasure;WireLoopLength;IfcPositiveLengthMeasure +Pset_DistributionChamberElementCommon;Reference;IfcIdentifier +Pset_DistributionChamberElementTypeFormedDuct;ClearWidth;IfcPositiveLengthMeasure;ClearDepth;IfcPositiveLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure;AccessCoverLoadRating;IfcText +Pset_DistributionChamberElementTypeInspectionChamber;ChamberLengthOrRadius;IfcPositiveLengthMeasure;ChamberWidth;IfcPositiveLengthMeasure;InvertLevel;IfcLengthMeasure;SoffitLevel;IfcLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure;WithBackdrop;IfcBoolean;AccessLengthOrRadius;IfcPositiveLengthMeasure;AccessWidth;IfcPositiveLengthMeasure;AccessCoverLoadRating;IfcText +Pset_DistributionChamberElementTypeInspectionPit;Length;IfcPositiveLengthMeasure;Width;IfcPositiveLengthMeasure;Depth;IfcPositiveLengthMeasure +Pset_DistributionChamberElementTypeManhole;InvertLevel;IfcLengthMeasure;SoffitLevel;IfcLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure;IsShallow;IfcBoolean;HasSteps;IfcBoolean;WithBackdrop;IfcBoolean;AccessLengthOrRadius;IfcPositiveLengthMeasure;AccessWidth;IfcPositiveLengthMeasure;AccessCoverLoadRating;IfcText +Pset_DistributionChamberElementTypeMeterChamber;ChamberLengthOrRadius;IfcPositiveLengthMeasure;ChamberWidth;IfcPositiveLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure +Pset_DistributionChamberElementTypeSump;Length;IfcPositiveLengthMeasure;Width;IfcPositiveLengthMeasure;InvertLevel;IfcPositiveLengthMeasure +Pset_DistributionChamberElementTypeTrench;Width;IfcPositiveLengthMeasure;Depth;IfcPositiveLengthMeasure;InvertLevel;IfcLengthMeasure +Pset_DistributionChamberElementTypeValveChamber;ChamberLengthOrRadius;IfcPositiveLengthMeasure;ChamberWidth;IfcPositiveLengthMeasure;WallThickness;IfcPositiveLengthMeasure;BaseThickness;IfcPositiveLengthMeasure +Pset_DistributionPortCommon;PortNumber;IfcInteger;ColorCode;IfcLabel +Pset_DistributionPortTypeCable;ConnectionSubtype;IfcLabel;CurrentContent3rdHarmonic;IfcPositiveRatioMeasure;Current;IfcElectricCurrentMeasure;Voltage;IfcElectricVoltageMeasure;Power;IfcPowerMeasure;Protocols;IfcIdentifier +Pset_DistributionPortTypeDuct;ConnectionSubType;IfcLabel;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;NominalThickness;IfcPositiveLengthMeasure;DryBulbTemperature;IfcThermodynamicTemperatureMeasure;WetBulbTemperature;IfcThermodynamicTemperatureMeasure;VolumetricFlowRate;IfcVolumetricFlowRateMeasure;Velocity;IfcLinearVelocityMeasure;Pressure;IfcPressureMeasure +Pset_DistributionPortTypePipe;ConnectionSubType;IfcLabel;NominalDiameter;IfcPositiveLengthMeasure;InnerDiameter;IfcPositiveLengthMeasure;OuterDiameter;IfcPositiveLengthMeasure;Temperature;IfcThermodynamicTemperatureMeasure;VolumetricFlowRate;IfcVolumetricFlowRateMeasure;MassFlowRate;IfcMassFlowRateMeasure;FlowCondition;IfcPositiveRatioMeasure;Velocity;IfcLinearVelocityMeasure;Pressure;IfcPressureMeasure +Pset_DistributionSystemCommon;Reference;IfcIdentifier +Pset_DistributionSystemTypeElectrical;Diversity;IfcPositiveRatioMeasure;NumberOfLiveConductors;IfcInteger;MaximumAllowedVoltageDrop;IfcElectricVoltageMeasure;NetImpedance;IfcElectricResistanceMeasure +Pset_DistributionSystemTypeVentilation;DesignName;IfcLabel;PressureClass;IfcPressureMeasure;LeakageClass;IfcPressureMeasure;FrictionLoss;IfcReal;ScrapFactor;IfcReal;MaximumVelocity;IfcLinearVelocityMeasure;AspectRatio;IfcReal;MinimumHeight;IfcPositiveLengthMeasure;MinimumWidth;IfcPositiveLengthMeasure +Pset_DoorCommon;Reference;IfcIdentifier;FireRating;IfcLabel;AcousticRating;IfcLabel;SecurityRating;IfcLabel;DurabilityRating;IfcLabel;HygrothermalRating;IfcLabel;WaterTightnessRating;IfcLabel;MechanicalLoadRating;IfcLabel;WindLoadRating;IfcLabel;Infiltration;IfcVolumetricFlowRateMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;GlazingAreaFraction;IfcPositiveRatioMeasure;HandicapAccessible;IfcBoolean;FireExit;IfcBoolean;HasDrive;IfcBoolean;SelfClosing;IfcBoolean;SmokeStop;IfcBoolean +Pset_DoorWindowGlazingType;GlassLayers;IfcCountMeasure;GlassThickness1;IfcPositiveLengthMeasure;GlassThickness2;IfcPositiveLengthMeasure;GlassThickness3;IfcPositiveLengthMeasure;FillGas;IfcLabel;GlassColor;IfcLabel;IsTempered;IfcBoolean;IsLaminated;IfcBoolean;IsCoated;IfcBoolean;IsWired;IfcBoolean;VisibleLightReflectance;IfcNormalisedRatioMeasure;VisibleLightTransmittance;IfcNormalisedRatioMeasure;SolarAbsorption;IfcNormalisedRatioMeasure;SolarReflectance;IfcNormalisedRatioMeasure;SolarTransmittance;IfcNormalisedRatioMeasure;SolarHeatGainTransmittance;IfcNormalisedRatioMeasure;ShadingCoefficient;IfcNormalisedRatioMeasure;ThermalTransmittanceSummer;IfcThermalTransmittanceMeasure;ThermalTransmittanceWinter;IfcThermalTransmittanceMeasure +Pset_DuctFittingOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;HasLiner;IfcBoolean;Color;IfcLabel +Pset_DuctFittingTypeCommon;Reference;IfcIdentifier;PressureClass;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure +Pset_DuctSegmentOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;HasLiner;IfcBoolean;Color;IfcLabel +Pset_DuctSegmentTypeCommon;Reference;IfcIdentifier;WorkingPressure;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;LongitudinalSeam;IfcText;NominalDiameterOrWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;Reinforcement;IfcLabel;ReinforcementSpacing;IfcPositiveLengthMeasure +Pset_DuctSilencerTypeCommon;Reference;IfcIdentifier;HydraulicDiameter;IfcLengthMeasure;Length;IfcLengthMeasure;Weight;IfcMassMeasure;AirFlowrateRange;IfcVolumetricFlowRateMeasure;WorkingPressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;HasExteriorInsulation;IfcBoolean +Pset_ElectricalDeviceCommon;RatedCurrent;IfcElectricCurrentMeasure;RatedVoltage;IfcElectricVoltageMeasure;NominalFrequencyRange;IfcFrequencyMeasure;PowerFactor;IfcNormalisedRatioMeasure;NumberOfPoles;IfcInteger;HasProtectiveEarth;IfcBoolean;IP_Code;IfcLabel;IK_Code;IfcLabel +Pset_ElectricApplianceTypeCommon;Reference;IfcIdentifier +Pset_ElectricDistributionBoardOccurrence;IsMain;IfcBoolean;IsSkilledOperator;IfcBoolean +Pset_ElectricDistributionBoardTypeCommon;Reference;IfcIdentifier +Pset_ElectricFlowStorageDeviceTypeCommon;Reference;IfcIdentifier;NominalSupplyVoltage;IfcElectricVoltageMeasure;NominalSupplyVoltageOffset;IfcElectricVoltageMeasure;NominalFrequency;IfcFrequencyMeasure;ShortCircuit3PoleMaximumState;IfcElectricCurrentMeasure;ShortCircuit3PolePowerFactorMaximumState;IfcReal;ShortCircuit2PoleMinimumState;IfcElectricCurrentMeasure;ShortCircuit2PolePowerFactorMinimumState;IfcReal;ShortCircuit1PoleMaximumState;IfcElectricCurrentMeasure;ShortCircuit1PolePowerFactorMaximumState;IfcReal;ShortCircuit1PoleMinimumState;IfcElectricCurrentMeasure;ShortCircuit1PolePowerFactorMinimumState;IfcReal;EarthFault1PoleMaximumState;IfcElectricCurrentMeasure;EarthFault1PolePowerFactorMaximumState;IfcReal;EarthFault1PoleMinimumState;IfcElectricCurrentMeasure;EarthFault1PolePowerFactorMinimumState;IfcReal +Pset_ElectricGeneratorTypeCommon;Reference;IfcIdentifier;ElectricGeneratorEfficiency;IfcPositiveRatioMeasure;StartCurrentFactor;IfcReal;MaximumPowerOutput;IfcPowerMeasure +Pset_ElectricMotorTypeCommon;Reference;IfcIdentifier;MaximumPowerOutput;IfcPowerMeasure;ElectricMotorEfficiency;IfcPositiveRatioMeasure;StartCurrentFactor;IfcReal;StartingTime;IfcTimeMeasure;TeTime;IfcTimeMeasure;LockedRotorCurrent;IfcElectricCurrentMeasure;FrameSize;IfcLabel;IsGuarded;IfcBoolean;HasPartWinding;IfcBoolean +Pset_ElectricTimeControlTypeCommon;Reference;IfcIdentifier +Pset_ElementAssemblyCommon;Reference;IfcLabel +Pset_ElementComponentCommon;Reference;IfcIdentifier +Pset_EngineTypeCommon;Reference;IfcIdentifier +Pset_EnvironmentalImpactIndicators;Reference;IfcIdentifier;FunctionalUnitReference;IfcLabel;Unit;IfcText;ExpectedServiceLife;IfcTimeMeasure;TotalPrimaryEnergyConsumptionPerUnit;IfcEnergyMeasure;WaterConsumptionPerUnit;IfcVolumeMeasure;HazardousWastePerUnit;IfcMassMeasure;NonHazardousWastePerUnit;IfcMassMeasure;ClimateChangePerUnit;IfcMassMeasure;AtmosphericAcidificationPerUnit;IfcMassMeasure;RenewableEnergyConsumptionPerUnit;IfcEnergyMeasure;NonRenewableEnergyConsumptionPerUnit;IfcEnergyMeasure;ResourceDepletionPerUnit;IfcMassMeasure;InertWastePerUnit;IfcMassMeasure;RadioactiveWastePerUnit;IfcMassMeasure;StratosphericOzoneLayerDestructionPerUnit;IfcMassMeasure;PhotochemicalOzoneFormationPerUnit;IfcMassMeasure;EutrophicationPerUnit;IfcMassMeasure +Pset_EnvironmentalImpactValues;TotalPrimaryEnergyConsumption;IfcEnergyMeasure;WaterConsumption;IfcVolumeMeasure;HazardousWaste;IfcMassMeasure;NonHazardousWaste;IfcMassMeasure;ClimateChange;IfcMassMeasure;AtmosphericAcidification;IfcMassMeasure;RenewableEnergyConsumption;IfcEnergyMeasure;NonRenewableEnergyConsumption;IfcEnergyMeasure;ResourceDepletion;IfcMassMeasure;InertWaste;IfcMassMeasure;RadioactiveWaste;IfcMassMeasure;StratosphericOzoneLayerDestruction;IfcMassMeasure;PhotochemicalOzoneFormation;IfcMassMeasure;Eutrophication;IfcMassMeasure;LeadInTime;IfcDuration;Duration;IfcDuration;LeadOutTime;IfcDuration +Pset_EvaporativeCoolerTypeCommon;Reference;IfcIdentifier;HeatExchangeArea;IfcAreaMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;WaterRequirement;IfcVolumetricFlowRateMeasure;EffectivenessTable;IfcReal;AirPressureDropCurve;IfcPressureMeasure;WaterPressDropCurve;IfcPressureMeasure +Pset_EvaporatorTypeCommon;Reference;IfcIdentifier;ExternalSurfaceArea;IfcAreaMeasure;InternalSurfaceArea;IfcAreaMeasure;InternalRefrigerantVolume;IfcVolumeMeasure;InternalWaterVolume;IfcVolumeMeasure;NominalHeatTransferArea;IfcAreaMeasure;NominalHeatTransferCoefficient;IfcThermalTransmittanceMeasure +Pset_FanOccurrence;FractionOfMotorHeatToAirStream;IfcNormalisedRatioMeasure;ImpellerDiameter;IfcPositiveLengthMeasure +Pset_FanTypeCommon;Reference;IfcIdentifier;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;NominalTotalPressure;IfcPressureMeasure;NominalStaticPressure;IfcPressureMeasure;NominalRotationSpeed;IfcRotationalFrequencyMeasure;NominalPowerRate;IfcPowerMeasure;OperationalCriteria;IfcTimeMeasure;PressureCurve;IfcPressureMeasure;EfficiencyCurve;IfcNormalisedRatioMeasure +Pset_FastenerWeld;Type1;IfcLabel;Type2;IfcLabel;Surface1;IfcLabel;Surface2;IfcLabel;Process;IfcInteger;ProcessName;IfcLabel;a;IfcPositiveLengthMeasure;c;IfcPositiveLengthMeasure;d;IfcPositiveLengthMeasure;e;IfcPositiveLengthMeasure;l;IfcPositiveLengthMeasure;n;IfcCountMeasure;s;IfcPositiveLengthMeasure;z;IfcPositiveLengthMeasure;Intermittent;IfcBoolean;Staggered;IfcBoolean +Pset_FilterTypeAirParticleFilter;DustHoldingCapacity;IfcMassMeasure;FaceSurfaceArea;IfcAreaMeasure;MediaExtendedArea;IfcAreaMeasure;NominalCountedEfficiency;IfcReal;NominalWeightedEfficiency;IfcReal;PressureDropCurve;IfcPressureMeasure;CountedEfficiencyCurve;IfcReal;WeightedEfficiencyCurve;IfcReal +Pset_FilterTypeCommon;Reference;IfcIdentifier;Weight;IfcMassMeasure;InitialResistance;IfcPressureMeasure;FinalResistance;IfcPressureMeasure;OperationTemperatureRange;IfcThermodynamicTemperatureMeasure;FlowRateRange;IfcVolumetricFlowRateMeasure;NominalFilterFaceVelocity;IfcLinearVelocityMeasure;NominalMediaSurfaceVelocity;IfcLinearVelocityMeasure;NominalPressureDrop;IfcPressureMeasure;NominalFlowrate;IfcVolumetricFlowRateMeasure;NominalParticleGeometricMeanDiameter;IfcPositiveLengthMeasure;NominalParticleGeometricStandardDeviation;IfcReal +Pset_FilterTypeCompressedAirFilter;OperationPressureMax;IfcPressureMeasure;ParticleAbsorptionCurve;IfcPositiveRatioMeasure;AutomaticCondensateDischarge;IfcBoolean;CloggingIndicator;IfcBoolean +Pset_FireSuppressionTerminalTypeBreechingInlet;InletDiameter;IfcPositiveLengthMeasure;OutletDiameter;IfcPositiveLengthMeasure;HasCaps;IfcBoolean +Pset_FireSuppressionTerminalTypeCommon;Reference;IfcIdentifier +Pset_FireSuppressionTerminalTypeFireHydrant;PumperConnectionSize;IfcPositiveLengthMeasure;NumberOfHoseConnections;IfcInteger;HoseConnectionSize;IfcPositiveLengthMeasure;DischargeFlowRate;IfcVolumetricFlowRateMeasure;FlowClass;IfcLabel;WaterIsPotable;IfcBoolean;PressureRating;IfcPressureMeasure;BodyColor;IfcText;CapColor;IfcText +Pset_FireSuppressionTerminalTypeHoseReel;InletConnectionSize;IfcPositiveLengthMeasure;HoseDiameter;IfcPositiveLengthMeasure;HoseLength;IfcPositiveLengthMeasure;ClassOfService;IfcLabel;ClassificationAuthority;IfcLabel +Pset_FireSuppressionTerminalTypeSprinkler;ActivationTemperature;IfcThermodynamicTemperatureMeasure;CoverageArea;IfcAreaMeasure;HasDeflector;IfcBoolean;DischargeFlowRate;IfcVolumetricFlowRateMeasure;ResidualFlowingPressure;IfcPressureMeasure;DischargeCoefficient;IfcReal;MaximumWorkingPressure;IfcPressureMeasure;ConnectionSize;IfcPositiveLengthMeasure +Pset_FlowInstrumentTypeCommon;Reference;IfcIdentifier +Pset_FlowInstrumentTypePressureGauge;DisplaySize;IfcPositiveLengthMeasure +Pset_FlowInstrumentTypeThermometer;DisplaySize;IfcPositiveLengthMeasure +Pset_FlowMeterTypeCommon;Reference;IfcIdentifier;RemoteReading;IfcBoolean +Pset_FlowMeterTypeEnergyMeter;NominalCurrent;IfcElectricCurrentMeasure;MaximumCurrent;IfcElectricCurrentMeasure;MultipleTarriff;IfcBoolean +Pset_FlowMeterTypeGasMeter;ConnectionSize;IfcPositiveLengthMeasure;MaximumFlowRate;IfcVolumetricFlowRateMeasure;MaximumPressureLoss;IfcPressureMeasure +Pset_FlowMeterTypeOilMeter;ConnectionSize;IfcPositiveLengthMeasure;MaximumFlowRate;IfcVolumetricFlowRateMeasure +Pset_FlowMeterTypeWaterMeter;ConnectionSize;IfcPositiveLengthMeasure;MaximumFlowRate;IfcVolumetricFlowRateMeasure;MaximumPressureLoss;IfcPressureMeasure +Pset_FootingCommon;Reference;IfcIdentifier;LoadBearing;IfcBoolean +Pset_FurnitureTypeChair;SeatingHeight;IfcPositiveLengthMeasure;HighestSeatingHeight;IfcPositiveLengthMeasure;LowestSeatingHeight;IfcPositiveLengthMeasure +Pset_FurnitureTypeCommon;Reference;IfcIdentifier;Style;IfcLabel;NominalHeight;IfcPositiveLengthMeasure;NominalLength;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure;MainColor;IfcLabel;IsBuiltIn;IfcBoolean +Pset_FurnitureTypeDesk;WorksurfaceArea;IfcAreaMeasure +Pset_FurnitureTypeFileCabinet;WithLock;IfcBoolean +Pset_FurnitureTypeTable;WorksurfaceArea;IfcAreaMeasure;NumberOfChairs;IfcInteger +Pset_HeatExchangerTypeCommon;Reference;IfcIdentifier +Pset_HeatExchangerTypePlate;NumberOfPlates;IfcInteger +Pset_HumidifierTypeCommon;Reference;IfcIdentifier;Weight;IfcMassMeasure;NominalMoistureGain;IfcMassFlowRateMeasure;NominalAirFlowRate;IfcVolumetricFlowRateMeasure;WaterRequirement;IfcVolumetricFlowRateMeasure;SaturationEfficiencyCurve;IfcNormalisedRatioMeasure;AirPressureDropCurve;IfcPressureMeasure +Pset_InterceptorTypeCommon;Reference;IfcIdentifier;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure;VentilatingPipeSize;IfcPositiveLengthMeasure +Pset_JunctionBoxTypeCommon;Reference;IfcIdentifier;NumberOfGangs;IfcInteger;ClearDepth;IfcPositiveLengthMeasure;IsExternal;IfcBoolean;IP_Code;IfcLabel +Pset_LampTypeCommon;Reference;IfcIdentifier;ContributedLuminousFlux;IfcLuminousFluxMeasure;LightEmitterNominalPower;IfcPowerMeasure;LampMaintenanceFactor;IfcReal;ColorAppearance;IfcLabel;Spectrum;IfcNumericMeasure;ColorTemperature;IfcThermodynamicTemperatureMeasure;ColorRenderingIndex;IfcInteger +Pset_LandRegistration;LandID;IfcIdentifier;IsPermanentID;IfcBoolean;LandTitleID;IfcIdentifier +Pset_LightFixtureTypeCommon;Reference;IfcIdentifier;NumberOfSources;IfcInteger;TotalWattage;IfcPowerMeasure;MaintenanceFactor;IfcReal;MaximumPlenumSensibleLoad;IfcPowerMeasure;MaximumSpaceSensibleLoad;IfcPowerMeasure;SensibleLoadToRadiant;IfcPositiveRatioMeasure +Pset_LightFixtureTypeSecurityLighting;FixtureHeight;IfcPositiveLengthMeasure +Pset_ManufacturerOccurrence;AcquisitionDate;IfcDate;BarCode;IfcIdentifier;SerialNumber;IfcIdentifier;BatchReference;IfcIdentifier +Pset_ManufacturerTypeInformation;GlobalTradeItemNumber;IfcIdentifier;ArticleNumber;IfcIdentifier;ModelReference;IfcLabel;ModelLabel;IfcLabel;Manufacturer;IfcLabel;ProductionYear;IfcLabel +Pset_MaterialCombustion;SpecificHeatCapacity;IfcSpecificHeatCapacityMeasure;N20Content;IfcPositiveRatioMeasure;COContent;IfcPositiveRatioMeasure;CO2Content;IfcPositiveRatioMeasure +Pset_MaterialCommon;MolecularWeight;IfcMolecularWeightMeasure;Porosity;IfcNormalisedRatioMeasure;MassDensity;IfcMassDensityMeasure +Pset_MaterialConcrete;CompressiveStrength;IfcPressureMeasure;MaxAggregateSize;IfcPositiveLengthMeasure;AdmixturesDescription;IfcText;Workability;IfcText;WaterImpermeability;IfcText;ProtectivePoreRatio;IfcNormalisedRatioMeasure +Pset_MaterialEnergy;ViscosityTemperatureDerivative;IfcReal;MoistureCapacityThermalGradient;IfcReal;ThermalConductivityTemperatureDerivative;IfcReal;SpecificHeatTemperatureDerivative;IfcReal;VisibleRefractionIndex;IfcReal;SolarRefractionIndex;IfcReal;GasPressure;IfcPressureMeasure +Pset_MaterialFuel;CombustionTemperature;IfcThermodynamicTemperatureMeasure;CarbonContent;IfcPositiveRatioMeasure;LowerHeatingValue;IfcHeatingValueMeasure;HigherHeatingValue;IfcHeatingValueMeasure +Pset_MaterialHygroscopic;UpperVaporResistanceFactor;IfcPositiveRatioMeasure;LowerVaporResistanceFactor;IfcPositiveRatioMeasure;IsothermalMoistureCapacity;IfcIsothermalMoistureCapacityMeasure;VaporPermeability;IfcVaporPermeabilityMeasure;MoistureDiffusivity;IfcMoistureDiffusivityMeasure +Pset_MaterialMechanical;DynamicViscosity;IfcDynamicViscosityMeasure;YoungModulus;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;PoissonRatio;IfcPositiveRatioMeasure;ThermalExpansionCoefficient;IfcThermalExpansionCoefficientMeasure +Pset_MaterialOptical;VisibleTransmittance;IfcPositiveRatioMeasure;SolarTransmittance;IfcPositiveRatioMeasure;ThermalIrTransmittance;IfcPositiveRatioMeasure;ThermalIrEmissivityBack;IfcPositiveRatioMeasure;ThermalIrEmissivityFront;IfcPositiveRatioMeasure;VisibleReflectanceBack;IfcPositiveRatioMeasure;VisibleReflectanceFront;IfcPositiveRatioMeasure;SolarReflectanceBack;IfcPositiveRatioMeasure;SolarReflectanceFront;IfcPositiveRatioMeasure +Pset_MaterialSteel;YieldStress;IfcPressureMeasure;UltimateStress;IfcPressureMeasure;UltimateStrain;IfcPositiveRatioMeasure;HardeningModule;IfcModulusOfElasticityMeasure;ProportionalStress;IfcPressureMeasure;PlasticStrain;IfcPositiveRatioMeasure;Relaxations;IfcNormalisedRatioMeasure +Pset_MaterialThermal;SpecificHeatCapacity;IfcSpecificHeatCapacityMeasure;BoilingPoint;IfcThermodynamicTemperatureMeasure;FreezingPoint;IfcThermodynamicTemperatureMeasure;ThermalConductivity;IfcThermalConductivityMeasure +Pset_MaterialWater;IsPotable;IfcBoolean;Hardness;IfcIonConcentrationMeasure;AlkalinityConcentration;IfcIonConcentrationMeasure;AcidityConcentration;IfcIonConcentrationMeasure;ImpuritiesContent;IfcNormalisedRatioMeasure;DissolvedSolidsContent;IfcNormalisedRatioMeasure;PHLevel;IfcPHMeasure +Pset_MaterialWood;Species;IfcLabel;StrengthGrade;IfcLabel;AppearanceGrade;IfcLabel;Layup;IfcLabel;Layers;IfcInteger;Plies;IfcInteger;MoistureContent;IfcPositiveRatioMeasure;DimensionalChangeCoefficient;IfcPositiveRatioMeasure;ThicknessSwelling;IfcPositiveRatioMeasure +Pset_MaterialWoodBasedBeam;ApplicableStructuralDesignMethod;IfcLabel;InPlane;IfcModulusOfElasticityMeasure;YoungModulusMin;IfcModulusOfElasticityMeasure;YoungModulusPerp;IfcModulusOfElasticityMeasure;YoungModulusPerpMin;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;ShearModulusMin;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;TensileStrengthPerp;IfcPressureMeasure;CompStrength;IfcPressureMeasure;CompStrengthPerp;IfcPressureMeasure;RaisedCompStrengthPerp;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;TorsionalStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;InstabilityFactors;IfcPositiveRatioMeasure;InPlaneNegative;IfcModulusOfElasticityMeasure;YoungModulusMin;IfcModulusOfElasticityMeasure;YoungModulusPerp;IfcModulusOfElasticityMeasure;YoungModulusPerpMin;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;ShearModulusMin;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;TensileStrengthPerp;IfcPressureMeasure;CompStrength;IfcPressureMeasure;CompStrengthPerp;IfcPressureMeasure;RaisedCompStrengthPerp;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;TorsionalStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;InstabilityFactors;IfcPositiveRatioMeasure;OutOfPlane;IfcModulusOfElasticityMeasure;YoungModulusMin;IfcModulusOfElasticityMeasure;YoungModulusPerp;IfcModulusOfElasticityMeasure;YoungModulusPerpMin;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;ShearModulusMin;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;TensileStrengthPerp;IfcPressureMeasure;CompStrength;IfcPressureMeasure;CompStrengthPerp;IfcPressureMeasure;RaisedCompStrengthPerp;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;TorsionalStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;InstabilityFactors;IfcPositiveRatioMeasure +Pset_MaterialWoodBasedPanel;ApplicableStructuralDesignMethod;IfcLabel;InPlane;IfcModulusOfElasticityMeasure;YoungModulusTension;IfcModulusOfElasticityMeasure;YoungModulusCompression;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;CompressiveStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;BearingStrength;IfcPressureMeasure;RaisedCompressiveStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;OutOfPlane;IfcModulusOfElasticityMeasure;YoungModulusTension;IfcModulusOfElasticityMeasure;YoungModulusCompression;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;CompressiveStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;BearingStrength;IfcPressureMeasure;RaisedCompressiveStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure;OutOfPlaneNegative;IfcModulusOfElasticityMeasure;YoungModulusTension;IfcModulusOfElasticityMeasure;YoungModulusCompression;IfcModulusOfElasticityMeasure;ShearModulus;IfcModulusOfElasticityMeasure;BendingStrength;IfcPressureMeasure;CompressiveStrength;IfcPressureMeasure;TensileStrength;IfcPressureMeasure;ShearStrength;IfcPressureMeasure;BearingStrength;IfcPressureMeasure;RaisedCompressiveStrength;IfcPressureMeasure;ReferenceDepth;IfcPositiveLengthMeasure +Pset_MechanicalFastenerAnchorBolt;AnchorBoltLength;IfcPositiveLengthMeasure;AnchorBoltDiameter;IfcPositiveLengthMeasure;AnchorBoltThreadLength;IfcPositiveLengthMeasure;AnchorBoltProtrusionLength;IfcPositiveLengthMeasure +Pset_MechanicalFastenerBolt;ThreadDiameter;IfcPositiveLengthMeasure;ThreadLength;IfcPositiveLengthMeasure;NutsCount;IfcCountMeasure;WashersCount;IfcCountMeasure;HeadShape;IfcLabel;KeyShape;IfcLabel;NutShape;IfcLabel;WasherShape;IfcLabel +Pset_MedicalDeviceTypeCommon;Reference;IfcIdentifier +Pset_MemberCommon;Reference;IfcIdentifier;Span;IfcPositiveLengthMeasure;Slope;IfcPlaneAngleMeasure;Roll;IfcPlaneAngleMeasure;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_MotorConnectionTypeCommon;Reference;IfcIdentifier +Pset_OpeningElementCommon;Reference;IfcIdentifier;Purpose;IfcLabel;FireExit;IfcBoolean;ProtectedOpening;IfcBoolean +Pset_OutletTypeCommon;Reference;IfcIdentifier;IsPluggableOutlet;IfcLogical;NumberOfSockets;IfcInteger +Pset_OutsideDesignCriteria;HeatingDryBulb;IfcThermodynamicTemperatureMeasure;HeatingWetBulb;IfcThermodynamicTemperatureMeasure;HeatingDesignDay;IfcDateTime;CoolingDryBulb;IfcThermodynamicTemperatureMeasure;CoolingWetBulb;IfcThermodynamicTemperatureMeasure;CoolingDesignDay;IfcDateTime;WeatherDataStation;IfcText;WeatherDataDate;IfcDateTime;PrevailingWindDirection;IfcPlaneAngleMeasure;PrevailingWindVelocity;IfcLinearVelocityMeasure +Pset_PackingInstructions;SpecialInstructions;IfcText +Pset_Permit;EscortRequirement;IfcBoolean;StartDate;IfcDateTime;EndDate;IfcDateTime;SpecialRequirements;IfcText +Pset_PileCommon;Reference;IfcIdentifier;LoadBearing;IfcBoolean +Pset_PipeConnectionFlanged;FlangeTable;IfcLabel;FlangeStandard;IfcLabel;BoreSize;IfcPositiveLengthMeasure;FlangeDiameter;IfcPositiveLengthMeasure;FlangeThickness;IfcPositiveLengthMeasure;NumberOfBoltholes;IfcInteger;BoltSize;IfcPositiveLengthMeasure;BoltholePitch;IfcPositiveLengthMeasure +Pset_PipeFittingOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;Color;IfcLabel +Pset_PipeFittingTypeBend;BendAngle;IfcPositivePlaneAngleMeasure;BendRadius;IfcPositiveLengthMeasure +Pset_PipeFittingTypeCommon;Reference;IfcIdentifier;PressureClass;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;FittingLossFactor;IfcReal +Pset_PipeFittingTypeJunction;JunctionLeftAngle;IfcPositivePlaneAngleMeasure;JunctionLeftRadius;IfcPositiveLengthMeasure;JunctionRightAngle;IfcPositivePlaneAngleMeasure;JunctionRightRadius;IfcPositiveLengthMeasure +Pset_PipeSegmentOccurrence;InteriorRoughnessCoefficient;IfcPositiveLengthMeasure;Color;IfcLabel;Gradient;IfcPositiveRatioMeasure;InvertElevation;IfcLengthMeasure +Pset_PipeSegmentTypeCommon;Reference;IfcIdentifier;WorkingPressure;IfcPressureMeasure;PressureRange;IfcPressureMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;NominalDiameter;IfcPositiveLengthMeasure;InnerDiameter;IfcPositiveLengthMeasure;OuterDiameter;IfcPositiveLengthMeasure +Pset_PipeSegmentTypeCulvert;InternalWidth;IfcLengthMeasure;ClearDepth;IfcLengthMeasure +Pset_PipeSegmentTypeGutter;Slope;IfcPlaneAngleMeasure;FlowRating;IfcVolumetricFlowRateMeasure +Pset_PlateCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_PrecastConcreteElementFabrication;TypeDesignator;IfcLabel;ProductionLotId;IfcIdentifier;SerialNumber;IfcIdentifier;PieceMark;IfcLabel;AsBuiltLocationNumber;IfcLabel;ActualProductionDate;IfcDateTime;ActualErectionDate;IfcDateTime +Pset_PrecastConcreteElementGeneral;TypeDesignator;IfcLabel;CornerChamfer;IfcPositiveLengthMeasure;ManufacturingToleranceClass;IfcLabel;FormStrippingStrength;IfcPressureMeasure;LiftingStrength;IfcPressureMeasure;ReleaseStrength;IfcPressureMeasure;MinimumAllowableSupportLength;IfcPositiveLengthMeasure;InitialTension;IfcPressureMeasure;TendonRelaxation;IfcPositiveRatioMeasure;TransportationStrength;IfcPressureMeasure;SupportDuringTransportDescription;IfcText;HollowCorePlugging;IfcLabel;CamberAtMidspan;IfcRatioMeasure;BatterAtStart;IfcPlaneAngleMeasure;BatterAtEnd;IfcPlaneAngleMeasure;Twisting;IfcPlaneAngleMeasure;Shortening;IfcRatioMeasure;PieceMark;IfcLabel;DesignLocationNumber;IfcLabel +Pset_PrecastSlab;TypeDesignator;IfcLabel;ToppingType;IfcLabel;EdgeDistanceToFirstAxis;IfcPositiveLengthMeasure;DistanceBetweenComponentAxes;IfcPositiveLengthMeasure;AngleToFirstAxis;IfcPlaneAngleMeasure;AngleBetweenComponentAxes;IfcPlaneAngleMeasure;NominalThickness;IfcPositiveLengthMeasure;NominalToppingThickness;IfcPositiveLengthMeasure +Pset_ProfileArbitraryDoubleT;OverallWidth;IfcPositiveLengthMeasure;LeftFlangeWidth;IfcPositiveLengthMeasure;RightFlangeWidth;IfcPositiveLengthMeasure;OverallDepth;IfcPositiveLengthMeasure;FlangeDepth;IfcPositiveLengthMeasure;FlangeDraft;IfcNonNegativeLengthMeasure;FlangeChamfer;IfcNonNegativeLengthMeasure;FlangeBaseFillet;IfcNonNegativeLengthMeasure;FlangeTopFillet;IfcNonNegativeLengthMeasure;StemBaseWidth;IfcPositiveLengthMeasure;StemTopWidth;IfcPositiveLengthMeasure;StemBaseChamfer;IfcNonNegativeLengthMeasure;StemTopChamfer;IfcNonNegativeLengthMeasure;StemBaseFillet;IfcNonNegativeLengthMeasure;StemTopFillet;IfcNonNegativeLengthMeasure +Pset_ProfileArbitraryHollowCore;OverallWidth;IfcPositiveLengthMeasure;OverallDepth;IfcPositiveLengthMeasure;EdgeDraft;IfcNonNegativeLengthMeasure;DraftBaseOffset;IfcNonNegativeLengthMeasure;DraftSideOffset;IfcNonNegativeLengthMeasure;BaseChamfer;IfcNonNegativeLengthMeasure;KeyDepth;IfcNonNegativeLengthMeasure;KeyHeight;IfcNonNegativeLengthMeasure;KeyOffset;IfcNonNegativeLengthMeasure;BottomCover;IfcPositiveLengthMeasure;CoreSpacing;IfcPositiveLengthMeasure;CoreBaseHeight;IfcPositiveLengthMeasure;CoreMiddleHeight;IfcPositiveLengthMeasure;CoreTopHeight;IfcPositiveLengthMeasure;CoreBaseWidth;IfcPositiveLengthMeasure;CoreTopWidth;IfcPositiveLengthMeasure;CenterCoreSpacing;IfcPositiveLengthMeasure;CenterCoreBaseHeight;IfcPositiveLengthMeasure;CenterCoreMiddleHeight;IfcPositiveLengthMeasure;CenterCoreTopHeight;IfcPositiveLengthMeasure;CenterCoreBaseWidth;IfcPositiveLengthMeasure;CenterCoreTopWidth;IfcPositiveLengthMeasure;NumberOfCores;IfcCountMeasure +Pset_ProfileMechanical;MassPerLength;IfcMassPerLengthMeasure;CrossSectionArea;IfcAreaMeasure;Perimeter;IfcPositiveLengthMeasure;MinimumPlateThickness;IfcPositiveLengthMeasure;MaximumPlateThickness;IfcPositiveLengthMeasure;CentreOfGravityInX;IfcLengthMeasure;CentreOfGravityInY;IfcLengthMeasure;ShearCentreZ;IfcLengthMeasure;ShearCentreY;IfcLengthMeasure;MomentOfInertiaY;IfcMomentOfInertiaMeasure;MomentOfInertiaZ;IfcMomentOfInertiaMeasure;MomentOfInertiaYZ;IfcMomentOfInertiaMeasure;TorsionalConstantX;IfcMomentOfInertiaMeasure;WarpingConstant;IfcWarpingConstantMeasure;ShearDeformationAreaZ;IfcAreaMeasure;ShearDeformationAreaY;IfcAreaMeasure;MaximumSectionModulusY;IfcSectionModulusMeasure;MinimumSectionModulusY;IfcSectionModulusMeasure;MaximumSectionModulusZ;IfcSectionModulusMeasure;MinimumSectionModulusZ;IfcSectionModulusMeasure;TorsionalSectionModulus;IfcSectionModulusMeasure;ShearAreaZ;IfcAreaMeasure;ShearAreaY;IfcAreaMeasure;PlasticShapeFactorY;IfcPositiveRatioMeasure;PlasticShapeFactorZ;IfcPositiveRatioMeasure +Pset_ProjectOrderChangeOrder;ReasonForChange;IfcText;BudgetSource;IfcText +Pset_ProjectOrderMaintenanceWorkOrder;ProductDescription;IfcText;WorkTypeRequested;IfcText;ContractualType;IfcText;IfNotAccomplished;IfcText;ScheduledFrequency;IfcTimeMeasure +Pset_ProjectOrderMoveOrder;SpecialInstructions;IfcText +Pset_ProjectOrderPurchaseOrder;IsFOB;IfcBoolean;ShipMethod;IfcText +Pset_ProjectOrderWorkOrder;ProductDescription;IfcText;WorkTypeRequested;IfcText;ContractualType;IfcText;IfNotAccomplished;IfcText +Pset_PropertyAgreement;Identifier;IfcIdentifier;Version;IfcLabel;VersionDate;IfcDate;PropertyName;IfcLabel;CommencementDate;IfcDate;TerminationDate;IfcDate;Duration;IfcDuration;Options;IfcText;ConditionCommencement;IfcText;Restrictions;IfcText;ConditionTermination;IfcText +Pset_ProtectiveDeviceBreakerUnitI2TCurve;NominalCurrent;IfcElectricCurrentMeasure;BreakerUnitCurve;IfcReal +Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve;BreakerUnitFuseMeltingCurve;IfcReal;BreakerUnitFuseBreakingingCurve;IfcReal +Pset_ProtectiveDeviceBreakerUnitIPICurve;NominalCurrent;IfcElectricCurrentMeasure;BreakerUnitIPICurve;IfcElectricCurrentMeasure +Pset_ProtectiveDeviceBreakerUnitTypeMCB;PowerLoss;IfcPowerMeasure;NominalCurrents;IfcElectricCurrentMeasure;ICU60947;IfcElectricCurrentMeasure;ICS60947;IfcElectricCurrentMeasure;ICN60898;IfcElectricCurrentMeasure;ICS60898;IfcElectricCurrentMeasure +Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection;PerformanceClasses;IfcLabel;ICU60947;IfcElectricCurrentMeasure;ICS60947;IfcElectricCurrentMeasure;ICW60947;IfcElectricCurrentMeasure;ICM60947;IfcElectricCurrentMeasure +Pset_ProtectiveDeviceOccurrence;LongTimeFunction;IfcBoolean;ShortTimeFunction;IfcBoolean;ShortTimei2tFunction;IfcBoolean;GroundFaultFunction;IfcBoolean;GroundFaulti2tFunction;IfcBoolean;LongTimeCurrentSetValue;IfcElectricCurrentMeasure;ShortTimeCurrentSetValue;IfcElectricCurrentMeasure;InstantaneousCurrentSetValue;IfcElectricCurrentMeasure;GroundFaultCurrentSetValue;IfcElectricCurrentMeasure;LongTimeDelay;IfcTimeMeasure;ShortTimeTrippingTime;IfcTimeMeasure;InstantaneousTrippingTime;IfcTimeMeasure;GroundFaultTrippingTime;IfcTimeMeasure +Pset_ProtectiveDeviceTrippingCurve;TrippingCurve;IfcTimeMeasure +Pset_ProtectiveDeviceTrippingFunctionGCurve;IsSelectable;IfcBoolean;NominalCurrentAdjusted;IfcBoolean;ExternalAdjusted;IfcBoolean;ReleaseCurrent;IfcElectricCurrentMeasure;ReleaseTime;IfcTimeMeasure;CurrentTolerance1;IfcPositiveRatioMeasure;CurrentToleranceLimit1;IfcTimeMeasure;CurrentTolerance2;IfcPositiveRatioMeasure;IsCurrentTolerancePositiveOnly;IfcBoolean;TimeTolerance1;IfcPositiveRatioMeasure;TimeToleranceLimit1;IfcElectricCurrentMeasure;TimeTolerance2;IfcPositiveRatioMeasure;IsTimeTolerancePositiveOnly;IfcBoolean;ReleaseCurrentI2tStart;IfcElectricCurrentMeasure;ReleaseTimeI2tStart;IfcTimeMeasure;ReleaseCurrentI2tEnd;IfcElectricCurrentMeasure;ReleaseTimeI2tEnd;IfcTimeMeasure +Pset_ProtectiveDeviceTrippingFunctionICurve;IsSelectable;IfcBoolean;NominalCurrentAdjusted;IfcBoolean;ReleaseCurrent;IfcElectricCurrentMeasure;ReleaseTime;IfcTimeMeasure;CurrentTolerance1;IfcPositiveRatioMeasure;CurrentToleranceLimit1;IfcTimeMeasure;CurrentTolerance2;IfcPositiveRatioMeasure;IsCurrentTolerancePositiveOnly;IfcBoolean;TimeTolerance1;IfcPositiveRatioMeasure;TimeToleranceLimit1;IfcElectricCurrentMeasure;TimeTolerance2;IfcPositiveRatioMeasure;IsTimeTolerancePositiveOnly;IfcBoolean;MaxAdjustmentX_ICS;IfcElectricCurrentMeasure;IsOffWhenSFunctionOn;IfcBoolean +Pset_ProtectiveDeviceTrippingFunctionLCurve;IsSelectable;IfcBoolean;UpperCurrent1;IfcElectricCurrentMeasure;UpperCurrent2;IfcElectricCurrentMeasure;UpperTime1;IfcTimeMeasure;UpperTime2;IfcTimeMeasure;LowerCurrent1;IfcElectricCurrentMeasure;LowerCurrent2;IfcElectricCurrentMeasure;LowerTime1;IfcTimeMeasure;LowerTime2;IfcTimeMeasure +Pset_ProtectiveDeviceTrippingFunctionSCurve;IsSelectable;IfcBoolean;NominalCurrentAdjusted;IfcBoolean;ReleaseCurrent;IfcElectricCurrentMeasure;ReleaseTime;IfcTimeMeasure;CurrentTolerance1;IfcPositiveRatioMeasure;CurrentToleranceLimit1;IfcTimeMeasure;CurrentTolerance2;IfcPositiveRatioMeasure;IsCurrentTolerancePositiveOnly;IfcBoolean;TimeTolerance1;IfcPositiveRatioMeasure;TimeToleranceLimit1;IfcElectricCurrentMeasure;TimeTolerance2;IfcPositiveRatioMeasure;IsTimeTolerancePositiveOnly;IfcBoolean;ReleaseCurrentI2tStart;IfcElectricCurrentMeasure;ReleaseTimeI2tStart;IfcTimeMeasure;ReleaseCurrentI2tEnd;IfcElectricCurrentMeasure;ReleaseTimeI2tEnd;IfcTimeMeasure;IsOffWhenLfunctionOn;IfcBoolean +Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment;AdjustmentRange;IfcElectricCurrentMeasure;AdjustmentRangeStepValue;IfcElectricCurrentMeasure;AdjustmentValues;IfcElectricCurrentMeasure;AdjustmentDesignation;IfcLabel +Pset_ProtectiveDeviceTrippingUnitTimeAdjustment;AdjustmentRange;IfcTimeMeasure;AdjustmentRangeStepValue;IfcTimeMeasure;AdjustmentValues;IfcTimeMeasure;AdjustmentDesignation;IfcLabel;CurrentForTimeDelay;IfcTimeMeasure +Pset_ProtectiveDeviceTrippingUnitTypeCommon;Reference;IfcIdentifier;Standard;IfcLabel;UseInDiscrimination;IfcBoolean;AtexVerified;IfcBoolean;OldDevice;IfcBoolean;LimitingTerminalSize;IfcAreaMeasure +Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic;I1;IfcReal;I2;IfcReal;T2;IfcTimeMeasure;DefinedTemperature;IfcThermodynamicTemperatureMeasure;TemperatureFactor;IfcRatioMeasure;I4;IfcReal;I5;IfcReal;T5;IfcTimeMeasure;CurveDesignation;IfcLabel +Pset_ProtectiveDeviceTrippingUnitTypeElectronic;NominalCurrents;IfcElectricCurrentMeasure;N_Protection;IfcBoolean;N_Protection_50;IfcBoolean;N_Protection_100;IfcBoolean;N_Protection_Select;IfcBoolean +Pset_ProtectiveDeviceTrippingUnitTypeThermal;I1;IfcReal;I2;IfcReal;T2;IfcTimeMeasure;DefinedTemperature;IfcThermodynamicTemperatureMeasure;TemperatureFactor;IfcRatioMeasure;CurveDesignation;IfcLabel +Pset_ProtectiveDeviceTypeCircuitBreaker;PerformanceClasses;IfcLabel;ICU60947;IfcElectricCurrentMeasure;ICS60947;IfcElectricCurrentMeasure;ICW60947;IfcElectricCurrentMeasure;ICM60947;IfcElectricCurrentMeasure +Pset_ProtectiveDeviceTypeCommon;Reference;IfcIdentifier +Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker;Sensitivity;IfcElectricCurrentMeasure +Pset_ProtectiveDeviceTypeFuseDisconnector;IC60269;IfcElectricCurrentMeasure;PowerLoss;IfcPowerMeasure +Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker;Sensitivity;IfcElectricCurrentMeasure +Pset_ProtectiveDeviceTypeResidualCurrentSwitch;Sensitivity;IfcElectricCurrentMeasure +Pset_PumpOccurrence;ImpellerDiameter;IfcPositiveLengthMeasure +Pset_PumpTypeCommon;Reference;IfcIdentifier;FlowRateRange;IfcMassFlowRateMeasure;FlowResistanceRange;IfcPressureMeasure;ConnectionSize;IfcPositiveLengthMeasure;TemperatureRange;IfcThermodynamicTemperatureMeasure;NetPositiveSuctionHead;IfcPressureMeasure;NominalRotationSpeed;IfcRotationalFrequencyMeasure +Pset_RailingCommon;Reference;IfcIdentifier;Height;IfcPositiveLengthMeasure;Diameter;IfcPositiveLengthMeasure;IsExternal;IfcBoolean +Pset_RampCommon;Reference;IfcIdentifier;RequiredHeadroom;IfcPositiveLengthMeasure;RequiredSlope;IfcPlaneAngleMeasure;HandicapAccessible;IfcBoolean;HasNonSkidSurface;IfcBoolean;FireExit;IfcBoolean;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_RampFlightCommon;Reference;IfcIdentifier;Headroom;IfcPositiveLengthMeasure;ClearWidth;IfcPositiveLengthMeasure;Slope;IfcPlaneAngleMeasure;CounterSlope;IfcPlaneAngleMeasure +Pset_ReinforcementBarCountOfIndependentFooting;Description;IfcText;Reference;IfcLabel;XDirectionLowerBarCount;IfcInteger;YDirectionLowerBarCount;IfcInteger;XDirectionUpperBarCount;IfcInteger;YDirectionUpperBarCount;IfcInteger +Pset_ReinforcementBarPitchOfBeam;Description;IfcText;Reference;IfcLabel;StirrupBarPitch;IfcPositiveLengthMeasure;SpacingBarPitch;IfcPositiveLengthMeasure +Pset_ReinforcementBarPitchOfColumn;Description;IfcText;Reference;IfcLabel;HoopBarPitch;IfcPositiveLengthMeasure;XDirectionTieHoopBarPitch;IfcPositiveLengthMeasure;XDirectionTieHoopCount;IfcInteger;YDirectionTieHoopBarPitch;IfcPositiveLengthMeasure;YDirectionTieHoopCount;IfcInteger +Pset_ReinforcementBarPitchOfContinuousFooting;Description;IfcText;Reference;IfcLabel;CrossingUpperBarPitch;IfcPositiveLengthMeasure;CrossingLowerBarPitch;IfcPositiveLengthMeasure +Pset_ReinforcementBarPitchOfSlab;Description;IfcText;Reference;IfcLabel;LongOutsideTopBarPitch;IfcPositiveLengthMeasure;LongInsideCenterTopBarPitch;IfcPositiveLengthMeasure;LongInsideEndTopBarPitch;IfcPositiveLengthMeasure;ShortOutsideTopBarPitch;IfcPositiveLengthMeasure;ShortInsideCenterTopBarPitch;IfcPositiveLengthMeasure;ShortInsideEndTopBarPitch;IfcPositiveLengthMeasure;LongOutsideLowerBarPitch;IfcPositiveLengthMeasure;LongInsideCenterLowerBarPitch;IfcPositiveLengthMeasure;LongInsideEndLowerBarPitch;IfcPositiveLengthMeasure;ShortOutsideLowerBarPitch;IfcPositiveLengthMeasure;ShortInsideCenterLowerBarPitch;IfcPositiveLengthMeasure;ShortInsideEndLowerBarPitch;IfcPositiveLengthMeasure +Pset_ReinforcementBarPitchOfWall;Description;IfcText;Reference;IfcLabel;VerticalBarPitch;IfcPositiveLengthMeasure;HorizontalBarPitch;IfcPositiveLengthMeasure;SpacingBarPitch;IfcPositiveLengthMeasure +Pset_Risk;NatureOfRisk;IfcLabel;SubNatureOfRisk1;IfcLabel;SubNatureOfRisk2;IfcLabel;RiskCause;IfcText;AffectsSurroundings;IfcBoolean;PreventiveMeassures;IfcText +Pset_RoofCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel +Pset_SanitaryTerminalTypeBath;DrainSize;IfcPositiveLengthMeasure;HasGrabHandles;IfcBoolean +Pset_SanitaryTerminalTypeBidet;SpilloverLevel;IfcPositiveLengthMeasure;DrainSize;IfcPositiveLengthMeasure +Pset_SanitaryTerminalTypeCistern;CisternCapacity;IfcVolumeMeasure;IsSingleFlush;IfcBoolean;FlushRate;IfcVolumeMeasure;IsAutomaticFlush;IfcBoolean +Pset_SanitaryTerminalTypeCommon;Reference;IfcIdentifier;NominalLength;IfcPositiveLengthMeasure;NominalWidth;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure;Color;IfcLabel +Pset_SanitaryTerminalTypeSanitaryFountain;DrainSize;IfcPositiveLengthMeasure +Pset_SanitaryTerminalTypeShower;HasTray;IfcBoolean;ShowerHeadDescription;IfcText;DrainSize;IfcPositiveLengthMeasure +Pset_SanitaryTerminalTypeSink;Color;IfcLabel;DrainSize;IfcPositiveLengthMeasure;MountingOffset;IfcLengthMeasure +Pset_SanitaryTerminalTypeToiletPan;SpilloverLevel;IfcPositiveLengthMeasure +Pset_SanitaryTerminalTypeUrinal;SpilloverLevel;IfcPositiveLengthMeasure +Pset_SanitaryTerminalTypeWashHandBasin;DrainSize;IfcPositiveLengthMeasure;MountingOffset;IfcLengthMeasure +Pset_SensorTypeCO2Sensor;SetPointConcentration;IfcPositiveRatioMeasure +Pset_SensorTypeCommon;Reference;IfcIdentifier +Pset_SensorTypeConductanceSensor;SetPointConductance;IfcElectricConductanceMeasure +Pset_SensorTypeContactSensor;SetPointContact;IfcInteger +Pset_SensorTypeFireSensor;FireSensorSetPoint;IfcThermodynamicTemperatureMeasure;AccuracyOfFireSensor;IfcThermodynamicTemperatureMeasure;TimeConstant;IfcTimeMeasure +Pset_SensorTypeFlowSensor;SetPointFlow;IfcVolumetricFlowRateMeasure +Pset_SensorTypeFrostSensor;SetPointFrost;IfcPositiveRatioMeasure +Pset_SensorTypeGasSensor;GasDetected;IfcLabel;SetPointConcentration;IfcPositiveRatioMeasure;CoverageArea;IfcAreaMeasure +Pset_SensorTypeHeatSensor;CoverageArea;IfcAreaMeasure;SetPointTemperature;IfcThermodynamicTemperatureMeasure;RateOfTemperatureRise;IfcTemperatureRateOfChangeMeasure +Pset_SensorTypeHumiditySensor;SetPointHumidity;IfcPositiveRatioMeasure +Pset_SensorTypeIdentifierSensor;SetPointIdentifier;IfcIdentifier +Pset_SensorTypeIonConcentrationSensor;SubstanceDetected;IfcLabel;SetPointConcentration;IfcIonConcentrationMeasure +Pset_SensorTypeLevelSensor;SetPointLevel;IfcPositiveLengthMeasure +Pset_SensorTypeLightSensor;SetPointIlluminance;IfcIlluminanceMeasure +Pset_SensorTypeMoistureSensor;SetPointMoisture;IfcPositiveRatioMeasure +Pset_SensorTypeMovementSensor;SetPointMovement;IfcPositiveRatioMeasure +Pset_SensorTypePHSensor;SetPointPH;IfcPHMeasure +Pset_SensorTypePressureSensor;SetPointPressure;IfcPressureMeasure;IsSwitch;IfcBoolean +Pset_SensorTypeRadiationSensor;SetPointRadiation;IfcPowerMeasure +Pset_SensorTypeRadioactivitySensor;SetPointRadioactivity;IfcRadioActivityMeasure +Pset_SensorTypeSmokeSensor;CoverageArea;IfcAreaMeasure;SetPointConcentration;IfcPositiveRatioMeasure;HasBuiltInAlarm;IfcBoolean +Pset_SensorTypeSoundSensor;SetPointSound;IfcSoundPressureMeasure +Pset_SensorTypeTemperatureSensor;SetPointTemperature;IfcThermodynamicTemperatureMeasure +Pset_SensorTypeWindSensor;SetPointSpeed;IfcLinearVelocityMeasure +Pset_ServiceLife;ServiceLifeDuration;IfcDuration;MeanTimeBetweenFailure;IfcDuration +Pset_ServiceLifeFactors;QualityOfComponents;IfcPositiveRatioMeasure;DesignLevel;IfcPositiveRatioMeasure;WorkExecutionLevel;IfcPositiveRatioMeasure;IndoorEnvironment;IfcPositiveRatioMeasure;OutdoorEnvironment;IfcPositiveRatioMeasure;InUseConditions;IfcPositiveRatioMeasure;MaintenanceLevel;IfcPositiveRatioMeasure +Pset_ShadingDeviceCommon;Reference;IfcIdentifier;MechanicalOperated;IfcBoolean;SolarTransmittance;IfcPositiveRatioMeasure;SolarReflectance;IfcPositiveRatioMeasure;VisibleLightTransmittance;IfcPositiveRatioMeasure;VisibleLightReflectance;IfcPositiveRatioMeasure;ThermalTransmittance;IfcThermalTransmittanceMeasure;IsExternal;IfcBoolean;Roughness;IfcLabel;SurfaceColor;IfcLabel +Pset_SiteCommon;Reference;IfcIdentifier;BuildableArea;IfcAreaMeasure;SiteCoverageRatio;IfcPositiveRatioMeasure;FloorAreaRatio;IfcPositiveRatioMeasure;BuildingHeightLimit;IfcPositiveLengthMeasure;TotalArea;IfcAreaMeasure +Pset_SlabCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;PitchAngle;IfcPlaneAngleMeasure;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;Compartmentation;IfcBoolean;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean +Pset_SolarDeviceTypeCommon;Reference;IfcIdentifier +Pset_SoundAttenuation;SoundFrequency;IfcFrequencyMeasure +Pset_SoundGeneration;SoundCurve;IfcSoundPowerMeasure +Pset_SpaceCommon;Reference;IfcIdentifier;IsExternal;IfcBoolean;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure;PubliclyAccessible;IfcBoolean;HandicapAccessible;IfcBoolean +Pset_SpaceCoveringRequirements;FloorCovering;IfcLabel;FloorCoveringThickness;IfcPositiveLengthMeasure;WallCovering;IfcLabel;WallCoveringThickness;IfcPositiveLengthMeasure;CeilingCovering;IfcLabel;CeilingCoveringThickness;IfcPositiveLengthMeasure;SkirtingBoard;IfcLabel;SkirtingBoardHeight;IfcPositiveLengthMeasure;Molding;IfcLabel;MoldingHeight;IfcPositiveLengthMeasure;ConcealedFlooring;IfcBoolean;ConcealedFlooringOffset;IfcNonNegativeLengthMeasure;ConcealedCeiling;IfcBoolean;ConcealedCeilingOffset;IfcNonNegativeLengthMeasure +Pset_SpaceFireSafetyRequirements;FireRiskFactor;IfcLabel;FlammableStorage;IfcBoolean;FireExit;IfcBoolean;SprinklerProtection;IfcBoolean;SprinklerProtectionAutomatic;IfcBoolean;AirPressurization;IfcBoolean +Pset_SpaceHeaterTypeCommon;Reference;IfcIdentifier;BodyMass;IfcMassMeasure;ThermalMassHeatCapacity;IfcReal;OutputCapacity;IfcPowerMeasure;ThermalEfficiency;IfcNormalisedRatioMeasure;NumberOfPanels;IfcInteger;NumberOfSections;IfcInteger +Pset_SpaceHeaterTypeRadiator;TubingLength;IfcPositiveLengthMeasure;WaterContent;IfcMassMeasure +Pset_SpaceLightingRequirements;ArtificialLighting;IfcBoolean;Illuminance;IfcIlluminanceMeasure +Pset_SpaceOccupancyRequirements;OccupancyType;IfcLabel;OccupancyNumber;IfcCountMeasure;OccupancyNumberPeak;IfcCountMeasure;OccupancyTimePerDay;IfcTimeMeasure;AreaPerOccupant;IfcAreaMeasure;MinimumHeadroom;IfcLengthMeasure;IsOutlookDesirable;IfcBoolean +Pset_SpaceParking;ParkingUse;IfcLabel;ParkingUnits;IfcCountMeasure;IsAisle;IfcBoolean;IsOneWay;IfcBoolean +Pset_SpaceThermalDesign;CoolingDesignAirflow;IfcVolumetricFlowRateMeasure;HeatingDesignAirflow;IfcVolumetricFlowRateMeasure;TotalSensibleHeatGain;IfcPowerMeasure;TotalHeatGain;IfcPowerMeasure;TotalHeatLoss;IfcPowerMeasure;CoolingDryBulb;IfcThermodynamicTemperatureMeasure;CoolingRelativeHumidity;IfcPositiveRatioMeasure;HeatingDryBulb;IfcThermodynamicTemperatureMeasure;HeatingRelativeHumidity;IfcPositiveRatioMeasure;VentilationAirFlowrate;IfcVolumetricFlowRateMeasure;ExhaustAirFlowrate;IfcVolumetricFlowRateMeasure;CeilingRAPlenum;IfcBoolean;BoundaryAreaHeatLoss;IfcHeatFluxDensityMeasure +Pset_SpaceThermalLoad;People;IfcPowerMeasure;Lighting;IfcPowerMeasure;EquipmentSensible;IfcPowerMeasure;VentilationIndoorAir;IfcPowerMeasure;VentilationOutdoorAir;IfcPowerMeasure;RecirculatedAir;IfcPowerMeasure;ExhaustAir;IfcPowerMeasure;AirExchangeRate;IfcPowerMeasure;DryBulbTemperature;IfcPowerMeasure;RelativeHumidity;IfcPowerMeasure;InfiltrationSensible;IfcPowerMeasure;TotalSensibleLoad;IfcPowerMeasure;TotalLatentLoad;IfcPowerMeasure;TotalRadiantLoad;IfcPowerMeasure +Pset_SpaceThermalRequirements;SpaceTemperature;IfcThermodynamicTemperatureMeasure;SpaceTemperatureMax;IfcThermodynamicTemperatureMeasure;SpaceTemperatureMin;IfcThermodynamicTemperatureMeasure;SpaceTemperatureSummerMax;IfcThermodynamicTemperatureMeasure;SpaceTemperatureSummerMin;IfcThermodynamicTemperatureMeasure;SpaceTemperatureWinterMax;IfcThermodynamicTemperatureMeasure;SpaceTemperatureWinterMin;IfcThermodynamicTemperatureMeasure;SpaceHumidity;IfcRatioMeasure;SpaceHumidityMax;IfcRatioMeasure;SpaceHumidityMin;IfcRatioMeasure;SpaceHumiditySummer;IfcRatioMeasure;SpaceHumidityWinter;IfcRatioMeasure;DiscontinuedHeating;IfcBoolean;NaturalVentilation;IfcBoolean;NaturalVentilationRate;IfcCountMeasure;MechanicalVentilationRate;IfcCountMeasure;AirConditioning;IfcBoolean;AirConditioningCentral;IfcBoolean +Pset_SpatialZoneCommon;Reference;IfcLabel;IsExternal;IfcBoolean +Pset_StackTerminalTypeCommon;Reference;IfcIdentifier +Pset_StairCommon;Reference;IfcIdentifier;NumberOfRiser;IfcCountMeasure;NumberOfTreads;IfcCountMeasure;RiserHeight;IfcPositiveLengthMeasure;TreadLength;IfcPositiveLengthMeasure;NosingLength;IfcLengthMeasure;WalkingLineOffset;IfcPositiveLengthMeasure;TreadLengthAtOffset;IfcPositiveLengthMeasure;TreadLengthAtInnerSide;IfcPositiveLengthMeasure;WaistThickness;IfcPositiveLengthMeasure;RequiredHeadroom;IfcPositiveLengthMeasure;HandicapAccessible;IfcBoolean;HasNonSkidSurface;IfcBoolean;IsExternal;IfcBoolean;ThermalTransmittance;IfcThermalTransmittanceMeasure;LoadBearing;IfcBoolean;FireRating;IfcLabel;FireExit;IfcBoolean +Pset_StairFlightCommon;Reference;IfcIdentifier;NumberOfRiser;IfcCountMeasure;NumberOfTreads;IfcCountMeasure;RiserHeight;IfcPositiveLengthMeasure;TreadLength;IfcPositiveLengthMeasure;NosingLength;IfcLengthMeasure;WalkingLineOffset;IfcPositiveLengthMeasure;TreadLengthAtOffset;IfcPositiveLengthMeasure;TreadLengthAtInnerSide;IfcPositiveLengthMeasure;Headroom;IfcPositiveLengthMeasure;WaistThickness;IfcPositiveLengthMeasure +Pset_StructuralSurfaceMemberVaryingThickness;Thickness1;IfcPositiveLengthMeasure;Location1Local;IfcLengthMeasure;Location1Global;IfcLengthMeasure;Thickness2;IfcPositiveLengthMeasure;Location2Local;IfcLengthMeasure;Location2Global;IfcLengthMeasure;Thickness3;IfcPositiveLengthMeasure;Location3Local;IfcLengthMeasure;Location3Global;IfcLengthMeasure +Pset_SwitchingDeviceTypeCommon;Reference;IfcIdentifier;NumberOfGangs;IfcInteger;HasLock;IfcBoolean;IsIlluminated;IfcBoolean;Legend;IfcLabel;SetPoint;IfcLabel +Pset_SystemFurnitureElementTypeCommon;IsUsed;IfcBoolean;GroupCode;IfcIdentifier;NominalWidth;IfcPositiveLengthMeasure;NominalHeight;IfcPositiveLengthMeasure;Finishing;IfcLabel +Pset_SystemFurnitureElementTypePanel;HasOpening;IfcBoolean;NominalThickness;IfcPositiveLengthMeasure +Pset_SystemFurnitureElementTypeWorkSurface;UsePurpose;IfcLabel;HangingHeight;IfcPositiveLengthMeasure;NominalThickness;IfcPositiveLengthMeasure;ShapeDescription;IfcLabel +Pset_TankOccurrence;HasLadder;IfcBoolean;HasVisualIndicator;IfcBoolean +Pset_TankTypeCommon;Reference;IfcIdentifier;NominalLengthOrDiameter;IfcPositiveLengthMeasure;NominalWidthOrDiameter;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure;NominalCapacity;IfcVolumeMeasure;EffectiveCapacity;IfcVolumeMeasure;OperatingWeight;IfcMassMeasure;FirstCurvatureRadius;IfcPositiveLengthMeasure;SecondCurvatureRadius;IfcPositiveLengthMeasure;NumberOfSections;IfcInteger +Pset_TankTypeExpansion;ChargePressure;IfcPressureMeasure;PressureRegulatorSetting;IfcPressureMeasure;ReliefValveSetting;IfcPressureMeasure +Pset_TankTypePreformed;FirstCurvatureRadius;IfcPositiveLengthMeasure;SecondCurvatureRadius;IfcPositiveLengthMeasure +Pset_TankTypePressureVessel;ChargePressure;IfcPressureMeasure;PressureRegulatorSetting;IfcPressureMeasure;ReliefValveSetting;IfcPressureMeasure +Pset_TankTypeSectional;NumberOfSections;IfcInteger;SectionLength;IfcPositiveLengthMeasure;SectionWidth;IfcPositiveLengthMeasure +Pset_ThermalLoadAggregate;TotalCoolingLoad;IfcPowerMeasure;TotalHeatingLoad;IfcPowerMeasure;LightingDiversity;IfcPositiveRatioMeasure;InfiltrationDiversitySummer;IfcPositiveRatioMeasure;InfiltrationDiversityWinter;IfcPositiveRatioMeasure;ApplianceDiversity;IfcPositiveRatioMeasure;LoadSafetyFactor;IfcPositiveRatioMeasure +Pset_ThermalLoadDesignCriteria;OccupancyDiversity;IfcPositiveRatioMeasure;OutsideAirPerPerson;IfcVolumetricFlowRateMeasure;ReceptacleLoadIntensity;IfcReal;AppliancePercentLoadToRadiant;IfcPositiveRatioMeasure;LightingLoadIntensity;IfcReal;LightingPercentLoadToReturnAir;IfcPositiveRatioMeasure +Pset_TransformerTypeCommon;Reference;IfcIdentifier;PrimaryVoltage;IfcElectricVoltageMeasure;SecondaryVoltage;IfcElectricVoltageMeasure;PrimaryCurrent;IfcElectricCurrentMeasure;SecondaryCurrent;IfcElectricCurrentMeasure;PrimaryFrequency;IfcFrequencyMeasure;SecondaryFrequency;IfcFrequencyMeasure;PrimaryApparentPower;IfcPowerMeasure;SecondaryApparentPower;IfcPowerMeasure;MaximumApparentPower;IfcPowerMeasure;ShortCircuitVoltage;IfcComplexNumber;RealImpedanceRatio;IfcRatioMeasure;ImaginaryImpedanceRatio;IfcRatioMeasure;IsNeutralPrimaryTerminalAvailable;IfcBoolean;IsNeutralSecondaryTerminalAvailable;IfcBoolean +Pset_TransportElementCommon;Reference;IfcIdentifier;CapacityPeople;IfcCountMeasure;CapacityWeight;IfcMassMeasure;FireExit;IfcBoolean +Pset_TransportElementElevator;FireFightingLift;IfcBoolean;ClearWidth;IfcPositiveLengthMeasure;ClearDepth;IfcPositiveLengthMeasure;ClearHeight;IfcPositiveLengthMeasure +Pset_TubeBundleTypeCommon;Reference;IfcIdentifier;NumberOfRows;IfcInteger;StaggeredRowSpacing;IfcPositiveLengthMeasure;InLineRowSpacing;IfcPositiveLengthMeasure;NumberOfCircuits;IfcInteger;FoulingFactor;IfcThermalResistanceMeasure;ThermalConductivity;IfcThermalConductivityMeasure;Length;IfcPositiveLengthMeasure;Volume;IfcVolumeMeasure;NominalDiameter;IfcPositiveLengthMeasure;OutsideDiameter;IfcPositiveLengthMeasure;InsideDiameter;IfcPositiveLengthMeasure;HorizontalSpacing;IfcPositiveLengthMeasure;VerticalSpacing;IfcPositiveLengthMeasure;HasTurbulator;IfcBoolean +Pset_TubeBundleTypeFinned;Spacing;IfcPositiveLengthMeasure;Thickness;IfcPositiveLengthMeasure;ThermalConductivity;IfcThermalConductivityMeasure;Length;IfcPositiveLengthMeasure;Height;IfcPositiveLengthMeasure;Diameter;IfcPositiveLengthMeasure;FinCorrugatedType;IfcLabel;HasCoating;IfcBoolean +Pset_UnitaryControlElementTypeCommon;Reference;IfcIdentifier;Mode;IfcLabel +Pset_UnitaryControlElementTypeThermostat;TemperatureSetPoint;IfcThermodynamicTemperatureMeasure +Pset_UnitaryEquipmentTypeAirConditioningUnit;SensibleCoolingCapacity;IfcPowerMeasure;LatentCoolingCapacity;IfcPowerMeasure;CoolingEfficiency;IfcPositiveRatioMeasure;HeatingCapacity;IfcPowerMeasure;HeatingEfficiency;IfcPositiveRatioMeasure;CondenserFlowrate;IfcVolumetricFlowRateMeasure;CondenserEnteringTemperature;IfcThermodynamicTemperatureMeasure;CondenserLeavingTemperature;IfcThermodynamicTemperatureMeasure;OutsideAirFlowrate;IfcVolumetricFlowRateMeasure +Pset_UnitaryEquipmentTypeAirHandler;DualDeck;IfcBoolean +Pset_UnitaryEquipmentTypeCommon;Reference;IfcIdentifier +Pset_ValveTypeAirRelease;IsAutomatic;IfcBoolean +Pset_ValveTypeCommon;Reference;IfcIdentifier;Size;IfcPositiveLengthMeasure;TestPressure;IfcPressureMeasure;WorkingPressure;IfcPressureMeasure;FlowCoefficient;IfcReal;CloseOffRating;IfcPressureMeasure +Pset_ValveTypeDrawOffCock;HasHoseUnion;IfcBoolean +Pset_ValveTypeFaucet;Finish;IfcText;FaucetTopDescription;IfcText +Pset_ValveTypeFlushing;FlushingRate;IfcVolumetricFlowRateMeasure;HasIntegralShutOffDevice;IfcBoolean;IsHighPressure;IfcBoolean +Pset_ValveTypeGasTap;HasHoseUnion;IfcBoolean +Pset_ValveTypeIsolating;IsNormallyOpen;IfcBoolean +Pset_ValveTypeMixing;OutletConnectionSize;IfcPositiveLengthMeasure +Pset_ValveTypePressureReducing;UpstreamPressure;IfcPressureMeasure;DownstreamPressure;IfcPressureMeasure +Pset_ValveTypePressureRelief;ReliefPressure;IfcPressureMeasure +Pset_VibrationIsolatorTypeCommon;Reference;IfcIdentifier;VibrationTransmissibility;IfcPositiveRatioMeasure;IsolatorStaticDeflection;IfcLengthMeasure;IsolatorCompressibility;IfcRatioMeasure;MaximumSupportedWeight;IfcMassMeasure;NominalHeight;IfcPositiveLengthMeasure +Pset_WallCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;Combustible;IfcBoolean;SurfaceSpreadOfFlame;IfcLabel;ThermalTransmittance;IfcThermalTransmittanceMeasure;IsExternal;IfcBoolean;LoadBearing;IfcBoolean;ExtendToStructure;IfcBoolean;Compartmentation;IfcBoolean +Pset_Warranty;WarrantyIdentifier;IfcIdentifier;WarrantyStartDate;IfcDate;WarrantyEndDate;IfcDate;IsExtendedWarranty;IfcBoolean;WarrantyPeriod;IfcDuration;WarrantyContent;IfcText;PointOfContact;IfcLabel;Exclusions;IfcText +Pset_WasteTerminalTypeCommon;Reference;IfcIdentifier +Pset_WasteTerminalTypeFloorTrap;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;IsForSullageWater;IfcBoolean;SpilloverLevel;IfcPositiveLengthMeasure;HasStrainer;IfcBoolean;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure +Pset_WasteTerminalTypeFloorWaste;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure +Pset_WasteTerminalTypeGullySump;NominalSumpLength;IfcPositiveLengthMeasure;NominalSumpWidth;IfcPositiveLengthMeasure;NominalSumpDepth;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure +Pset_WasteTerminalTypeGullyTrap;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;HasStrainer;IfcBoolean;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure +Pset_WasteTerminalTypeRoofDrain;NominalBodyLength;IfcPositiveLengthMeasure;NominalBodyWidth;IfcPositiveLengthMeasure;NominalBodyDepth;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;CoverLength;IfcPositiveLengthMeasure;CoverWidth;IfcPositiveLengthMeasure +Pset_WasteTerminalTypeWasteDisposalUnit;DrainConnectionSize;IfcPositiveLengthMeasure;OutletConnectionSize;IfcPositiveLengthMeasure;NominalDepth;IfcPositiveLengthMeasure +Pset_WasteTerminalTypeWasteTrap;OutletConnectionSize;IfcPositiveLengthMeasure;InletConnectionSize;IfcPositiveLengthMeasure +Pset_WindowCommon;Reference;IfcIdentifier;AcousticRating;IfcLabel;FireRating;IfcLabel;SecurityRating;IfcLabel;IsExternal;IfcBoolean;Infiltration;IfcVolumetricFlowRateMeasure;ThermalTransmittance;IfcThermalTransmittanceMeasure;GlazingAreaFraction;IfcPositiveRatioMeasure;HasSillExternal;IfcBoolean;HasSillInternal;IfcBoolean;HasDrive;IfcBoolean;SmokeStop;IfcBoolean;FireExit;IfcBoolean;WaterTightnessRating;IfcLabel;MechanicalLoadRating;IfcLabel;WindLoadRating;IfcLabel +Pset_WorkControlCommon;WorkStartTime;IfcTime;WorkFinishTime;IfcTime;WorkDayDuration;IfcDuration;WorkWeekDuration;IfcDuration;WorkMonthDuration;IfcDuration +Pset_ZoneCommon;Reference;IfcIdentifier;IsExternal;IfcBoolean;GrossPlannedArea;IfcAreaMeasure;NetPlannedArea;IfcAreaMeasure;PubliclyAccessible;IfcBoolean;HandicapAccessible;IfcBoolean diff --git a/src/Mod/Arch/Resources/Arch.qrc b/src/Mod/Arch/Resources/Arch.qrc index bd79c2736b..34eacde520 100644 --- a/src/Mod/Arch/Resources/Arch.qrc +++ b/src/Mod/Arch/Resources/Arch.qrc @@ -1,152 +1,152 @@ - - - icons/Arch_Building.svg - icons/Arch_Floor.svg - icons/Arch_Cell.svg - icons/Arch_Wall.svg - icons/Arch_Site.svg - icons/Arch_Project.svg - icons/Arch_Structure.svg - icons/Arch_Add.svg - icons/Arch_Remove.svg - icons/Arch_MeshToShape.svg - icons/Arch_SplitMesh.svg - icons/preferences-arch.svg - icons/Arch_RemoveShape.svg - icons/Arch_SectionPlane.svg - icons/Arch_Window.svg - icons/Arch_Wall_Tree.svg - icons/Arch_Wall_Clone.svg - icons/Arch_Cell_Tree.svg - icons/Arch_Building_Tree.svg - icons/Arch_Floor_Tree.svg - icons/Arch_SectionPlane_Tree.svg - icons/Arch_Site_Tree.svg - icons/Arch_Project_Tree.svg - icons/Arch_Structure_Tree.svg - icons/Arch_Structure_Clone.svg - icons/Arch_Window_Tree.svg - icons/Arch_Window_Clone.svg - icons/Arch_Axis.svg - icons/Arch_Axis_Tree.svg - icons/Arch_Axis_System.svg - icons/Arch_Axis_System_Tree.svg - icons/Arch_Roof.svg - icons/Arch_Roof_Tree.svg - icons/Arch_CloseHoles.svg - icons/Arch_Check.svg - icons/Arch_SelectNonManifold.svg - icons/Arch_MergeWalls.svg - icons/Arch_Wall_Tree_Assembly.svg - icons/Arch_Fixture.svg - icons/Arch_Space.svg - icons/Arch_Space_Tree.svg - icons/Arch_Space_Clone.svg - icons/Arch_Stairs.svg - icons/Arch_Stairs_Tree.svg - icons/Arch_Rebar.svg - icons/Arch_Rebar_Tree.svg - icons/Arch_Frame.svg - icons/Arch_Frame_Tree.svg - icons/Arch_Panel.svg - icons/Arch_Panel_Tree.svg - icons/Arch_Panel_Clone.svg - icons/Arch_Panel_Cut.svg - icons/Arch_Panel_Sheet.svg - icons/Arch_Equipment.svg - icons/Arch_Equipment_Tree.svg - icons/Arch_Equipment_Clone.svg - icons/Arch_Survey.svg - icons/Arch_3Views.svg - icons/IFC.svg - icons/Arch_StructuralSystem.svg - icons/Arch_StructuralSystem_Tree.svg - icons/Arch_ToggleIfcBrepFlag.svg - icons/Arch_CutPlane.svg - icons/Arch_Bimserver.svg - icons/Git.svg - icons/Arch_Component.svg - icons/Arch_Component_Clone.svg - icons/Arch_Subcomponent.svg - icons/Arch_Material.svg - icons/Arch_Material_Group.svg - icons/Arch_Material_Multi.svg - icons/Arch_Schedule.svg - icons/ArchWorkbench.svg - icons/Arch_Fence.svg - icons/Arch_Fence_Tree.svg - ui/preferences-arch.ui - ui/preferences-archdefaults.ui - ui/preferences-ifc.ui - ui/preferences-dae.ui - ui/ArchMaterial.ui - ui/ArchMultiMaterial.ui - ui/ArchSchedule.ui - icons/Arch_Pipe.svg - icons/Arch_Pipe_Tree.svg - icons/Arch_PipeConnector.svg - icons/Arch_ToggleSubs.svg - icons/Arch_Nest.svg - icons/Arch_Grid.svg - icons/Arch_BuildingPart.svg - icons/Arch_BuildingPart_Tree.svg - icons/Arch_Profile.svg - icons/Arch_Reference.svg - ui/ParametersWindowDouble.svg - ui/ParametersWindowSimple.svg - ui/ParametersWindowFixed.svg - ui/ParametersWindowStash.svg - ui/ParametersDoorSimple.svg - ui/ParametersDoorGlass.svg - ui/ParametersBeam.svg - ui/ParametersPillar.svg - ui/ParametersDent.svg - ui/ParametersPanel.svg - ui/ParametersSlab.svg - ui/ParametersIbeam.svg - ui/ParametersStairs.svg - ui/BimServerTaskPanel.ui - ui/GitTaskPanel.ui - ui/DialogBimServerLogin.ui - ui/DialogDisplayText.ui - ui/ArchNest.ui - ui/DialogIfcProperties.ui - translations/Arch_af.qm - translations/Arch_de.qm - translations/Arch_fi.qm - translations/Arch_fr.qm - translations/Arch_it.qm - translations/Arch_nl.qm - translations/Arch_no.qm - translations/Arch_ru.qm - translations/Arch_uk.qm - translations/Arch_pl.qm - translations/Arch_hr.qm - translations/Arch_ja.qm - translations/Arch_hu.qm - translations/Arch_tr.qm - translations/Arch_sv-SE.qm - translations/Arch_zh-TW.qm - translations/Arch_pt-BR.qm - translations/Arch_cs.qm - translations/Arch_sk.qm - translations/Arch_es-ES.qm - translations/Arch_zh-CN.qm - translations/Arch_ro.qm - translations/Arch_pt-PT.qm - translations/Arch_sr.qm - translations/Arch_el.qm - translations/Arch_sl.qm - translations/Arch_eu.qm - translations/Arch_ca.qm - translations/Arch_gl.qm - translations/Arch_kab.qm - translations/Arch_ko.qm - translations/Arch_fil.qm - translations/Arch_id.qm - translations/Arch_lt.qm - translations/Arch_val-ES.qm - translations/Arch_ar.qm - translations/Arch_vi.qm - - + + + icons/Arch_Building.svg + icons/Arch_Floor.svg + icons/Arch_Cell.svg + icons/Arch_Wall.svg + icons/Arch_Site.svg + icons/Arch_Project.svg + icons/Arch_Structure.svg + icons/Arch_Add.svg + icons/Arch_Remove.svg + icons/Arch_MeshToShape.svg + icons/Arch_SplitMesh.svg + icons/preferences-arch.svg + icons/Arch_RemoveShape.svg + icons/Arch_SectionPlane.svg + icons/Arch_Window.svg + icons/Arch_Wall_Tree.svg + icons/Arch_Wall_Clone.svg + icons/Arch_Cell_Tree.svg + icons/Arch_Building_Tree.svg + icons/Arch_Floor_Tree.svg + icons/Arch_SectionPlane_Tree.svg + icons/Arch_Site_Tree.svg + icons/Arch_Project_Tree.svg + icons/Arch_Structure_Tree.svg + icons/Arch_Structure_Clone.svg + icons/Arch_Window_Tree.svg + icons/Arch_Window_Clone.svg + icons/Arch_Axis.svg + icons/Arch_Axis_Tree.svg + icons/Arch_Axis_System.svg + icons/Arch_Axis_System_Tree.svg + icons/Arch_Roof.svg + icons/Arch_Roof_Tree.svg + icons/Arch_CloseHoles.svg + icons/Arch_Check.svg + icons/Arch_SelectNonManifold.svg + icons/Arch_MergeWalls.svg + icons/Arch_Wall_Tree_Assembly.svg + icons/Arch_Fixture.svg + icons/Arch_Space.svg + icons/Arch_Space_Tree.svg + icons/Arch_Space_Clone.svg + icons/Arch_Stairs.svg + icons/Arch_Stairs_Tree.svg + icons/Arch_Rebar.svg + icons/Arch_Rebar_Tree.svg + icons/Arch_Frame.svg + icons/Arch_Frame_Tree.svg + icons/Arch_Panel.svg + icons/Arch_Panel_Tree.svg + icons/Arch_Panel_Clone.svg + icons/Arch_Panel_Cut.svg + icons/Arch_Panel_Sheet.svg + icons/Arch_Equipment.svg + icons/Arch_Equipment_Tree.svg + icons/Arch_Equipment_Clone.svg + icons/Arch_Survey.svg + icons/Arch_3Views.svg + icons/IFC.svg + icons/Arch_StructuralSystem.svg + icons/Arch_StructuralSystem_Tree.svg + icons/Arch_ToggleIfcBrepFlag.svg + icons/Arch_CutPlane.svg + icons/Arch_Bimserver.svg + icons/Git.svg + icons/Arch_Component.svg + icons/Arch_Component_Clone.svg + icons/Arch_Subcomponent.svg + icons/Arch_Material.svg + icons/Arch_Material_Group.svg + icons/Arch_Material_Multi.svg + icons/Arch_Schedule.svg + icons/ArchWorkbench.svg + icons/Arch_Fence.svg + icons/Arch_Fence_Tree.svg + ui/preferences-arch.ui + ui/preferences-archdefaults.ui + ui/preferences-ifc.ui + ui/preferences-dae.ui + ui/ArchMaterial.ui + ui/ArchMultiMaterial.ui + ui/ArchSchedule.ui + icons/Arch_Pipe.svg + icons/Arch_Pipe_Tree.svg + icons/Arch_PipeConnector.svg + icons/Arch_ToggleSubs.svg + icons/Arch_Nest.svg + icons/Arch_Grid.svg + icons/Arch_BuildingPart.svg + icons/Arch_BuildingPart_Tree.svg + icons/Arch_Profile.svg + icons/Arch_Reference.svg + ui/ParametersWindowDouble.svg + ui/ParametersWindowSimple.svg + ui/ParametersWindowFixed.svg + ui/ParametersWindowStash.svg + ui/ParametersDoorSimple.svg + ui/ParametersDoorGlass.svg + ui/ParametersBeam.svg + ui/ParametersPillar.svg + ui/ParametersDent.svg + ui/ParametersPanel.svg + ui/ParametersSlab.svg + ui/ParametersIbeam.svg + ui/ParametersStairs.svg + ui/BimServerTaskPanel.ui + ui/GitTaskPanel.ui + ui/DialogBimServerLogin.ui + ui/DialogDisplayText.ui + ui/ArchNest.ui + ui/DialogIfcProperties.ui + translations/Arch_af.qm + translations/Arch_de.qm + translations/Arch_fi.qm + translations/Arch_fr.qm + translations/Arch_it.qm + translations/Arch_nl.qm + translations/Arch_no.qm + translations/Arch_ru.qm + translations/Arch_uk.qm + translations/Arch_pl.qm + translations/Arch_hr.qm + translations/Arch_ja.qm + translations/Arch_hu.qm + translations/Arch_tr.qm + translations/Arch_sv-SE.qm + translations/Arch_zh-TW.qm + translations/Arch_pt-BR.qm + translations/Arch_cs.qm + translations/Arch_sk.qm + translations/Arch_es-ES.qm + translations/Arch_zh-CN.qm + translations/Arch_ro.qm + translations/Arch_pt-PT.qm + translations/Arch_sr.qm + translations/Arch_el.qm + translations/Arch_sl.qm + translations/Arch_eu.qm + translations/Arch_ca.qm + translations/Arch_gl.qm + translations/Arch_kab.qm + translations/Arch_ko.qm + translations/Arch_fil.qm + translations/Arch_id.qm + translations/Arch_lt.qm + translations/Arch_val-ES.qm + translations/Arch_ar.qm + translations/Arch_vi.qm + + diff --git a/src/Mod/Arch/arch.dox b/src/Mod/Arch/arch.dox index d12c3f46e5..9d5a537fe9 100644 --- a/src/Mod/Arch/arch.dox +++ b/src/Mod/Arch/arch.dox @@ -1,3 +1,3 @@ -/** \defgroup ARCH Arch - * \ingroup PYTHONWORKBENCHES */ - +/** \defgroup ARCH Arch + * \ingroup PYTHONWORKBENCHES */ + diff --git a/src/Mod/Arch/importGBXML.py b/src/Mod/Arch/importGBXML.py index 573921077e..ae4f3afb50 100644 --- a/src/Mod/Arch/importGBXML.py +++ b/src/Mod/Arch/importGBXML.py @@ -1,502 +1,502 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2015 * -#* Yorik van Havre * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -__title__= "FreeCAD GbXml exporter" -__author__ = "Yorik van Havre" -__url__ = "http://www.freecadweb.org" - -import os,FreeCAD,Draft - -if FreeCAD.GuiUp: - from DraftTools import translate -else: - # \cond - def translate(ctx,txt): - return txt - # \endcond - -## @package importGBXML -# \ingroup ARCH -# \brief GBXML file format exporter -# -# This module provides tools to export GBXML files. - -def export(objectslist,filename): - - if len(objectslist) != 1: - FreeCAD.Console.PrintError(translate("Arch","This exporter can currently only export one site object")+"\n") - return - site = objectslist[0] - if Draft.getType(site) != "Site": - FreeCAD.Console.PrintError(translate("Arch","This exporter can currently only export one site object")+"\n") - return - - filestream = pyopen(filename,"wb") - - # header - filestream.write( '\n' ) - filestream.write( '\n' % FreeCAD.Version()[0]+FreeCAD.Version()[1]+FreeCAD.Version()[2] ) - filestream.write( '\n' ) - filestream.write( '\n' ) - - # campus - filestream.write( '\n' % site.Name ) - filestream.write( '\n' ) - filestream.write( ' %s\n' % site.PostalCode ) - filestream.write( ' %f\n' % site.Longitude ) - filestream.write( ' %f\n' % site.Latitude ) - filestream.write( ' %f/Elevation>\n' % site.Elevation.Value ) - filestream.write( ' %s\n' % site.Label ) - #filestream.write( ' 0\n' ) - #filestream.write( ' 53158_2004\n' ) - filestream.write( '\n' ) - - # buildings - for building in site.Group: - if Draft.getType(building) == "Building": - filestream.write( ' \n' % (building.Name,building.BuildingType) ) - filestream.write( ' $f\n' % str(building.Area.getValueAs("m^2")) ) - - # spaces - for space in Draft.getObjectsOfType(Draft.getGroupContents(building.Group,addgroups=True),"Space"): - if not space.Zone: - FreeCAD.Console.PrintError(translate("Arch","Error: Space '%s' has no Zone. Aborting.") % space.Label + "\n") - return - filestream.write( ' \n' % (space.Name, space.SpaceType, space.Zone.Name, space.Conditioning) ) - #filestream.write( ' %s\n' % space.Name ) # not sure what this is used for? - filestream.write( ' %s\n' % space.Label ) - filestream.write( ' %s\n' % space.Description ) - filestream.write( ' %i\n' % space.NumberOfPeople) - filestream.write( ' %f\n' % space.LightingPower/space.Area.getValueAs("m^2") ) - filestream.write( ' %f\n' % space.EquipmentPower/space.Area.getValueAs("m^2") ) - filestream.write( ' $f\n' % space.Area.getValueAs("m^2") ) - filestream.write( ' $f\n' % FreeCAD.Units.Quantity(space.Shape.Volume,FreeCAD.Units.Volume).getValueAs("m^3") ) - filestream.write( ' \n' % space.Name ) - - # shells - for solid in space.Shape.Solids: - filestream.write( ' \n' ) - for face in solid.Faces: - filestream.write( ' \n' ) - for v in face.OuterWire.Vertexes: - filestream.write( ' \n' ) - filestream.write( ' %f\n' % v.Point.x ) - filestream.write( ' %f\n' % v.Point.y ) - filestream.write( ' %f\n' % v.Point.z ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - - # surfaces - for i,face in enumerate(space.Shape.Faces): - filestream.write( ' \n' ) - filestream.write( ' \n' ) - for v in face.OuterWire.Vertexes: - filestream.write( ' \n' ) - filestream.write( ' %f\n' % v.Point.x ) - filestream.write( ' %f\n' % v.Point.y ) - filestream.write( ' %f\n' % v.Point.z ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - filestream.write( ' \n' ) - - filestream.write( ' \n' ) - - filestream.write( ' \n' ) - - filestream.write( '\n' ) - - filestream.write( '' ) - -''' - 18000.00000 - - Lab corridor - - 1.00000 - 1.50000 - 0.00000 - 800.00000 - 6400.00000 - - - - - 0.00000 - 1200.00000 - 0.00000 - - - 0.00000 - 1200.00000 - 96.00000 - - - 480.00000 - 1200.00000 - 96.00000 - - - 480.00000 - 1200.00000 - 0.00000 - - - - ... repeat - - - - - - - - - 9.981497 - -31.19363 - 0 - - - 9.981497 - -5.193626 - 0 - - - 9.981497 - -5.193626 - 100 - - - 9.981497 - -31.19363 - 100 - - - - - - - - - 21E2 - - - ... repeat - - - - - - - Floor - - - 90.00 - - 0.00000 - 1320.00000 - 0.00000 - - 180.00 - 480.00000 - 240.00000 - - - - - 0.00000 - 1320.00000 - 0.00000 - - - 480.00000 - 1320.00000 - 0.00000 - - - 960.00000 - 1320.00000 - 0.00000 - - - 960.00000 - 1200.00000 - 0.00000 - - - 480.00000 - 1200.00000 - 0.00000 - - - 0.00000 - 1200.00000 - 0.00000 - - - - - - - - - Surface 4 - - - 180.00 - - 960.00000 - 0.00000 - 0.00000 - - 90.00 - 114.00000 - 480.00000 - - - - - 960.00000 - 0.00000 - 0.00000 - - - 1440.00000 - 0.00000 - 0.00000 - - - 1440.00000 - 0.00000 - 114.00000 - - - 960.00000 - 0.00000 - 114.00000 - - - - - Opening1 - - - 96.00000 - 24.00000 - - 72.00000 - 48.00000 - - - - - 1056.00000 - 0.00000 - 24.00000 - - - 1104.00000 - 0.00000 - 24.00000 - - - 1104.00000 - 0.00000 - 96.00000 - - - 1056.00000 - 0.00000 - 96.00000 - - - - - - Opening2 - - - 216.00000 - 24.00000 - - 72.00000 - 48.00000 - - - - - 1176.00000 - 0.00000 - 24.00000 - - - 1224.00000 - 0.00000 - 24.00000 - - - 1224.00000 - 0.00000 - 96.00000 - - - 1176.00000 - 0.00000 - 96.00000 - - - - - - Opening3 - - - 336.00000 - 24.00000 - - 72.00000 - 48.00000 - - - - - 1296.00000 - 0.00000 - 24.00000 - - - 1344.00000 - 0.00000 - 24.00000 - - - 1344.00000 - 0.00000 - 96.00000 - - - 1296.00000 - 0.00000 - 96.00000 - - - - - - - - ... repeat - - - - - - - Standard - - - - Standard - - - - Standard - - - - Standard - - - - - - - Lab and Corridor - - 0" - 0.00000 - 0.00000 - 2.37037 - 812.69841 - 72.00000 - 75.00000 - - - Office - - 1" - 0.13333 - 20.00000 - 0.05333 - 8.00000 - 72.00000 - 75.00000 - - - Warehouse - - 5/32" - 0.05000 - 25.71429 - 0.00000 - 0.00000 - 60.00000 - 80.00000 - - - - - Autodesk, Inc. - Autodesk Project Vasari CEA - TP2.0 20110514_1800 - Microsoft Windows XP - - - - - sp3_LabandCorridor_Lab1 - 5534.837890625 - Space Cooling Roof Cond - 21E3 - - -... repeat - -''' - - - - +#*************************************************************************** +#* * +#* Copyright (c) 2015 * +#* Yorik van Havre * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU Lesser General Public License (LGPL) * +#* as published by the Free Software Foundation; either version 2 of * +#* the License, or (at your option) any later version. * +#* for detail see the LICENCE text file. * +#* * +#* This program is distributed in the hope that it will be useful, * +#* but WITHOUT ANY WARRANTY; without even the implied warranty of * +#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +#* GNU Library General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with this program; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#*************************************************************************** + +__title__= "FreeCAD GbXml exporter" +__author__ = "Yorik van Havre" +__url__ = "http://www.freecadweb.org" + +import os,FreeCAD,Draft + +if FreeCAD.GuiUp: + from DraftTools import translate +else: + # \cond + def translate(ctx,txt): + return txt + # \endcond + +## @package importGBXML +# \ingroup ARCH +# \brief GBXML file format exporter +# +# This module provides tools to export GBXML files. + +def export(objectslist,filename): + + if len(objectslist) != 1: + FreeCAD.Console.PrintError(translate("Arch","This exporter can currently only export one site object")+"\n") + return + site = objectslist[0] + if Draft.getType(site) != "Site": + FreeCAD.Console.PrintError(translate("Arch","This exporter can currently only export one site object")+"\n") + return + + filestream = pyopen(filename,"wb") + + # header + filestream.write( '\n' ) + filestream.write( '\n' % FreeCAD.Version()[0]+FreeCAD.Version()[1]+FreeCAD.Version()[2] ) + filestream.write( '\n' ) + filestream.write( '\n' ) + + # campus + filestream.write( '\n' % site.Name ) + filestream.write( '\n' ) + filestream.write( ' %s\n' % site.PostalCode ) + filestream.write( ' %f\n' % site.Longitude ) + filestream.write( ' %f\n' % site.Latitude ) + filestream.write( ' %f/Elevation>\n' % site.Elevation.Value ) + filestream.write( ' %s\n' % site.Label ) + #filestream.write( ' 0\n' ) + #filestream.write( ' 53158_2004\n' ) + filestream.write( '\n' ) + + # buildings + for building in site.Group: + if Draft.getType(building) == "Building": + filestream.write( ' \n' % (building.Name,building.BuildingType) ) + filestream.write( ' $f\n' % str(building.Area.getValueAs("m^2")) ) + + # spaces + for space in Draft.getObjectsOfType(Draft.getGroupContents(building.Group,addgroups=True),"Space"): + if not space.Zone: + FreeCAD.Console.PrintError(translate("Arch","Error: Space '%s' has no Zone. Aborting.") % space.Label + "\n") + return + filestream.write( ' \n' % (space.Name, space.SpaceType, space.Zone.Name, space.Conditioning) ) + #filestream.write( ' %s\n' % space.Name ) # not sure what this is used for? + filestream.write( ' %s\n' % space.Label ) + filestream.write( ' %s\n' % space.Description ) + filestream.write( ' %i\n' % space.NumberOfPeople) + filestream.write( ' %f\n' % space.LightingPower/space.Area.getValueAs("m^2") ) + filestream.write( ' %f\n' % space.EquipmentPower/space.Area.getValueAs("m^2") ) + filestream.write( ' $f\n' % space.Area.getValueAs("m^2") ) + filestream.write( ' $f\n' % FreeCAD.Units.Quantity(space.Shape.Volume,FreeCAD.Units.Volume).getValueAs("m^3") ) + filestream.write( ' \n' % space.Name ) + + # shells + for solid in space.Shape.Solids: + filestream.write( ' \n' ) + for face in solid.Faces: + filestream.write( ' \n' ) + for v in face.OuterWire.Vertexes: + filestream.write( ' \n' ) + filestream.write( ' %f\n' % v.Point.x ) + filestream.write( ' %f\n' % v.Point.y ) + filestream.write( ' %f\n' % v.Point.z ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + + # surfaces + for i,face in enumerate(space.Shape.Faces): + filestream.write( ' \n' ) + filestream.write( ' \n' ) + for v in face.OuterWire.Vertexes: + filestream.write( ' \n' ) + filestream.write( ' %f\n' % v.Point.x ) + filestream.write( ' %f\n' % v.Point.y ) + filestream.write( ' %f\n' % v.Point.z ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + filestream.write( ' \n' ) + + filestream.write( ' \n' ) + + filestream.write( ' \n' ) + + filestream.write( '\n' ) + + filestream.write( '' ) + +''' + 18000.00000 + + Lab corridor + + 1.00000 + 1.50000 + 0.00000 + 800.00000 + 6400.00000 + + + + + 0.00000 + 1200.00000 + 0.00000 + + + 0.00000 + 1200.00000 + 96.00000 + + + 480.00000 + 1200.00000 + 96.00000 + + + 480.00000 + 1200.00000 + 0.00000 + + + + ... repeat + + + + + + + + + 9.981497 + -31.19363 + 0 + + + 9.981497 + -5.193626 + 0 + + + 9.981497 + -5.193626 + 100 + + + 9.981497 + -31.19363 + 100 + + + + + + + + + 21E2 + + + ... repeat + + + + + + + Floor + + + 90.00 + + 0.00000 + 1320.00000 + 0.00000 + + 180.00 + 480.00000 + 240.00000 + + + + + 0.00000 + 1320.00000 + 0.00000 + + + 480.00000 + 1320.00000 + 0.00000 + + + 960.00000 + 1320.00000 + 0.00000 + + + 960.00000 + 1200.00000 + 0.00000 + + + 480.00000 + 1200.00000 + 0.00000 + + + 0.00000 + 1200.00000 + 0.00000 + + + + + + + + + Surface 4 + + + 180.00 + + 960.00000 + 0.00000 + 0.00000 + + 90.00 + 114.00000 + 480.00000 + + + + + 960.00000 + 0.00000 + 0.00000 + + + 1440.00000 + 0.00000 + 0.00000 + + + 1440.00000 + 0.00000 + 114.00000 + + + 960.00000 + 0.00000 + 114.00000 + + + + + Opening1 + + + 96.00000 + 24.00000 + + 72.00000 + 48.00000 + + + + + 1056.00000 + 0.00000 + 24.00000 + + + 1104.00000 + 0.00000 + 24.00000 + + + 1104.00000 + 0.00000 + 96.00000 + + + 1056.00000 + 0.00000 + 96.00000 + + + + + + Opening2 + + + 216.00000 + 24.00000 + + 72.00000 + 48.00000 + + + + + 1176.00000 + 0.00000 + 24.00000 + + + 1224.00000 + 0.00000 + 24.00000 + + + 1224.00000 + 0.00000 + 96.00000 + + + 1176.00000 + 0.00000 + 96.00000 + + + + + + Opening3 + + + 336.00000 + 24.00000 + + 72.00000 + 48.00000 + + + + + 1296.00000 + 0.00000 + 24.00000 + + + 1344.00000 + 0.00000 + 24.00000 + + + 1344.00000 + 0.00000 + 96.00000 + + + 1296.00000 + 0.00000 + 96.00000 + + + + + + + + ... repeat + + + + + + + Standard + + + + Standard + + + + Standard + + + + Standard + + + + + + + Lab and Corridor + + 0" + 0.00000 + 0.00000 + 2.37037 + 812.69841 + 72.00000 + 75.00000 + + + Office + + 1" + 0.13333 + 20.00000 + 0.05333 + 8.00000 + 72.00000 + 75.00000 + + + Warehouse + + 5/32" + 0.05000 + 25.71429 + 0.00000 + 0.00000 + 60.00000 + 80.00000 + + + + + Autodesk, Inc. + Autodesk Project Vasari CEA + TP2.0 20110514_1800 + Microsoft Windows XP + + + + + sp3_LabandCorridor_Lab1 + 5534.837890625 + Space Cooling Roof Cond + 21E3 + + +... repeat + +''' + + + +