-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SAM and CAM methods updated with multiple weighted options added
- Loading branch information
Showing
6 changed files
with
101 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* This file is part of the Buildings and Habitats object Model (BHoM) | ||
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved. | ||
* | ||
* Each contributor holds copyright over their respective contributions. | ||
* The project versioning (Git) records all such contribution source information. | ||
* | ||
* | ||
* The BHoM is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3.0 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The BHoM is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||
*/ | ||
|
||
using BH.oM.Geometry; | ||
using BH.oM.Dimensional; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using BH.oM.Facade.Elements; | ||
using BH.oM.Base; | ||
using BH.Engine.Geometry; | ||
using BH.Engine.Spatial; | ||
using BH.Engine.Base; | ||
using BH.oM.Facade.Fragments; | ||
|
||
using BH.oM.Base.Attributes; | ||
using BH.oM.Facade.Results; | ||
using System.ComponentModel; | ||
|
||
namespace BH.Engine.Facade | ||
{ | ||
public static partial class Compute | ||
{ | ||
/***************************************************/ | ||
/**** Public Methods ****/ | ||
/***************************************************/ | ||
|
||
[Description("Returns effective U-Value of a collection of openings calculated using the Area Weighting Method. Requires center of opening U-value, frame U-value and edge U-value as OpeningConstruction and FrameEdgeProperty fragments.")] | ||
[Input("openings", "Openings to find U-value for.")] | ||
[Output("effectiveUValue", "Effective total U-value result of openings calculated using CAM.")] | ||
public static OverallUValue UValueOpeningsAW(this List<Opening> openings) | ||
{ | ||
double uValueProduct = 0; | ||
double totalArea = 0; | ||
foreach (Opening opening in openings) | ||
{ | ||
double area = opening.Area(); | ||
uValueProduct += opening.UValueOpeningAW().UValue * area; | ||
totalArea += area; | ||
} | ||
if (totalArea == 0) | ||
{ | ||
Base.Compute.RecordError("Openings have a total calculated area of 0. Ensure Openings are valid with associated edges defining their geometry and try again."); | ||
return null; | ||
} | ||
|
||
double effectiveUValue = uValueProduct / totalArea; | ||
OverallUValue result = new OverallUValue(effectiveUValue, openings.Select(x => x.BHoM_Guid as IComparable).ToList()); | ||
return result; | ||
} | ||
|
||
/***************************************************/ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters