From 1f1a92f46691c2a416c863a6a0be4a276e81e793 Mon Sep 17 00:00:00 2001 From: Valerie Green Date: Mon, 28 Nov 2022 17:10:23 -0800 Subject: [PATCH 1/3] Updated UValue AW Methods UValue AW methods updated to handle cavity u-value and continuous u-value --- Facade_Engine/Compute/UValueOpeningAW.cs | 96 +++++++++++++++++------- Facade_Engine/Compute/UValuePanelAW.cs | 34 +++++++-- 2 files changed, 99 insertions(+), 31 deletions(-) diff --git a/Facade_Engine/Compute/UValueOpeningAW.cs b/Facade_Engine/Compute/UValueOpeningAW.cs index 893122aba..43b22bdf6 100644 --- a/Facade_Engine/Compute/UValueOpeningAW.cs +++ b/Facade_Engine/Compute/UValueOpeningAW.cs @@ -56,22 +56,42 @@ public static OverallUValue UValueOpeningAW(this Opening opening) } List glassUValues = opening.OpeningConstruction.GetAllFragments(typeof(UValueGlassCentre)); - if (glassUValues.Count <= 0) + List glassEdgeUValues = opening.OpeningConstruction.GetAllFragments(typeof(UValueGlassEdge)); + List contUValues = opening.OpeningConstruction.GetAllFragments(typeof(UValueContinuous)); + List cavityUValues = opening.OpeningConstruction.GetAllFragments(typeof(UValueCavity)); + double contUValue = 0; + double cavityUValue = 0; + + double glassUValue = 0; + double glassEdgeUValue = 0; + + if ((glassUValues.Count <= 0) && (glassEdgeUValues.Count <= 0) && (contUValues.Count <= 0) && (cavityUValues.Count <= 0)) { - BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} does not have Glass U-value assigned."); + BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} does not have Glass U-values, Continuous U-value, or Cavity U-value assigned."); return null; } - if (glassUValues.Count > 1) { - BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has more than one Glass U-value assigned."); + BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has center of Glass U-value without Edge of Glass u-values assigned."); return null; } - double glassUValue = (glassUValues[0] as UValueGlassCentre).UValue; - - List glassEdgeUValues = opening.OpeningConstruction.GetAllFragments(typeof(UValueGlassEdge)); - if (glassEdgeUValues.Count <= 0) + if ((glassUValues.Count <= 0) && (glassEdgeUValues.Count == 1)) { - Base.Compute.RecordError($"Opening {opening.BHoM_Guid} does not have Glass edge U-value assigned."); + BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has Edge of Glass U-values without center of Glass u-value assigned."); + return null; + } + if (contUValues.Count > 1) + { + Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has more than one continuous U-value assigned."); + return null; + } + if (cavityUValues.Count > 1) + { + Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has more than one cavity U-value assigned."); + return null; + } + if (glassUValues.Count > 1) + { + BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has more than one Glass U-value assigned."); return null; } if (glassEdgeUValues.Count > 1) @@ -79,25 +99,25 @@ public static OverallUValue UValueOpeningAW(this Opening opening) Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has more than one Glass edge U-value assigned."); return null; } - double glassEdgeUValue = (glassEdgeUValues[0] as UValueGlassEdge).UValue; - double contUValue = 0; - List contUValues = opening.OpeningConstruction.GetAllFragments(typeof(UValueContinuous)); if (contUValues.Count == 1) { contUValue = (contUValues[0] as UValueContinuous).UValue; } - if (contUValues.Count > 1) + if (cavityUValues.Count == 1) { - Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has more than one continuous U-value assigned."); - return null; + cavityUValue = (cavityUValues[0] as UValueCavity).UValue; + } + if (glassUValues.Count == 1 || glassEdgeUValues.Count == 1) + { + glassUValue = (glassUValues[0] as UValueGlassCentre).UValue; + glassEdgeUValue = (glassEdgeUValues[0] as UValueGlassEdge).UValue; } List frameEdges = opening.Edges; List frameAreas = new List(); List frameUValues = new List(); List edgeAreas = new List(); - List edgeUValues = new List(); int h; int j; @@ -150,28 +170,52 @@ public static OverallUValue UValueOpeningAW(this Opening opening) frameUValues.Add(frameUValue); } - double glassArea = opening.Area() - totEdgeArea - totFrameArea; + double totArea = opening.Area(); + if (totArea == 0) + { + BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has a calculated area of 0. Ensure the opening is valid with associated edges defining its geometry and try again."); + } + double glassArea = totArea - totEdgeArea - totFrameArea; + double centerArea = totArea - totFrameArea; + + double edgeUValProduct = 0; + double centerUValue = 0; + + if ((glassEdgeUValue > 0) && (glassUValue > 0)) + { + for (int i = 0; i < edgeAreas.Count; i++) + { + edgeUValProduct += (glassEdgeUValue * edgeAreas[i]); + } + centerUValue = (((glassArea * glassUValue) + edgeUValProduct) / centerArea); + if (cavityUValue > 0) + { + centerUValue = 1 / (1 / cavityUValue + 1 / centerUValue); + } + } + else + { + centerUValue = cavityUValue; + } + double centerUValProduct = centerUValue * centerArea; double FrameUValProduct = 0; - double EdgeUValProduct = 0; for (int i = 0; i < frameUValues.Count; i++) { FrameUValProduct += (frameUValues[i] * frameAreas[i]); - EdgeUValProduct += (glassEdgeUValue * edgeAreas[i]); } - double totArea = opening.Area(); - if (totArea == 0) - { - BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has a calculated area of 0. Ensure the opening is valid with associated edges defining its geometry and try again."); - } - - double baseUValue = (((glassArea * glassUValue) + EdgeUValProduct + FrameUValProduct) / totArea); + double baseUValue = ((centerUValProduct + FrameUValProduct) / totArea); + double effectiveUValue = 0; if (contUValue == 0) { effectiveUValue = baseUValue; } + else if (centerUValue == 0) + { + effectiveUValue = contUValue; + } else { effectiveUValue = 1 / (1 / baseUValue + 1 / contUValue); diff --git a/Facade_Engine/Compute/UValuePanelAW.cs b/Facade_Engine/Compute/UValuePanelAW.cs index e40d9fb02..5ea4196ed 100644 --- a/Facade_Engine/Compute/UValuePanelAW.cs +++ b/Facade_Engine/Compute/UValuePanelAW.cs @@ -58,7 +58,7 @@ public static OverallUValue UValuePanelAW(this Panel panel) List glassUValues = panel.Construction.GetAllFragments(typeof(UValueGlassCentre)); if (glassUValues.Count > 0) { - BH.Engine.Base.Compute.RecordError($"Panel {panel.BHoM_Guid} has Glass U-value assigned. Panels can only receive Continuous U-value"); + BH.Engine.Base.Compute.RecordError($"Panel {panel.BHoM_Guid} has Glass U-value assigned. Panels can only receive Continuous U-value and/or Cavity U-value."); return null; } @@ -70,9 +70,14 @@ public static OverallUValue UValuePanelAW(this Panel panel) } List contUValues = panel.Construction.GetAllFragments(typeof(UValueContinuous)); - if (contUValues.Count <= 0) + List cavityUValues = panel.Construction.GetAllFragments(typeof(UValueCavity)); + double contUValue = 0; + double cavityUValue = 0; + double panelUValue = 0; + + if ((contUValues.Count <= 0) && (cavityUValues.Count <= 0)) { - Base.Compute.RecordError($"Panel {panel.BHoM_Guid} does not have Continuous U-value assigned."); + Base.Compute.RecordError($"Panel {panel.BHoM_Guid} does not have Continuous U-value or Cavity U-value assigned."); return null; } if (contUValues.Count > 1) @@ -80,7 +85,27 @@ public static OverallUValue UValuePanelAW(this Panel panel) Base.Compute.RecordError($"Panel {panel.BHoM_Guid} has more than one Continuous U-value assigned."); return null; } - double contUValue = (contUValues[0] as UValueContinuous).UValue; + if (cavityUValues.Count > 1) + { + Base.Compute.RecordError($"Panel {panel.BHoM_Guid} has more than one Cavity U-value assigned."); + return null; + } + if ((contUValues.Count == 1) && (cavityUValues.Count == 1)) + { + contUValue = (contUValues[0] as UValueContinuous).UValue; + cavityUValue = (cavityUValues[0] as UValueCavity).UValue; + panelUValue = 1 / (1 / contUValue + 1 / cavityUValue); + } + if ((contUValues.Count == 1) && (cavityUValues.Count <= 0)) + { + contUValue = (contUValues[0] as UValueContinuous).UValue; + panelUValue = contUValue; + } + if ((contUValues.Count <= 0) && (cavityUValues.Count == 1)) + { + cavityUValue = (cavityUValues[0] as UValueCavity).UValue; + panelUValue = cavityUValue; + } List frameEdges = panel.ExternalEdges; List frameUValues = new List(); @@ -99,7 +124,6 @@ public static OverallUValue UValuePanelAW(this Panel panel) { BH.Engine.Base.Compute.RecordError($"Panel {panel.BHoM_Guid} has a calculated area of 0. Ensure the panel is valid with associated edges defining its geometry and try again."); } - double panelUValue = contUValue; double effectiveUValue = panelUValue; List panelOpenings = panel.Openings; From 72f4c3d73e7e958b05ee0039d522c4668fa4051d Mon Sep 17 00:00:00 2001 From: Valerie Green Date: Mon, 28 Nov 2022 17:10:49 -0800 Subject: [PATCH 2/3] Updated UValueOpening Method --- Facade_Engine/Compute/UValueOpeningAW.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Facade_Engine/Compute/UValueOpeningAW.cs b/Facade_Engine/Compute/UValueOpeningAW.cs index 43b22bdf6..5f4b5cfad 100644 --- a/Facade_Engine/Compute/UValueOpeningAW.cs +++ b/Facade_Engine/Compute/UValueOpeningAW.cs @@ -70,6 +70,7 @@ public static OverallUValue UValueOpeningAW(this Opening opening) BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} does not have Glass U-values, Continuous U-value, or Cavity U-value assigned."); return null; } + if ((glassUValues.Count == 1) && (glassEdgeUValues.Count <= 0)) { BH.Engine.Base.Compute.RecordError($"Opening {opening.BHoM_Guid} has center of Glass U-value without Edge of Glass u-values assigned."); return null; From a8cfe0af3f80a21fb3d4aa1dee7fd12f03fdac5d Mon Sep 17 00:00:00 2001 From: Valerie Green Date: Fri, 2 Dec 2022 12:18:07 -0800 Subject: [PATCH 3/3] Added Unit Test --- .ci/Datasets/Facade_Engine/Compute/UValueOpeningAW.json | 1 + .ci/Datasets/Facade_Engine/Compute/UValuePanelAW.json | 1 + 2 files changed, 2 insertions(+) create mode 100644 .ci/Datasets/Facade_Engine/Compute/UValueOpeningAW.json create mode 100644 .ci/Datasets/Facade_Engine/Compute/UValuePanelAW.json diff --git a/.ci/Datasets/Facade_Engine/Compute/UValueOpeningAW.json b/.ci/Datasets/Facade_Engine/Compute/UValueOpeningAW.json new file mode 100644 index 000000000..4e09721e8 --- /dev/null +++ b/.ci/Datasets/Facade_Engine/Compute/UValueOpeningAW.json @@ -0,0 +1 @@ +{ "_t" : "BH.oM.Data.Library.Dataset", "BHoM_Guid" : "03792e86-cfa0-4440-849c-ffe66eb31f93", "Name" : "UValueOpeningAW", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceInformation" : { "_t" : "BH.oM.Data.Library.Source", "BHoM_Guid" : "ff271174-1df7-4fa6-8377-058f21b7d692", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceLink" : "", "Title" : "UValueOpeningAW", "Author" : "vgreen", "ItemReference" : "", "Version" : "", "Publisher" : "", "Schema" : "", "Language" : "", "Location" : "", "Copyright" : "", "Contributors" : "", "Confidence" : "Medium" }, "TimeOfCreation" : { "$date" : 1670012234386 }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.UnitTest", "BHoM_Guid" : "1b516447-2dfb-449d-a189-48ad91d03b8d", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Method" : { "_t" : "System.Reflection.MethodBase", "TypeName" : "{ \"_t\" : \"System.Type\", \"Name\" : \"BH.Engine.Facade.Compute, Facade_Engine, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null\", \"_bhomVersion\" : \"6.0\" }", "MethodName" : "UValueOpeningAW", "Parameters" : ["{ \"_t\" : \"System.Type\", \"Name\" : \"BH.oM.Facade.Elements.Opening\", \"_bhomVersion\" : \"6.0\" }"], "_bhomVersion" : "6.0" }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "76f9a9c4-5514-4cf2-92b2-633f4cb25fe6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "b929aa41-94a5-4ed0-8e33-3acca1c57ed5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "65ecdc60-1357-44fb-807a-b4eb16882370", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "ba4a46db-0dd3-4bd9-bb9f-a79e5700d8af", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "57be72b0-9735-4784-87b3-cac3312546f5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "45bea023-5272-49ce-b450-90d9611e3f82", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "7adb4aa8-8265-4286-87b3-c5ce6d69bb76", "Name" : "", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueCavity", "UValue" : 16.800000000000001 }, { "_t" : "BH.oM.Facade.Fragments.UValueContinuous", "UValue" : 0.20000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "672e372a-8d7c-46c2-91e0-cd34eac9e96f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "430fbcd2-d3bc-4840-8c60-7ef068f95f11", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "BHoM_Guid" : "a1b15b9f-432a-4653-b9d2-08a60583cf4c", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [{ "_t" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "Description" : "This EPD Object is based on the EC3 average for all 28 Expanded Polystyrene (EPS), R-5.6 EPDs in the EC3 database as of 5/5/2022", "EndOfLifeTreatment" : "", "Id" : "", "IndustryStandards" : [], "Jurisdiction" : "", "LifeSpan" : 20, "Manufacturer" : "", "PlantName" : "", "PostalCode" : 0, "Publisher" : "EC3", "ReferenceYear" : 2022 }], "Tags" : [], "CustomData" : { }, "Type" : "Product", "EnvironmentalMetric" : [{ "_t" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "BHoM_Guid" : "c100cecd-96cd-4a91-bbc3-0da084132199", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Field" : "GlobalWarmingPotential", "Phases" : ["A1", "A2", "A3"], "Quantity" : 4.7576499999999999 }], "QuantityType" : "Area", "QuantityTypeValue" : 1.0 }] }, "Thickness" : 0.1016 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "91975e73-a411-4032-8126-ad28555cfcd4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.19735472108371288, "ObjectIds" : [{ "$binary" : "QaopuaWU0E6OMzrMocV+1Q==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "aef38098-bb5b-4f43-8eb7-34a0065e8fd2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "e97727b0-b396-4b5d-92ff-57395128cfd1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "ac4d9746-4b4d-48c7-92ea-b05dbefb5ec1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "010d0389-c3c0-4e71-8314-5f96795c4da2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "eb728440-1256-41a4-b4ee-8f0da4f43fba", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "fba51f00-d8be-4ec4-8af3-a00f3a91da84", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "046a6d06-0b7e-4ae4-84b7-235614d2e89a", "Name" : "", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueCavity", "UValue" : 16.800000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "17bde125-0815-44ea-a472-1806c1de4c5e", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "6b3cd186-e039-4236-a1f9-ddc82e9c5c38", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "BHoM_Guid" : "a1b15b9f-432a-4653-b9d2-08a60583cf4c", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [{ "_t" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "Description" : "This EPD Object is based on the EC3 average for all 28 Expanded Polystyrene (EPS), R-5.6 EPDs in the EC3 database as of 5/5/2022", "EndOfLifeTreatment" : "", "Id" : "", "IndustryStandards" : [], "Jurisdiction" : "", "LifeSpan" : 20, "Manufacturer" : "", "PlantName" : "", "PostalCode" : 0, "Publisher" : "EC3", "ReferenceYear" : 2022 }], "Tags" : [], "CustomData" : { }, "Type" : "Product", "EnvironmentalMetric" : [{ "_t" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "BHoM_Guid" : "c100cecd-96cd-4a91-bbc3-0da084132199", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Field" : "GlobalWarmingPotential", "Phases" : ["A1", "A2", "A3"], "Quantity" : 4.7576499999999999 }], "QuantityType" : "Area", "QuantityTypeValue" : 1.0 }] }, "Thickness" : 0.1016 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "445e4bf8-de9a-46f5-bc1d-2f2dccbe34da", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 14.921278801157111, "ObjectIds" : [{ "$binary" : "sCd36ZazXUuS/1c5USjP0Q==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "b1ca430a-fac5-48de-9248-77f900fa03db", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "a324a6b2-4dd1-4671-8b02-422b4dd8d002", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "9e0e48c1-917c-4709-b330-4620f8065102", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "d298601b-e0a8-4c48-8db6-70aa03e5fea0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "7ad653ab-c307-47b5-b470-17e32a206f28", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "52d2e3f7-56a1-4556-9bed-9e0ea4b7cad2", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "4e159565-f253-4e07-bbf4-5f2735bc4891", "Name" : "", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueContinuous", "UValue" : 0.20000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "479902ba-638c-4953-824d-14ec3f439414", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "770e88e0-19de-42df-8b15-5011a3ceeb19", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "BHoM_Guid" : "a1b15b9f-432a-4653-b9d2-08a60583cf4c", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [{ "_t" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "Description" : "This EPD Object is based on the EC3 average for all 28 Expanded Polystyrene (EPS), R-5.6 EPDs in the EC3 database as of 5/5/2022", "EndOfLifeTreatment" : "", "Id" : "", "IndustryStandards" : [], "Jurisdiction" : "", "LifeSpan" : 20, "Manufacturer" : "", "PlantName" : "", "PostalCode" : 0, "Publisher" : "EC3", "ReferenceYear" : 2022 }], "Tags" : [], "CustomData" : { }, "Type" : "Product", "EnvironmentalMetric" : [{ "_t" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "BHoM_Guid" : "c100cecd-96cd-4a91-bbc3-0da084132199", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Field" : "GlobalWarmingPotential", "Phases" : ["A1", "A2", "A3"], "Quantity" : 4.7576499999999999 }], "QuantityType" : "Area", "QuantityTypeValue" : 1.0 }] }, "Thickness" : 0.1016 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "4aa9931f-89db-46e3-b8b7-bb03640d79ea", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.20000000000000001, "ObjectIds" : [{ "$binary" : "sqYko9FNcUaLAkIrTdjQAg==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "0689fc95-2977-4cd8-b9b4-2314c8d9e174", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "948660fc-b704-48d3-8cdd-46a1ea4cdf0f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "69817db7-3e28-46ab-b8a7-352947240fdc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "d5a92c8e-6f32-4069-8fe5-225bfea57c52", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "884ff65b-38f3-48ad-bc59-cd40dfd3853f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "fe15e480-1bde-4dc0-9e1a-4ded6f96e0f7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "c291aec3-75e6-4ad1-8a39-7d2961bb20e5", "Name" : "Double Glazing e-0.10, 1/2 argon", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueGlassCentre", "UValue" : 0.27000000000000002 }, { "_t" : "BH.oM.Facade.Fragments.UValueGlassEdge", "UValue" : 0.44 }, { "_t" : "BH.oM.Facade.Fragments.UValueCavity", "UValue" : 0.10000000000000001 }, { "_t" : "BH.oM.Facade.Fragments.UValueContinuous", "UValue" : 0.20000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "87672513-d198-470b-b8d6-94d76b168bc8", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "4268f452-46ed-481a-9be2-9250773ec1d0", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "06879cc8-a5f8-4b72-9161-55b2de229b94", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.070999999999999994, "SolarReflectanceInternal" : 0.070999999999999994, "SolarTransmittance" : 0.77500000000000002, "LightReflectanceExternal" : 0.080000000000000002, "LightReflectanceInternal" : 0.080000000000000002, "LightTransmittance" : 0.88100000000000001, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.83999999999999997, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "5472a330-1303-4676-9645-26122f7865db", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "63475e67-8d06-404a-b644-78ed5f6afe8e", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "Thickness" : 0.012699999999999999 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "bad71193-a86c-41b0-871f-3814be749147", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "14b8c087-16b7-4008-90b3-f8d2c4663757", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "62969dec-9e43-4b26-b60b-073fa299a89c", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.17000000000000001, "SolarReflectanceInternal" : 0.22, "SolarTransmittance" : 0.59999999999999998, "LightReflectanceExternal" : 0.055, "LightReflectanceInternal" : 0.078, "LightTransmittance" : 0.83999999999999997, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.10000000000000001, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "2795187f-638a-428b-8409-81bc19449627", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.11508019751192744, "ObjectIds" : [{ "$binary" : "/GCGlAS300iM3Uah6kzfDw==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "a039b174-f6d5-4e3f-9a0b-41d17ef1a384", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "7bbafe5d-e53d-4a65-91eb-72945f5b8a5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "d7c6f4dd-9dd4-4499-92ad-fa96f8eedd4a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "8f474449-c80d-4ba0-8e93-9e1cb5e8a357", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "3015ec91-51a3-4884-a5cd-118480715827", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "4cfdd1c8-b285-4bd5-a30f-fc2933d00e31", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "c291aec3-75e6-4ad1-8a39-7d2961bb20e5", "Name" : "Double Glazing e-0.10, 1/2 argon", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueGlassCentre", "UValue" : 0.27000000000000002 }, { "_t" : "BH.oM.Facade.Fragments.UValueGlassEdge", "UValue" : 0.44 }, { "_t" : "BH.oM.Facade.Fragments.UValueCavity", "UValue" : 0.10000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "87672513-d198-470b-b8d6-94d76b168bc8", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "4268f452-46ed-481a-9be2-9250773ec1d0", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "06879cc8-a5f8-4b72-9161-55b2de229b94", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.070999999999999994, "SolarReflectanceInternal" : 0.070999999999999994, "SolarTransmittance" : 0.77500000000000002, "LightReflectanceExternal" : 0.080000000000000002, "LightReflectanceInternal" : 0.080000000000000002, "LightTransmittance" : 0.88100000000000001, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.83999999999999997, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "5472a330-1303-4676-9645-26122f7865db", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "63475e67-8d06-404a-b644-78ed5f6afe8e", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "Thickness" : 0.012699999999999999 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "bad71193-a86c-41b0-871f-3814be749147", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "14b8c087-16b7-4008-90b3-f8d2c4663757", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "62969dec-9e43-4b26-b60b-073fa299a89c", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.17000000000000001, "SolarReflectanceInternal" : 0.22, "SolarTransmittance" : 0.59999999999999998, "LightReflectanceExternal" : 0.055, "LightReflectanceInternal" : 0.078, "LightTransmittance" : 0.83999999999999997, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.10000000000000001, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "00ec8a30-375d-47cf-ada8-c7f5b0e66428", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.2710326546698954, "ObjectIds" : [{ "$binary" : "Xf66ez3lZUqR63KUX1uKXA==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "8f1dcf6c-2fd0-43dc-93fe-4b2afb1e5641", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "ec6b9ea1-3b91-4151-95af-6a6b9be3c673", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "51cfb60b-8326-4257-853a-d06b19b2addf", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "fe2c52a8-e426-400e-ad10-632bee14a0f3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "3df9024c-da52-4d43-b70e-09e3246aa450", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "682b9837-0e7c-4a4c-bdac-efce7573f20a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "c291aec3-75e6-4ad1-8a39-7d2961bb20e5", "Name" : "Double Glazing e-0.10, 1/2 argon", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueGlassCentre", "UValue" : 0.27000000000000002 }, { "_t" : "BH.oM.Facade.Fragments.UValueGlassEdge", "UValue" : 0.44 }, { "_t" : "BH.oM.Facade.Fragments.UValueContinuous", "UValue" : 0.20000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "87672513-d198-470b-b8d6-94d76b168bc8", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "4268f452-46ed-481a-9be2-9250773ec1d0", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "06879cc8-a5f8-4b72-9161-55b2de229b94", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.070999999999999994, "SolarReflectanceInternal" : 0.070999999999999994, "SolarTransmittance" : 0.77500000000000002, "LightReflectanceExternal" : 0.080000000000000002, "LightReflectanceInternal" : 0.080000000000000002, "LightTransmittance" : 0.88100000000000001, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.83999999999999997, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "5472a330-1303-4676-9645-26122f7865db", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "63475e67-8d06-404a-b644-78ed5f6afe8e", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "Thickness" : 0.012699999999999999 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "bad71193-a86c-41b0-871f-3814be749147", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "14b8c087-16b7-4008-90b3-f8d2c4663757", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "62969dec-9e43-4b26-b60b-073fa299a89c", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.17000000000000001, "SolarReflectanceInternal" : 0.22, "SolarTransmittance" : 0.59999999999999998, "LightReflectanceExternal" : 0.055, "LightReflectanceInternal" : 0.078, "LightTransmittance" : 0.83999999999999997, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.10000000000000001, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "67d060a6-6814-45cb-9641-1a2270c6e901", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.14111787903205772, "ObjectIds" : [{ "$binary" : "oZ5r7JE7UUGVr2prm+PGcw==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "5c32c183-f17b-476b-98ca-1189cd4f4300", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Opening", "BHoM_Guid" : "1a17c776-455f-440b-a1b6-4f26c9e2a9fc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Edges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "b848a057-f3d0-4c75-aaf6-684b38cfe078", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "74e391fa-e068-4a03-969d-c308bbe63844", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "efe47cee-8848-4145-bacc-ff1ec34d3cdb", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "f26e455a-df03-432a-a1a1-0ae2da5e1fc1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "OpeningConstruction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "c291aec3-75e6-4ad1-8a39-7d2961bb20e5", "Name" : "Double Glazing e-0.10, 1/2 argon", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueGlassCentre", "UValue" : 0.27000000000000002 }, { "_t" : "BH.oM.Facade.Fragments.UValueGlassEdge", "UValue" : 0.44 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "87672513-d198-470b-b8d6-94d76b168bc8", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "4268f452-46ed-481a-9be2-9250773ec1d0", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "06879cc8-a5f8-4b72-9161-55b2de229b94", "Name" : "CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.070999999999999994, "SolarReflectanceInternal" : 0.070999999999999994, "SolarTransmittance" : 0.77500000000000002, "LightReflectanceExternal" : 0.080000000000000002, "LightReflectanceInternal" : 0.080000000000000002, "LightTransmittance" : 0.88100000000000001, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.83999999999999997, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "5472a330-1303-4676-9645-26122f7865db", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "63475e67-8d06-404a-b644-78ed5f6afe8e", "Name" : "ARGON", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "Thickness" : 0.012699999999999999 }, { "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "bad71193-a86c-41b0-871f-3814be749147", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "14b8c087-16b7-4008-90b3-f8d2c4663757", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.Environment.MaterialFragments.SolidMaterial", "BHoM_Guid" : "62969dec-9e43-4b26-b60b-073fa299a89c", "Name" : "LoE CLEAR 6MM", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : 0.0, "Conductivity" : 0.90000000000000002, "SpecificHeat" : 0.0, "VapourResistivity" : 0.0, "Description" : "", "Roughness" : "Undefined", "Refraction" : 0.0, "SolarReflectanceExternal" : 0.17000000000000001, "SolarReflectanceInternal" : 0.22, "SolarTransmittance" : 0.59999999999999998, "LightReflectanceExternal" : 0.055, "LightReflectanceInternal" : 0.078, "LightTransmittance" : 0.83999999999999997, "EmissivityExternal" : 0.83999999999999997, "EmissivityInternal" : 0.10000000000000001, "Specularity" : 0.0, "TransmittedDiffusivity" : 0.0, "TransmittedSpecularity" : 0.0, "IgnoreInUValueCalculation" : false }] }, "Thickness" : 0.0060000000000000001 }] }, "FrameCornerType" : "VerticalExtended", "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "90bc32ab-e22c-49e9-a5db-cc10991c53aa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.47932335558662287, "ObjectIds" : [{ "$binary" : "dscXGl9FC0Shtk8myeKp/A==", "$type" : "03" }] }] }] }], "_bhomVersion" : "6.0" } \ No newline at end of file diff --git a/.ci/Datasets/Facade_Engine/Compute/UValuePanelAW.json b/.ci/Datasets/Facade_Engine/Compute/UValuePanelAW.json new file mode 100644 index 000000000..1a3157407 --- /dev/null +++ b/.ci/Datasets/Facade_Engine/Compute/UValuePanelAW.json @@ -0,0 +1 @@ +{ "_t" : "BH.oM.Data.Library.Dataset", "BHoM_Guid" : "0f42da39-3e0a-4657-864f-76bce6d226e2", "Name" : "UValuePanelAW", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceInformation" : { "_t" : "BH.oM.Data.Library.Source", "BHoM_Guid" : "60f0e5d7-313b-4558-9481-c77c614ceda9", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "SourceLink" : "", "Title" : "UValuePanelAW", "Author" : "vgreen", "ItemReference" : "", "Version" : "", "Publisher" : "", "Schema" : "", "Language" : "", "Location" : "", "Copyright" : "", "Contributors" : "", "Confidence" : "Medium" }, "TimeOfCreation" : { "$date" : 1670012240438 }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.UnitTest", "BHoM_Guid" : "cad57f6c-fddf-466a-a53d-c5ce4defa321", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Method" : { "_t" : "System.Reflection.MethodBase", "TypeName" : "{ \"_t\" : \"System.Type\", \"Name\" : \"BH.Engine.Facade.Compute, Facade_Engine, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null\", \"_bhomVersion\" : \"6.0\" }", "MethodName" : "UValuePanelAW", "Parameters" : ["{ \"_t\" : \"System.Type\", \"Name\" : \"BH.oM.Facade.Elements.Panel\", \"_bhomVersion\" : \"6.0\" }"], "_bhomVersion" : "6.0" }, "Data" : [{ "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "74db0549-1046-45a6-9748-d8ca730ca1d6", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Panel", "BHoM_Guid" : "f7040336-73ef-4b73-bf58-b6255d6a2f64", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "ExternalEdges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "3168e5ed-613c-4112-9924-c05dfd5e0630", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "e7648232-eb29-46d4-a4d5-dbac54141f88", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "1590f353-b61a-4877-84e8-bfb0b14f7fec", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "ede51c7c-0f05-495e-a397-b48c21b25f57", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "Openings" : [], "Construction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "7b71e703-bc46-48a9-b00d-3afbb2d1c935", "Name" : "", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueCavity", "UValue" : 0.10000000000000001 }, { "_t" : "BH.oM.Facade.Fragments.UValueContinuous", "UValue" : 0.20000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "e5e1ec2c-4dd7-4728-ae69-9025af47918c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "1bcd5504-5e82-4d9e-9b85-0046c0573f48", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "BHoM_Guid" : "a1b15b9f-432a-4653-b9d2-08a60583cf4c", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [{ "_t" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "Description" : "This EPD Object is based on the EC3 average for all 28 Expanded Polystyrene (EPS), R-5.6 EPDs in the EC3 database as of 5/5/2022", "EndOfLifeTreatment" : "", "Id" : "", "IndustryStandards" : [], "Jurisdiction" : "", "LifeSpan" : 20, "Manufacturer" : "", "PlantName" : "", "PostalCode" : 0, "Publisher" : "EC3", "ReferenceYear" : 2022 }], "Tags" : [], "CustomData" : { }, "Type" : "Product", "EnvironmentalMetric" : [{ "_t" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "BHoM_Guid" : "c100cecd-96cd-4a91-bbc3-0da084132199", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Field" : "GlobalWarmingPotential", "Phases" : ["A1", "A2", "A3"], "Quantity" : 4.7576499999999999 }], "QuantityType" : "Area", "QuantityTypeValue" : 1.0 }] }, "Thickness" : 0.1016 }] }, "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "6e06bfd0-a0dd-42cc-910d-aeb1742d47b0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.066666666666666666, "ObjectIds" : [{ "$binary" : "NgME9+9zc0u/WLYlXWovZA==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "288bf154-5d4e-4a2e-8119-3c7749972607", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Panel", "BHoM_Guid" : "5c51358d-5de1-45fe-b678-ae716d073066", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "ExternalEdges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "92560518-c723-42d7-992b-abfd83c4dbaa", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "5809e6b5-7314-4a31-9eba-069acc36b4fd", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "d5dd7924-8e16-4f03-b66b-9a26c5035a51", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "d9303ff6-8567-456b-bbf6-3a0e3cc5f574", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "Openings" : [], "Construction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "c4c439ca-7dc7-4ae6-8be9-e24cd3a6a4ca", "Name" : "", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueCavity", "UValue" : 0.10000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "38f0c5d1-8588-4e14-86b4-4ead6d8760dc", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c6c3a77f-af54-40f2-869b-7e80902efd56", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "BHoM_Guid" : "a1b15b9f-432a-4653-b9d2-08a60583cf4c", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [{ "_t" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "Description" : "This EPD Object is based on the EC3 average for all 28 Expanded Polystyrene (EPS), R-5.6 EPDs in the EC3 database as of 5/5/2022", "EndOfLifeTreatment" : "", "Id" : "", "IndustryStandards" : [], "Jurisdiction" : "", "LifeSpan" : 20, "Manufacturer" : "", "PlantName" : "", "PostalCode" : 0, "Publisher" : "EC3", "ReferenceYear" : 2022 }], "Tags" : [], "CustomData" : { }, "Type" : "Product", "EnvironmentalMetric" : [{ "_t" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "BHoM_Guid" : "c100cecd-96cd-4a91-bbc3-0da084132199", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Field" : "GlobalWarmingPotential", "Phases" : ["A1", "A2", "A3"], "Quantity" : 4.7576499999999999 }], "QuantityType" : "Area", "QuantityTypeValue" : 1.0 }] }, "Thickness" : 0.1016 }] }, "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "ab364d60-e234-4ca9-9024-008c3815d3d1", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.10000000000000001, "ObjectIds" : [{ "$binary" : "jTVRXOFd/kW2eK5xbQcwZg==", "$type" : "03" }] }] }, { "_t" : "BH.oM.Test.UnitTests.TestData", "BHoM_Guid" : "f53ff714-8880-4588-af01-55adf2204bee", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Inputs" : [{ "_t" : "BH.oM.Facade.Elements.Panel", "BHoM_Guid" : "ba830900-40a7-4429-b3d7-c47a6f5183e7", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "ExternalEdges" : [{ "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "c58f8de7-9bec-42d1-b703-11f098a8e5ce", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "772ba76c-318b-467a-9c19-e60616a83702", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "86c5036f-807f-4271-a791-736f0f538c5c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1004.8912496649843, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Elements.FrameEdge", "BHoM_Guid" : "bdd96b93-30cc-4c3e-8b73-1c66169f023a", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Curve" : { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 134.64209801394918 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 1000.1702765167756, "Y" : 67.399619026890505, "Z" : 135.24865001394917 }, "Infinite" : false }, "FrameEdgeProperty" : { "_t" : "BH.oM.Facade.SectionProperties.FrameEdgeProperty", "BHoM_Guid" : "433324eb-ac01-4c7d-97d7-1edd6388e865", "Name" : "CW_Aluminum Thermally Broken_Triple IGU_Center Mullion", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueFrame", "UValue" : 1.6499999999999999 }, { "_t" : "BH.oM.Facade.Fragments.FrameExtensionBox", "BoundingBoxCurve" : { "_t" : "BH.oM.Geometry.Polyline", "ControlPoints" : [{ "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.092591256814240838, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : 0.03558996482963097, "Z" : 0.0 }, { "_t" : "BH.oM.Geometry.Point", "X" : 0.052387499999999927, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }] } }, { "_t" : "BH.oM.Facade.Fragments.GlazingLocation", "GlazingOffsetDistance" : 0.019050000000010184 }], "Tags" : [], "CustomData" : { }, "SectionProperties" : [{ "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "21f7df85-872b-46e8-9048-0d062a2a377f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2ec31ec3-63af-4b89-ad81-59708b7de1c5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : 0.00083852262805517305, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000009095, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999997111, "Y" : 0.0025399999999926814, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999995417, "Y" : -1.1279865930191591E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "669dbdad-e3a6-4186-a166-728499c728f4", "Name" : "Polyvinylchloride (PVC) / Vinyl - Rigid", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c92326dd-756e-44de-87f7-ec01df3326d4", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "2850039e-c260-465d-962f-79985ebd7c32", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.038099999999999995, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.030479999999992898, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 0.030479999999992718, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.036575999999999942, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "dd0f42bd-2f6e-4c5e-b0ab-419d512b82b1", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "90948f9e-5e77-42e0-ac26-e9f5b4318d29", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "cfaf82a7-3704-4898-b321-d76d06cf05c3", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.082550000000000318, "Y" : 0.028574999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.08255000000000054, "Y" : -5.0119464134468216E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088900000000000451, "Y" : -7.8995920915758686E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.088899999999999993, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019049999999999546, "Y" : 0.031749999999992645, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000226, "Y" : 0.0079501999999931211, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012700000000000541, "Y" : 0.0079501999999927065, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999996931, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.0017780000000005487, "Y" : 0.0025399999999930426, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : 0.00083852262805535346, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0045719999999998123, "Y" : -6.9935168767187858E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.0096519999999998846, "Y" : 9.42996791764017E-15, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.010580137752935781, "Y" : 0.0017211939226805932, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.012191999999999559, "Y" : 0.0025399999999928622, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.02222499999999963, "Y" : 0.0025399999999930409, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.022224999999999551, "Y" : 0.028574999999994129, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "fddb6e1e-f721-4588-831b-a1fbf6dc0609", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "b23933cc-acf9-4f8e-b300-98c58c982941", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "62029e88-b4ae-4978-85c9-b771a666f39c", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.03303628181024526, "Y" : 0.026928647785423334, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.032020281810245466, "Y" : 0.025168884164933795, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480869, "Y" : 0.027219248506005371, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022225000000000359, "Y" : 0.027219248506005357, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.022224999999999998, "Y" : 3.9479530755670567E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 4.0607517348689725E-16, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.025044400000000105, "Y" : 0.02956559999999232, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.028468946597480508, "Y" : 0.029565599999992139, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "01d79c89-31a6-4a44-b5f4-5537601a60ec", "Name" : "Aluminum (Painted)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "e92271b2-eb49-468e-a4cf-5c94340d8f1b", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "294daba4-8b82-4941-a721-cefe186ef6f0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.019050000000000272, "Y" : 0.031749999999993186, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : 0.01270000000000027, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "94790a80-030b-4d81-8891-bf5230e13883", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }, { "_t" : "BH.oM.Physical.FramingProperties.ConstantFramingProperty", "BHoM_Guid" : "c2b82e58-3d2b-42b3-904e-268dc27a382f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Profile" : { "_t" : "BH.oM.Spatial.ShapeProfiles.FreeFormProfile", "BHoM_Guid" : "899e3da8-4195-4d47-8ee1-5147b8883f7f", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Shape" : "FreeForm", "Edges" : [{ "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.019049999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.019049999999999997, "Y" : 0.031749999999992826, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "Infinite" : false }, { "_t" : "BH.oM.Geometry.Line", "Start" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.033754540941355153, "Z" : 0.0 }, "End" : { "_t" : "BH.oM.Geometry.Point", "X" : -0.012699999999999999, "Y" : 0.019049999999992826, "Z" : 0.0 }, "Infinite" : false }] }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "c4f9fdc4-ee25-4989-931a-2cd13e8381bd", "Name" : "Ethylene Propylene Diene Monomer (EPDM)", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [] }, "OrientationAngle" : 0.0 }] } }], "Openings" : [], "Construction" : { "_t" : "BH.oM.Physical.Constructions.Construction", "BHoM_Guid" : "f7c2a290-12e8-498b-9edc-361185270684", "Name" : "", "Fragments" : [{ "_t" : "BH.oM.Facade.Fragments.UValueContinuous", "UValue" : 0.20000000000000001 }], "Tags" : [], "CustomData" : { }, "Layers" : [{ "_t" : "BH.oM.Physical.Constructions.Layer", "BHoM_Guid" : "002df141-e6a8-45e5-867b-478148ced2a5", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Material" : { "_t" : "BH.oM.Physical.Materials.Material", "BHoM_Guid" : "8646e251-072d-400a-a4bd-a8f4f9b51910", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Density" : NaN, "Properties" : [{ "_t" : "BH.oM.LifeCycleAssessment.MaterialFragments.EnvironmentalProductDeclaration", "BHoM_Guid" : "a1b15b9f-432a-4653-b9d2-08a60583cf4c", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [{ "_t" : "BH.oM.LifeCycleAssessment.Fragments.AdditionalEPDData", "Description" : "This EPD Object is based on the EC3 average for all 28 Expanded Polystyrene (EPS), R-5.6 EPDs in the EC3 database as of 5/5/2022", "EndOfLifeTreatment" : "", "Id" : "", "IndustryStandards" : [], "Jurisdiction" : "", "LifeSpan" : 20, "Manufacturer" : "", "PlantName" : "", "PostalCode" : 0, "Publisher" : "EC3", "ReferenceYear" : 2022 }], "Tags" : [], "CustomData" : { }, "Type" : "Product", "EnvironmentalMetric" : [{ "_t" : "BH.oM.LifeCycleAssessment.EnvironmentalMetric", "BHoM_Guid" : "c100cecd-96cd-4a91-bbc3-0da084132199", "Name" : "Expanded Polystyrene (EPS), R-5.6", "Fragments" : [], "Tags" : [], "CustomData" : { }, "Field" : "GlobalWarmingPotential", "Phases" : ["A1", "A2", "A3"], "Quantity" : 4.7576499999999999 }], "QuantityType" : "Area", "QuantityTypeValue" : 1.0 }] }, "Thickness" : 0.1016 }] }, "Type" : "Undefined" }], "Outputs" : [{ "_t" : "BH.oM.Facade.Results.OverallUValue", "BHoM_Guid" : "d230b83b-e4c5-4c16-9266-9cac7fe158e0", "Name" : "", "Fragments" : [], "Tags" : [], "CustomData" : { }, "UValue" : 0.20000000000000001, "ObjectIds" : [{ "$binary" : "AAmDuqdAKUSz18R6b1GD5w==", "$type" : "03" }] }] }] }], "_bhomVersion" : "6.0" } \ No newline at end of file