From b9dc721a96630b6e79246a6e67a3552dc8dd9d24 Mon Sep 17 00:00:00 2001 From: Jeremy Tammik Date: Sun, 18 May 2014 04:59:48 -0400 Subject: [PATCH] scale to metres and add element properties --- RvtVa3c/Util.cs | 52 + RvtVa3c/Va3cExportContext.cs | 24 +- RvtVa3c/Va3cScene.cs | 3 +- models/Project1.rvt.js | 3000 ++++++++++++++++++++-------------- models/Wall.rvt.js | 100 +- models/WallWindow.rvt.js | 480 +++--- 6 files changed, 2185 insertions(+), 1474 deletions(-) diff --git a/RvtVa3c/Util.cs b/RvtVa3c/Util.cs index 2728acd..4f3ed0f 100644 --- a/RvtVa3c/Util.cs +++ b/RvtVa3c/Util.cs @@ -1,5 +1,6 @@ using Autodesk.Revit.DB; using System; +using System.Collections.Generic; namespace RvtVa3c { @@ -77,5 +78,56 @@ public static string ElementDescription( typeName, categoryName, familyName, symbolName, e.Id.IntegerValue, e.Name ); } + + /// + /// Return a dictionary of all the given + /// element parameter names and values. + /// + public static Dictionary + GetElementProperties( + Element e, + bool includeType ) + { + IList parameters + = e.GetOrderedParameters(); + + Dictionary a + = new Dictionary( + parameters.Count ); + + string key; + + foreach( Parameter p in parameters ) + { + key = p.Definition.Name; + + if( !a.ContainsKey( key ) ) + { + a.Add( key, p.AsValueString() ); + } + } + + if( includeType ) + { + ElementId idType = e.GetTypeId(); + + if( null != idType ) + { + Document doc = e.Document; + Element typ = doc.GetElement( idType ); + parameters = typ.GetOrderedParameters(); + foreach( Parameter p in parameters ) + { + key = "Type " + p.Definition.Name; + + if( !a.ContainsKey( key ) ) + { + a.Add( key, p.AsValueString() ); + } + } + } + } + return a; + } } } diff --git a/RvtVa3c/Va3cExportContext.cs b/RvtVa3c/Va3cExportContext.cs index c8db3ff..c1cda88 100644 --- a/RvtVa3c/Va3cExportContext.cs +++ b/RvtVa3c/Va3cExportContext.cs @@ -29,6 +29,11 @@ class Va3cExportContext : IExportContext { string _output_folder_path = "C:/a/vs/va3c/RvtVa3c/models/"; + /// + /// Scale the model down from millimetres to metres. + /// + double _scale = 0.001; + /// /// If true, switch Y and Z coordinate /// and flip X to negative. @@ -336,7 +341,7 @@ Va3cScene.Va3cMaterial m CurrentGeometryPerMaterial.type = "Geometry"; CurrentGeometryPerMaterial.data = new Va3cScene.Va3cGeometryData(); CurrentGeometryPerMaterial.data.faces = new List(); - CurrentGeometryPerMaterial.data.vertices = new List(); + CurrentGeometryPerMaterial.data.vertices = new List(); CurrentGeometryPerMaterial.data.normals = new List(); CurrentGeometryPerMaterial.data.uvs = new List(); CurrentGeometryPerMaterial.data.visible = true; @@ -688,17 +693,17 @@ public RenderNodeAction OnElementBegin( } public void OnElementEnd( - ElementId elementId ) + ElementId id ) { // Note: this method is invoked even for // elements that were skipped. - Element e = _doc.GetElement( elementId ); + Element e = _doc.GetElement( id ); string uid = e.UniqueId; Debug.WriteLine( string.Format( "OnElementEnd: id {0} category {1} name {2}", - elementId.IntegerValue, e.Category.Name, e.Name ) ); + id.IntegerValue, e.Category.Name, e.Name ) ); if( _objects.ContainsKey( uid ) ) { @@ -719,15 +724,20 @@ public void OnElementEnd( foreach( KeyValuePair p in _vertices[material] ) { - geo.data.vertices.Add( p.Key.X ); - geo.data.vertices.Add( p.Key.Y ); - geo.data.vertices.Add( p.Key.Z ); + geo.data.vertices.Add( _scale * p.Key.X ); + geo.data.vertices.Add( _scale * p.Key.Y ); + geo.data.vertices.Add( _scale * p.Key.Z ); } obj.geometry = geo.uuid; _geometries.Add( geo.uuid, geo ); _currentElement.children.Add( obj ); } + Dictionary d + = Util.GetElementProperties( e, true ); + + _currentElement.userData = d; + _objects.Add( _currentElement.uuid, _currentElement ); _elementStack.Pop(); diff --git a/RvtVa3c/Va3cScene.cs b/RvtVa3c/Va3cScene.cs index 42b5775..c177a61 100644 --- a/RvtVa3c/Va3cScene.cs +++ b/RvtVa3c/Va3cScene.cs @@ -79,7 +79,7 @@ public class Va3cGeometryData //jason.data.receiveShadow = false; //jason.data.doubleSided = true; - [DataMember] public List vertices { get; set; } // millimetres + [DataMember] public List vertices { get; set; } // millimetres // "morphTargets": [] [DataMember] public List normals { get; set; } // "colors": [] @@ -122,6 +122,7 @@ public class Va3cObject //[DataMember] public bool castShadow { get; set; } //[DataMember] public bool receiveShadow { get; set; } //[DataMember] public bool doubleSided { get; set; } + [DataMember] public Dictionary userData { get; set; } } // https://github.com/mrdoob/three.js/wiki/JSON-Model-format-3 diff --git a/models/Project1.rvt.js b/models/Project1.rvt.js index d113776..4607a5f 100644 --- a/models/Project1.rvt.js +++ b/models/Project1.rvt.js @@ -5,108 +5,108 @@ "type": "Geometry", "data": { "vertices": [ - 6322, - 2134, - -3200, - 9014, - 0, - -3200, - 6322, - 0, - -3200, - 9014, - 6044, - -3200, - 5865, - 2743, - -3200, - 2817, - 2743, - -3200, - 4493, - 2134, - -3200, - 5865, - 5182, - -3200, - 1648, - 6044, - -3200, - 4493, - 0, - -3200, - -8359, - 0, - -3200, - 1648, - 3048, - -3200, - 2817, - 5182, - -3200, - -8359, - 3048, - -3200, - -8359, - 0, - -2997, - 1648, - 3048, - -2997, - -8359, - 3048, - -2997, - 1801, - 0, - -2997, - 2004, - 0, - -2997, - 2817, - 2743, - -2997, - 4493, - 2134, - -2997, - 2817, - 5182, - -2997, - 1801, - 5974, - -2997, - 2004, - 5974, - -2997, - 1648, - 5974, - -2997, - 5865, - 5182, - -2997, - 5865, - 2743, - -2997, - 8811, - 0, - -2997, - 9014, - 0, - -2997, - 6322, - 2134, - -2997, - 6322, - 0, - -2997, - 9014, - 5974, - -2997, - 8811, - 5974, - -2997, - 4493, - 0, - -2997 + 6.322, + 2.134, + -3.2, + 9.014, + 0.0, + -3.2, + 6.322, + 0.0, + -3.2, + 9.014, + 6.0440000000000005, + -3.2, + 5.865, + 2.743, + -3.2, + 2.817, + 2.743, + -3.2, + 4.493, + 2.134, + -3.2, + 5.865, + 5.182, + -3.2, + 1.6480000000000001, + 6.0440000000000005, + -3.2, + 4.493, + 0.0, + -3.2, + -8.359, + 0.0, + -3.2, + 1.6480000000000001, + 3.048, + -3.2, + 2.817, + 5.182, + -3.2, + -8.359, + 3.048, + -3.2, + -8.359, + 0.0, + -2.997, + 1.6480000000000001, + 3.048, + -2.997, + -8.359, + 3.048, + -2.997, + 1.801, + 0.0, + -2.997, + 2.004, + 0.0, + -2.997, + 2.817, + 2.743, + -2.997, + 4.493, + 2.134, + -2.997, + 2.817, + 5.182, + -2.997, + 1.801, + 5.974, + -2.997, + 2.004, + 5.974, + -2.997, + 1.6480000000000001, + 5.974, + -2.997, + 5.865, + 5.182, + -2.997, + 5.865, + 2.743, + -2.997, + 8.811, + 0.0, + -2.997, + 9.014, + 0.0, + -2.997, + 6.322, + 2.134, + -2.997, + 6.322, + 0.0, + -2.997, + 9.014, + 5.974, + -2.997, + 8.811, + 5.974, + -2.997, + 4.493, + 0.0, + -2.997 ], "normals": [], "uvs": [], @@ -396,36 +396,36 @@ "type": "Geometry", "data": { "vertices": [ - 9014, - 3100, - 5385, - 9014, - 0, - 5385, - 9014, - 0, - -2997, - 9014, - 5974, - -2997, - 8811, - 3048, - 5385, - 8811, - 5974, - -2997, - 8811, - 0, - -2997, - 8811, - 0, - 5182, - 8811, - 0, - 5385, - 8811, - 3100, - 5385 + 9.014, + 3.1, + 5.385, + 9.014, + 0.0, + 5.385, + 9.014, + 0.0, + -2.997, + 9.014, + 5.974, + -2.997, + 8.811, + 3.048, + 5.385, + 8.811, + 5.974, + -2.997, + 8.811, + 0.0, + -2.997, + 8.811, + 0.0, + 5.182, + 8.811, + 0.0, + 5.385, + 8.811, + 3.1, + 5.385 ], "normals": [], "uvs": [], @@ -507,54 +507,54 @@ "type": "Geometry", "data": { "vertices": [ - -8562, - 4546, - 5385, - -8562, - 0, - 5385, - 1801, - 3048, - 5385, - 8811, - 0, - 5385, - 1801, - 4546, - 5385, - 8811, - 3048, - 5385, - 8811, - 0, - 5182, - 2004, - 0, - 5182, - 8811, - 3048, - 5182, - 1801, - 3048, - 5182, - 1801, - 0, - 5182, - -8359, - 0, - 5182, - -8562, - 0, - 5182, - -8359, - 4511, - 5182, - -8562, - 4511, - 5182, - 1801, - 4511, - 5182 + -8.562, + 4.546, + 5.385, + -8.562, + 0.0, + 5.385, + 1.801, + 3.048, + 5.385, + 8.811, + 0.0, + 5.385, + 1.801, + 4.546, + 5.385, + 8.811, + 3.048, + 5.385, + 8.811, + 0.0, + 5.182, + 2.004, + 0.0, + 5.182, + 8.811, + 3.048, + 5.182, + 1.801, + 3.048, + 5.182, + 1.801, + 0.0, + 5.182, + -8.359, + 0.0, + 5.182, + -8.562, + 0.0, + 5.182, + -8.359, + 4.511, + 5.182, + -8.562, + 4.511, + 5.182, + 1.801, + 4.511, + 5.182 ], "normals": [], "uvs": [], @@ -684,60 +684,60 @@ "type": "Geometry", "data": { "vertices": [ - -8562, - 0, - -3200, - -8562, - 0, - 3759, - -8562, - 2134, - 3759, - -8562, - 3074, - -3200, - -8562, - 4511, - 5182, - -8562, - 0, - 4674, - -8562, - 0, - 5182, - -8562, - 2134, - 4674, - -8359, - 0, - 5182, - -8359, - 0, - 4674, - -8359, - 2134, - 4674, - -8359, - 2134, - 3759, - -8359, - 4511, - 5182, - -8359, - 0, - -2997, - -8359, - 0, - -3200, - -8359, - 3048, - -3200, - -8359, - 3074, - -3200, - -8359, - 0, - 3759 + -8.562, + 0.0, + -3.2, + -8.562, + 0.0, + 3.759, + -8.562, + 2.134, + 3.759, + -8.562, + 3.074, + -3.2, + -8.562, + 4.511, + 5.182, + -8.562, + 0.0, + 4.674, + -8.562, + 0.0, + 5.182, + -8.562, + 2.134, + 4.674, + -8.359, + 0.0, + 5.182, + -8.359, + 0.0, + 4.674, + -8.359, + 2.134, + 4.674, + -8.359, + 2.134, + 3.759, + -8.359, + 4.511, + 5.182, + -8.359, + 0.0, + -2.997, + -8.359, + 0.0, + -3.2, + -8.359, + 3.048, + -3.2, + -8.359, + 3.074, + -3.2, + -8.359, + 0.0, + 3.759 ], "normals": [], "uvs": [], @@ -883,30 +883,30 @@ "type": "Geometry", "data": { "vertices": [ - 2004, - 3170, - 5182, - 2004, - 0, - 5182, - 2004, - 0, - -2997, - 2004, - 5974, - -2997, - 1801, - 5974, - -2997, - 1801, - 0, - -2997, - 1801, - 3170, - 5182, - 1801, - 0, - 5182 + 2.004, + 3.17, + 5.182, + 2.004, + 0.0, + 5.182, + 2.004, + 0.0, + -2.997, + 2.004, + 5.974, + -2.997, + 1.801, + 5.974, + -2.997, + 1.801, + 0.0, + -2.997, + 1.801, + 3.17, + 5.182, + 1.801, + 0.0, + 5.182 ], "normals": [], "uvs": [], @@ -972,30 +972,30 @@ "type": "Geometry", "data": { "vertices": [ - 1648, - 3209, - 5537, - 1648, - 3048, - 5537, - 9167, - 3048, - 5537, - 9167, - 3209, - 5537, - 9167, - 6096, - -3353, - 9167, - 6257, - -3353, - 1648, - 6257, - -3353, - 1648, - 6096, - -3353 + 1.6480000000000001, + 3.209, + 5.537, + 1.6480000000000001, + 3.048, + 5.537, + 9.167, + 3.048, + 5.537, + 9.167, + 3.209, + 5.537, + 9.167, + 6.096, + -3.353, + 9.167, + 6.2570000000000006, + -3.353, + 1.6480000000000001, + 6.2570000000000006, + -3.353, + 1.6480000000000001, + 6.096, + -3.353 ], "normals": [], "uvs": [], @@ -1061,30 +1061,30 @@ "type": "Geometry", "data": { "vertices": [ - -8715, - 4572, - 5537, - 1801, - 3048, - -3353, - 1801, - 4572, - 5537, - -8715, - 3048, - -3353, - 1801, - 4727, - 5537, - 1801, - 3203, - -3353, - -8715, - 4727, - 5537, - -8715, - 3203, - -3353 + -8.715, + 4.572, + 5.537, + 1.801, + 3.048, + -3.353, + 1.801, + 4.572, + 5.537, + -8.715, + 3.048, + -3.353, + 1.801, + 4.727, + 5.537, + 1.801, + 3.203, + -3.353, + -8.715, + 4.727, + 5.537, + -8.715, + 3.203, + -3.353 ], "normals": [], "uvs": [], @@ -1150,102 +1150,102 @@ "type": "Geometry", "data": { "vertices": [ - 6322, - 0, - -2972, - 6398, - 0, - -2972, - 6322, - 2134, - -2972, - 4417, - 0, - -2972, - 4493, - 0, - -2972, - 4493, - 2134, - -2972, - 6398, - 2210, - -2972, - 4417, - 2210, - -2972, - 6398, - 2210, - -2997, - 6322, - 2134, - -2997, - 4493, - 2134, - -2997, - 6398, - 0, - -2997, - 4417, - 2210, - -2997, - 4417, - 0, - -2997, - 6322, - 0, - -2997, - 4493, - 0, - -2997, - 6398, - 0, - -3226, - 6322, - 0, - -3226, - 6322, - 2134, - -3226, - 6398, - 2210, - -3226, - 4493, - 2134, - -3226, - 4493, - 0, - -3226, - 4417, - 0, - -3226, - 4417, - 2210, - -3226, - 4417, - 0, - -3200, - 4493, - 0, - -3200, - 4493, - 2134, - -3200, - 4417, - 2210, - -3200, - 6322, - 2134, - -3200, - 6322, - 0, - -3200, - 6398, - 0, - -3200, - 6398, - 2210, - -3200 + 6.322, + 0.0, + -2.972, + 6.3980000000000006, + 0.0, + -2.972, + 6.322, + 2.134, + -2.972, + 4.417, + 0.0, + -2.972, + 4.493, + 0.0, + -2.972, + 4.493, + 2.134, + -2.972, + 6.3980000000000006, + 2.21, + -2.972, + 4.417, + 2.21, + -2.972, + 6.3980000000000006, + 2.21, + -2.997, + 6.322, + 2.134, + -2.997, + 4.493, + 2.134, + -2.997, + 6.3980000000000006, + 0.0, + -2.997, + 4.417, + 2.21, + -2.997, + 4.417, + 0.0, + -2.997, + 6.322, + 0.0, + -2.997, + 4.493, + 0.0, + -2.997, + 6.3980000000000006, + 0.0, + -3.226, + 6.322, + 0.0, + -3.226, + 6.322, + 2.134, + -3.226, + 6.3980000000000006, + 2.21, + -3.226, + 4.493, + 2.134, + -3.226, + 4.493, + 0.0, + -3.226, + 4.417, + 0.0, + -3.226, + 4.417, + 2.21, + -3.226, + 4.417, + 0.0, + -3.2, + 4.493, + 0.0, + -3.2, + 4.493, + 2.134, + -3.2, + 4.417, + 2.21, + -3.2, + 6.322, + 2.134, + -3.2, + 6.322, + 0.0, + -3.2, + 6.3980000000000006, + 0.0, + -3.2, + 6.3980000000000006, + 2.21, + -3.2 ], "normals": [], "uvs": [], @@ -1487,54 +1487,54 @@ "type": "Geometry", "data": { "vertices": [ - 6220, - 102, - -3175, - 6220, - 2032, - -3175, - 5509, - 2032, - -3175, - 5509, - 102, - -3175, - 5509, - 102, - -3182, - 5509, - 2032, - -3182, - 6220, - 2032, - -3182, - 6220, - 102, - -3182, - 5306, - 2032, - -3175, - 4595, - 2032, - -3175, - 4595, - 102, - -3175, - 5306, - 102, - -3175, - 5306, - 102, - -3182, - 4595, - 102, - -3182, - 4595, - 2032, - -3182, - 5306, - 2032, - -3182 + 6.22, + 0.10200000000000001, + -3.1750000000000003, + 6.22, + 2.032, + -3.1750000000000003, + 5.509, + 2.032, + -3.1750000000000003, + 5.509, + 0.10200000000000001, + -3.1750000000000003, + 5.509, + 0.10200000000000001, + -3.182, + 5.509, + 2.032, + -3.182, + 6.22, + 2.032, + -3.182, + 6.22, + 0.10200000000000001, + -3.182, + 5.306, + 2.032, + -3.1750000000000003, + 4.595, + 2.032, + -3.1750000000000003, + 4.595, + 0.10200000000000001, + -3.1750000000000003, + 5.306, + 0.10200000000000001, + -3.1750000000000003, + 5.306, + 0.10200000000000001, + -3.182, + 4.595, + 0.10200000000000001, + -3.182, + 4.595, + 2.032, + -3.182, + 5.306, + 2.032, + -3.182 ], "normals": [], "uvs": [], @@ -1648,78 +1648,78 @@ "type": "Geometry", "data": { "vertices": [ - 6322, - 2134, - -3150, - 5509, - 2032, - -3150, - 6220, - 2032, - -3150, - 5306, - 2032, - -3150, - 6220, - 102, - -3150, - 6322, - 0, - -3150, - 5509, - 102, - -3150, - 5306, - 102, - -3150, - 4493, - 2134, - -3150, - 4595, - 2032, - -3150, - 4595, - 102, - -3150, - 4493, - 0, - -3150, - 4493, - 2134, - -3200, - 5306, - 2032, - -3200, - 4595, - 2032, - -3200, - 5509, - 2032, - -3200, - 4595, - 102, - -3200, - 4493, - 0, - -3200, - 5306, - 102, - -3200, - 5509, - 102, - -3200, - 6322, - 2134, - -3200, - 6220, - 2032, - -3200, - 6220, - 102, - -3200, - 6322, - 0, - -3200 + 6.322, + 2.134, + -3.15, + 5.509, + 2.032, + -3.15, + 6.22, + 2.032, + -3.15, + 5.306, + 2.032, + -3.15, + 6.22, + 0.10200000000000001, + -3.15, + 6.322, + 0.0, + -3.15, + 5.509, + 0.10200000000000001, + -3.15, + 5.306, + 0.10200000000000001, + -3.15, + 4.493, + 2.134, + -3.15, + 4.595, + 2.032, + -3.15, + 4.595, + 0.10200000000000001, + -3.15, + 4.493, + 0.0, + -3.15, + 4.493, + 2.134, + -3.2, + 5.306, + 2.032, + -3.2, + 4.595, + 2.032, + -3.2, + 5.509, + 2.032, + -3.2, + 4.595, + 0.10200000000000001, + -3.2, + 4.493, + 0.0, + -3.2, + 5.306, + 0.10200000000000001, + -3.2, + 5.509, + 0.10200000000000001, + -3.2, + 6.322, + 2.134, + -3.2, + 6.22, + 2.032, + -3.2, + 6.22, + 0.10200000000000001, + -3.2, + 6.322, + 0.0, + -3.2 ], "normals": [], "uvs": [], @@ -1945,102 +1945,102 @@ "type": "Geometry", "data": { "vertices": [ - -8588, - 0, - 3683, - -8588, - 0, - 3759, - -8588, - 2134, - 3759, - -8588, - 2210, - 3683, - -8588, - 2134, - 4674, - -8588, - 0, - 4674, - -8588, - 0, - 4750, - -8588, - 2210, - 4750, - -8562, - 0, - 4750, - -8562, - 0, - 4674, - -8562, - 2134, - 4674, - -8562, - 2210, - 4750, - -8562, - 2134, - 3759, - -8562, - 0, - 3759, - -8562, - 0, - 3683, - -8562, - 2210, - 3683, - -8334, - 0, - 4750, - -8334, - 0, - 4674, - -8334, - 2134, - 4674, - -8334, - 2210, - 4750, - -8334, - 2134, - 3759, - -8334, - 0, - 3759, - -8334, - 0, - 3683, - -8334, - 2210, - 3683, - -8359, - 0, - 3683, - -8359, - 0, - 3759, - -8359, - 2134, - 3759, - -8359, - 2210, - 3683, - -8359, - 2134, - 4674, - -8359, - 0, - 4674, - -8359, - 0, - 4750, - -8359, - 2210, - 4750 + -8.588000000000001, + 0.0, + 3.6830000000000003, + -8.588000000000001, + 0.0, + 3.759, + -8.588000000000001, + 2.134, + 3.759, + -8.588000000000001, + 2.21, + 3.6830000000000003, + -8.588000000000001, + 2.134, + 4.674, + -8.588000000000001, + 0.0, + 4.674, + -8.588000000000001, + 0.0, + 4.75, + -8.588000000000001, + 2.21, + 4.75, + -8.562, + 0.0, + 4.75, + -8.562, + 0.0, + 4.674, + -8.562, + 2.134, + 4.674, + -8.562, + 2.21, + 4.75, + -8.562, + 2.134, + 3.759, + -8.562, + 0.0, + 3.759, + -8.562, + 0.0, + 3.6830000000000003, + -8.562, + 2.21, + 3.6830000000000003, + -8.334, + 0.0, + 4.75, + -8.334, + 0.0, + 4.674, + -8.334, + 2.134, + 4.674, + -8.334, + 2.21, + 4.75, + -8.334, + 2.134, + 3.759, + -8.334, + 0.0, + 3.759, + -8.334, + 0.0, + 3.6830000000000003, + -8.334, + 2.21, + 3.6830000000000003, + -8.359, + 0.0, + 3.6830000000000003, + -8.359, + 0.0, + 3.759, + -8.359, + 2.134, + 3.759, + -8.359, + 2.21, + 3.6830000000000003, + -8.359, + 2.134, + 4.674, + -8.359, + 0.0, + 4.674, + -8.359, + 0.0, + 4.75, + -8.359, + 2.21, + 4.75 ], "normals": [], "uvs": [], @@ -2282,174 +2282,174 @@ "type": "Geometry", "data": { "vertices": [ - -8397, - 1067, - 4547, - -8397, - 1981, - 4547, - -8397, - 1981, - 3886, - -8397, - 1067, - 3886, - -8397, - 648, - 4547, - -8397, - 965, - 4547, - -8397, - 648, - 3886, - -8397, - 965, - 3886, - -8397, - 229, - 4547, - -8397, - 546, - 4547, - -8397, - 546, - 3886, - -8397, - 229, - 3886, - -8372, - 1067, - 3886, - -8372, - 1981, - 3886, - -8372, - 1981, - 4547, - -8372, - 1067, - 4547, - -8372, - 648, - 3886, - -8372, - 965, - 3886, - -8372, - 648, - 4547, - -8372, - 965, - 4547, - -8372, - 229, - 3886, - -8372, - 546, - 3886, - -8372, - 546, - 4547, - -8372, - 229, - 4547, - -8410, - 2134, - 4674, - -8410, - 1981, - 4547, - -8410, - 1067, - 4547, - -8410, - 1981, - 3886, - -8410, - 965, - 4547, - -8410, - 965, - 3886, - -8410, - 0, - 4674, - -8410, - 229, - 4547, - -8410, - 229, - 3886, - -8410, - 546, - 4547, - -8410, - 648, - 4547, - -8410, - 648, - 3886, - -8410, - 1067, - 3886, - -8410, - 0, - 3759, - -8410, - 2134, - 3759, - -8410, - 546, - 3886, - -8359, - 2134, - 3759, - -8359, - 1981, - 3886, - -8359, - 1067, - 3886, - -8359, - 1981, - 4547, - -8359, - 965, - 3886, - -8359, - 965, - 4547, - -8359, - 0, - 3759, - -8359, - 229, - 3886, - -8359, - 229, - 4547, - -8359, - 546, - 3886, - -8359, - 648, - 3886, - -8359, - 648, - 4547, - -8359, - 1067, - 4547, - -8359, - 0, - 4674, - -8359, - 2134, - 4674, - -8359, - 546, - 4547 + -8.397, + 1.067, + 4.547, + -8.397, + 1.981, + 4.547, + -8.397, + 1.981, + 3.886, + -8.397, + 1.067, + 3.886, + -8.397, + 0.648, + 4.547, + -8.397, + 0.965, + 4.547, + -8.397, + 0.648, + 3.886, + -8.397, + 0.965, + 3.886, + -8.397, + 0.229, + 4.547, + -8.397, + 0.546, + 4.547, + -8.397, + 0.546, + 3.886, + -8.397, + 0.229, + 3.886, + -8.372, + 1.067, + 3.886, + -8.372, + 1.981, + 3.886, + -8.372, + 1.981, + 4.547, + -8.372, + 1.067, + 4.547, + -8.372, + 0.648, + 3.886, + -8.372, + 0.965, + 3.886, + -8.372, + 0.648, + 4.547, + -8.372, + 0.965, + 4.547, + -8.372, + 0.229, + 3.886, + -8.372, + 0.546, + 3.886, + -8.372, + 0.546, + 4.547, + -8.372, + 0.229, + 4.547, + -8.41, + 2.134, + 4.674, + -8.41, + 1.981, + 4.547, + -8.41, + 1.067, + 4.547, + -8.41, + 1.981, + 3.886, + -8.41, + 0.965, + 4.547, + -8.41, + 0.965, + 3.886, + -8.41, + 0.0, + 4.674, + -8.41, + 0.229, + 4.547, + -8.41, + 0.229, + 3.886, + -8.41, + 0.546, + 4.547, + -8.41, + 0.648, + 4.547, + -8.41, + 0.648, + 3.886, + -8.41, + 1.067, + 3.886, + -8.41, + 0.0, + 3.759, + -8.41, + 2.134, + 3.759, + -8.41, + 0.546, + 3.886, + -8.359, + 2.134, + 3.759, + -8.359, + 1.981, + 3.886, + -8.359, + 1.067, + 3.886, + -8.359, + 1.981, + 4.547, + -8.359, + 0.965, + 3.886, + -8.359, + 0.965, + 4.547, + -8.359, + 0.0, + 3.759, + -8.359, + 0.229, + 3.886, + -8.359, + 0.229, + 4.547, + -8.359, + 0.546, + 3.886, + -8.359, + 0.648, + 3.886, + -8.359, + 0.648, + 4.547, + -8.359, + 1.067, + 4.547, + -8.359, + 0.0, + 4.674, + -8.359, + 2.134, + 4.674, + -8.359, + 0.546, + 4.547 ], "normals": [], "uvs": [], @@ -2899,210 +2899,210 @@ "type": "Geometry", "data": { "vertices": [ - 4709, - 711, - 1334, - 4709, - 711, - 1359, - 6107, - 711, - 1359, - 6107, - 711, - 1334, - 4709, - 711, - 978, - 4709, - 711, - 1003, - 6107, - 711, - 978, - 6107, - 711, - 1003, - 6119, - 711, - 1003, - 6119, - 711, - 1334, - 6145, - 711, - 1334, - 6145, - 711, - 1003, - 4670, - 711, - 1003, - 4670, - 711, - 1334, - 4696, - 711, - 1334, - 4696, - 711, - 1003, - 6107, - 610, - 1334, - 6107, - 610, - 1359, - 4709, - 610, - 1334, - 4709, - 610, - 1359, - 6107, - 610, - 978, - 6107, - 610, - 1003, - 4709, - 610, - 978, - 4709, - 610, - 1003, - 6145, - 610, - 1003, - 6145, - 610, - 1334, - 6119, - 610, - 1334, - 6119, - 610, - 1003, - 4696, - 610, - 1003, - 4696, - 610, - 1334, - 4670, - 610, - 1334, - 4670, - 610, - 1003, - 4493, - 762, - 787, - 4493, - 762, - 1549, - 6323, - 762, - 1549, - 6323, - 762, - 787, - 6323, - 711, - 787, - 6323, - 711, - 1549, - 4493, - 711, - 1549, - 4493, - 711, - 787, - 6107, - 711, - 1397, - 6170, - 711, - 1397, - 6170, - 711, - 1334, - 4645, - 711, - 1334, - 4645, - 711, - 1397, - 4709, - 711, - 1397, - 6107, - 711, - 940, - 6170, - 711, - 940, - 6170, - 711, - 1003, - 4645, - 711, - 940, - 4645, - 711, - 1003, - 4709, - 711, - 940, - 6170, - 0, - 1334, - 6170, - 0, - 1397, - 6107, - 0, - 1397, - 6107, - 0, - 1334, - 4709, - 0, - 1334, - 4709, - 0, - 1397, - 4645, - 0, - 1334, - 4645, - 0, - 1397, - 6170, - 0, - 940, - 6170, - 0, - 1003, - 6107, - 0, - 940, - 6107, - 0, - 1003, - 4709, - 0, - 940, - 4709, - 0, - 1003, - 4645, - 0, - 1003, - 4645, - 0, - 940 + 4.7090000000000005, + 0.711, + 1.334, + 4.7090000000000005, + 0.711, + 1.359, + 6.107, + 0.711, + 1.359, + 6.107, + 0.711, + 1.334, + 4.7090000000000005, + 0.711, + 0.978, + 4.7090000000000005, + 0.711, + 1.0030000000000001, + 6.107, + 0.711, + 0.978, + 6.107, + 0.711, + 1.0030000000000001, + 6.119, + 0.711, + 1.0030000000000001, + 6.119, + 0.711, + 1.334, + 6.1450000000000005, + 0.711, + 1.334, + 6.1450000000000005, + 0.711, + 1.0030000000000001, + 4.67, + 0.711, + 1.0030000000000001, + 4.67, + 0.711, + 1.334, + 4.696, + 0.711, + 1.334, + 4.696, + 0.711, + 1.0030000000000001, + 6.107, + 0.61, + 1.334, + 6.107, + 0.61, + 1.359, + 4.7090000000000005, + 0.61, + 1.334, + 4.7090000000000005, + 0.61, + 1.359, + 6.107, + 0.61, + 0.978, + 6.107, + 0.61, + 1.0030000000000001, + 4.7090000000000005, + 0.61, + 0.978, + 4.7090000000000005, + 0.61, + 1.0030000000000001, + 6.1450000000000005, + 0.61, + 1.0030000000000001, + 6.1450000000000005, + 0.61, + 1.334, + 6.119, + 0.61, + 1.334, + 6.119, + 0.61, + 1.0030000000000001, + 4.696, + 0.61, + 1.0030000000000001, + 4.696, + 0.61, + 1.334, + 4.67, + 0.61, + 1.334, + 4.67, + 0.61, + 1.0030000000000001, + 4.493, + 0.762, + 0.787, + 4.493, + 0.762, + 1.549, + 6.323, + 0.762, + 1.549, + 6.323, + 0.762, + 0.787, + 6.323, + 0.711, + 0.787, + 6.323, + 0.711, + 1.549, + 4.493, + 0.711, + 1.549, + 4.493, + 0.711, + 0.787, + 6.107, + 0.711, + 1.397, + 6.17, + 0.711, + 1.397, + 6.17, + 0.711, + 1.334, + 4.6450000000000005, + 0.711, + 1.334, + 4.6450000000000005, + 0.711, + 1.397, + 4.7090000000000005, + 0.711, + 1.397, + 6.107, + 0.711, + 0.94000000000000006, + 6.17, + 0.711, + 0.94000000000000006, + 6.17, + 0.711, + 1.0030000000000001, + 4.6450000000000005, + 0.711, + 0.94000000000000006, + 4.6450000000000005, + 0.711, + 1.0030000000000001, + 4.7090000000000005, + 0.711, + 0.94000000000000006, + 6.17, + 0.0, + 1.334, + 6.17, + 0.0, + 1.397, + 6.107, + 0.0, + 1.397, + 6.107, + 0.0, + 1.334, + 4.7090000000000005, + 0.0, + 1.334, + 4.7090000000000005, + 0.0, + 1.397, + 4.6450000000000005, + 0.0, + 1.334, + 4.6450000000000005, + 0.0, + 1.397, + 6.17, + 0.0, + 0.94000000000000006, + 6.17, + 0.0, + 1.0030000000000001, + 6.107, + 0.0, + 0.94000000000000006, + 6.107, + 0.0, + 1.0030000000000001, + 4.7090000000000005, + 0.0, + 0.94000000000000006, + 4.7090000000000005, + 0.0, + 1.0030000000000001, + 4.6450000000000005, + 0.0, + 1.0030000000000001, + 4.6450000000000005, + 0.0, + 0.94000000000000006 ], "normals": [], "uvs": [], @@ -3552,180 +3552,180 @@ "type": "Geometry", "data": { "vertices": [ - 2747, - 2743, - -3226, - 2747, - 2762, - -3226, - 5935, - 2743, - -3226, - 5935, - 2762, - -3226, - 5935, - 2743, - -3200, - 5935, - 2762, - -3200, - 2747, - 2743, - -3200, - 2747, - 2762, - -3200, - 5935, - 5252, - -3213, - 5846, - 5163, - -3213, - 2836, - 5163, - -3213, - 5935, - 2762, - -3213, - 2747, - 5252, - -3213, - 2747, - 2762, - -3213, - 5846, - 2762, - -3213, - 2836, - 2762, - -3213, - 5846, - 2762, - -3200, - 5846, - 5163, - -3200, - 2836, - 2762, - -3200, - 2836, - 5163, - -3200, - 5935, - 5252, - -3200, - 2747, - 5252, - -3200, - 2760, - 5239, - -2978, - 2849, - 5150, - -2978, - 5833, - 5150, - -2978, - 2849, - 2775, - -2978, - 5922, - 5239, - -2978, - 5833, - 2775, - -2978, - 2760, - 2686, - -2978, - 5922, - 2686, - -2978, - 2760, - 2686, - -2997, - 2849, - 2775, - -2997, - 5833, - 2775, - -2997, - 2849, - 5150, - -2997, - 5922, - 2686, - -2997, - 5833, - 5150, - -2997, - 2760, - 5239, - -2997, - 5922, - 5239, - -2997, - 2817, - 5182, - -3137, - 2849, - 5150, - -3137, - 2849, - 2775, - -3137, - 5833, - 5150, - -3137, - 2817, - 2743, - -3137, - 5833, - 2775, - -3137, - 5865, - 5182, - -3137, - 5865, - 2743, - -3137, - 5865, - 5182, - -2997, - 5865, - 2743, - -2997, - 2817, - 5182, - -2997, - 2817, - 2743, - -2997, - 5846, - 5163, - -3137, - 5846, - 2762, - -3137, - 2836, - 5163, - -3137, - 2836, - 2762, - -3137, - 2817, - 5182, - -3200, - 2817, - 2743, - -3200, - 5865, - 5182, - -3200, - 5865, - 2743, - -3200 + 2.747, + 2.743, + -3.226, + 2.747, + 2.762, + -3.226, + 5.9350000000000005, + 2.743, + -3.226, + 5.9350000000000005, + 2.762, + -3.226, + 5.9350000000000005, + 2.743, + -3.2, + 5.9350000000000005, + 2.762, + -3.2, + 2.747, + 2.743, + -3.2, + 2.747, + 2.762, + -3.2, + 5.9350000000000005, + 5.252, + -3.213, + 5.846, + 5.163, + -3.213, + 2.836, + 5.163, + -3.213, + 5.9350000000000005, + 2.762, + -3.213, + 2.747, + 5.252, + -3.213, + 2.747, + 2.762, + -3.213, + 5.846, + 2.762, + -3.213, + 2.836, + 2.762, + -3.213, + 5.846, + 2.762, + -3.2, + 5.846, + 5.163, + -3.2, + 2.836, + 2.762, + -3.2, + 2.836, + 5.163, + -3.2, + 5.9350000000000005, + 5.252, + -3.2, + 2.747, + 5.252, + -3.2, + 2.7600000000000002, + 5.239, + -2.978, + 2.849, + 5.15, + -2.978, + 5.833, + 5.15, + -2.978, + 2.849, + 2.775, + -2.978, + 5.922, + 5.239, + -2.978, + 5.833, + 2.775, + -2.978, + 2.7600000000000002, + 2.686, + -2.978, + 5.922, + 2.686, + -2.978, + 2.7600000000000002, + 2.686, + -2.997, + 2.849, + 2.775, + -2.997, + 5.833, + 2.775, + -2.997, + 2.849, + 5.15, + -2.997, + 5.922, + 2.686, + -2.997, + 5.833, + 5.15, + -2.997, + 2.7600000000000002, + 5.239, + -2.997, + 5.922, + 5.239, + -2.997, + 2.817, + 5.182, + -3.137, + 2.849, + 5.15, + -3.137, + 2.849, + 2.775, + -3.137, + 5.833, + 5.15, + -3.137, + 2.817, + 2.743, + -3.137, + 5.833, + 2.775, + -3.137, + 5.865, + 5.182, + -3.137, + 5.865, + 2.743, + -3.137, + 5.865, + 5.182, + -2.997, + 5.865, + 2.743, + -2.997, + 2.817, + 5.182, + -2.997, + 2.817, + 2.743, + -2.997, + 5.846, + 5.163, + -3.137, + 5.846, + 2.762, + -3.137, + 2.836, + 5.163, + -3.137, + 2.836, + 2.762, + -3.137, + 2.817, + 5.182, + -3.2, + 2.817, + 2.743, + -3.2, + 5.865, + 5.182, + -3.2, + 5.865, + 2.743, + -3.2 ], "normals": [], "uvs": [], @@ -4287,30 +4287,30 @@ "type": "Geometry", "data": { "vertices": [ - 5801, - 2807, - -3153, - 5801, - 5118, - -3153, - 2880, - 2807, - -3153, - 2880, - 5118, - -3153, - 2880, - 2807, - -3165, - 2880, - 5118, - -3165, - 5801, - 2807, - -3165, - 5801, - 5118, - -3165 + 5.801, + 2.807, + -3.153, + 5.801, + 5.118, + -3.153, + 2.88, + 2.807, + -3.153, + 2.88, + 5.118, + -3.153, + 2.88, + 2.807, + -3.165, + 2.88, + 5.118, + -3.165, + 5.801, + 2.807, + -3.165, + 5.801, + 5.118, + -3.165 ], "normals": [], "uvs": [], @@ -4376,54 +4376,54 @@ "type": "Geometry", "data": { "vertices": [ - 2836, - 5163, - -3181, - 2880, - 5118, - -3181, - 2880, - 2807, - -3181, - 5801, - 5118, - -3181, - 2836, - 2762, - -3181, - 5801, - 2807, - -3181, - 5846, - 5163, - -3181, - 5846, - 2762, - -3181, - 5846, - 5163, - -3137, - 5801, - 5118, - -3137, - 5801, - 2807, - -3137, - 2880, - 5118, - -3137, - 5846, - 2762, - -3137, - 2880, - 2807, - -3137, - 2836, - 5163, - -3137, - 2836, - 2762, - -3137 + 2.836, + 5.163, + -3.181, + 2.88, + 5.118, + -3.181, + 2.88, + 2.807, + -3.181, + 5.801, + 5.118, + -3.181, + 2.836, + 2.762, + -3.181, + 5.801, + 2.807, + -3.181, + 5.846, + 5.163, + -3.181, + 5.846, + 2.762, + -3.181, + 5.846, + 5.163, + -3.137, + 5.801, + 5.118, + -3.137, + 5.801, + 2.807, + -3.137, + 2.88, + 5.118, + -3.137, + 5.846, + 2.762, + -3.137, + 2.88, + 2.807, + -3.137, + 2.836, + 5.163, + -3.137, + 2.836, + 2.762, + -3.137 ], "normals": [], "uvs": [], @@ -4739,7 +4739,57 @@ } ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090b", - "name": "Wall Walls <2315 Wall 1>" + "name": "Wall Walls <2315 Wall 1>", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0' - 0\"", + "Base is Attached": "No", + "Base Extension Distance": "0' - 0\"", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "10' - 0\"", + "Top Offset": "0' - 0\"", + "Top is Attached": "Yes", + "Top Extension Distance": "0' - 0\"", + "Room Bounding": "Yes", + "Length": "57' - 0\"", + "Area": "685.52 SF", + "Volume": "455.17 CF", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "0' - 8\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090c", @@ -4791,7 +4841,57 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090c", "name": "Wall Walls <2316 Wall 1>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0' - 0\"", + "Base is Attached": "No", + "Base Extension Distance": "0' - 0\"", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "10' - 0\"", + "Top Offset": "0' - 0\"", + "Top is Attached": "Yes", + "Top Extension Distance": "0' - 0\"", + "Room Bounding": "Yes", + "Length": "27' - 6\"", + "Area": "409.36 SF", + "Volume": "272.90 CF", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "0' - 8\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090d", @@ -4843,7 +4943,57 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090d", "name": "Wall Walls <2317 Wall 1>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0' - 0\"", + "Base is Attached": "No", + "Base Extension Distance": "0' - 0\"", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "10' - 0\"", + "Top Offset": "0' - 0\"", + "Top is Attached": "Yes", + "Top Extension Distance": "0' - 0\"", + "Room Bounding": "Yes", + "Length": "57' - 0\"", + "Area": "737.09 SF", + "Volume": "490.10 CF", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "0' - 8\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090e", @@ -4895,7 +5045,57 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-0000090e", "name": "Wall Walls <2318 Wall 1>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0' - 0\"", + "Base is Attached": "No", + "Base Extension Distance": "0' - 0\"", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "10' - 0\"", + "Top Offset": "0' - 0\"", + "Top is Attached": "Yes", + "Top Extension Distance": "0' - 0\"", + "Room Bounding": "Yes", + "Length": "27' - 6\"", + "Area": "321.18 SF", + "Volume": "214.12 CF", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "0' - 8\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-00000932", @@ -4947,7 +5147,57 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-00000932", "name": "Wall Walls <2354 Wall 1>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0' - 0\"", + "Base is Attached": "No", + "Base Extension Distance": "0' - 0\"", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "10' - 0\"", + "Top Offset": "0' - 0\"", + "Top is Attached": "Yes", + "Top Extension Distance": "0' - 0\"", + "Room Bounding": "Yes", + "Length": "27' - 6\"", + "Area": "402.50 SF", + "Volume": "268.33 CF", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "0' - 8\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-0000097e", @@ -4999,7 +5249,47 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-0000097e", "name": "FootPrintRoof Roofs <2430 Roof 1>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000028", + "userData": { + "Base Level": "Level 2", + "Rafter Cut": "Plumb Cut", + "Fascia Depth": "0' - 0\"", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Slope": "0.00°", + "Room Bounding": "Yes", + "Related to Mass": "No", + "Thickness": "0' - 6\"", + "Base Offset From Level": "0' - 0\"", + "Cutoff Level": "None", + "Cutoff Offset": "0' - 0\"", + "Maximum Ridge Height": "20' - 6 11/32\"", + "Volume": "380.28 CF", + "Area": "760.56 SF", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Default Thickness": "0' - 6\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Cost": "0.00", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-000009c9", @@ -5051,7 +5341,47 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-000009c9", "name": "FootPrintRoof Roofs <2505 Roof 1>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000029" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000029", + "userData": { + "Base Level": "Level 2", + "Rafter Cut": "Plumb Cut", + "Fascia Depth": "0' - 0\"", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Slope": "0.00°", + "Room Bounding": "Yes", + "Related to Mass": "No", + "Thickness": "0' - 6\"", + "Base Offset From Level": "0' - 0\"", + "Cutoff Level": "None", + "Cutoff Offset": "0' - 0\"", + "Maximum Ridge Height": "15' - 6 3/32\"", + "Volume": "510.46 CF", + "Area": "1020.93 SF", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Default Thickness": "0' - 6\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Cost": "0.00", + "Type Heat Transfer Coefficient (U)": "0.0000 BTU/(h·ft²·°F)", + "Type Thermal Resistance (R)": "0.0000 (h·ft²·°F)/BTU", + "Type Thermal mass": "0.0000 BTU/°F", + "Type Absorptance": "0.1", + "Type Roughness": "1" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-00000d0d", @@ -5153,7 +5483,57 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-00000d0d", "name": "FamilyInstance Doors Double-Glass 1 <3341 72\" x 84\">", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000029" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000029", + "userData": { + "Level": "Level 1", + "Sill Height": "0' - 0\"", + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Frame Material": null, + "Finish": null, + "Frame Type": null, + "Image": "", + "Comments": null, + "Mark": null, + "Head Height": "7' - 0\"", + "Type Visual Light Transmittance": "0", + "Type Thermal Resistance (R)": "1.5337 (h·ft²·°F)/BTU", + "Type Solar Heat Gain Coefficient": "0", + "Type Construction Type Id": null, + "Type Heat Transfer Coefficient (U)": "0.6520 BTU/(h·ft²·°F)", + "Type Analytic Construction": null, + "Type Operation": null, + "Type Door Material": "Door - Panel", + "Type Frame Material": "Door - Frame", + "Type Function": "Interior", + "Type Wall Closure": "By host", + "Type Construction Type": null, + "Type Thickness": "0' - 2\"", + "Type Height": "7' - 0\"", + "Type Rail Width - Base": "0' - 4\"", + "Type Rail Width - Top": "0' - 4\"", + "Type Stile Width - Hinge": "0' - 4\"", + "Type Stile Width - Latch": "0' - 4\"", + "Type Trim Projection": "0' - 1\"", + "Type Width": "6' - 0\"", + "Type Rough Width": "0' - 0\"", + "Type Rough Height": "0' - 0\"", + "Type Assembly Code": null, + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Assembly Description": null, + "Type Type Mark": null, + "Type OmniClass Number": null, + "Type OmniClass Title": null, + "Type Trim Width": "0' - 3\"" + } }, { "uuid": "6c13105d-5baf-4736-8456-7bdd5628c913-00000f95", @@ -5230,7 +5610,59 @@ ], "geometry": "6c13105d-5baf-4736-8456-7bdd5628c913-00000f95", "name": "FamilyInstance Doors Single-Panel 1 <3989 36\" x 84\">", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000a71" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000a71", + "userData": { + "Level": "Level 1", + "Sill Height": "0' - 0\"", + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Frame Material": null, + "Finish": null, + "Frame Type": null, + "Image": "", + "Comments": null, + "Mark": null, + "Head Height": "7' - 0\"", + "Type Visual Light Transmittance": "0", + "Type Thermal Resistance (R)": "1.5337 (h·ft²·°F)/BTU", + "Type Solar Heat Gain Coefficient": "0", + "Type Construction Type Id": null, + "Type Heat Transfer Coefficient (U)": "0.6520 BTU/(h·ft²·°F)", + "Type Analytic Construction": null, + "Type Operation": null, + "Type Door Material": "Door - Panel", + "Type Frame Material": "Door - Frame", + "Type Function": "Interior", + "Type Wall Closure": "By host", + "Type Construction Type": null, + "Type Thickness": "0' - 2\"", + "Type Height": "7' - 0\"", + "Type Rail Width - Base": "0' - 9\"", + "Type Rail Width - Center": "0' - 4\"", + "Type Rail Width - Top": "0' - 6\"", + "Type Stile Width": "0' - 5\"", + "Type Top Panel": "3' - 0\"", + "Type Trim Projection Ext": "0' - 1\"", + "Type Trim Projection Int": "0' - 1\"", + "Type Trim Width": "0' - 3\"", + "Type Width": "3' - 0\"", + "Type Rough Width": "0' - 0\"", + "Type Rough Height": "0' - 0\"", + "Type Assembly Code": null, + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Assembly Description": null, + "Type Type Mark": null, + "Type OmniClass Number": null, + "Type OmniClass Title": null + } }, { "uuid": "b9eed9d5-8c91-4b62-8103-154d610c3150-000011c7", @@ -5282,7 +5714,35 @@ ], "geometry": "b9eed9d5-8c91-4b62-8103-154d610c3150-000011c7", "name": "FamilyInstance Furniture M_Table-Rectangular <4551 1830 x 0762mm>", - "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000a71" + "material": "6c13105d-5baf-4736-8456-7bdd5628c913-00000a71", + "userData": { + "Level": "Level 1", + "Host": null, + "Moves With Nearby Elements": "No", + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Image": "", + "Comments": null, + "Mark": null, + "Type Base Material": "Birch", + "Type Top Material": "Birch", + "Type Height": "2' - 6\"", + "Type Length": "6' - 0 1/16\"", + "Type Width": "2' - 6\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Assembly Code": null, + "Type Cost": "0.00", + "Type Assembly Description": null, + "Type Type Mark": null, + "Type OmniClass Number": null, + "Type OmniClass Title": null + } }, { "uuid": "8eeef555-8ea6-4804-9b01-e34ec65c8723-000014ef", @@ -5384,7 +5844,53 @@ ], "geometry": "8eeef555-8ea6-4804-9b01-e34ec65c8723-000014ef", "name": "FamilyInstance Windows M_Fixed with Trim <5359 3000 x 2000 mm 2>", - "material": "b9eed9d5-8c91-4b62-8103-154d610c3150-00000fad" + "material": "b9eed9d5-8c91-4b62-8103-154d610c3150-00000fad", + "userData": { + "Level": "Level 2", + "Sill Height": "-1' - 0\"", + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Image": "", + "Comments": null, + "Mark": null, + "Head Height": "7' - 0\"", + "Type Visual Light Transmittance": "0.9", + "Type Solar Heat Gain Coefficient": "0.78", + "Type Construction Type Id": null, + "Type Heat Transfer Coefficient (U)": "0.6496 BTU/(h·ft²·°F)", + "Type Analytic Construction": null, + "Type Thermal Resistance (R)": "1.5394 (h·ft²·°F)/BTU", + "Type Operation": null, + "Type Glass Pane Material": "Glass", + "Type Sash": "Sash", + "Type Trim Exterior Material": "Trim", + "Type Trim Interior Material": "Trim", + "Type Wall Closure": "By host", + "Type Construction Type": null, + "Type Height": "8' - 0\"", + "Type Default Sill Height": "1' - 0\"", + "Type Trim Projection - Ext.": "0' - 0 1/2\"", + "Type Trim Projection - Int.": "0' - 0 3/4\"", + "Type Trim Width - Exterior": "0' - 3 1/2\"", + "Type Trim Width - Interior": "0' - 3 1/2\"", + "Type Width": "10' - 0\"", + "Type Window Inset": "0' - 0 3/4\"", + "Type Rough Width": "0' - 0\"", + "Type Rough Height": "0' - 0\"", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Assembly Code": null, + "Type Cost": "0.00", + "Type Assembly Description": null, + "Type Type Mark": null, + "Type OmniClass Number": null, + "Type OmniClass Title": null + } } ] } diff --git a/models/Wall.rvt.js b/models/Wall.rvt.js index 142d1b2..b445034 100644 --- a/models/Wall.rvt.js +++ b/models/Wall.rvt.js @@ -5,30 +5,30 @@ "type": "Geometry", "data": { "vertices": [ - 119, - 4000, - -122, - 119, - 0, - -122, - -3881, - 4000, - -122, - -3881, - 0, - -122, - -3881, - 4000, - 78, - -3881, - 0, - 78, - 119, - 4000, - 78, - 119, - 0, - 78 + 0.11900000000000001, + 4.0, + -0.122, + 0.11900000000000001, + 0.0, + -0.122, + -3.8810000000000002, + 4.0, + -0.122, + -3.8810000000000002, + 0.0, + -0.122, + -3.8810000000000002, + 4.0, + 0.078, + -3.8810000000000002, + 0.0, + 0.078, + 0.11900000000000001, + 4.0, + 0.078, + 0.11900000000000001, + 0.0, + 0.078 ], "normals": [], "uvs": [], @@ -180,7 +180,57 @@ } ], "geometry": "91e0c258-0500-4169-9074-0816995c8c42-0004ec8a", - "name": "Wall Walls <322698 Generic - 200mm>" + "name": "Wall Walls <322698 Generic - 200mm>", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0", + "Base is Attached": "No", + "Base Extension Distance": "0", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "4000", + "Top Offset": "0", + "Top is Attached": "No", + "Top Extension Distance": "0", + "Room Bounding": "Yes", + "Length": "4000", + "Area": "16 m²", + "Volume": "3.20 m³", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "200", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 W/(m²·K)", + "Type Thermal Resistance (R)": "0.0000 (m²·K)/W", + "Type Thermal mass": "0.00 kJ/K", + "Type Absorptance": "0.7", + "Type Roughness": "3" + } } ] } diff --git a/models/WallWindow.rvt.js b/models/WallWindow.rvt.js index b9a2f01..e88d839 100644 --- a/models/WallWindow.rvt.js +++ b/models/WallWindow.rvt.js @@ -5,54 +5,54 @@ "type": "Geometry", "data": { "vertices": [ - 119, - 0, - -122, - -923, - 1400, - -122, - 119, - 4000, - -122, - -1838, - 1400, - -122, - -923, - 3230, - -122, - -1838, - 3230, - -122, - -3881, - 0, - -122, - -3881, - 4000, - -122, - -3881, - 0, - 78, - -1838, - 1400, - 78, - -3881, - 4000, - 78, - 119, - 0, - 78, - -1838, - 3230, - 78, - 119, - 4000, - 78, - -923, - 1400, - 78, - -923, - 3230, - 78 + 0.11900000000000001, + 0.0, + -0.122, + -0.923, + 1.4000000000000001, + -0.122, + 0.11900000000000001, + 4.0, + -0.122, + -1.838, + 1.4000000000000001, + -0.122, + -0.923, + 3.23, + -0.122, + -1.838, + 3.23, + -0.122, + -3.8810000000000002, + 0.0, + -0.122, + -3.8810000000000002, + 4.0, + -0.122, + -3.8810000000000002, + 0.0, + 0.078, + -1.838, + 1.4000000000000001, + 0.078, + -3.8810000000000002, + 4.0, + 0.078, + 0.11900000000000001, + 0.0, + 0.078, + -1.838, + 3.23, + 0.078, + 0.11900000000000001, + 4.0, + 0.078, + -0.923, + 1.4000000000000001, + 0.078, + -0.923, + 3.23, + 0.078 ], "normals": [], "uvs": [], @@ -198,30 +198,30 @@ "type": "Geometry", "data": { "vertices": [ - -1775, - 1463, - -87, - -1775, - 3167, - -87, - -986, - 1463, - -87, - -986, - 3167, - -87, - -986, - 1463, - -75, - -986, - 3167, - -75, - -1775, - 1463, - -75, - -1775, - 3167, - -75 + -1.7750000000000001, + 1.463, + -0.087000000000000008, + -1.7750000000000001, + 3.1670000000000003, + -0.087000000000000008, + -0.986, + 1.463, + -0.087000000000000008, + -0.986, + 3.1670000000000003, + -0.087000000000000008, + -0.986, + 1.463, + -0.075, + -0.986, + 3.1670000000000003, + -0.075, + -1.7750000000000001, + 1.463, + -0.075, + -1.7750000000000001, + 3.1670000000000003, + -0.075 ], "normals": [], "uvs": [], @@ -287,126 +287,126 @@ "type": "Geometry", "data": { "vertices": [ - -1819, - 3211, - -103, - -1775, - 3167, - -103, - -1775, - 1463, - -103, - -986, - 3167, - -103, - -1819, - 1419, - -103, - -986, - 1463, - -103, - -942, - 3211, - -103, - -942, - 1419, - -103, - -942, - 3211, - -59, - -986, - 3167, - -59, - -986, - 1463, - -59, - -1775, - 3167, - -59, - -942, - 1419, - -59, - -1775, - 1463, - -59, - -1819, - 3211, - -59, - -1819, - 1419, - -59, - -1838, - 3230, - -122, - -1819, - 3211, - -122, - -1819, - 1419, - -122, - -942, - 3211, - -122, - -1838, - 1400, - -122, - -942, - 1419, - -122, - -923, - 3230, - -122, - -923, - 1400, - -122, - -923, - 3230, - -59, - -923, - 1400, - -59, - -1838, - 3230, - -59, - -1838, - 1400, - -59, - -1806, - 3198, - -59, - -1806, - 1432, - -59, - -955, - 3198, - -59, - -955, - 1432, - -59, - -923, - 3230, - 78, - -955, - 3198, - 78, - -955, - 1432, - 78, - -1806, - 3198, - 78, - -923, - 1400, - 78, - -1806, - 1432, - 78, - -1838, - 3230, - 78, - -1838, - 1400, - 78 + -1.819, + 3.211, + -0.10300000000000001, + -1.7750000000000001, + 3.1670000000000003, + -0.10300000000000001, + -1.7750000000000001, + 1.463, + -0.10300000000000001, + -0.986, + 3.1670000000000003, + -0.10300000000000001, + -1.819, + 1.419, + -0.10300000000000001, + -0.986, + 1.463, + -0.10300000000000001, + -0.94200000000000006, + 3.211, + -0.10300000000000001, + -0.94200000000000006, + 1.419, + -0.10300000000000001, + -0.94200000000000006, + 3.211, + -0.059000000000000004, + -0.986, + 3.1670000000000003, + -0.059000000000000004, + -0.986, + 1.463, + -0.059000000000000004, + -1.7750000000000001, + 3.1670000000000003, + -0.059000000000000004, + -0.94200000000000006, + 1.419, + -0.059000000000000004, + -1.7750000000000001, + 1.463, + -0.059000000000000004, + -1.819, + 3.211, + -0.059000000000000004, + -1.819, + 1.419, + -0.059000000000000004, + -1.838, + 3.23, + -0.122, + -1.819, + 3.211, + -0.122, + -1.819, + 1.419, + -0.122, + -0.94200000000000006, + 3.211, + -0.122, + -1.838, + 1.4000000000000001, + -0.122, + -0.94200000000000006, + 1.419, + -0.122, + -0.923, + 3.23, + -0.122, + -0.923, + 1.4000000000000001, + -0.122, + -0.923, + 3.23, + -0.059000000000000004, + -0.923, + 1.4000000000000001, + -0.059000000000000004, + -1.838, + 3.23, + -0.059000000000000004, + -1.838, + 1.4000000000000001, + -0.059000000000000004, + -1.806, + 3.198, + -0.059000000000000004, + -1.806, + 1.432, + -0.059000000000000004, + -0.95500000000000007, + 3.198, + -0.059000000000000004, + -0.95500000000000007, + 1.432, + -0.059000000000000004, + -0.923, + 3.23, + 0.078, + -0.95500000000000007, + 3.198, + 0.078, + -0.95500000000000007, + 1.432, + 0.078, + -1.806, + 3.198, + 0.078, + -0.923, + 1.4000000000000001, + 0.078, + -1.806, + 1.432, + 0.078, + -1.838, + 3.23, + 0.078, + -1.838, + 1.4000000000000001, + 0.078 ], "normals": [], "uvs": [], @@ -918,7 +918,57 @@ } ], "geometry": "91e0c258-0500-4169-9074-0816995c8c42-0004ec8a", - "name": "Wall Walls <322698 Generic - 200mm>" + "name": "Wall Walls <322698 Generic - 200mm>", + "userData": { + "Structural": "No", + "Enable Analytical Model": "No", + "Structural Usage": "Non-bearing", + "Location Line": "Wall Centerline", + "Image": "", + "Comments": null, + "Mark": null, + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Base Constraint": "Level 1", + "Base Offset": "0", + "Base is Attached": "No", + "Base Extension Distance": "0", + "Top Constraint": "Up to level: Level 2", + "Unconnected Height": "4000", + "Top Offset": "0", + "Top is Attached": "No", + "Top Extension Distance": "0", + "Room Bounding": "Yes", + "Length": "4000", + "Area": "14 m²", + "Volume": "2.87 m³", + "Related to Mass": "No", + "Type Structure": null, + "Type Coarse Scale Fill Pattern": "", + "Type Coarse Scale Fill Color": null, + "Type Wrapping at Inserts": "Do not wrap", + "Type Wrapping at Ends": "None", + "Type Width": "200", + "Type Type Image": "", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type URL": null, + "Type Description": null, + "Type Structural Material": "", + "Type Assembly Description": null, + "Type Assembly Code": null, + "Type Type Mark": null, + "Type Fire Rating": null, + "Type Cost": "0.00", + "Type Function": "Exterior", + "Type Heat Transfer Coefficient (U)": "0.0000 W/(m²·K)", + "Type Thermal Resistance (R)": "0.0000 (m²·K)/W", + "Type Thermal mass": "0.00 kJ/K", + "Type Absorptance": "0.7", + "Type Roughness": "3" + } }, { "uuid": "8dbc9fa1-e2be-4fe1-b83d-f4f2f90908e2-0004ee8f", @@ -995,7 +1045,49 @@ ], "geometry": "8dbc9fa1-e2be-4fe1-b83d-f4f2f90908e2-0004ee8f", "name": "FamilyInstance Windows M_Fixed <323215 0915 x 1830mm>", - "material": "cb74be9d-0c49-4127-96a8-1de4e3dd00ba-00004aa0" + "material": "cb74be9d-0c49-4127-96a8-1de4e3dd00ba-00004aa0", + "userData": { + "Level": "Level 1", + "Sill Height": "1400", + "Phase Created": "New Construction", + "Phase Demolished": "None", + "Image": "", + "Comments": null, + "Mark": null, + "Head Height": "3230", + "Type Visual Light Transmittance": "0.9", + "Type Thermal Resistance (R)": "0.2711 (m²·K)/W", + "Type Solar Heat Gain Coefficient": "0.78", + "Type Construction Type Id": null, + "Type Heat Transfer Coefficient (U)": "3.6886 W/(m²·K)", + "Type Analytic Construction": null, + "Type Operation": null, + "Type Frame Exterior Material": "Sash", + "Type Frame Interior Material": "Sash", + "Type Glass Pane Material": "Glass", + "Type Sash": "Sash", + "Type Wall Closure": "By host", + "Type Construction Type": null, + "Type Height": "1830", + "Type Default Sill Height": "305", + "Type Width": "915", + "Type Window Inset": "19", + "Type Rough Width": "0", + "Type Rough Height": "0", + "Type Keynote": null, + "Type Model": null, + "Type Manufacturer": null, + "Type Type Comments": null, + "Type Type Image": "", + "Type URL": null, + "Type Description": null, + "Type Assembly Code": null, + "Type Cost": "0.00", + "Type Assembly Description": null, + "Type Type Mark": null, + "Type OmniClass Number": null, + "Type OmniClass Title": null + } } ] }