Skip to content

Commit

Permalink
Added UValueContinuous Fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
vgreen-BH authored and Fraser Greenroyd committed Sep 1, 2022
1 parent 45231cc commit 95d6557
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions Facade_oM/Fragments/UValueContinuous.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BH.oM.Base;
using System.ComponentModel;

namespace BH.oM.Facade.Fragments
{
[Description("A U-Value representing the effective U-Value of continuous insulation and/or layers (not affected by thermal bridging due to frame u-value).")]
public class UValueContinuous : IFragment
{
[Description("The U-Value of the continuous layers.")]
public virtual double UValue { get; set; } = double.NaN;
}
}

0 comments on commit 95d6557

Please sign in to comment.