diff --git a/EnergyPlus_Adapter/AdapterActions/Push.cs b/EnergyPlus_Adapter/AdapterActions/Push.cs index f8e271d..a4abf24 100644 --- a/EnergyPlus_Adapter/AdapterActions/Push.cs +++ b/EnergyPlus_Adapter/AdapterActions/Push.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -67,3 +67,4 @@ public override List Push(IEnumerable objects, String tag = "", } } } + diff --git a/EnergyPlus_Adapter/CRUD/Create.cs b/EnergyPlus_Adapter/CRUD/Create.cs index e0c91b1..8f70903 100644 --- a/EnergyPlus_Adapter/CRUD/Create.cs +++ b/EnergyPlus_Adapter/CRUD/Create.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ protected override bool ICreate(IEnumerable objects, ActionConfig actionCo } } } + diff --git a/EnergyPlus_Adapter/EnergyPlusAdapter.cs b/EnergyPlus_Adapter/EnergyPlusAdapter.cs index 9eba685..dfcbbdc 100644 --- a/EnergyPlus_Adapter/EnergyPlusAdapter.cs +++ b/EnergyPlus_Adapter/EnergyPlusAdapter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ public EnergyPlusAdapter(BH.oM.Adapter.FileSettings fileSettings, EnergyPlusSett private List FileOutput { get; set; } } } + diff --git a/EnergyPlus_Adapter/Properties/AssemblyInfo.cs b/EnergyPlus_Adapter/Properties/AssemblyInfo.cs index f67dd30..c7aa63e 100644 --- a/EnergyPlus_Adapter/Properties/AssemblyInfo.cs +++ b/EnergyPlus_Adapter/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("4.0.0.0")] [assembly: AssemblyFileVersion("4.1.0.0")] + diff --git a/EnergyPlus_Engine/Compute/RunCommand.cs b/EnergyPlus_Engine/Compute/RunCommand.cs index 6335ec4..a51b786 100644 --- a/EnergyPlus_Engine/Compute/RunCommand.cs +++ b/EnergyPlus_Engine/Compute/RunCommand.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ public static bool RunCommand(string commandString = null) } } } + diff --git a/EnergyPlus_Engine/Compute/SimulateIDF.cs b/EnergyPlus_Engine/Compute/SimulateIDF.cs index 00cadbf..a68969a 100644 --- a/EnergyPlus_Engine/Compute/SimulateIDF.cs +++ b/EnergyPlus_Engine/Compute/SimulateIDF.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -71,4 +71,4 @@ public static bool SimulateIDF(EnergyPlusSettings energyPlusSettings, string idf } } } -} \ No newline at end of file +} diff --git a/EnergyPlus_Engine/Convert/ToEnergyPlus.cs b/EnergyPlus_Engine/Convert/ToEnergyPlus.cs index e476839..2482c7a 100644 --- a/EnergyPlus_Engine/Convert/ToEnergyPlus.cs +++ b/EnergyPlus_Engine/Convert/ToEnergyPlus.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -407,4 +407,4 @@ public static List ToEnergyPlus(this BH.oM.Environment.SpaceCr return new List() { scheduleTypeLimits, scheduleDayHourly, scheduleWeekDaily }; } } -} \ No newline at end of file +} diff --git a/EnergyPlus_Engine/Convert/ToEnergyPlusString.cs b/EnergyPlus_Engine/Convert/ToEnergyPlusString.cs index 370223f..f08dc0c 100644 --- a/EnergyPlus_Engine/Convert/ToEnergyPlusString.cs +++ b/EnergyPlus_Engine/Convert/ToEnergyPlusString.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -132,3 +132,4 @@ public static string ToEnergyPlusString(this IEnergyPlusClass energyPlusClass) } } } + diff --git a/EnergyPlus_Engine/Create/GroundTemperatures.cs b/EnergyPlus_Engine/Create/GroundTemperatures.cs index 815b3dc..4b5ea1f 100644 --- a/EnergyPlus_Engine/Create/GroundTemperatures.cs +++ b/EnergyPlus_Engine/Create/GroundTemperatures.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -185,3 +185,4 @@ public static Output RemoveDuplicates(this List FilterEnergyPlusClassByClassName(this List< return energyPlusClasses.Where(x => x.ClassName == className).ToList(); } } -} \ No newline at end of file +} diff --git a/EnergyPlus_Engine/Query/ReadESO.cs b/EnergyPlus_Engine/Query/ReadESO.cs index a9ac5d3..75d8178 100644 --- a/EnergyPlus_Engine/Query/ReadESO.cs +++ b/EnergyPlus_Engine/Query/ReadESO.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -105,3 +105,4 @@ public static ESOFile ReadESO(string filepath) } } } + diff --git a/EnergyPlus_Engine/Query/SunWindExposure.cs b/EnergyPlus_Engine/Query/SunWindExposure.cs index d817c9d..bb069d9 100644 --- a/EnergyPlus_Engine/Query/SunWindExposure.cs +++ b/EnergyPlus_Engine/Query/SunWindExposure.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -41,4 +41,4 @@ public static bool SunWindExposure(this BHE.Panel panel) return false; } } -} \ No newline at end of file +} diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ComplexFenestrationPropertySolarAbsorbedLayers.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ComplexFenestrationPropertySolarAbsorbedLayers.cs index bcb9ced..97656ab 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ComplexFenestrationPropertySolarAbsorbedLayers.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ComplexFenestrationPropertySolarAbsorbedLayers.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list Layer5SolarRadiationAbsorbedScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKiva.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKiva.cs index fc70719..6a2242e 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKiva.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKiva.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -144,3 +144,4 @@ ////public virtual real CustomBlock10ZPosition { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKivaSettings.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKivaSettings.cs index 5e6f9a8..495d766 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKivaSettings.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/FoundationKivaSettings.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual choice SimulationTimestep { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceControlMovableInsulation.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceControlMovableInsulation.cs index af09ac5..c52e1d6 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceControlMovableInsulation.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceControlMovableInsulation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual string ScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideAdaptiveModelSelections.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideAdaptiveModelSelections.cs index 38e48e5..ffbedc2 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideAdaptiveModelSelections.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideAdaptiveModelSelections.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -212,3 +212,4 @@ ////public virtual object-list MixedRegimeWindowEquationUserCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideUserCurve.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideUserCurve.cs index aba0c46..cb8fc11 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideUserCurve.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmInsideUserCurve.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual object-list HcFunctionOfAirSystemVolumeFlowRateDividedByZonePerimeterLengthCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideAdaptiveModelSelections.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideAdaptiveModelSelections.cs index e413f2b..fd4ed6b 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideAdaptiveModelSelections.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideAdaptiveModelSelections.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual object-list NaturalConvectionUnstableHorizontalEquationUserCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideUserCurve.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideUserCurve.cs index bd71973..5b62419 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideUserCurve.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfaceConvectionAlgorithmOutsideUserCurve.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list HnFunctionOfTemperatureDifferenceDividedByHeightCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertiesVaporCoefficients.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertiesVaporCoefficients.cs index e1b9283..16b49ff 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertiesVaporCoefficients.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertiesVaporCoefficients.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual null InternalVaporCoefficientValue { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficients.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficients.cs index 8bf26c7..2ebbf41 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficients.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficients.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual object-list ConvectionCoefficient2UserCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficientsMultipleSurface.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficientsMultipleSurface.cs index 6eb8096..9f6043d 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficientsMultipleSurface.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyConvectionCoefficientsMultipleSurface.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual object-list ConvectionCoefficient2UserCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExposedFoundationPerimeter.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExposedFoundationPerimeter.cs index 174f5cf..ee10912 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExposedFoundationPerimeter.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExposedFoundationPerimeter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual choice SurfaceSegment10Exposed { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExteriorNaturalVentedCavity.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExteriorNaturalVentedCavity.cs index 0a7ec85..5b9b889 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExteriorNaturalVentedCavity.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyExteriorNaturalVentedCavity.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual object-list Surface10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatBalanceSourceTerm.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatBalanceSourceTerm.cs index a50c74b..acfc3ac 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatBalanceSourceTerm.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatBalanceSourceTerm.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual object-list OutsideFaceHeatSourceTermScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithm.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithm.cs index a336cf3..dcc2129 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithm.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithm.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual choice Algorithm { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmConstruction.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmConstruction.cs index b0d850a..3cadaa1 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmConstruction.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmConstruction.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual object-list ConstructionName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmMultipleSurface.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmMultipleSurface.cs index 0f095a7..4657e5d 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmMultipleSurface.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmMultipleSurface.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual choice Algorithm { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmSurfaceList.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmSurfaceList.cs index 079eba8..06b9962 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmSurfaceList.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyHeatTransferAlgorithmSurfaceList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list SurfaceName6 { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyLocalEnvironment.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyLocalEnvironment.cs index 29bf245..81e23b4 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyLocalEnvironment.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyLocalEnvironment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list OutdoorAirNodeName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideCoefficients.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideCoefficients.cs index 9f698c3..1e93fde 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideCoefficients.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideCoefficients.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual real MaximumOtherSideTemperatureLimit { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideConditionsModel.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideConditionsModel.cs index db88e9e..fc61b2e 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideConditionsModel.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyOtherSideConditionsModel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual choice TypeOfModeling { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySolarIncidentInside.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySolarIncidentInside.cs index 3a7a071..16d80f2 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySolarIncidentInside.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySolarIncidentInside.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list InsideSurfaceIncidentSunSolarRadiationScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySurroundingSurfaces.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySurroundingSurfaces.cs index d668d14..09d77f9 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySurroundingSurfaces.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertySurroundingSurfaces.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ ////public virtual object-list SurroundingSurface10TemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyUnderwater.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyUnderwater.cs index 8de08e3..ec057b8 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyUnderwater.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/SurfacePropertyUnderwater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list FreeStreamWaterVelocitySchedule { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyLocalEnvironment.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyLocalEnvironment.cs index 3e98e37..f434713 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyLocalEnvironment.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyLocalEnvironment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual object-list OutdoorAirNodeName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyUserViewFactorsbySurfaceName.cs b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyUserViewFactorsbySurfaceName.cs index f4f3fa0..a3655ba 100644 --- a/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyUserViewFactorsbySurfaceName.cs +++ b/EnergyPlus_oM/AdvancedConstructionSurfaceZoneConcepts/ZonePropertyUserViewFactorsbySurfaceName.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -2972,3 +2972,4 @@ ////public virtual real ViewFactor490 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVAC.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVAC.cs index 25d4042..a783665 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVAC.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVAC.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual null DesignReturnAirFlowFractionOfSupplyAirFlow { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACDedicatedOutdoorAirSystem.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACDedicatedOutdoorAirSystem.cs index 229cad5..8470a1e 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACDedicatedOutdoorAirSystem.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACDedicatedOutdoorAirSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ ////public virtual object-list AirLoopHVAC20Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACMixer.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACMixer.cs index 2d21c3c..828b679 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACMixer.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACMixer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -134,3 +134,4 @@ ////public virtual node Inlet50NodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystem.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystem.cs index 0a58e4d..ece1c89 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystem.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list AvailabilityManagerListName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystemEquipmentList.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystemEquipmentList.cs index b1db1c9..6fe0ccd 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystemEquipmentList.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACOutdoorAirSystemEquipmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual object-list Component9Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPath.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPath.cs index facf253..0be89f2 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPath.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPath.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -134,3 +134,4 @@ ////public virtual object-list Component25Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPlenum.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPlenum.cs index 6fd7c7a..3a7706b 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPlenum.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACReturnPlenum.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1040,3 +1040,4 @@ ////public virtual node Inlet500NodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACSplitter.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACSplitter.cs index 61ed975..47f9b7e 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACSplitter.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACSplitter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -134,3 +134,4 @@ ////public virtual node Outlet50NodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPath.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPath.cs index 4027c9e..d4673df 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPath.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPath.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -134,3 +134,4 @@ ////public virtual object-list Component25Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPlenum.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPlenum.cs index 8e9b0ef..0b8dec5 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPlenum.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACSupplyPlenum.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1038,3 +1038,4 @@ ////public virtual node Outlet500NodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneMixer.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneMixer.cs index db3f731..e8bc1c6 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneMixer.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneMixer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1034,3 +1034,4 @@ ////public virtual node Inlet500NodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneSplitter.cs b/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneSplitter.cs index d78da73..2753d3f 100644 --- a/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneSplitter.cs +++ b/EnergyPlus_oM/AirDistribution/AirLoopHVACZoneSplitter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1034,3 +1034,4 @@ ////public virtual node Outlet500NodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/AirDistribution/OutdoorAirMixer.cs b/EnergyPlus_oM/AirDistribution/OutdoorAirMixer.cs index ef65f0a..256d27d 100644 --- a/EnergyPlus_oM/AirDistribution/OutdoorAirMixer.cs +++ b/EnergyPlus_oM/AirDistribution/OutdoorAirMixer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node ReturnAirStreamNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXMultiSpeed.cs b/EnergyPlus_oM/Coils/CoilCoolingDXMultiSpeed.cs index a79bc0b..60bafbb 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXMultiSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXMultiSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -220,3 +220,4 @@ ////public virtual object-list ZoneNameForCondenserPlacement { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeed.cs b/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeed.cs index cb57c41..ca61373 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ ////public virtual object-list ZoneNameForCondenserPlacement { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeedThermalStorage.cs b/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeedThermalStorage.cs index 725271c..e6a0196 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeedThermalStorage.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXSingleSpeedThermalStorage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -242,3 +242,4 @@ ////public virtual real StorageTankMaximumOperatingLimitFluidTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXTwoSpeed.cs b/EnergyPlus_oM/Coils/CoilCoolingDXTwoSpeed.cs index 2679586..98de463 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXTwoSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXTwoSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -108,3 +108,4 @@ ////public virtual object-list ZoneNameForCondenserPlacement { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXTwoStageWithHumidityControlMode.cs b/EnergyPlus_oM/Coils/CoilCoolingDXTwoStageWithHumidityControlMode.cs index bb4bc85..364d8cf 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXTwoStageWithHumidityControlMode.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXTwoStageWithHumidityControlMode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual object-list BasinHeaterOperatingScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlow.cs b/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlow.cs index 303ed7a..4748f78 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlow.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual object-list NameOfWaterStorageTankForCondensateCollection { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlowFluidTemperatureControl.cs b/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlowFluidTemperatureControl.cs index 8820067..1e7af46 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlowFluidTemperatureControl.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXVariableRefrigerantFlowFluidTemperatureControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual object-list NameOfWaterStorageTankForCondensateCollection { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingDXVariableSpeed.cs b/EnergyPlus_oM/Coils/CoilCoolingDXVariableSpeed.cs index 853078e..5ecb051 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingDXVariableSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingDXVariableSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -272,3 +272,4 @@ ////public virtual object-list Speed10EnergyInputRatioFunctionOfAirFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingWater.cs b/EnergyPlus_oM/Coils/CoilCoolingWater.cs index b565784..9381a14 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingWater.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual real DesignWaterTemperatureDifference { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingWaterDetailedGeometry.cs b/EnergyPlus_oM/Coils/CoilCoolingWaterDetailedGeometry.cs index ef058be..acb443b 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingWaterDetailedGeometry.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingWaterDetailedGeometry.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ ////public virtual real DesignWaterTemperatureDifference { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpEquationFit.cs b/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpEquationFit.cs index 6745f54..05e465d 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpEquationFit.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpEquationFit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ ////public virtual real RatioOfInitialMoistureEvaporationRateAndSteadyStateLatentCapacity { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpParameterEstimation.cs b/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpParameterEstimation.cs index fa82be5..d26d667 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpParameterEstimation.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpParameterEstimation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ ////public virtual real SourceSideHeatTransferResistance2 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFit.cs b/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFit.cs index fc088ee..cc5f2b0 100644 --- a/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFit.cs +++ b/EnergyPlus_oM/Coils/CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -318,3 +318,4 @@ ////public virtual object-list Speed10WasteHeatFunctionOfTemperatureCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingDXMultiSpeed.cs b/EnergyPlus_oM/Coils/CoilHeatingDXMultiSpeed.cs index 0a32639..8cfbeae 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingDXMultiSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingDXMultiSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -196,3 +196,4 @@ ////public virtual object-list Speed4SensibleHeatRatioModifierFunctionOfFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingDXSingleSpeed.cs b/EnergyPlus_oM/Coils/CoilHeatingDXSingleSpeed.cs index 5f47e91..dc32f7f 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingDXSingleSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingDXSingleSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ ////public virtual object-list SensibleHeatRatioModifierFunctionOfFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlow.cs b/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlow.cs index d8d8dfc..965090e 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlow.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list HeatingCapacityModifierFunctionOfFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlowFluidTemperatureControl.cs b/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlowFluidTemperatureControl.cs index 3ce74c7..b099407 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlowFluidTemperatureControl.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingDXVariableRefrigerantFlowFluidTemperatureControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual object-list IndoorUnitCondensingTemperatureFunctionOfSubcoolingCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingDXVariableSpeed.cs b/EnergyPlus_oM/Coils/CoilHeatingDXVariableSpeed.cs index 9c13d47..3be53f5 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingDXVariableSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingDXVariableSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -206,3 +206,4 @@ ////public virtual object-list Speed10EnergyInputRatioFunctionOfAirFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingDesuperheater.cs b/EnergyPlus_oM/Coils/CoilHeatingDesuperheater.cs index 1822828..753086d 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingDesuperheater.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingDesuperheater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual real ParasiticElectricLoad { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingElectric.cs b/EnergyPlus_oM/Coils/CoilHeatingElectric.cs index 30178da..aa09691 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingElectric.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingElectric.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual node TemperatureSetpointNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingElectricMultiStage.cs b/EnergyPlus_oM/Coils/CoilHeatingElectricMultiStage.cs index a1bd705..4ad38d6 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingElectricMultiStage.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingElectricMultiStage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual real Stage4NominalCapacity { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingFuel.cs b/EnergyPlus_oM/Coils/CoilHeatingFuel.cs index c22efc9..e8e8b5e 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingFuel.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingFuel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual null ParasiticFuelLoad { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingGasMultiStage.cs b/EnergyPlus_oM/Coils/CoilHeatingGasMultiStage.cs index a0d5065..8ba4436 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingGasMultiStage.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingGasMultiStage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual null Stage4ParasiticElectricLoad { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingSteam.cs b/EnergyPlus_oM/Coils/CoilHeatingSteam.cs index ebf0766..5bd5d4e 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingSteam.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingSteam.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual node TemperatureSetpointNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingWater.cs b/EnergyPlus_oM/Coils/CoilHeatingWater.cs index dbd5563..4e06fa3 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingWater.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual real DesignWaterTemperatureDifference { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpEquationFit.cs b/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpEquationFit.cs index ab14b0a..ef381c9 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpEquationFit.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpEquationFit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual real HeatingPowerConsumptionCoefficient5 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpParameterEstimation.cs b/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpParameterEstimation.cs index 325ace2..8182df0 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpParameterEstimation.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpParameterEstimation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ ////public virtual real SourceSideHeatTransferResistance2 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFit.cs b/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFit.cs index befdefa..3bfd588 100644 --- a/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFit.cs +++ b/EnergyPlus_oM/Coils/CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -292,3 +292,4 @@ ////public virtual object-list Speed10WasteHeatFunctionOfTemperatureCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilPerformanceDXCooling.cs b/EnergyPlus_oM/Coils/CoilPerformanceDXCooling.cs index ced48f9..ebb9b9d 100644 --- a/EnergyPlus_oM/Coils/CoilPerformanceDXCooling.cs +++ b/EnergyPlus_oM/Coils/CoilPerformanceDXCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual object-list SensibleHeatRatioFunctionOfFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilSystemCoolingDX.cs b/EnergyPlus_oM/Coils/CoilSystemCoolingDX.cs index 6f3ea1f..27fa6a2 100644 --- a/EnergyPlus_oM/Coils/CoilSystemCoolingDX.cs +++ b/EnergyPlus_oM/Coils/CoilSystemCoolingDX.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual real OutdoorAirDXCoolingCoilLeavingMinimumAirTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilSystemCoolingDXHeatExchangerAssisted.cs b/EnergyPlus_oM/Coils/CoilSystemCoolingDXHeatExchangerAssisted.cs index f9660a6..269ba50 100644 --- a/EnergyPlus_oM/Coils/CoilSystemCoolingDXHeatExchangerAssisted.cs +++ b/EnergyPlus_oM/Coils/CoilSystemCoolingDXHeatExchangerAssisted.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list CoolingCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilSystemCoolingWaterHeatExchangerAssisted.cs b/EnergyPlus_oM/Coils/CoilSystemCoolingWaterHeatExchangerAssisted.cs index c5908e6..73b3d8e 100644 --- a/EnergyPlus_oM/Coils/CoilSystemCoolingWaterHeatExchangerAssisted.cs +++ b/EnergyPlus_oM/Coils/CoilSystemCoolingWaterHeatExchangerAssisted.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list CoolingCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilSystemHeatingDX.cs b/EnergyPlus_oM/Coils/CoilSystemHeatingDX.cs index be24645..4a681cd 100644 --- a/EnergyPlus_oM/Coils/CoilSystemHeatingDX.cs +++ b/EnergyPlus_oM/Coils/CoilSystemHeatingDX.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list HeatingCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilSystemIntegratedHeatPumpAirSource.cs b/EnergyPlus_oM/Coils/CoilSystemIntegratedHeatPumpAirSource.cs index e56c100..8168e87 100644 --- a/EnergyPlus_oM/Coils/CoilSystemIntegratedHeatPumpAirSource.cs +++ b/EnergyPlus_oM/Coils/CoilSystemIntegratedHeatPumpAirSource.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual integer MinimumSpeedLevelForSHDWHMode { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpPumped.cs b/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpPumped.cs index 68256e2..02183bf 100644 --- a/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpPumped.cs +++ b/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpPumped.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ ////public virtual object-list PartLoadFractionCorrelationCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpVariableSpeed.cs b/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpVariableSpeed.cs index f5a343f..1087082 100644 --- a/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpVariableSpeed.cs +++ b/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpVariableSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -312,3 +312,4 @@ ////public virtual object-list Speed10COPFunctionOfWaterFlowFractionCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpWrapped.cs b/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpWrapped.cs index f86c3c8..2316cf8 100644 --- a/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpWrapped.cs +++ b/EnergyPlus_oM/Coils/CoilWaterHeatingAirToWaterHeatPumpWrapped.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual object-list PartLoadFractionCorrelationCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Coils/CoilWaterHeatingDesuperheater.cs b/EnergyPlus_oM/Coils/CoilWaterHeatingDesuperheater.cs index 8335ca1..9c6ef3e 100644 --- a/EnergyPlus_oM/Coils/CoilWaterHeatingDesuperheater.cs +++ b/EnergyPlus_oM/Coils/CoilWaterHeatingDesuperheater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual real Off-CycleParasiticElectricLoad { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ComplianceObjects/ComplianceBuilding.cs b/EnergyPlus_oM/ComplianceObjects/ComplianceBuilding.cs index c362beb..356f41a 100644 --- a/EnergyPlus_oM/ComplianceObjects/ComplianceBuilding.cs +++ b/EnergyPlus_oM/ComplianceObjects/ComplianceBuilding.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ public class ComplianceBuilding : BHoMObject public virtual double BuildingRotationForAppendixG { get; set; } = 0.0; } } + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceCoolTools.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceCoolTools.cs index 85d1a71..a7455ae 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceCoolTools.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceCoolTools.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -118,3 +118,4 @@ ////public virtual real Coefficient35 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceYorkCalc.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceYorkCalc.cs index 4a23d30..a6e0dc9 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceYorkCalc.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerPerformanceYorkCalc.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -104,3 +104,4 @@ ////public virtual real Coefficient27 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerSingleSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerSingleSpeed.cs index 532d45d..bb4bc90 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerSingleSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerSingleSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -106,3 +106,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerTwoSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerTwoSpeed.cs index 362f013..89a2c6f 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerTwoSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerTwoSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -120,3 +120,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeed.cs index 0c8bf2b..594cbb1 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeedMerkel.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeedMerkel.cs index a3681e0..9479e39 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeedMerkel.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/CoolingTowerVariableSpeedMerkel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -120,3 +120,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerSingleSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerSingleSpeed.cs index a81d9c8..c648db1 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerSingleSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerSingleSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual object-list SupplyWaterStorageTankName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerTwoSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerTwoSpeed.cs index b3f8892..87cce12 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerTwoSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/EvaporativeFluidCoolerTwoSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -98,3 +98,4 @@ ////public virtual object-list SupplyWaterStorageTankName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerSingleSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerSingleSpeed.cs index 40824fc..be33c4a 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerSingleSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerSingleSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual node OutdoorAirInletNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerTwoSpeed.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerTwoSpeed.cs index 6212856..0739610 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerTwoSpeed.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/FluidCoolerTwoSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual node OutdoorAirInletNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerHorizontalTrench.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerHorizontalTrench.cs index e7ad65b..8d9fff4 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerHorizontalTrench.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerHorizontalTrench.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual real EvapotranspirationGroundCoverParameter { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerPond.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerPond.cs index e1e7136..47c6d73 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerPond.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerPond.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual real LengthOfEachTubingCircuit { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerResponseFactors.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerResponseFactors.cs index 7558138..4a2f9b0 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerResponseFactors.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerResponseFactors.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -438,3 +438,4 @@ ////public virtual real G-FunctionGValue100 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSlinky.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSlinky.cs index a1726a8..15b86c4 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSlinky.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSlinky.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual real MaximumLengthOfSimulation { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSurface.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSurface.cs index ad33e0d..728c443 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSurface.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSurface.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice LowerSurfaceEnvironment { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSystem.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSystem.cs index 77ed5c3..531488c 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSystem.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -250,3 +250,4 @@ ////public virtual object-list GHE:Vertical:SingleObjectName100 { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalArray.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalArray.cs index d0018cd..8c9f7ad 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalArray.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalArray.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real BoreholeSpacing { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalProperties.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalProperties.cs index 6a32f63..caf16c4 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalProperties.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalProperties.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual real U-TubeDistance { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalSingle.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalSingle.cs index 266b785..aa533ca 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalSingle.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/GroundHeatExchangerVerticalSingle.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real Y-Location { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/HeatExchangerFluidToFluid.cs b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/HeatExchangerFluidToFluid.cs index 904cf36..4786223 100644 --- a/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/HeatExchangerFluidToFluid.cs +++ b/EnergyPlus_oM/CondenserEquipmentAndHeatExchangers/HeatExchangerFluidToFluid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual real OperationMaximumTemperatureLimit { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Controllers/AirLoopHVACControllerList.cs b/EnergyPlus_oM/Controllers/AirLoopHVACControllerList.cs index 8cad8ad..2ee8364 100644 --- a/EnergyPlus_oM/Controllers/AirLoopHVACControllerList.cs +++ b/EnergyPlus_oM/Controllers/AirLoopHVACControllerList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual object-list Controller8Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Controllers/ControllerMechanicalVentilation.cs b/EnergyPlus_oM/Controllers/ControllerMechanicalVentilation.cs index db3e537..c670014 100644 --- a/EnergyPlus_oM/Controllers/ControllerMechanicalVentilation.cs +++ b/EnergyPlus_oM/Controllers/ControllerMechanicalVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -340,3 +340,4 @@ ////public virtual object-list DesignSpecificationZoneAirDistributionObjectName50 { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Controllers/ControllerOutdoorAir.cs b/EnergyPlus_oM/Controllers/ControllerOutdoorAir.cs index a288d37..846fb9b 100644 --- a/EnergyPlus_oM/Controllers/ControllerOutdoorAir.cs +++ b/EnergyPlus_oM/Controllers/ControllerOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ ////public virtual choice HeatRecoveryBypassControlType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Controllers/ControllerWaterCoil.cs b/EnergyPlus_oM/Controllers/ControllerWaterCoil.cs index 6478eee..39b32a9 100644 --- a/EnergyPlus_oM/Controllers/ControllerWaterCoil.cs +++ b/EnergyPlus_oM/Controllers/ControllerWaterCoil.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual real MinimumActuatedFlow { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/DaylightingControls.cs b/EnergyPlus_oM/Daylighting/DaylightingControls.cs index 0b0a6be..51b18af 100644 --- a/EnergyPlus_oM/Daylighting/DaylightingControls.cs +++ b/EnergyPlus_oM/Daylighting/DaylightingControls.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -116,3 +116,4 @@ ////public virtual real IlluminanceSetpointAtReferencePoint10 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/DaylightingDELightComplexFenestration.cs b/EnergyPlus_oM/Daylighting/DaylightingDELightComplexFenestration.cs index 087f4cb..4ae4a2c 100644 --- a/EnergyPlus_oM/Daylighting/DaylightingDELightComplexFenestration.cs +++ b/EnergyPlus_oM/Daylighting/DaylightingDELightComplexFenestration.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real FenestrationRotation { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/DaylightingDeviceLightWell.cs b/EnergyPlus_oM/Daylighting/DaylightingDeviceLightWell.cs index 7bdf737..1961578 100644 --- a/EnergyPlus_oM/Daylighting/DaylightingDeviceLightWell.cs +++ b/EnergyPlus_oM/Daylighting/DaylightingDeviceLightWell.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real VisibleReflectanceOfWellWalls { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/DaylightingDeviceShelf.cs b/EnergyPlus_oM/Daylighting/DaylightingDeviceShelf.cs index fbc043c..194be44 100644 --- a/EnergyPlus_oM/Daylighting/DaylightingDeviceShelf.cs +++ b/EnergyPlus_oM/Daylighting/DaylightingDeviceShelf.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real ViewFactorToOutsideShelf { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/DaylightingDeviceTubular.cs b/EnergyPlus_oM/Daylighting/DaylightingDeviceTubular.cs index 1091743..10862cc 100644 --- a/EnergyPlus_oM/Daylighting/DaylightingDeviceTubular.cs +++ b/EnergyPlus_oM/Daylighting/DaylightingDeviceTubular.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual real TransitionZone4Length { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/DaylightingReferencePoint.cs b/EnergyPlus_oM/Daylighting/DaylightingReferencePoint.cs index b5f13ab..80ec22a 100644 --- a/EnergyPlus_oM/Daylighting/DaylightingReferencePoint.cs +++ b/EnergyPlus_oM/Daylighting/DaylightingReferencePoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real Z-CoordinateOfReferencePoint { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/OutputControlIlluminanceMapStyle.cs b/EnergyPlus_oM/Daylighting/OutputControlIlluminanceMapStyle.cs index c4fea55..f55ce38 100644 --- a/EnergyPlus_oM/Daylighting/OutputControlIlluminanceMapStyle.cs +++ b/EnergyPlus_oM/Daylighting/OutputControlIlluminanceMapStyle.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ ////public virtual choice ColumnSeparator { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/OutputDaylightFactors.cs b/EnergyPlus_oM/Daylighting/OutputDaylightFactors.cs index 60ca3a7..7d367c5 100644 --- a/EnergyPlus_oM/Daylighting/OutputDaylightFactors.cs +++ b/EnergyPlus_oM/Daylighting/OutputDaylightFactors.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ ////public virtual choice ReportingDays { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Daylighting/OutputIlluminanceMap.cs b/EnergyPlus_oM/Daylighting/OutputIlluminanceMap.cs index 4dbf9f7..932f93a 100644 --- a/EnergyPlus_oM/Daylighting/OutputIlluminanceMap.cs +++ b/EnergyPlus_oM/Daylighting/OutputIlluminanceMap.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual integer NumberOfYGridPoints { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/DemandLimitingControls/DemandManagerAssignmentList.cs b/EnergyPlus_oM/DemandLimitingControls/DemandManagerAssignmentList.cs index 46ab56e..afcf0b2 100644 --- a/EnergyPlus_oM/DemandLimitingControls/DemandManagerAssignmentList.cs +++ b/EnergyPlus_oM/DemandLimitingControls/DemandManagerAssignmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ ////public virtual object-list DemandManager10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/DemandLimitingControls/DemandManagerElectricEquipment.cs b/EnergyPlus_oM/DemandLimitingControls/DemandManagerElectricEquipment.cs index a1967e7..d8419e4 100644 --- a/EnergyPlus_oM/DemandLimitingControls/DemandManagerElectricEquipment.cs +++ b/EnergyPlus_oM/DemandLimitingControls/DemandManagerElectricEquipment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual object-list ElectricEquipment10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/DemandLimitingControls/DemandManagerExteriorLights.cs b/EnergyPlus_oM/DemandLimitingControls/DemandManagerExteriorLights.cs index 2395305..30f3a53 100644 --- a/EnergyPlus_oM/DemandLimitingControls/DemandManagerExteriorLights.cs +++ b/EnergyPlus_oM/DemandLimitingControls/DemandManagerExteriorLights.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual object-list ExteriorLights10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/DemandLimitingControls/DemandManagerLights.cs b/EnergyPlus_oM/DemandLimitingControls/DemandManagerLights.cs index 79f5724..af41586 100644 --- a/EnergyPlus_oM/DemandLimitingControls/DemandManagerLights.cs +++ b/EnergyPlus_oM/DemandLimitingControls/DemandManagerLights.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual object-list Lights10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/DemandLimitingControls/DemandManagerThermostats.cs b/EnergyPlus_oM/DemandLimitingControls/DemandManagerThermostats.cs index 6892e90..91cd3c4 100644 --- a/EnergyPlus_oM/DemandLimitingControls/DemandManagerThermostats.cs +++ b/EnergyPlus_oM/DemandLimitingControls/DemandManagerThermostats.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual object-list Thermostat10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/DemandLimitingControls/DemandManagerVentilation.cs b/EnergyPlus_oM/DemandLimitingControls/DemandManagerVentilation.cs index f6dd4ba..6b66203 100644 --- a/EnergyPlus_oM/DemandLimitingControls/DemandManagerVentilation.cs +++ b/EnergyPlus_oM/DemandLimitingControls/DemandManagerVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual object-list ControllerOutdoorAir10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementAutoGrid.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementAutoGrid.cs index 413592b..e76f0f2 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementAutoGrid.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementAutoGrid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual null BaseDepth:DepthOfTheBasementWallBelowGrade { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementBldgData.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementBldgData.cs index a65b185..9f73d0b 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementBldgData.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementBldgData.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual null DGRAVZP:GravelDepthBelowTheFloorSlab { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementComBldg.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementComBldg.cs index 002a7cc..b6a3d23 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementComBldg.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementComBldg.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual null DailyVariationSineWaveAmplitude { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivAutoGrid.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivAutoGrid.cs index 944ed51..4af265e 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivAutoGrid.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivAutoGrid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual null BaseDepth:DepthOfTheBasementWallBelowGrade { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivSlab.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivSlab.cs index 3d8c263..5604f56 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivSlab.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementEquivSlab.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual choice EquivSizing:Flag { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInsulation.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInsulation.cs index 4a56021..5412451 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInsulation.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInsulation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual choice INSFULL:Flag:IsTheWallFullyInsulated? { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInterior.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInterior.cs index c464b64..4f2b44c 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInterior.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementInterior.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual null HIN:HorizontalCombined(convectionAndRadiation)HeatTransferCoefficient { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementManualGrid.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementManualGrid.cs index 730f490..55aae28 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementManualGrid.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementManualGrid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual null KBASE:ZDirectionCellIndicatorOfTheTopOfTheFloorSlab:5-20] { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementMatlProps.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementMatlProps.cs index c09f5ae..fb77101 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementMatlProps.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementMatlProps.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual null ThermalConductivityForWood { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSimParameters.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSimParameters.cs index caf6850..c75ef1b 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSimParameters.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSimParameters.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual null IYRS:MaximumNumberOfYearlyIterations: { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSurfaceProps.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSurfaceProps.cs index 9757a62..e7789fe 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSurfaceProps.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementSurfaceProps.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual choice PET:Flag,PotentialEvapotranspirationOn? { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementXFACE.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementXFACE.cs index 535df2e..a3644c5 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementXFACE.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementXFACE.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -118,3 +118,4 @@ ////public virtual null N44 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementYFACE.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementYFACE.cs index 446205c..b4a4e4a 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementYFACE.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementYFACE.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -118,3 +118,4 @@ ////public virtual null N44 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementZFACE.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementZFACE.cs index 09b0158..516280b 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementZFACE.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferBasementZFACE.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ ////public virtual null N40 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferControl.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferControl.cs index 94c381a..f329d4f 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferControl.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual choice RunSlabPreprocessor { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabAutoGrid.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabAutoGrid.cs index db15587..c8cba61 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabAutoGrid.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabAutoGrid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual null ZCLEARANCE:DistanceFromBottomOfSlabToDomainBottom { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBldgProps.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBldgProps.cs index 3bd3119..947cdca 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBldgProps.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBldgProps.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual null ConvTol:ConvergenceTolerance { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBoundConds.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBoundConds.cs index 18bdd6d..ae8f679 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBoundConds.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabBoundConds.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual null USERH:UserSpecifiedGroundSurfaceHeatTransferCoefficient { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabEquivalentSlab.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabEquivalentSlab.cs index fce48db..01024b3 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabEquivalentSlab.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabEquivalentSlab.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual null ZCLEARANCE:DistanceFromBottomOfSlabToDomainBottom { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabInsulation.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabInsulation.cs index b1070f7..b4a6c91 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabInsulation.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabInsulation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual choice IVINS:Flag:IsThereVerticalInsulation { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabManualGrid.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabManualGrid.cs index 2ca6782..47d9d79 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabManualGrid.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabManualGrid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual null JBOX:YDirectionCellIndicatorOfSlabEdge { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMaterials.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMaterials.cs index b12822b..8c015ac 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMaterials.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMaterials.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual null HIN:IndoorHConv:Upward { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMatlProps.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMatlProps.cs index 8d4a9b1..04901df 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMatlProps.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabMatlProps.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual null TCON:SoilK { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabXFACE.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabXFACE.cs index a13aa27..d75611d 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabXFACE.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabXFACE.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ ////public virtual null N40 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabYFACE.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabYFACE.cs index 3591472..f9cff71 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabYFACE.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabYFACE.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ ////public virtual null N40 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabZFACE.cs b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabZFACE.cs index c60aa6e..34cc809 100644 --- a/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabZFACE.cs +++ b/EnergyPlus_oM/DetailedGroundHeatTransfer/GroundHeatTransferSlabZFACE.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual null N25 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Economics/ComponentCostAdjustments.cs b/EnergyPlus_oM/Economics/ComponentCostAdjustments.cs index a4fd1bb..ba02aa6 100644 --- a/EnergyPlus_oM/Economics/ComponentCostAdjustments.cs +++ b/EnergyPlus_oM/Economics/ComponentCostAdjustments.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual real RegionalAdjustmentFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Economics/ComponentCostLineItem.cs b/EnergyPlus_oM/Economics/ComponentCostLineItem.cs index 3d8f708..f04e477 100644 --- a/EnergyPlus_oM/Economics/ComponentCostLineItem.cs +++ b/EnergyPlus_oM/Economics/ComponentCostLineItem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual real Quantity { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Economics/ComponentCostReference.cs b/EnergyPlus_oM/Economics/ComponentCostReference.cs index 30c0d6b..01bf2a7 100644 --- a/EnergyPlus_oM/Economics/ComponentCostReference.cs +++ b/EnergyPlus_oM/Economics/ComponentCostReference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual real ReferenceBuildingRegionalAdjustmentFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Economics/CurrencyType.cs b/EnergyPlus_oM/Economics/CurrencyType.cs index 2b8abd4..446cbd4 100644 --- a/EnergyPlus_oM/Economics/CurrencyType.cs +++ b/EnergyPlus_oM/Economics/CurrencyType.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ ////public virtual choice MonetaryUnit { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Economics/LifeCycleCostNonrecurringCost.cs b/EnergyPlus_oM/Economics/LifeCycleCostNonrecurringCost.cs index 325303f..218bcb9 100644 --- a/EnergyPlus_oM/Economics/LifeCycleCostNonrecurringCost.cs +++ b/EnergyPlus_oM/Economics/LifeCycleCostNonrecurringCost.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual integer MonthsFromStart { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/Economics/LifeCycleCostParameters.cs b/EnergyPlus_oM/Economics/LifeCycleCostParameters.cs index 43e5c62..6130d6d 100644 --- a/EnergyPlus_oM/Economics/LifeCycleCostParameters.cs +++ b/EnergyPlus_oM/Economics/LifeCycleCostParameters.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual choice DepreciationMethod { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Economics/LifeCycleCostRecurringCosts.cs b/EnergyPlus_oM/Economics/LifeCycleCostRecurringCosts.cs index 3fc75d4..8d6459f 100644 --- a/EnergyPlus_oM/Economics/LifeCycleCostRecurringCosts.cs +++ b/EnergyPlus_oM/Economics/LifeCycleCostRecurringCosts.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual real AnnualEscalationRate { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Economics/LifeCycleCostUseAdjustment.cs b/EnergyPlus_oM/Economics/LifeCycleCostUseAdjustment.cs index ea76981..798190e 100644 --- a/EnergyPlus_oM/Economics/LifeCycleCostUseAdjustment.cs +++ b/EnergyPlus_oM/Economics/LifeCycleCostUseAdjustment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -234,3 +234,4 @@ ////public virtual real Year100Multiplier { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Economics/LifeCycleCostUsePriceEscalation.cs b/EnergyPlus_oM/Economics/LifeCycleCostUsePriceEscalation.cs index b4f74e6..655d355 100644 --- a/EnergyPlus_oM/Economics/LifeCycleCostUsePriceEscalation.cs +++ b/EnergyPlus_oM/Economics/LifeCycleCostUsePriceEscalation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -238,3 +238,4 @@ ////public virtual real Year100Escalation { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostChargeBlock.cs b/EnergyPlus_oM/Economics/UtilityCostChargeBlock.cs index 7faf23f..0e6e107 100644 --- a/EnergyPlus_oM/Economics/UtilityCostChargeBlock.cs +++ b/EnergyPlus_oM/Economics/UtilityCostChargeBlock.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -104,3 +104,4 @@ ////public virtual null Block15CostPerUnitValueOrVariableName { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostChargeSimple.cs b/EnergyPlus_oM/Economics/UtilityCostChargeSimple.cs index 76b1dca..f5aa547 100644 --- a/EnergyPlus_oM/Economics/UtilityCostChargeSimple.cs +++ b/EnergyPlus_oM/Economics/UtilityCostChargeSimple.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual null CostPerUnitValueOrVariableName { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostComputation.cs b/EnergyPlus_oM/Economics/UtilityCostComputation.cs index b54c9d4..137cc8c 100644 --- a/EnergyPlus_oM/Economics/UtilityCostComputation.cs +++ b/EnergyPlus_oM/Economics/UtilityCostComputation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ ////public virtual null ComputeStep30 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostQualify.cs b/EnergyPlus_oM/Economics/UtilityCostQualify.cs index 0eb9267..e832c16 100644 --- a/EnergyPlus_oM/Economics/UtilityCostQualify.cs +++ b/EnergyPlus_oM/Economics/UtilityCostQualify.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual null NumberOfMonths { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostRatchet.cs b/EnergyPlus_oM/Economics/UtilityCostRatchet.cs index 5929ac8..77490bd 100644 --- a/EnergyPlus_oM/Economics/UtilityCostRatchet.cs +++ b/EnergyPlus_oM/Economics/UtilityCostRatchet.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual null OffsetValueOrVariableName { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostTariff.cs b/EnergyPlus_oM/Economics/UtilityCostTariff.cs index eb7b642..6692c10 100644 --- a/EnergyPlus_oM/Economics/UtilityCostTariff.cs +++ b/EnergyPlus_oM/Economics/UtilityCostTariff.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual choice BuyOrSell { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Economics/UtilityCostVariable.cs b/EnergyPlus_oM/Economics/UtilityCostVariable.cs index a268721..d9ac344 100644 --- a/EnergyPlus_oM/Economics/UtilityCostVariable.cs +++ b/EnergyPlus_oM/Economics/UtilityCostVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual null DecemberValue { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterDistribution.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterDistribution.cs index 22448d8..5fc6c6c 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterDistribution.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterDistribution.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual object-list StorageControlUtilityDemandTargetFractionScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterGenerators.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterGenerators.cs index 496520f..61380b4 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterGenerators.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterGenerators.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -332,3 +332,4 @@ //public virtual real Generator30RatedThermalToElectricalPowerRatio { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterFunctionOfPower.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterFunctionOfPower.cs index ee5ee99..3d59a2d 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterFunctionOfPower.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterFunctionOfPower.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ //public virtual null AncillaryPowerConsumedInStandby { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterLookUpTable.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterLookUpTable.cs index 6027bf0..3e3faac 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterLookUpTable.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterLookUpTable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ //public virtual null EfficiencyAt100%PowerAndNominalVoltage { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterPVWatts.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterPVWatts.cs index 32778b1..131cf4d 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterPVWatts.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterPVWatts.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual real InverterEfficiency { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterSimple.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterSimple.cs index 88f8e8b..4fb8f29 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterSimple.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterInverterSimple.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ //public virtual null InverterEfficiency { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageBattery.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageBattery.cs index 7c48e12..96d693d 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageBattery.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageBattery.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual object-list BatteryLifeCurveName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageConverter.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageConverter.cs index a9c3b04..5852793 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageConverter.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageConverter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ //public virtual null RadiativeFraction { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageSimple.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageSimple.cs index 656c2d5..e7cf705 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageSimple.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterStorageSimple.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ //public virtual null InitialStateOfCharge { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterTransformer.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterTransformer.cs index 9243988..3eb39bc 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterTransformer.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/ElectricLoadCenterTransformer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ //public virtual external-list Meter10Name { get; set; } = new external-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorCombustionTurbine.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorCombustionTurbine.cs index 5f231d9..d902298 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorCombustionTurbine.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorCombustionTurbine.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ //public virtual node OutdoorAirInletNodeName { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCell.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCell.cs index 713dad5..6c8eca0 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCell.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCell.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ //public virtual object-list StackCoolerName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAirSupply.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAirSupply.cs index 45a5b66..f8430a2 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAirSupply.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAirSupply.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ //public virtual null MolarFraction5 { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAuxiliaryHeater.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAuxiliaryHeater.cs index c157f91..6cab0bb 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAuxiliaryHeater.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellAuxiliaryHeater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ //public virtual null MinimumHeatingCapacityInKmolPerSecond { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellElectricalStorage.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellElectricalStorage.cs index 37115fe..1f5f244 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellElectricalStorage.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellElectricalStorage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ //public virtual null InitialChargeState { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellExhaustGasToWaterHeatExchanger.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellExhaustGasToWaterHeatExchanger.cs index 60f578d..9a98044 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellExhaustGasToWaterHeatExchanger.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellExhaustGasToWaterHeatExchanger.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ //public virtual null Method4CondensationThreshold { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellInverter.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellInverter.cs index 26a45e9..1c8db0c 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellInverter.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellInverter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ //public virtual object-list EfficiencyFunctionOfDCPowerCurveName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellPowerModule.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellPowerModule.cs index 88add78..8aef3d9 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellPowerModule.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellPowerModule.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -96,3 +96,4 @@ //public virtual null MaximumOperatingPoint { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellStackCooler.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellStackCooler.cs index 4c88412..0b5f131 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellStackCooler.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellStackCooler.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual null StackAirCoolerFanCoefficientF2 { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellWaterSupply.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellWaterSupply.cs index 16d73d7..a9c05d2 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellWaterSupply.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelCellWaterSupply.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ //public virtual object-list WaterTemperatureScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelSupply.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelSupply.cs index 169cb6e..70a2fbf 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelSupply.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorFuelSupply.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -102,3 +102,4 @@ //public virtual null Constituent12MolarFraction { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorInternalCombustionEngine.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorInternalCombustionEngine.cs index c20fe16..dae61e7 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorInternalCombustionEngine.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorInternalCombustionEngine.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual null HeatRecoveryMaximumTemperature { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHP.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHP.cs index 0ba858a..f08f2af 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHP.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHP.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ //public virtual object-list AvailabilityScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHPNonNormalizedParameters.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHPNonNormalizedParameters.cs index e8bd257..3ef7a63 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHPNonNormalizedParameters.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroCHPNonNormalizedParameters.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ //public virtual choice RestartMode { get; set; } = new choice; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroTurbine.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroTurbine.cs index bc12e34..312e072 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroTurbine.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorMicroTurbine.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -108,3 +108,4 @@ //public virtual object-list ExhaustAirTemperatureFunctionOfPartLoadRatioCurveName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPVWatts.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPVWatts.cs index 1615868..aae4e23 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPVWatts.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPVWatts.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ //public virtual real GroundCoverageRatio { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPhotovoltaic.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPhotovoltaic.cs index 1fd9adb..8cd8987 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPhotovoltaic.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorPhotovoltaic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ //public virtual null NumberOfModulesInSeries { get; set; } = new null; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorWindTurbine.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorWindTurbine.cs index 5ace66b..d3515fb 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorWindTurbine.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/GeneratorWindTurbine.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ //public virtual real PowerCoefficientC6 { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceEquivalentOne-Diode.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceEquivalentOne-Diode.cs index e8e84ae..868760c 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceEquivalentOne-Diode.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceEquivalentOne-Diode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ //public virtual real TotalHeatCapacity { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSandia.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSandia.cs index d8e71be..8d270e8 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSandia.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSandia.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ //public virtual real SandiaDatabaseParameterC7 { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSimple.cs b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSimple.cs index 91e2333..2db7543 100644 --- a/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSimple.cs +++ b/EnergyPlus_oM/ElectricLoadCenter-GeneratorSpecifications/PhotovoltaicPerformanceSimple.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ //public virtual object-list EfficiencyScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemActuator.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemActuator.cs index 1329f29..666cdf5 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemActuator.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemActuator.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ //public virtual alpha ActuatedComponentControlType { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemConstructionIndexVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemConstructionIndexVariable.cs index 49293d6..8cf0c86 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemConstructionIndexVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemConstructionIndexVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ //public virtual object-list ConstructionObjectName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemCurveOrTableIndexVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemCurveOrTableIndexVariable.cs index e62526c..c1cfa4f 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemCurveOrTableIndexVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemCurveOrTableIndexVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ //public virtual object-list CurveOrTableObjectName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemGlobalVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemGlobalVariable.cs index 3a57aa0..5da46fb 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemGlobalVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemGlobalVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1034,3 +1034,4 @@ //public virtual alpha ErlVariable502Name { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemInternalVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemInternalVariable.cs index 3828894..e552444 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemInternalVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemInternalVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual alpha InternalDataType { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemMeteredOutputVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemMeteredOutputVariable.cs index 50b5794..dd4e9e9 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemMeteredOutputVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemMeteredOutputVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ //public virtual alpha Units { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemOutputVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemOutputVariable.cs index d520f90..d3f1e96 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemOutputVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemOutputVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ //public virtual alpha Units { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgram.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgram.cs index b342217..1c0218e 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgram.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgram.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1034,3 +1034,4 @@ //public virtual alpha ProgramLine501 { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgramCallingManager.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgramCallingManager.cs index d0bb97e..2228a0d 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgramCallingManager.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemProgramCallingManager.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ //public virtual object-list ProgramName25 { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSensor.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSensor.cs index c7cc601..c76a3da 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSensor.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSensor.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual external-list Output:VariableOrOutput:MeterName { get; set; } = new external-list; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSubroutine.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSubroutine.cs index 498e1fd..7865bfc 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSubroutine.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemSubroutine.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -270,3 +270,4 @@ //public virtual alpha ProgramLine119 { get; set; } = new alpha; //} //} + diff --git a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemTrendVariable.cs b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemTrendVariable.cs index 133c950..8764572 100644 --- a/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemTrendVariable.cs +++ b/EnergyPlus_oM/EnergyManagementSystem(EMS)/EnergyManagementSystemTrendVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual integer NumberOfTimestepsToBeLogged { get; set; } = new integer; //} //} + diff --git a/EnergyPlus_oM/Enums/BuildingSurfaceType.cs b/EnergyPlus_oM/Enums/BuildingSurfaceType.cs index 66a93f2..d334b8c 100644 --- a/EnergyPlus_oM/Enums/BuildingSurfaceType.cs +++ b/EnergyPlus_oM/Enums/BuildingSurfaceType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -31,3 +31,4 @@ public enum BuildingSurfaceType Roof }; } + diff --git a/EnergyPlus_oM/Enums/ClothingInsulationCalculationMethod.cs b/EnergyPlus_oM/Enums/ClothingInsulationCalculationMethod.cs index 6beb49b..94bbe42 100644 --- a/EnergyPlus_oM/Enums/ClothingInsulationCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/ClothingInsulationCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum ClothingInsulationCalculationMethod CalculationMethodSchedule } } + diff --git a/EnergyPlus_oM/Enums/ColumnSeparator.cs b/EnergyPlus_oM/Enums/ColumnSeparator.cs index ac5fda2..d4ef5da 100644 --- a/EnergyPlus_oM/Enums/ColumnSeparator.cs +++ b/EnergyPlus_oM/Enums/ColumnSeparator.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -31,3 +31,4 @@ public enum ColumnSeparator Semicolon }; } + diff --git a/EnergyPlus_oM/Enums/CoordinateSystem.cs b/EnergyPlus_oM/Enums/CoordinateSystem.cs index 626e993..5d7ed7a 100644 --- a/EnergyPlus_oM/Enums/CoordinateSystem.cs +++ b/EnergyPlus_oM/Enums/CoordinateSystem.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum CoordinateSystem Absolute }; } + diff --git a/EnergyPlus_oM/Enums/DayOfWeek.cs b/EnergyPlus_oM/Enums/DayOfWeek.cs index 625cf1c..4b9e47a 100644 --- a/EnergyPlus_oM/Enums/DayOfWeek.cs +++ b/EnergyPlus_oM/Enums/DayOfWeek.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ public enum DayOfWeek Saturday }; } + diff --git a/EnergyPlus_oM/Enums/DifferenceScheme.cs b/EnergyPlus_oM/Enums/DifferenceScheme.cs index abed194..8cd9c37 100644 --- a/EnergyPlus_oM/Enums/DifferenceScheme.cs +++ b/EnergyPlus_oM/Enums/DifferenceScheme.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum DifferenceScheme FullyImplicitFirstOrder }; } + diff --git a/EnergyPlus_oM/Enums/ElectricEquipmentDesignLevelCalculationMethod.cs b/EnergyPlus_oM/Enums/ElectricEquipmentDesignLevelCalculationMethod.cs index 428e9d0..b7853fc 100644 --- a/EnergyPlus_oM/Enums/ElectricEquipmentDesignLevelCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/ElectricEquipmentDesignLevelCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum ElectricEquipmentDesignLevelCalculationMethod EquipmentLevel }; } + diff --git a/EnergyPlus_oM/Enums/ExternalShadingCalculationMethod.cs b/EnergyPlus_oM/Enums/ExternalShadingCalculationMethod.cs index 4e43df7..ff87216 100644 --- a/EnergyPlus_oM/Enums/ExternalShadingCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/ExternalShadingCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum ExternalShadingCalculationMethod ImportedShading } } + diff --git a/EnergyPlus_oM/Enums/FenestrationSurfaceType.cs b/EnergyPlus_oM/Enums/FenestrationSurfaceType.cs index a5e5293..f0d895a 100644 --- a/EnergyPlus_oM/Enums/FenestrationSurfaceType.cs +++ b/EnergyPlus_oM/Enums/FenestrationSurfaceType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum FenestrationSurfaceType TubularDaylightDiffuser }; } + diff --git a/EnergyPlus_oM/Enums/GasType.cs b/EnergyPlus_oM/Enums/GasType.cs index dfdefe2..e16de9c 100644 --- a/EnergyPlus_oM/Enums/GasType.cs +++ b/EnergyPlus_oM/Enums/GasType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum GasType Custom }; } + diff --git a/EnergyPlus_oM/Enums/HVACSystemRootFindingAlgorithmMethod.cs b/EnergyPlus_oM/Enums/HVACSystemRootFindingAlgorithmMethod.cs index abb5260..27c93a4 100644 --- a/EnergyPlus_oM/Enums/HVACSystemRootFindingAlgorithmMethod.cs +++ b/EnergyPlus_oM/Enums/HVACSystemRootFindingAlgorithmMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum HVACSystemRootFindingAlgorithmMethod Alternation }; } + diff --git a/EnergyPlus_oM/Enums/HeatBalanceAlgorithmMethod.cs b/EnergyPlus_oM/Enums/HeatBalanceAlgorithmMethod.cs index 4718523..9f20ba9 100644 --- a/EnergyPlus_oM/Enums/HeatBalanceAlgorithmMethod.cs +++ b/EnergyPlus_oM/Enums/HeatBalanceAlgorithmMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -31,3 +31,4 @@ public enum HeatBalanceAlgorithmMethod CombinedHeatAndMoistureFiniteElement }; } + diff --git a/EnergyPlus_oM/Enums/InfiltrationBalancingMethod.cs b/EnergyPlus_oM/Enums/InfiltrationBalancingMethod.cs index 9a63ff3..abd90bf 100644 --- a/EnergyPlus_oM/Enums/InfiltrationBalancingMethod.cs +++ b/EnergyPlus_oM/Enums/InfiltrationBalancingMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum InfiltrationBalancingMethod AdjustInfiltrationFlow }; } + diff --git a/EnergyPlus_oM/Enums/LightsDesignLevelCalculationMethod.cs b/EnergyPlus_oM/Enums/LightsDesignLevelCalculationMethod.cs index b73cb7a..42f86b7 100644 --- a/EnergyPlus_oM/Enums/LightsDesignLevelCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/LightsDesignLevelCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum LightsDesignLevelCalculationMethod LightingLevel }; } + diff --git a/EnergyPlus_oM/Enums/MeanRadiantTemperatureCalculationType.cs b/EnergyPlus_oM/Enums/MeanRadiantTemperatureCalculationType.cs index 533eddb..9679309 100644 --- a/EnergyPlus_oM/Enums/MeanRadiantTemperatureCalculationType.cs +++ b/EnergyPlus_oM/Enums/MeanRadiantTemperatureCalculationType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum MeanRadiantTemperatureCalculationType AngleFactor } } + diff --git a/EnergyPlus_oM/Enums/MoistureDiffusionCalculationMethod.cs b/EnergyPlus_oM/Enums/MoistureDiffusionCalculationMethod.cs index 9185b67..9eae58b 100644 --- a/EnergyPlus_oM/Enums/MoistureDiffusionCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/MoistureDiffusionCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum MoistureDiffusionCalculationMethod Advanced }; } + diff --git a/EnergyPlus_oM/Enums/OpticalDataType.cs b/EnergyPlus_oM/Enums/OpticalDataType.cs index 9aee91f..f38ec83 100644 --- a/EnergyPlus_oM/Enums/OpticalDataType.cs +++ b/EnergyPlus_oM/Enums/OpticalDataType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -31,3 +31,4 @@ public enum OpticalDataType SpectralAndAngle }; } + diff --git a/EnergyPlus_oM/Enums/OutputConstructionsDetailsType.cs b/EnergyPlus_oM/Enums/OutputConstructionsDetailsType.cs index ce0fcca..f0d7724 100644 --- a/EnergyPlus_oM/Enums/OutputConstructionsDetailsType.cs +++ b/EnergyPlus_oM/Enums/OutputConstructionsDetailsType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum OutputConstructionsDetailsType Materials } } + diff --git a/EnergyPlus_oM/Enums/OutputDiagnosticsKey.cs b/EnergyPlus_oM/Enums/OutputDiagnosticsKey.cs index dfb610e..08f6fd3 100644 --- a/EnergyPlus_oM/Enums/OutputDiagnosticsKey.cs +++ b/EnergyPlus_oM/Enums/OutputDiagnosticsKey.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -39,3 +39,4 @@ public enum OutputDiagnosticsKey ReportDuringHVACSizingSimulation } } + diff --git a/EnergyPlus_oM/Enums/OutputVariableDictionaryKeyField.cs b/EnergyPlus_oM/Enums/OutputVariableDictionaryKeyField.cs index 0dd7499..fee91f7 100644 --- a/EnergyPlus_oM/Enums/OutputVariableDictionaryKeyField.cs +++ b/EnergyPlus_oM/Enums/OutputVariableDictionaryKeyField.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum OutputVariableDictionaryKeyField regular } } + diff --git a/EnergyPlus_oM/Enums/OutputVariableDictionarySortOption.cs b/EnergyPlus_oM/Enums/OutputVariableDictionarySortOption.cs index ad3198a..9869141 100644 --- a/EnergyPlus_oM/Enums/OutputVariableDictionarySortOption.cs +++ b/EnergyPlus_oM/Enums/OutputVariableDictionarySortOption.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum OutputVariableDictionarySortOption Unsorted } } + diff --git a/EnergyPlus_oM/Enums/OutsideBoundaryCondition.cs b/EnergyPlus_oM/Enums/OutsideBoundaryCondition.cs index 44dedf0..6819dd5 100644 --- a/EnergyPlus_oM/Enums/OutsideBoundaryCondition.cs +++ b/EnergyPlus_oM/Enums/OutsideBoundaryCondition.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -43,3 +43,4 @@ public enum OutsideBoundaryCondition GroundBasementPreprocessorLowerWall }; } + diff --git a/EnergyPlus_oM/Enums/PeopleDesignLevelCalculationMethod.cs b/EnergyPlus_oM/Enums/PeopleDesignLevelCalculationMethod.cs index 404ada9..2741aea 100644 --- a/EnergyPlus_oM/Enums/PeopleDesignLevelCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/PeopleDesignLevelCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum PeopleDesignLevelCalculationMethod AreaPerPerson }; } + diff --git a/EnergyPlus_oM/Enums/PolygonClippingAlgorithm.cs b/EnergyPlus_oM/Enums/PolygonClippingAlgorithm.cs index f3156b4..cca10e1 100644 --- a/EnergyPlus_oM/Enums/PolygonClippingAlgorithm.cs +++ b/EnergyPlus_oM/Enums/PolygonClippingAlgorithm.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum PolygonClippingAlgorithm SutherlandHodgman }; } + diff --git a/EnergyPlus_oM/Enums/ReportingFrequency.cs b/EnergyPlus_oM/Enums/ReportingFrequency.cs index 51ef0ed..94218b7 100644 --- a/EnergyPlus_oM/Enums/ReportingFrequency.cs +++ b/EnergyPlus_oM/Enums/ReportingFrequency.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -35,3 +35,4 @@ public enum ReportingFrequency Annual } } + diff --git a/EnergyPlus_oM/Enums/Roughness.cs b/EnergyPlus_oM/Enums/Roughness.cs index e232ddd..d934384 100644 --- a/EnergyPlus_oM/Enums/Roughness.cs +++ b/EnergyPlus_oM/Enums/Roughness.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -33,3 +33,4 @@ public enum Roughness VerySmooth }; } + diff --git a/EnergyPlus_oM/Enums/ScheduleTypeLimitsNumericType.cs b/EnergyPlus_oM/Enums/ScheduleTypeLimitsNumericType.cs index d9cbdd4..35fde92 100644 --- a/EnergyPlus_oM/Enums/ScheduleTypeLimitsNumericType.cs +++ b/EnergyPlus_oM/Enums/ScheduleTypeLimitsNumericType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum ScheduleTypeLimitsNumericType Discrete }; } + diff --git a/EnergyPlus_oM/Enums/ScheduleTypeLimitsUnitType.cs b/EnergyPlus_oM/Enums/ScheduleTypeLimitsUnitType.cs index 28c6e89..8758c40 100644 --- a/EnergyPlus_oM/Enums/ScheduleTypeLimitsUnitType.cs +++ b/EnergyPlus_oM/Enums/ScheduleTypeLimitsUnitType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -41,3 +41,4 @@ public enum ScheduleTypeLimitsUnitType Mode }; } + diff --git a/EnergyPlus_oM/Enums/ShadowCalculationMethod.cs b/EnergyPlus_oM/Enums/ShadowCalculationMethod.cs index 7e0e5ea..5a69c14 100644 --- a/EnergyPlus_oM/Enums/ShadowCalculationMethod.cs +++ b/EnergyPlus_oM/Enums/ShadowCalculationMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum ShadowCalculationMethod TimestepFrequency }; } + diff --git a/EnergyPlus_oM/Enums/SkyDiffuseModelingAlgorithm.cs b/EnergyPlus_oM/Enums/SkyDiffuseModelingAlgorithm.cs index c1565ef..839f50f 100644 --- a/EnergyPlus_oM/Enums/SkyDiffuseModelingAlgorithm.cs +++ b/EnergyPlus_oM/Enums/SkyDiffuseModelingAlgorithm.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum SkyDiffuseModelingAlgorithm DetailedSkyDiffuseModeling } } + diff --git a/EnergyPlus_oM/Enums/SolarDistribution.cs b/EnergyPlus_oM/Enums/SolarDistribution.cs index 2cfa599..fd2105e 100644 --- a/EnergyPlus_oM/Enums/SolarDistribution.cs +++ b/EnergyPlus_oM/Enums/SolarDistribution.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum SolarDistribution FullInteriorAndExteriorWithReflections } } + diff --git a/EnergyPlus_oM/Enums/StartingVertexPosition.cs b/EnergyPlus_oM/Enums/StartingVertexPosition.cs index 66a7162..90888bb 100644 --- a/EnergyPlus_oM/Enums/StartingVertexPosition.cs +++ b/EnergyPlus_oM/Enums/StartingVertexPosition.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -31,3 +31,4 @@ public enum StartingVertexPosition LowerRightCorner }; } + diff --git a/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmInsideMethod.cs b/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmInsideMethod.cs index ab8adc6..e9c2390 100644 --- a/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmInsideMethod.cs +++ b/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmInsideMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -31,3 +31,4 @@ public enum SurfaceConvectionAlgorithmInsideMethod AdaptiveConvectionAlgorithm }; } + diff --git a/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmOutsideMethod.cs b/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmOutsideMethod.cs index d8deffe..a8d4f19 100644 --- a/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmOutsideMethod.cs +++ b/EnergyPlus_oM/Enums/SurfaceConvectionAlgorithmOutsideMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum SurfaceConvectionAlgorithmOutsideMethod AdaptiveConvectionAlgorithm }; } + diff --git a/EnergyPlus_oM/Enums/Terrain.cs b/EnergyPlus_oM/Enums/Terrain.cs index 8b28136..00e9c52 100644 --- a/EnergyPlus_oM/Enums/Terrain.cs +++ b/EnergyPlus_oM/Enums/Terrain.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum Terrain Urban } } + diff --git a/EnergyPlus_oM/Enums/ThermalComfortModelType.cs b/EnergyPlus_oM/Enums/ThermalComfortModelType.cs index 07663b2..69bb817 100644 --- a/EnergyPlus_oM/Enums/ThermalComfortModelType.cs +++ b/EnergyPlus_oM/Enums/ThermalComfortModelType.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ public enum ThermalComfortModelType AdaptiveCEN15251 } } + diff --git a/EnergyPlus_oM/Enums/VertexEntryDirection.cs b/EnergyPlus_oM/Enums/VertexEntryDirection.cs index b242005..7f47782 100644 --- a/EnergyPlus_oM/Enums/VertexEntryDirection.cs +++ b/EnergyPlus_oM/Enums/VertexEntryDirection.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,3 +29,4 @@ public enum VertexEntryDirection Clockwise }; } + diff --git a/EnergyPlus_oM/Enums/ZoneAirHeatBalanceAlgorithmMethod.cs b/EnergyPlus_oM/Enums/ZoneAirHeatBalanceAlgorithmMethod.cs index 44db00e..78efb3f 100644 --- a/EnergyPlus_oM/Enums/ZoneAirHeatBalanceAlgorithmMethod.cs +++ b/EnergyPlus_oM/Enums/ZoneAirHeatBalanceAlgorithmMethod.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -30,3 +30,4 @@ public enum ZoneAirHeatBalanceAlgorithmMethod EulerMethod }; } + diff --git a/EnergyPlus_oM/EsoFile.cs b/EnergyPlus_oM/EsoFile.cs index c6a3195..6307b61 100644 --- a/EnergyPlus_oM/EsoFile.cs +++ b/EnergyPlus_oM/EsoFile.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ public class ESOFile : BHoMObject public virtual DateTime CreationDate { get; set; } = new DateTime(); } } + diff --git a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectCelDekPad.cs b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectCelDekPad.cs index 57b1e75..e6f61ce 100644 --- a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectCelDekPad.cs +++ b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectCelDekPad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual object-list WaterSupplyStorageTankName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectResearchSpecial.cs b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectResearchSpecial.cs index fd3faf8..3c0613c 100644 --- a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectResearchSpecial.cs +++ b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerDirectResearchSpecial.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual real EvaporativeOperationMaximumLimitDrybulbTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectCelDekPad.cs b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectCelDekPad.cs index 407ac21..465e976 100644 --- a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectCelDekPad.cs +++ b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectCelDekPad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual node SecondaryAirInletNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectResearchSpecial.cs b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectResearchSpecial.cs index db7055e..5dbab94 100644 --- a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectResearchSpecial.cs +++ b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectResearchSpecial.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ ////public virtual real DryOperationMaximumLimitOutdoorDrybulbTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectWetCoil.cs b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectWetCoil.cs index 66af6fd..2528951 100644 --- a/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectWetCoil.cs +++ b/EnergyPlus_oM/EvaporativeCoolers/EvaporativeCoolerIndirectWetCoil.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual node SecondaryAirInletNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/ExteriorEquipment/ExteriorFuelEquipment.cs b/EnergyPlus_oM/ExteriorEquipment/ExteriorFuelEquipment.cs index 18168d3..abe9572 100644 --- a/EnergyPlus_oM/ExteriorEquipment/ExteriorFuelEquipment.cs +++ b/EnergyPlus_oM/ExteriorEquipment/ExteriorFuelEquipment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/ExteriorEquipment/ExteriorLights.cs b/EnergyPlus_oM/ExteriorEquipment/ExteriorLights.cs index 4d08c59..ced5ad6 100644 --- a/EnergyPlus_oM/ExteriorEquipment/ExteriorLights.cs +++ b/EnergyPlus_oM/ExteriorEquipment/ExteriorLights.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/ExteriorEquipment/ExteriorWaterEquipment.cs b/EnergyPlus_oM/ExteriorEquipment/ExteriorWaterEquipment.cs index f99aa74..702d448 100644 --- a/EnergyPlus_oM/ExteriorEquipment/ExteriorWaterEquipment.cs +++ b/EnergyPlus_oM/ExteriorEquipment/ExteriorWaterEquipment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterface.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterface.cs index ba14355..c8ba742 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterface.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterface.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ ////public virtual choice NameOfExternalInterface { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceActuator.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceActuator.cs index d9bcb2d..7821f71 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceActuator.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceActuator.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real OptionalInitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportFromVariable.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportFromVariable.cs index 1d96dd6..439ae2d 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportFromVariable.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportFromVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual alpha FMUVariableName { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToActuator.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToActuator.cs index be6a0c3..a852266 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToActuator.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToActuator.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToSchedule.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToSchedule.cs index 351e3c3..5d99953 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToSchedule.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToSchedule.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToVariable.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToVariable.cs index e388db8..87ec75b 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToVariable.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitExportToVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImport.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImport.cs index 696d04a..c8bdb83 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImport.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImport.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual integer FMULoggingOn { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportFromVariable.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportFromVariable.cs index ac7d7f5..af05cc3 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportFromVariable.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportFromVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual alpha FMUVariableName { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToActuator.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToActuator.cs index c456dd0..4c6aeb9 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToActuator.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToActuator.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToSchedule.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToSchedule.cs index 28cdd06..2281e1b 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToSchedule.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToSchedule.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToVariable.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToVariable.cs index 50155db..5f6289b 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToVariable.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceFunctionalMockupUnitImportToVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceSchedule.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceSchedule.cs index de30332..3aa9a11 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceSchedule.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceSchedule.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceVariable.cs b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceVariable.cs index 8b7b126..429fd62 100644 --- a/EnergyPlus_oM/ExternalInterface/ExternalInterfaceVariable.cs +++ b/EnergyPlus_oM/ExternalInterface/ExternalInterfaceVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual real InitialValue { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanComponentModel.cs b/EnergyPlus_oM/Fans/FanComponentModel.cs index 828d8da..0896ca1 100644 --- a/EnergyPlus_oM/Fans/FanComponentModel.cs +++ b/EnergyPlus_oM/Fans/FanComponentModel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -104,3 +104,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanConstantVolume.cs b/EnergyPlus_oM/Fans/FanConstantVolume.cs index 38c6fea..208ff93 100644 --- a/EnergyPlus_oM/Fans/FanConstantVolume.cs +++ b/EnergyPlus_oM/Fans/FanConstantVolume.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanOnOff.cs b/EnergyPlus_oM/Fans/FanOnOff.cs index fd4b06a..9794870 100644 --- a/EnergyPlus_oM/Fans/FanOnOff.cs +++ b/EnergyPlus_oM/Fans/FanOnOff.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanPerformanceNightVentilation.cs b/EnergyPlus_oM/Fans/FanPerformanceNightVentilation.cs index 2055eef..82bde55 100644 --- a/EnergyPlus_oM/Fans/FanPerformanceNightVentilation.cs +++ b/EnergyPlus_oM/Fans/FanPerformanceNightVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real MotorInAirstreamFraction { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanSystemModel.cs b/EnergyPlus_oM/Fans/FanSystemModel.cs index a85f13c..55f7472 100644 --- a/EnergyPlus_oM/Fans/FanSystemModel.cs +++ b/EnergyPlus_oM/Fans/FanSystemModel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ ////public virtual real SpeedNElectricPowerFraction { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanVariableVolume.cs b/EnergyPlus_oM/Fans/FanVariableVolume.cs index 1a94c12..ca9c899 100644 --- a/EnergyPlus_oM/Fans/FanVariableVolume.cs +++ b/EnergyPlus_oM/Fans/FanVariableVolume.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Fans/FanZoneExhaust.cs b/EnergyPlus_oM/Fans/FanZoneExhaust.cs index 599abbb..59bb5e3 100644 --- a/EnergyPlus_oM/Fans/FanZoneExhaust.cs +++ b/EnergyPlus_oM/Fans/FanZoneExhaust.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual object-list BalancedExhaustFractionScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/FluidProperties/FluidPropertiesConcentration.cs b/EnergyPlus_oM/FluidProperties/FluidPropertiesConcentration.cs index da48357..0697f54 100644 --- a/EnergyPlus_oM/FluidProperties/FluidPropertiesConcentration.cs +++ b/EnergyPlus_oM/FluidProperties/FluidPropertiesConcentration.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -538,3 +538,4 @@ ////public virtual real PropertyValue250 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/FluidProperties/FluidPropertiesGlycolConcentration.cs b/EnergyPlus_oM/FluidProperties/FluidPropertiesGlycolConcentration.cs index cb063fc..c4621c0 100644 --- a/EnergyPlus_oM/FluidProperties/FluidPropertiesGlycolConcentration.cs +++ b/EnergyPlus_oM/FluidProperties/FluidPropertiesGlycolConcentration.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real GlycolConcentration { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/FluidProperties/FluidPropertiesName.cs b/EnergyPlus_oM/FluidProperties/FluidPropertiesName.cs index 1281b8a..61b9acb 100644 --- a/EnergyPlus_oM/FluidProperties/FluidPropertiesName.cs +++ b/EnergyPlus_oM/FluidProperties/FluidPropertiesName.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual choice FluidType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/FluidProperties/FluidPropertiesSaturated.cs b/EnergyPlus_oM/FluidProperties/FluidPropertiesSaturated.cs index 969781f..6e1a27a 100644 --- a/EnergyPlus_oM/FluidProperties/FluidPropertiesSaturated.cs +++ b/EnergyPlus_oM/FluidProperties/FluidPropertiesSaturated.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -538,3 +538,4 @@ ////public virtual real PropertyValue250 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/FluidProperties/FluidPropertiesSuperheated.cs b/EnergyPlus_oM/FluidProperties/FluidPropertiesSuperheated.cs index 21e51a4..19678cc 100644 --- a/EnergyPlus_oM/FluidProperties/FluidPropertiesSuperheated.cs +++ b/EnergyPlus_oM/FluidProperties/FluidPropertiesSuperheated.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -538,3 +538,4 @@ ////public virtual real PropertyValue250 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/FluidProperties/FluidPropertiesTemperatures.cs b/EnergyPlus_oM/FluidProperties/FluidPropertiesTemperatures.cs index 2c89eba..a032764 100644 --- a/EnergyPlus_oM/FluidProperties/FluidPropertiesTemperatures.cs +++ b/EnergyPlus_oM/FluidProperties/FluidPropertiesTemperatures.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -532,3 +532,4 @@ ////public virtual real Temperature250 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/GeneralDataEntry/MatrixTwoDimension.cs b/EnergyPlus_oM/GeneralDataEntry/MatrixTwoDimension.cs index b36bd39..6bdcc79 100644 --- a/EnergyPlus_oM/GeneralDataEntry/MatrixTwoDimension.cs +++ b/EnergyPlus_oM/GeneralDataEntry/MatrixTwoDimension.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42112,3 +42112,4 @@ ////public virtual real Value21038 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationAirTerminalSizing.cs b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationAirTerminalSizing.cs index 72aeccc..59aa517 100644 --- a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationAirTerminalSizing.cs +++ b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationAirTerminalSizing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real FractionOfMinimumOutdoorAirFlow { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationOutdoorAir.cs b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationOutdoorAir.cs index aa95a67..9493f52 100644 --- a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationOutdoorAir.cs +++ b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list ProportionalControlMinimumOutdoorAirFlowRateScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneAirDistribution.cs b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneAirDistribution.cs index 3959343..280f91e 100644 --- a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneAirDistribution.cs +++ b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneAirDistribution.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real MinimumZoneVentilationEfficiency { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneHVACSizing.cs b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneHVACSizing.cs index 8d61ce2..31ae62d 100644 --- a/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneHVACSizing.cs +++ b/EnergyPlus_oM/HVACDesignObjects/DesignSpecificationZoneHVACSizing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ ////public virtual real FractionOfAutosizedHeatingDesignCapacity { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/OutputControlSizingStyle.cs b/EnergyPlus_oM/HVACDesignObjects/OutputControlSizingStyle.cs index 495b8d0..a6f0649 100644 --- a/EnergyPlus_oM/HVACDesignObjects/OutputControlSizingStyle.cs +++ b/EnergyPlus_oM/HVACDesignObjects/OutputControlSizingStyle.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -32,3 +32,4 @@ ////public virtual choice ColumnSeparator { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/SizingParameters.cs b/EnergyPlus_oM/HVACDesignObjects/SizingParameters.cs index 8be36b7..c68dca3 100644 --- a/EnergyPlus_oM/HVACDesignObjects/SizingParameters.cs +++ b/EnergyPlus_oM/HVACDesignObjects/SizingParameters.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual integer TimestepsInAveragingWindow { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/SizingPlant.cs b/EnergyPlus_oM/HVACDesignObjects/SizingPlant.cs index 0af4fc5..42ebda9 100644 --- a/EnergyPlus_oM/HVACDesignObjects/SizingPlant.cs +++ b/EnergyPlus_oM/HVACDesignObjects/SizingPlant.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual choice CoincidentSizingFactorMode { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/SizingSystem.cs b/EnergyPlus_oM/HVACDesignObjects/SizingSystem.cs index a2d2e32..66a2ebd 100644 --- a/EnergyPlus_oM/HVACDesignObjects/SizingSystem.cs +++ b/EnergyPlus_oM/HVACDesignObjects/SizingSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -104,3 +104,4 @@ ////public virtual choice CentralCoolingCapacityControlMethod { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACDesignObjects/SizingZone.cs b/EnergyPlus_oM/HVACDesignObjects/SizingZone.cs index 63db15a..225dfc1 100644 --- a/EnergyPlus_oM/HVACDesignObjects/SizingZone.cs +++ b/EnergyPlus_oM/HVACDesignObjects/SizingZone.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ ////public virtual real DedicatedOutdoorAirHighSetpointTemperatureForDesign { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoiler.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoiler.cs index 738a503..a178db6 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoiler.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoiler.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual choice TemplatePlantLoopType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoilerObjectReference.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoilerObjectReference.cs index bdfcd2e..9f1fe91 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoilerObjectReference.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantBoilerObjectReference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual choice TemplatePlantLoopType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChilledWaterLoop.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChilledWaterLoop.cs index bf639be..9bb7764 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChilledWaterLoop.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChilledWaterLoop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -96,3 +96,4 @@ ////public virtual choice CondenserWaterLoadDistributionScheme { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChiller.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChiller.cs index f94f941..a42d997 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChiller.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChiller.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual real LeavingChilledWaterLowerTemperatureLimit { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChillerObjectReference.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChillerObjectReference.cs index b9f50d3..ce1e14d 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChillerObjectReference.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantChillerObjectReference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual null Priority { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantHotWaterLoop.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantHotWaterLoop.cs index 379ea91..dd7cfa0 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantHotWaterLoop.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantHotWaterLoop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual choice LoadDistributionScheme { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantMixedWaterLoop.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantMixedWaterLoop.cs index 0eafed1..52aef45 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantMixedWaterLoop.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantMixedWaterLoop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual choice LoadDistributionScheme { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTower.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTower.cs index e17ffdc..c031ab7 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTower.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTower.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice TemplatePlantLoopType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTowerObjectReference.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTowerObjectReference.cs index 69a8dbe..854a8eb 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTowerObjectReference.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplatePlantTowerObjectReference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual choice TemplatePlantLoopType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemConstantVolume.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemConstantVolume.cs index bed9e2c..447613c 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemConstantVolume.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemConstantVolume.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -170,3 +170,4 @@ ////public virtual null ReturnFanMotorInAirStreamFraction { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDedicatedOutdoorAir.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDedicatedOutdoorAir.cs index aff26ec..4abd494 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDedicatedOutdoorAir.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDedicatedOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -122,3 +122,4 @@ ////public virtual object-list HumidifierSetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDualDuct.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDualDuct.cs index 0eb2e73..bd1eadb 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDualDuct.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemDualDuct.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -212,3 +212,4 @@ ////public virtual choice ReturnFanPart-LoadPowerCoefficients { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemPackagedVAV.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemPackagedVAV.cs index cc6590e..23a84d4 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemPackagedVAV.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemPackagedVAV.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -148,3 +148,4 @@ ////public virtual choice ReturnFanPart-LoadPowerCoefficients { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitary.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitary.cs index de62567..89a3e82 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitary.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitary.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -132,3 +132,4 @@ ////public virtual null ReturnFanMotorInAirStreamFraction { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitaryHeatPumpAirToAir.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitaryHeatPumpAirToAir.cs index 9b832d5..2c0d769 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitaryHeatPumpAirToAir.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitaryHeatPumpAirToAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -152,3 +152,4 @@ ////public virtual null ReturnFanMotorInAirStreamFraction { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitarySystem.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitarySystem.cs index 9ee7aba..70291dc 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitarySystem.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemUnitarySystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -172,3 +172,4 @@ ////public virtual null ReturnFanMotorInAirStreamFraction { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVAV.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVAV.cs index 983e6ed..e14bd17 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVAV.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVAV.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -152,3 +152,4 @@ ////public virtual choice ReturnFanPart-LoadPowerCoefficients { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVRF.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVRF.cs index cbaae3a..7434f57 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVRF.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateSystemVRF.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -108,3 +108,4 @@ ////public virtual real MaximumOutdoorTemperatureInHeatRecoveryMode { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateThermostat.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateThermostat.cs index 0a0d7ef..3526f2c 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateThermostat.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateThermostat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual null ConstantCoolingSetpoint { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneBaseboardHeat.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneBaseboardHeat.cs index 29b88b6..06b37a2 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneBaseboardHeat.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneBaseboardHeat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual object-list DesignSpecificationZoneAirDistributionObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneConstantVolume.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneConstantVolume.cs index 9878f4e..8bc4f6d 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneConstantVolume.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneConstantVolume.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ ////public virtual real ZoneHeatingDesignSupplyAirTemperatureDifference { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneDualDuct.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneDualDuct.cs index a34f79e..f3fcb4a 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneDualDuct.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneDualDuct.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ ////public virtual real ZoneHeatingDesignSupplyAirTemperatureDifference { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneFanCoil.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneFanCoil.cs index 239aee1..55db057 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneFanCoil.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneFanCoil.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -98,3 +98,4 @@ ////public virtual null BaseboardHeatingCapacity { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneIdealLoadsAirSystem.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneIdealLoadsAirSystem.cs index a91b974..e54477a 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneIdealLoadsAirSystem.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneIdealLoadsAirSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ ////public virtual null LatentHeatRecoveryEffectiveness { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTAC.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTAC.cs index d80bfa3..e879e6a 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTAC.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTAC.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ ////public virtual choice CapacityControlMethod { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTHP.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTHP.cs index c1554e0..e1345b1 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTHP.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZonePTHP.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -130,3 +130,4 @@ ////public virtual choice CapacityControlMethod { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneUnitary.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneUnitary.cs index d4ddc31..d2bc3b4 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneUnitary.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneUnitary.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual object-list DesignSpecificationZoneAirDistributionObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAV.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAV.cs index a69d309..45a0be3 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAV.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAV.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -98,3 +98,4 @@ ////public virtual object-list DesignSpecificationZoneAirDistributionObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVFanPowered.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVFanPowered.cs index 94b3af5..ccf613a 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVFanPowered.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVFanPowered.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -96,3 +96,4 @@ ////public virtual object-list DesignSpecificationZoneAirDistributionObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVHeatAndCool.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVHeatAndCool.cs index 6d94c0b..e3288e0 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVHeatAndCool.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVAVHeatAndCool.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ ////public virtual real ZoneHeatingDesignSupplyAirTemperatureDifference { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVRF.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVRF.cs index d588f23..222cea8 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVRF.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneVRF.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -118,3 +118,4 @@ ////public virtual null BaseboardHeatingCapacity { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneWaterToAirHeatPump.cs b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneWaterToAirHeatPump.cs index 7e0cf53..87f861b 100644 --- a/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneWaterToAirHeatPump.cs +++ b/EnergyPlus_oM/HVACTemplates/HVACTemplateZoneWaterToAirHeatPump.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -118,3 +118,4 @@ ////public virtual null BaseboardHeatingCapacity { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirFlatPlate.cs b/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirFlatPlate.cs index 10fee7e..c52d4dc 100644 --- a/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirFlatPlate.cs +++ b/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirFlatPlate.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual node SecondaryAirOutletNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirSensibleAndLatent.cs b/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirSensibleAndLatent.cs index dcc6391..639dac3 100644 --- a/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirSensibleAndLatent.cs +++ b/EnergyPlus_oM/HeatRecovery/HeatExchangerAirToAirSensibleAndLatent.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual choice EconomizerLockout { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlow.cs b/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlow.cs index 0ba5a5c..0456c22 100644 --- a/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlow.cs +++ b/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual choice EconomizerLockout { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlowPerformanceDataType1.cs b/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlowPerformanceDataType1.cs index 9df5da5..ded6f88 100644 --- a/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlowPerformanceDataType1.cs +++ b/EnergyPlus_oM/HeatRecovery/HeatExchangerDesiccantBalancedFlowPerformanceDataType1.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -134,3 +134,4 @@ ////public virtual real MaximumProcessInletAirRelativeHumidityForHumidityRatioEquation { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantNoFans.cs b/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantNoFans.cs index 403b0aa..e73784a 100644 --- a/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantNoFans.cs +++ b/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantNoFans.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual real NominalRegenerationTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantSystem.cs b/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantSystem.cs index 2482f38..0aa7f61 100644 --- a/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantSystem.cs +++ b/EnergyPlus_oM/HumidifiersAndDehumidifiers/DehumidifierDesiccantSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual object-list ExhaustFanPowerCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamElectric.cs b/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamElectric.cs index 0316adc..fae67a2 100644 --- a/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamElectric.cs +++ b/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamElectric.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual object-list WaterStorageTankName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamGas.cs b/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamGas.cs index 9af767b..2b14c85 100644 --- a/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamGas.cs +++ b/EnergyPlus_oM/HumidifiersAndDehumidifiers/HumidifierSteamGas.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual choice InletWaterTemperatureOption { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/HybridModel/HybridModelZone.cs b/EnergyPlus_oM/HybridModel/HybridModelZone.cs index e02368c..6e61b34 100644 --- a/EnergyPlus_oM/HybridModel/HybridModelZone.cs +++ b/EnergyPlus_oM/HybridModel/HybridModelZone.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual integer EndDayOfMonth { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/IEnergyPlusClass.cs b/EnergyPlus_oM/IEnergyPlusClass.cs index d84127a..2d13870 100644 --- a/EnergyPlus_oM/IEnergyPlusClass.cs +++ b/EnergyPlus_oM/IEnergyPlusClass.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -29,4 +29,4 @@ public interface IEnergyPlusClass : IBHoMObject { string ClassName { get; set; } } -} \ No newline at end of file +} diff --git a/EnergyPlus_oM/InternalGains/ElectricEquipment.cs b/EnergyPlus_oM/InternalGains/ElectricEquipment.cs index 138440e..13ab0d7 100644 --- a/EnergyPlus_oM/InternalGains/ElectricEquipment.cs +++ b/EnergyPlus_oM/InternalGains/ElectricEquipment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public class ElectricEquipment : BHoMObject, IEnergyPlusClass public virtual string EndUseSubcategory { get; set; } = ""; } } + diff --git a/EnergyPlus_oM/InternalGains/Lights.cs b/EnergyPlus_oM/InternalGains/Lights.cs index 95b210c..e7bbfe0 100644 --- a/EnergyPlus_oM/InternalGains/Lights.cs +++ b/EnergyPlus_oM/InternalGains/Lights.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -81,3 +81,4 @@ public class Lights : BHoMObject, IEnergyPlusClass public virtual string ReturnAirHeatGainNodeName { get; set; } = ""; } } + diff --git a/EnergyPlus_oM/InternalGains/People.cs b/EnergyPlus_oM/InternalGains/People.cs index fe619cc..a5a6ca6 100644 --- a/EnergyPlus_oM/InternalGains/People.cs +++ b/EnergyPlus_oM/InternalGains/People.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -105,3 +105,4 @@ public class People : BHoMObject, IEnergyPlusClass public virtual ThermalComfortModelType ThermalComfortModel5Type { get; set; } = ThermalComfortModelType.Undefined; } } + diff --git a/EnergyPlus_oM/InternalGains/SwimmingPoolIndoor.cs b/EnergyPlus_oM/InternalGains/SwimmingPoolIndoor.cs index 0d0ef5d..5844366 100644 --- a/EnergyPlus_oM/InternalGains/SwimmingPoolIndoor.cs +++ b/EnergyPlus_oM/InternalGains/SwimmingPoolIndoor.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -87,3 +87,4 @@ public class SwimmingPoolIndoor : BHoMObject public virtual string PeopleHeatGainSchedule { get; set; } = ""; } } + diff --git a/EnergyPlus_oM/LocationAndClimate/RunPeriod.cs b/EnergyPlus_oM/LocationAndClimate/RunPeriod.cs index f6ee57a..8c55fd2 100644 --- a/EnergyPlus_oM/LocationAndClimate/RunPeriod.cs +++ b/EnergyPlus_oM/LocationAndClimate/RunPeriod.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -75,3 +75,4 @@ public class RunPeriod : BHoMObject, IEnergyPlusClass public virtual bool TreatWeatherAsActual { get; set; } = false; } } + diff --git a/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureBuildingSurface.cs b/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureBuildingSurface.cs index 14ab877..722561a 100644 --- a/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureBuildingSurface.cs +++ b/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureBuildingSurface.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -69,3 +69,4 @@ public class SiteGroundTemperatureBuildingSurface : BHoMObject, IEnergyPlusClass public virtual double DecemberGroundTemperature { get; set; } = 18; } } + diff --git a/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureDeep.cs b/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureDeep.cs index 8b0bcdb..708f74e 100644 --- a/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureDeep.cs +++ b/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureDeep.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -69,3 +69,4 @@ public class SiteGroundTemperatureDeep : BHoMObject, IEnergyPlusClass public virtual double DecemberDeepGroundTemperature { get; set; } = 16; } } + diff --git a/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureShallow.cs b/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureShallow.cs index b776781..9d23158 100644 --- a/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureShallow.cs +++ b/EnergyPlus_oM/LocationAndClimate/SiteGroundTemperatureShallow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -69,3 +69,4 @@ public class SiteGroundTemperatureShallow : BHoMObject, IEnergyPlusClass public virtual double DecemberSurfaceGroundTemperature { get; set; } = 13; } } + diff --git a/EnergyPlus_oM/LocationAndClimate/SiteLocation.cs b/EnergyPlus_oM/LocationAndClimate/SiteLocation.cs index 82ae0d7..b379cfd 100644 --- a/EnergyPlus_oM/LocationAndClimate/SiteLocation.cs +++ b/EnergyPlus_oM/LocationAndClimate/SiteLocation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -49,4 +49,4 @@ namespace BH.oM.Adapters.EnergyPlus } // Import the file, get the data from it // -// Assign the different properties to the parts of the text \ No newline at end of file +// Assign the different properties to the parts of the text diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentCoil.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentCoil.cs index 9f05eda..0430baf 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentCoil.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentCoil.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real AirPathHydraulicDiameter { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentConstantPressureDrop.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentConstantPressureDrop.cs index 38e66a2..31d552e 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentConstantPressureDrop.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentConstantPressureDrop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual real PressureDifferenceAcrossTheComponent { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentDuct.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentDuct.cs index 2a9c10a..8da8143 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentDuct.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentDuct.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual real InsideConvectionCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentFan.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentFan.cs index 77b11f6..b380199 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentFan.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentFan.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual choice SupplyFanObjectType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentHeatExchanger.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentHeatExchanger.cs index 1cfa801..7b33ca1 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentHeatExchanger.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentHeatExchanger.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real AirPathHydraulicDiameter { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeak.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeak.cs index d16f576..c2ef15e 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeak.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeak.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real AirMassFlowExponent { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeakageRatio.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeakageRatio.cs index d972c1b..f579a2b 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeakageRatio.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentLeakageRatio.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real AirMassFlowExponent { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentOutdoorAirFlow.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentOutdoorAirFlow.cs index 13fdf74..647b9e8 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentOutdoorAirFlow.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentOutdoorAirFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list ReferenceCrackConditions { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentReliefAirFlow.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentReliefAirFlow.cs index 063e09c..c381d80 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentReliefAirFlow.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentReliefAirFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list ReferenceCrackConditions { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentTerminalUnit.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentTerminalUnit.cs index be8107b..5fbe16e 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentTerminalUnit.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionComponentTerminalUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real AirPathHydraulicDiameter { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionDuctViewFactors.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionDuctViewFactors.cs index fd379fb..5ad60c3 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionDuctViewFactors.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionDuctViewFactors.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -116,3 +116,4 @@ ////public virtual real Surface20ViewFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionLinkage.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionLinkage.cs index 29dd31b..7c16a17 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionLinkage.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionLinkage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list ThermalZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionNode.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionNode.cs index 5f8e015..1190346 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionNode.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkDistributionNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real NodeHeight { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneLinkage.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneLinkage.cs index 631ab4e..f088929 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneLinkage.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneLinkage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list AirflowNetwork:MultiZone:SurfaceName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneNode.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneNode.cs index bd034f7..b83d346 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneNode.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkIntraZoneNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real NodeHeight { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentDetailedOpening.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentDetailedOpening.cs index 5e0ebf2..d1d0ae5 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentDetailedOpening.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentDetailedOpening.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ ////public virtual real StartHeightFactorForOpeningFactor4 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentHorizontalOpening.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentHorizontalOpening.cs index 786ff3d..5e50edc 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentHorizontalOpening.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentHorizontalOpening.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real DischargeCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentSimpleOpening.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentSimpleOpening.cs index 741b81a..24cbb98 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentSimpleOpening.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentSimpleOpening.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real DischargeCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentZoneExhaustFan.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentZoneExhaustFan.cs index d1a2559..cb19fb0 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentZoneExhaustFan.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneComponentZoneExhaustFan.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list ReferenceCrackConditions { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneExternalNode.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneExternalNode.cs index 1eddc53..fc20731 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneExternalNode.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneExternalNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual choice WindAngleType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneReferenceCrackConditions.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneReferenceCrackConditions.cs index fe5d9c2..aaf51d7 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneReferenceCrackConditions.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneReferenceCrackConditions.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual real ReferenceHumidityRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurface.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurface.cs index 976f2fc..c1d3b01 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurface.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurface.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual real EquivalentRectangleAspectRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceCrack.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceCrack.cs index 3edda77..d96fa5f 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceCrack.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceCrack.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list ReferenceCrackConditions { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceEffectiveLeakageArea.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceEffectiveLeakageArea.cs index d5cc303..60aeba0 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceEffectiveLeakageArea.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneSurfaceEffectiveLeakageArea.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real AirMassFlowExponent { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientArray.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientArray.cs index 8633605..5531060 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientArray.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientArray.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -104,3 +104,4 @@ ////public virtual real WindDirection36 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientValues.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientValues.cs index 6b6f098..4b7a945 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientValues.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneWindPressureCoefficientValues.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -106,3 +106,4 @@ ////public virtual real WindPressureCoefficientValue36 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneZone.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneZone.cs index f7c24dc..3385b7c 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneZone.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkMultiZoneZone.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual object-list OccupantVentilationControlName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkOccupantVentilationControl.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkOccupantVentilationControl.cs index 35f10ab..dc775ad 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkOccupantVentilationControl.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkOccupantVentilationControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual object-list ClosingProbabilityScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkSimulationControl.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkSimulationControl.cs index e8e947f..8fac7c7 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkSimulationControl.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkSimulationControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual choice Solver { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkZoneControlPressureController.cs b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkZoneControlPressureController.cs index bbf7fbe..19a3d04 100644 --- a/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkZoneControlPressureController.cs +++ b/EnergyPlus_oM/NaturalVentilationAndDuctLeakage/AirflowNetworkZoneControlPressureController.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual object-list PressureSetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Node-BranchManagement/Branch.cs b/EnergyPlus_oM/Node-BranchManagement/Branch.cs index fbac4fc..303962a 100644 --- a/EnergyPlus_oM/Node-BranchManagement/Branch.cs +++ b/EnergyPlus_oM/Node-BranchManagement/Branch.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -122,3 +122,4 @@ //public virtual node Component11OutletNodeName { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/BranchList.cs b/EnergyPlus_oM/Node-BranchManagement/BranchList.cs index 40c30fa..9aee8d2 100644 --- a/EnergyPlus_oM/Node-BranchManagement/BranchList.cs +++ b/EnergyPlus_oM/Node-BranchManagement/BranchList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1032,3 +1032,4 @@ //public virtual object-list Branch500Name { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/ConnectorList.cs b/EnergyPlus_oM/Node-BranchManagement/ConnectorList.cs index 007b632..e1aef4d 100644 --- a/EnergyPlus_oM/Node-BranchManagement/ConnectorList.cs +++ b/EnergyPlus_oM/Node-BranchManagement/ConnectorList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ //public virtual object-list Connector2Name { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/ConnectorMixer.cs b/EnergyPlus_oM/Node-BranchManagement/ConnectorMixer.cs index 7fde78d..0d09453 100644 --- a/EnergyPlus_oM/Node-BranchManagement/ConnectorMixer.cs +++ b/EnergyPlus_oM/Node-BranchManagement/ConnectorMixer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1034,3 +1034,4 @@ //public virtual object-list InletBranch500Name { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/ConnectorSplitter.cs b/EnergyPlus_oM/Node-BranchManagement/ConnectorSplitter.cs index e7e585c..f080b56 100644 --- a/EnergyPlus_oM/Node-BranchManagement/ConnectorSplitter.cs +++ b/EnergyPlus_oM/Node-BranchManagement/ConnectorSplitter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1034,3 +1034,4 @@ //public virtual object-list OutletBranch500Name { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/Duct.cs b/EnergyPlus_oM/Node-BranchManagement/Duct.cs index 2fd5282..aea829c 100644 --- a/EnergyPlus_oM/Node-BranchManagement/Duct.cs +++ b/EnergyPlus_oM/Node-BranchManagement/Duct.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual node OutletNodeName { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/NodeList.cs b/EnergyPlus_oM/Node-BranchManagement/NodeList.cs index aa7f578..9656eb5 100644 --- a/EnergyPlus_oM/Node-BranchManagement/NodeList.cs +++ b/EnergyPlus_oM/Node-BranchManagement/NodeList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1032,3 +1032,4 @@ //public virtual node Node500Name { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNode.cs b/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNode.cs index dca0b22..0793943 100644 --- a/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNode.cs +++ b/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ //public virtual choice WindAngleType { get; set; } = new choice; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNodeList.cs b/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNodeList.cs index f1f14ff..2ee5d2c 100644 --- a/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNodeList.cs +++ b/EnergyPlus_oM/Node-BranchManagement/OutdoorAirNodeList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1030,3 +1030,4 @@ //public virtual node NodeOrNodeListName500 { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipeAdiabatic.cs b/EnergyPlus_oM/Node-BranchManagement/PipeAdiabatic.cs index 5c52b96..f8b0d54 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipeAdiabatic.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipeAdiabatic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual node OutletNodeName { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipeAdiabaticSteam.cs b/EnergyPlus_oM/Node-BranchManagement/PipeAdiabaticSteam.cs index 1b6fa83..ca93dfd 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipeAdiabaticSteam.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipeAdiabaticSteam.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ //public virtual node OutletNodeName { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipeIndoor.cs b/EnergyPlus_oM/Node-BranchManagement/PipeIndoor.cs index 4ddc398..5b8d361 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipeIndoor.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipeIndoor.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ //public virtual real PipeLength { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipeOutdoor.cs b/EnergyPlus_oM/Node-BranchManagement/PipeOutdoor.cs index e79b182..5268fd8 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipeOutdoor.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipeOutdoor.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ //public virtual real PipeLength { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipeUnderground.cs b/EnergyPlus_oM/Node-BranchManagement/PipeUnderground.cs index ac1da47..27fe9dd 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipeUnderground.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipeUnderground.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ //public virtual object-list UndisturbedGroundTemperatureModelName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundDomain.cs b/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundDomain.cs index 8937991..72e7053 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundDomain.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundDomain.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -102,3 +102,4 @@ //public virtual object-list PipeCircuit6 { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeCircuit.cs b/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeCircuit.cs index 0bd2b34..ff35c0c 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeCircuit.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeCircuit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ //public virtual object-list PipeSegment6 { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeSegment.cs b/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeSegment.cs index f162beb..e0774f4 100644 --- a/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeSegment.cs +++ b/EnergyPlus_oM/Node-BranchManagement/PipingSystemUndergroundPipeSegment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ //public virtual choice FlowDirection { get; set; } = new choice; //} //} + diff --git a/EnergyPlus_oM/Non-ZoneEquipment/LoadProfilePlant.cs b/EnergyPlus_oM/Non-ZoneEquipment/LoadProfilePlant.cs index 128cbe4..8b89723 100644 --- a/EnergyPlus_oM/Non-ZoneEquipment/LoadProfilePlant.cs +++ b/EnergyPlus_oM/Non-ZoneEquipment/LoadProfilePlant.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ //public virtual object-list FlowRateFractionScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetOutdoorAir.cs b/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetOutdoorAir.cs index 97871dc..4dcaf97 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetOutdoorAir.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real EnthalpySensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetReturnAir.cs b/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetReturnAir.cs index 6b6c930..63e230e 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetReturnAir.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelEnthalpySensorOffsetReturnAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real EnthalpySensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingAirFilter.cs b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingAirFilter.cs index 2f4d1f4..d910204 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingAirFilter.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingAirFilter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual object-list FanCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingBoiler.cs b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingBoiler.cs index a72bedc..b894c7f 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingBoiler.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingBoiler.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real FoulingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingChiller.cs b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingChiller.cs index 716b84a..712e819 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingChiller.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingChiller.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real FoulingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoil.cs b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoil.cs index 30aebcc..061bc83 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoil.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoil.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual real InsideToOutsideCoilSurfaceAreaRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoolingTower.cs b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoolingTower.cs index dcd923f..a045295 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoolingTower.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingCoolingTower.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real ReferenceUAReductionFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingEvaporativeCooler.cs b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingEvaporativeCooler.cs index 60c9e2f..1b0ae0c 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelFoulingEvaporativeCooler.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelFoulingEvaporativeCooler.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real FoulingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelHumidistatOffset.cs b/EnergyPlus_oM/OperationalFaults/FaultModelHumidistatOffset.cs index 1780545..8b5b564 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelHumidistatOffset.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelHumidistatOffset.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual object-list RelatedThermostatOffsetFaultName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelHumiditySensorOffsetOutdoorAir.cs b/EnergyPlus_oM/OperationalFaults/FaultModelHumiditySensorOffsetOutdoorAir.cs index 13328c0..f32436a 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelHumiditySensorOffsetOutdoorAir.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelHumiditySensorOffsetOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real HumiditySensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetChillerSupplyWater.cs b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetChillerSupplyWater.cs index 21a9280..3eb9470 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetChillerSupplyWater.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetChillerSupplyWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real ReferenceSensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCoilSupplyAir.cs b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCoilSupplyAir.cs index 97e195c..8d177d6 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCoilSupplyAir.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCoilSupplyAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual real ReferenceSensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCondenserSupplyWater.cs b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCondenserSupplyWater.cs index 4fdc41f..f8dabba 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCondenserSupplyWater.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetCondenserSupplyWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real ReferenceSensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetOutdoorAir.cs b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetOutdoorAir.cs index dc3ce1e..a16f594 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetOutdoorAir.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real TemperatureSensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetReturnAir.cs b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetReturnAir.cs index 9c22c51..8bdce20 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetReturnAir.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelTemperatureSensorOffsetReturnAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real TemperatureSensorOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OperationalFaults/FaultModelThermostatOffset.cs b/EnergyPlus_oM/OperationalFaults/FaultModelThermostatOffset.cs index 11510e8..02e9554 100644 --- a/EnergyPlus_oM/OperationalFaults/FaultModelThermostatOffset.cs +++ b/EnergyPlus_oM/OperationalFaults/FaultModelThermostatOffset.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real ReferenceThermostatOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/OrderAttribute.cs b/EnergyPlus_oM/OrderAttribute.cs index c0cc9cd..4915bc5 100644 --- a/EnergyPlus_oM/OrderAttribute.cs +++ b/EnergyPlus_oM/OrderAttribute.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -41,3 +41,4 @@ public OrderAttribute([CallerLineNumber]int order = 0) public virtual int Order { get; set; } } } + diff --git a/EnergyPlus_oM/OutputReporting/OutputConstructions.cs b/EnergyPlus_oM/OutputReporting/OutputConstructions.cs index d1f283a..1bc6592 100644 --- a/EnergyPlus_oM/OutputReporting/OutputConstructions.cs +++ b/EnergyPlus_oM/OutputReporting/OutputConstructions.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -39,3 +39,4 @@ public class OutputConstructions : BHoMObject, IEnergyPlusClass public virtual OutputConstructionsDetailsType DetailsType2 { get; set; } = OutputConstructionsDetailsType.Constructions; } } + diff --git a/EnergyPlus_oM/OutputReporting/OutputDiagnostics.cs b/EnergyPlus_oM/OutputReporting/OutputDiagnostics.cs index 349a563..fcfafb0 100644 --- a/EnergyPlus_oM/OutputReporting/OutputDiagnostics.cs +++ b/EnergyPlus_oM/OutputReporting/OutputDiagnostics.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -39,3 +39,4 @@ public class OutputDiagnostics : BHoMObject, IEnergyPlusClass public virtual OutputDiagnosticsKey Key2 { get; set; } = OutputDiagnosticsKey.DisplayAdvancedReportVariables; } } + diff --git a/EnergyPlus_oM/OutputReporting/OutputVariable.cs b/EnergyPlus_oM/OutputReporting/OutputVariable.cs index 451eea2..e460c70 100644 --- a/EnergyPlus_oM/OutputReporting/OutputVariable.cs +++ b/EnergyPlus_oM/OutputReporting/OutputVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -45,3 +45,4 @@ public class OutputVariable : BHoMObject, IEnergyPlusClass public virtual string ScheduleName { get; set; } = ""; } } + diff --git a/EnergyPlus_oM/OutputReporting/OutputVariableDictionary.cs b/EnergyPlus_oM/OutputReporting/OutputVariableDictionary.cs index 18cdffd..fa81116 100644 --- a/EnergyPlus_oM/OutputReporting/OutputVariableDictionary.cs +++ b/EnergyPlus_oM/OutputReporting/OutputVariableDictionary.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -39,3 +39,4 @@ public class OutputVariableDictionary : BHoMObject, IEnergyPlusClass public virtual OutputVariableDictionarySortOption SortOption { get; set; } = OutputVariableDictionarySortOption.Name; } } + diff --git a/EnergyPlus_oM/Parametrics/ParametricFileNameSuffix.cs b/EnergyPlus_oM/Parametrics/ParametricFileNameSuffix.cs index 70c0572..5e19564 100644 --- a/EnergyPlus_oM/Parametrics/ParametricFileNameSuffix.cs +++ b/EnergyPlus_oM/Parametrics/ParametricFileNameSuffix.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -232,3 +232,4 @@ ////public virtual alpha SuffixForFileNameInRun100 { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Parametrics/ParametricLogic.cs b/EnergyPlus_oM/Parametrics/ParametricLogic.cs index bcdc26b..5142824 100644 --- a/EnergyPlus_oM/Parametrics/ParametricLogic.cs +++ b/EnergyPlus_oM/Parametrics/ParametricLogic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -232,3 +232,4 @@ ////public virtual alpha ParametricLogicLine100 { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Parametrics/ParametricRunControl.cs b/EnergyPlus_oM/Parametrics/ParametricRunControl.cs index b933a08..e551daa 100644 --- a/EnergyPlus_oM/Parametrics/ParametricRunControl.cs +++ b/EnergyPlus_oM/Parametrics/ParametricRunControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -232,3 +232,4 @@ ////public virtual choice PerformRun100 { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Parametrics/ParametricSetValueForRun.cs b/EnergyPlus_oM/Parametrics/ParametricSetValueForRun.cs index 51018c7..743c710 100644 --- a/EnergyPlus_oM/Parametrics/ParametricSetValueForRun.cs +++ b/EnergyPlus_oM/Parametrics/ParametricSetValueForRun.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -232,3 +232,4 @@ ////public virtual alpha ValueForRun100 { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveBicubic.cs b/EnergyPlus_oM/PerformanceCurves/CurveBicubic.cs index 0a5b1b8..4301759 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveBicubic.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveBicubic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveBiquadratic.cs b/EnergyPlus_oM/PerformanceCurves/CurveBiquadratic.cs index bd0a49d..d37161d 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveBiquadratic.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveBiquadratic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveChillerPartLoadWithLift.cs b/EnergyPlus_oM/PerformanceCurves/CurveChillerPartLoadWithLift.cs index 24c8c13..d7618ac 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveChillerPartLoadWithLift.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveChillerPartLoadWithLift.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveCubic.cs b/EnergyPlus_oM/PerformanceCurves/CurveCubic.cs index ac659c2..daa82c0 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveCubic.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveCubic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveCubicLinear.cs b/EnergyPlus_oM/PerformanceCurves/CurveCubicLinear.cs index e7eb30b..9c74db5 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveCubicLinear.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveCubicLinear.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveDoubleExponentialDecay.cs b/EnergyPlus_oM/PerformanceCurves/CurveDoubleExponentialDecay.cs index 37c1af0..d1406f2 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveDoubleExponentialDecay.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveDoubleExponentialDecay.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveExponent.cs b/EnergyPlus_oM/PerformanceCurves/CurveExponent.cs index 2e9a115..b76ecfc 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveExponent.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveExponent.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveExponentialDecay.cs b/EnergyPlus_oM/PerformanceCurves/CurveExponentialDecay.cs index 45715e5..705a575 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveExponentialDecay.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveExponentialDecay.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveExponentialSkewNormal.cs b/EnergyPlus_oM/PerformanceCurves/CurveExponentialSkewNormal.cs index 2981da0..1b7f407 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveExponentialSkewNormal.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveExponentialSkewNormal.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveFanPressureRise.cs b/EnergyPlus_oM/PerformanceCurves/CurveFanPressureRise.cs index 5a8f36c..6d317a7 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveFanPressureRise.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveFanPressureRise.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual real MaximumCurveOutput { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveFunctionalPressureDrop.cs b/EnergyPlus_oM/PerformanceCurves/CurveFunctionalPressureDrop.cs index b436021..c7efd2c 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveFunctionalPressureDrop.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveFunctionalPressureDrop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual null FixedFrictionFactor { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveLinear.cs b/EnergyPlus_oM/PerformanceCurves/CurveLinear.cs index c927174..74697ea 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveLinear.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveLinear.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveQuadLinear.cs b/EnergyPlus_oM/PerformanceCurves/CurveQuadLinear.cs index 1878727..dca1a07 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveQuadLinear.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveQuadLinear.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual choice InputUnitTypeForZ { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveQuadratic.cs b/EnergyPlus_oM/PerformanceCurves/CurveQuadratic.cs index d684f13..c25c134 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveQuadratic.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveQuadratic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveQuadraticLinear.cs b/EnergyPlus_oM/PerformanceCurves/CurveQuadraticLinear.cs index fc48a88..9885e87 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveQuadraticLinear.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveQuadraticLinear.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveQuartic.cs b/EnergyPlus_oM/PerformanceCurves/CurveQuartic.cs index bcc6737..bd24aa4 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveQuartic.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveQuartic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola1.cs b/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola1.cs index e7d8ab5..3fd5542 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola1.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola1.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola2.cs b/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola2.cs index 6541ae0..8e1bad2 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola2.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveRectangularHyperbola2.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveSigmoid.cs b/EnergyPlus_oM/PerformanceCurves/CurveSigmoid.cs index cfff592..3b914cd 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveSigmoid.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveSigmoid.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceCurves/CurveTriquadratic.cs b/EnergyPlus_oM/PerformanceCurves/CurveTriquadratic.cs index 1e7ec21..743141a 100644 --- a/EnergyPlus_oM/PerformanceCurves/CurveTriquadratic.cs +++ b/EnergyPlus_oM/PerformanceCurves/CurveTriquadratic.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ ////public virtual choice OutputUnitType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceTables/TableIndependentVariable.cs b/EnergyPlus_oM/PerformanceTables/TableIndependentVariable.cs index 7ae6e8a..7b0a0f7 100644 --- a/EnergyPlus_oM/PerformanceTables/TableIndependentVariable.cs +++ b/EnergyPlus_oM/PerformanceTables/TableIndependentVariable.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual real Value15 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceTables/TableIndependentVariableList.cs b/EnergyPlus_oM/PerformanceTables/TableIndependentVariableList.cs index 383f4dc..f7dd31a 100644 --- a/EnergyPlus_oM/PerformanceTables/TableIndependentVariableList.cs +++ b/EnergyPlus_oM/PerformanceTables/TableIndependentVariableList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual object-list IndependentVariable6Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PerformanceTables/TableLookup.cs b/EnergyPlus_oM/PerformanceTables/TableLookup.cs index 982b149..177123c 100644 --- a/EnergyPlus_oM/PerformanceTables/TableLookup.cs +++ b/EnergyPlus_oM/PerformanceTables/TableLookup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -3080,3 +3080,4 @@ ////public virtual real OutputValue1515 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentList.cs b/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentList.cs index 4d37d12..939044c 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentList.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual object-list Equipment10Name { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentOperationSchemes.cs b/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentOperationSchemes.cs index 84365ad..246b555 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentOperationSchemes.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/CondenserEquipmentOperationSchemes.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ //public virtual object-list ControlScheme8ScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentList.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentList.cs index 9631c9f..f50a2b9 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentList.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual object-list Equipment10Name { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationComponentSetpoint.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationComponentSetpoint.cs index c72569e..855a5d4 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationComponentSetpoint.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationComponentSetpoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -152,3 +152,4 @@ //public virtual choice Operation10Type { get; set; } = new choice; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationCoolingLoad.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationCoolingLoad.cs index 76b5ae1..b7fa37d 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationCoolingLoad.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationCoolingLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationHeatingLoad.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationHeatingLoad.cs index 09bbdc0..dabcb53 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationHeatingLoad.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationHeatingLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpoint.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpoint.cs index 8b6b311..ab76fca 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpoint.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpointDifference.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpointDifference.cs index 00bb5de..c79b8dc 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpointDifference.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDewpointDifference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulb.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulb.cs index 1282144..7ff12b3 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulb.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulb.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulbDifference.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulbDifference.cs index 2ece9fe..afac46a 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulbDifference.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorDryBulbDifference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorRelativeHumidity.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorRelativeHumidity.cs index 8b40804..6e26842 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorRelativeHumidity.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorRelativeHumidity.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulb.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulb.cs index 8146e1e..5a58b3e 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulb.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulb.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulbDifference.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulbDifference.cs index 9e54fd6..5253b93 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulbDifference.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationOutdoorWetBulbDifference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ //public virtual object-list Range10EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationSchemes.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationSchemes.cs index d97ed61..7d93067 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationSchemes.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationSchemes.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ //public virtual object-list ControlScheme8ScheduleName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationThermalEnergyStorage.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationThermalEnergyStorage.cs index 815311f..bab94c1 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationThermalEnergyStorage.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationThermalEnergyStorage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -160,3 +160,4 @@ //public virtual choice Component10OperationType { get; set; } = new choice; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationUncontrolled.cs b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationUncontrolled.cs index 6e45033..aea6380 100644 --- a/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationUncontrolled.cs +++ b/EnergyPlus_oM/Plant-CondenserControl/PlantEquipmentOperationUncontrolled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ //public virtual object-list EquipmentListName { get; set; } = new object-list; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserFlowControl/TemperingValve.cs b/EnergyPlus_oM/Plant-CondenserFlowControl/TemperingValve.cs index 5b8d118..fe99f9d 100644 --- a/EnergyPlus_oM/Plant-CondenserFlowControl/TemperingValve.cs +++ b/EnergyPlus_oM/Plant-CondenserFlowControl/TemperingValve.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ //public virtual node PumpOutletNodeName { get; set; } = new node; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserLoops/CondenserLoop.cs b/EnergyPlus_oM/Plant-CondenserLoops/CondenserLoop.cs index 6b454e9..f1eb8ba 100644 --- a/EnergyPlus_oM/Plant-CondenserLoops/CondenserLoop.cs +++ b/EnergyPlus_oM/Plant-CondenserLoops/CondenserLoop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ //public virtual real LoopCirculationTime { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/Plant-CondenserLoops/PlantLoop.cs b/EnergyPlus_oM/Plant-CondenserLoops/PlantLoop.cs index 6c61760..753bc40 100644 --- a/EnergyPlus_oM/Plant-CondenserLoops/PlantLoop.cs +++ b/EnergyPlus_oM/Plant-CondenserLoops/PlantLoop.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ //public virtual real LoopCirculationTime { get; set; } = new real; //} //} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerHotWater.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerHotWater.cs index 68e56e1..a338f28 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerHotWater.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerHotWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerSteam.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerSteam.cs index 9368946..ac13d16 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerSteam.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/BoilerSteam.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/CentralHeatPumpSystem.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/CentralHeatPumpSystem.cs index 2348842..a5343cb 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/CentralHeatPumpSystem.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/CentralHeatPumpSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -210,3 +210,4 @@ ////public virtual integer NumberOfChillerHeaterModules20 { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorption.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorption.cs index f699168..1611ac4 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorption.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorption.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ ////public virtual real SizingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorptionIndirect.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorptionIndirect.cs index 4856c1c..0cc53a5 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorptionIndirect.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerAbsorptionIndirect.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ ////public virtual real SizingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerCombustionTurbine.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerCombustionTurbine.cs index 6d42721..3e07fd3 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerCombustionTurbine.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerCombustionTurbine.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -154,3 +154,4 @@ ////public virtual real TurbineEngineEfficiency { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerConstantCOP.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerConstantCOP.cs index 1f8e388..412a8ef 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerConstantCOP.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerConstantCOP.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual object-list BasinHeaterOperatingScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectric.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectric.cs index 1d416b5..f4b5c2c 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectric.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectric.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -106,3 +106,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricEIR.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricEIR.cs index d46c517..cfe663d 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricEIR.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricEIR.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -98,3 +98,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricReformulatedEIR.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricReformulatedEIR.cs index daa8a35..ba36c14 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricReformulatedEIR.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerElectricReformulatedEIR.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerEngineDriven.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerEngineDriven.cs index 0bdde7a..eb5c31f 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerEngineDriven.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerEngineDriven.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -124,3 +124,4 @@ ////public virtual real CondenserHeatRecoveryRelativeCapacityFraction { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDirectFired.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDirectFired.cs index c7d9a90..dec81f7 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDirectFired.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDirectFired.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -98,3 +98,4 @@ ////public virtual real SizingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDoubleEffect.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDoubleEffect.cs index 902880a..d40d2c7 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDoubleEffect.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterAbsorptionDoubleEffect.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -98,3 +98,4 @@ ////public virtual real SizingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterPerformanceElectricEIR.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterPerformanceElectricEIR.cs index 87b32c7..fad5c8c 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterPerformanceElectricEIR.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/ChillerHeaterPerformanceElectricEIR.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ ////public virtual real SizingFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictCooling.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictCooling.cs index 83f58ad..844fa23 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictCooling.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list CapacityFractionScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictHeating.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictHeating.cs index 0ea833c..bb91d5b 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictHeating.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/DistrictHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list CapacityFractionScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRCooling.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRCooling.cs index f016f89..22e366f 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRCooling.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual object-list ElectricInputToOutputRatioModifierFunctionOfPartLoadRatioCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRHeating.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRHeating.cs index 956d987..d9c4437 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRHeating.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEIRHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual object-list ElectricInputToOutputRatioModifierFunctionOfPartLoadRatioCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitCooling.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitCooling.cs index 58070cd..fd56716 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitCooling.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual object-list CompanionHeatingHeatPumpName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitHeating.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitHeating.cs index f7ac713..14e7e0a 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitHeating.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterEquationFitHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual object-list CompanionCoolingHeatPumpName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationCooling.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationCooling.cs index ea132ae..5f86e5e 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationCooling.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual null LowPressureCutOff { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationHeating.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationHeating.cs index 20812dc..5825e8d 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationHeating.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/HeatPumpWaterToWaterParameterEstimationHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual null LowPressureCutOff { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/PlantComponentTemperatureSource.cs b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/PlantComponentTemperatureSource.cs index b7b5abc..5dbf4de 100644 --- a/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/PlantComponentTemperatureSource.cs +++ b/EnergyPlus_oM/PlantHeatingAndCoolingEquipment/PlantComponentTemperatureSource.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual object-list SourceTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Properties/AssemblyInfo.cs b/EnergyPlus_oM/Properties/AssemblyInfo.cs index c77b257..9e2cd80 100644 --- a/EnergyPlus_oM/Properties/AssemblyInfo.cs +++ b/EnergyPlus_oM/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("4.0.0.0")] [assembly: AssemblyFileVersion("4.1.0.0")] + diff --git a/EnergyPlus_oM/Pumps/HeaderedPumpsConstantSpeed.cs b/EnergyPlus_oM/Pumps/HeaderedPumpsConstantSpeed.cs index 1877aec..40b77eb 100644 --- a/EnergyPlus_oM/Pumps/HeaderedPumpsConstantSpeed.cs +++ b/EnergyPlus_oM/Pumps/HeaderedPumpsConstantSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Pumps/HeaderedPumpsVariableSpeed.cs b/EnergyPlus_oM/Pumps/HeaderedPumpsVariableSpeed.cs index dce5687..83d4f42 100644 --- a/EnergyPlus_oM/Pumps/HeaderedPumpsVariableSpeed.cs +++ b/EnergyPlus_oM/Pumps/HeaderedPumpsVariableSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Pumps/PumpConstantSpeed.cs b/EnergyPlus_oM/Pumps/PumpConstantSpeed.cs index b0b8d87..e1e18bd 100644 --- a/EnergyPlus_oM/Pumps/PumpConstantSpeed.cs +++ b/EnergyPlus_oM/Pumps/PumpConstantSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Pumps/PumpVariableSpeed.cs b/EnergyPlus_oM/Pumps/PumpVariableSpeed.cs index afb4e3b..06fcf41 100644 --- a/EnergyPlus_oM/Pumps/PumpVariableSpeed.cs +++ b/EnergyPlus_oM/Pumps/PumpVariableSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Pumps/PumpVariableSpeedCondensate.cs b/EnergyPlus_oM/Pumps/PumpVariableSpeedCondensate.cs index 91aaee1..14ab9fe 100644 --- a/EnergyPlus_oM/Pumps/PumpVariableSpeedCondensate.cs +++ b/EnergyPlus_oM/Pumps/PumpVariableSpeedCondensate.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationAirChiller.cs b/EnergyPlus_oM/Refrigeration/RefrigerationAirChiller.cs index 26ae8bd..e5c4dcf 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationAirChiller.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationAirChiller.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ ////public virtual real AverageRefrigerantChargeInventory { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCase.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCase.cs index 55d0e28..e77a8bd 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCase.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCase.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -102,3 +102,4 @@ ////public virtual node UnderCaseHVACReturnAirNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCaseAndWalkInList.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCaseAndWalkInList.cs index df6d26a..0719554 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCaseAndWalkInList.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCaseAndWalkInList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -112,3 +112,4 @@ ////public virtual object-list CaseOrWalkIn40Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCompressor.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCompressor.cs index 2ce73ec..149cebe 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCompressor.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCompressor.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual object-list TranscriticalCompressorCapacityCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCompressorList.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCompressorList.cs index 12504e4..87109b6 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCompressorList.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCompressorList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -112,3 +112,4 @@ ////public virtual object-list RefrigerationCompressor40Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCompressorRack.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCompressorRack.cs index 5fc63ad..f762712 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCompressorRack.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCompressorRack.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ ////public virtual object-list HeatRejectionZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserAirCooled.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserAirCooled.cs index 97136cd..2c62426 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserAirCooled.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserAirCooled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual real CondensatePipingRefrigerantInventory { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserCascade.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserCascade.cs index 80c430b..7d517e6 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserCascade.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserCascade.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual real CondensatePipingRefrigerantInventory { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserEvaporativeCooled.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserEvaporativeCooled.cs index 7c8591b..595a99d 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserEvaporativeCooled.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserEvaporativeCooled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual real CondensatePipingRefrigerantInventory { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserWaterCooled.cs b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserWaterCooled.cs index 6d3eace..6a23b6b 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationCondenserWaterCooled.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationCondenserWaterCooled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual real CondensatePipingRefrigerantInventory { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationGasCoolerAirCooled.cs b/EnergyPlus_oM/Refrigeration/RefrigerationGasCoolerAirCooled.cs index 3359f76..8533d17 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationGasCoolerAirCooled.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationGasCoolerAirCooled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual real GasCoolerOutletPipingRefrigerantInventory { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationSecondarySystem.cs b/EnergyPlus_oM/Refrigeration/RefrigerationSecondarySystem.cs index 1604c05..5d38878 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationSecondarySystem.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationSecondarySystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationSubcooler.cs b/EnergyPlus_oM/Refrigeration/RefrigerationSubcooler.cs index 666e959..321e70d 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationSubcooler.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationSubcooler.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual real OutletControlTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationSystem.cs b/EnergyPlus_oM/Refrigeration/RefrigerationSystem.cs index 4ecb125..cf34945 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationSystem.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual object-list High-StageCompressorOrCompressorListName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationTranscriticalSystem.cs b/EnergyPlus_oM/Refrigeration/RefrigerationTranscriticalSystem.cs index 10788f1..d90c557 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationTranscriticalSystem.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationTranscriticalSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationTransferLoadList.cs b/EnergyPlus_oM/Refrigeration/RefrigerationTransferLoadList.cs index ca25bfd..baa8ea0 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationTransferLoadList.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationTransferLoadList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual object-list CascadeCondenserNameOrSecondarySystem9Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/RefrigerationWalkIn.cs b/EnergyPlus_oM/Refrigeration/RefrigerationWalkIn.cs index abff9c9..75fccda 100644 --- a/EnergyPlus_oM/Refrigeration/RefrigerationWalkIn.cs +++ b/EnergyPlus_oM/Refrigeration/RefrigerationWalkIn.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -144,3 +144,4 @@ ////public virtual choice StockingDoorOpeningProtectionTypeFacingZone3 { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/Refrigeration/ZoneHVACRefrigerationChillerSet.cs b/EnergyPlus_oM/Refrigeration/ZoneHVACRefrigerationChillerSet.cs index f092633..f8d5841 100644 --- a/EnergyPlus_oM/Refrigeration/ZoneHVACRefrigerationChillerSet.cs +++ b/EnergyPlus_oM/Refrigeration/ZoneHVACRefrigerationChillerSet.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -230,3 +230,4 @@ ////public virtual object-list AirChiller95Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirModelType.cs b/EnergyPlus_oM/RoomAirModels/RoomAirModelType.cs index 48ab449..0e060b4 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirModelType.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirModelType.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual choice AirTemperatureCouplingStrategy { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirNode.cs b/EnergyPlus_oM/RoomAirModels/RoomAirNode.cs index 1ca2cd5..09a99d0 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirNode.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual object-list Surface21Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetwork.cs b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetwork.cs index 7c30019..810c060 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetwork.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetwork.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual object-list RoomAir:Node:AirflowNetwork:HVACEquipmentName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkAdjacentSurfaceList.cs b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkAdjacentSurfaceList.cs index 343d1f9..9d7d60f 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkAdjacentSurfaceList.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkAdjacentSurfaceList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual object-list Surface21Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkHVACEquipment.cs b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkHVACEquipment.cs index a3abbf6..29d3367 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkHVACEquipment.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkHVACEquipment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual real FractionOfInputOrReturnAirToHVACEquipment2 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkInternalGains.cs b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkInternalGains.cs index 9636edd..0005b78 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkInternalGains.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirNodeAirflowNetworkInternalGains.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual real FractionOfGainsToNode3 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsAirflowNetwork.cs b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsAirflowNetwork.cs index 63c452d..457951b 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsAirflowNetwork.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsAirflowNetwork.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual object-list RoomAirflowNetwork:NodeName6 { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsCrossVentilation.cs b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsCrossVentilation.cs index 320a76e..ea5e443 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsCrossVentilation.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsCrossVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual choice AirflowRegionUsedForThermalComfortEvaluation { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsOneNodeDisplacementVentilation.cs b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsOneNodeDisplacementVentilation.cs index 511087b..451176b 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsOneNodeDisplacementVentilation.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsOneNodeDisplacementVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real FractionOfInfiltrationInternalLoadsAddedToFloorAir { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsThreeNodeDisplacementVentilation.cs b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsThreeNodeDisplacementVentilation.cs index 49d5277..1ec2c66 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsThreeNodeDisplacementVentilation.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsThreeNodeDisplacementVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real TemperatureDifferenceThresholdForReporting { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionExterior.cs b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionExterior.cs index 79abf73..818bd31 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionExterior.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionExterior.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual real CoefficientEInFormulaKc=A*Gamma**B+C+D*Gamma+E*Gamma**2 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionInterior.cs b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionInterior.cs index 6ddfebd..b76a4d1 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionInterior.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirSettingsUnderFloorAirDistributionInterior.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual real CoefficientE { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternConstantGradient.cs b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternConstantGradient.cs index 51abd36..93ca963 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternConstantGradient.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternConstantGradient.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real TemperatureGradient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternNondimensionalHeight.cs b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternNondimensionalHeight.cs index f0bd706..02863cd 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternNondimensionalHeight.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternNondimensionalHeight.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -116,3 +116,4 @@ ////public virtual real Pair19DeltaAdjacentAirTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternSurfaceMapping.cs b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternSurfaceMapping.cs index e73abba..35a3711 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternSurfaceMapping.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternSurfaceMapping.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -124,3 +124,4 @@ ////public virtual real DeltaAdjacentAirTemperaturePair21 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternTwoGradient.cs b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternTwoGradient.cs index 11952fc..7a57cbb 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternTwoGradient.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternTwoGradient.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual real LowerHeatRateBound { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternUserDefined.cs b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternUserDefined.cs index 83576eb..5375ddd 100644 --- a/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternUserDefined.cs +++ b/EnergyPlus_oM/RoomAirModels/RoomAirTemperaturePatternUserDefined.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list PatternControlScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/Schedules/ScheduleConstant.cs b/EnergyPlus_oM/Schedules/ScheduleConstant.cs index 2febdf5..e93323d 100644 --- a/EnergyPlus_oM/Schedules/ScheduleConstant.cs +++ b/EnergyPlus_oM/Schedules/ScheduleConstant.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ public class ScheduleConstant : BHoMObject, IEnergyPlusClass public virtual double HourlyValue { get; set; } = 0.0; } } + diff --git a/EnergyPlus_oM/Schedules/ScheduleDayHourly.cs b/EnergyPlus_oM/Schedules/ScheduleDayHourly.cs index de8be27..a4391d0 100644 --- a/EnergyPlus_oM/Schedules/ScheduleDayHourly.cs +++ b/EnergyPlus_oM/Schedules/ScheduleDayHourly.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -111,3 +111,4 @@ public class ScheduleDayHourly : BHoMObject, IEnergyPlusClass public virtual double Hour24 { get; set; } = 0.0; } } + diff --git a/EnergyPlus_oM/Schedules/ScheduleTypeLimits.cs b/EnergyPlus_oM/Schedules/ScheduleTypeLimits.cs index 97623a3..808e292 100644 --- a/EnergyPlus_oM/Schedules/ScheduleTypeLimits.cs +++ b/EnergyPlus_oM/Schedules/ScheduleTypeLimits.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ public class ScheduleTypeLimits : BHoMObject, IEnergyPlusClass public virtual ScheduleTypeLimitsUnitType UnitType { get; set; } = ScheduleTypeLimitsUnitType.Dimensionless; } } + diff --git a/EnergyPlus_oM/Schedules/ScheduleWeekDaily.cs b/EnergyPlus_oM/Schedules/ScheduleWeekDaily.cs index 2a1641f..462e0b1 100644 --- a/EnergyPlus_oM/Schedules/ScheduleWeekDaily.cs +++ b/EnergyPlus_oM/Schedules/ScheduleWeekDaily.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ public class ScheduleWeekDaily : BHoMObject, IEnergyPlusClass public virtual string CustomDay2ScheduleDayName { get; set; } = ""; } } + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerColdest.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerColdest.cs index db6fc77..5d3359d 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerColdest.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerColdest.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringReset.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringReset.cs index 7c917ca..7d6ee3d 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringReset.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringReset.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringResetIdeal.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringResetIdeal.cs index 8a7de2f..82a796f 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringResetIdeal.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerCondenserEnteringResetIdeal.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowGroundTemperature.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowGroundTemperature.cs index eceaeb5..5928b75 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowGroundTemperature.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowGroundTemperature.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowOutdoorAirTemperature.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowOutdoorAirTemperature.cs index 06e4b02..a3b94a8 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowOutdoorAirTemperature.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowOutdoorAirTemperature.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowSystemNodeTemperature.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowSystemNodeTemperature.cs index d8377d1..b9b2114 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowSystemNodeTemperature.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerFollowSystemNodeTemperature.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMixedAir.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMixedAir.cs index e83d408..7e55485 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMixedAir.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMixedAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual real MinimumTemperatureAtCoolingCoilOutletNode { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneCoolingAverage.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneCoolingAverage.cs index b110005..cf0d7cb 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneCoolingAverage.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneCoolingAverage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHeatingAverage.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHeatingAverage.cs index 7048f9e..e28e6fe 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHeatingAverage.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHeatingAverage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMaximum.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMaximum.cs index 0301b64..5e65afc 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMaximum.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMaximum.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMinimum.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMinimum.cs index 6455069..90542af 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMinimum.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneHumidityMinimum.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMaximumHumidityAverage.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMaximumHumidityAverage.cs index eaf96a0..832fe1c 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMaximumHumidityAverage.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMaximumHumidityAverage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMinimumHumidityAverage.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMinimumHumidityAverage.cs index 0e72eb6..0db8620 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMinimumHumidityAverage.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerMultiZoneMinimumHumidityAverage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirPretreat.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirPretreat.cs index 680e741..f6a2883 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirPretreat.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirPretreat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirReset.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirReset.cs index ff60099..afab0a0 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirReset.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerOutdoorAirReset.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual null OutdoorHighTemperature2 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnAirBypassFlow.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnAirBypassFlow.cs index fe7e787..26c765b 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnAirBypassFlow.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnAirBypassFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list TemperatureSetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureChilledWater.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureChilledWater.cs index 06250f8..341f2ee 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureChilledWater.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureChilledWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list ReturnTemperatureSetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureHotWater.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureHotWater.cs index b7289d0..23ab805 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureHotWater.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerReturnTemperatureHotWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list ReturnTemperatureSetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduled.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduled.cs index 3a6e794..b3070cc 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduled.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduledDualSetpoint.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduledDualSetpoint.cs index d6f7100..3e95fcf 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduledDualSetpoint.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerScheduledDualSetpoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneCooling.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneCooling.cs index ece49d0..9b2c6e6 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneCooling.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHeating.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHeating.cs index 879d613..c91210d 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHeating.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMaximum.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMaximum.cs index 6128b4d..3747a93 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMaximum.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMaximum.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual node ControlZoneAirNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMinimum.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMinimum.cs index 6c5e37a..36a5831 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMinimum.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneHumidityMinimum.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual node ControlZoneAirNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageCooling.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageCooling.cs index 2b7d1c0..643b1d5 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageCooling.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageHeating.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageHeating.cs index 1f1d9f8..800e910 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageHeating.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneOneStageHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneReheat.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneReheat.cs index 7d68701..21e4b54 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneReheat.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerSingleZoneReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmest.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmest.cs index 8d1a762..c9372ca 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmest.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmest.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual node SetpointNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmestTemperatureFlow.cs b/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmestTemperatureFlow.cs index b6aa999..ba17864 100644 --- a/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmestTemperatureFlow.cs +++ b/EnergyPlus_oM/SetpointManagers/SetpointManagerWarmestTemperatureFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual real MinimumTurndownRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/Settings/EnergyPlusSettings.cs b/EnergyPlus_oM/Settings/EnergyPlusSettings.cs index 34cc2b4..40c09a1 100644 --- a/EnergyPlus_oM/Settings/EnergyPlusSettings.cs +++ b/EnergyPlus_oM/Settings/EnergyPlusSettings.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ public class EnergyPlusSettings : BHoMObject /***************************************************/ } } + diff --git a/EnergyPlus_oM/SimulationParameters/Building.cs b/EnergyPlus_oM/SimulationParameters/Building.cs index 5179951..0d3a3e3 100644 --- a/EnergyPlus_oM/SimulationParameters/Building.cs +++ b/EnergyPlus_oM/SimulationParameters/Building.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -57,3 +57,4 @@ public class Building : BHoMObject, IEnergyPlusClass public virtual int MinimumNumberOfWarmupDays { get; set; } = 6; } } + diff --git a/EnergyPlus_oM/SimulationParameters/HeatBalanceAlgorithm.cs b/EnergyPlus_oM/SimulationParameters/HeatBalanceAlgorithm.cs index e79dff7..1f573e7 100644 --- a/EnergyPlus_oM/SimulationParameters/HeatBalanceAlgorithm.cs +++ b/EnergyPlus_oM/SimulationParameters/HeatBalanceAlgorithm.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ public class HeatBalanceAlgorithm : BHoMObject, IEnergyPlusClass public virtual double MaximumSurfaceConvectionHeatTransferCoefficientValue { get; set; } = 1000; } } + diff --git a/EnergyPlus_oM/SimulationParameters/HeatBalanceSettingsConductionFiniteDifference.cs b/EnergyPlus_oM/SimulationParameters/HeatBalanceSettingsConductionFiniteDifference.cs index 2d2d4ff..ce6a55a 100644 --- a/EnergyPlus_oM/SimulationParameters/HeatBalanceSettingsConductionFiniteDifference.cs +++ b/EnergyPlus_oM/SimulationParameters/HeatBalanceSettingsConductionFiniteDifference.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ public class HeatBalanceSettingsConductionFiniteDifference : BHoMObject, IEnergy public virtual double InsideFaceSurfaceTemperatureConvergenceCriteria { get; set; } = 0.002; } } + diff --git a/EnergyPlus_oM/SimulationParameters/ShadowCalculation.cs b/EnergyPlus_oM/SimulationParameters/ShadowCalculation.cs index 5b382e8..9957417 100644 --- a/EnergyPlus_oM/SimulationParameters/ShadowCalculation.cs +++ b/EnergyPlus_oM/SimulationParameters/ShadowCalculation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -79,3 +79,4 @@ public class ShadowCalculation : BHoMObject, IEnergyPlusClass public virtual string ShadingZoneGroup6ZoneListName { get; set; } = ""; } } + diff --git a/EnergyPlus_oM/SimulationParameters/SimulationControl.cs b/EnergyPlus_oM/SimulationParameters/SimulationControl.cs index c937aeb..bdc676f 100644 --- a/EnergyPlus_oM/SimulationParameters/SimulationControl.cs +++ b/EnergyPlus_oM/SimulationParameters/SimulationControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ public class SimulationControl : BHoMObject, IEnergyPlusClass public virtual int MaximumNumberOfHVACSizingSimulationPasses { get; set; } = 1; } } + diff --git a/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmInside.cs b/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmInside.cs index d579a95..909276e 100644 --- a/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmInside.cs +++ b/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmInside.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -37,3 +37,4 @@ public class SurfaceConvectionAlgorithmInside : BHoMObject, IEnergyPlusClass public virtual SurfaceConvectionAlgorithmInsideMethod Algorithm { get; set; } = SurfaceConvectionAlgorithmInsideMethod.TARP; } } + diff --git a/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmOutside.cs b/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmOutside.cs index 1fa8d94..297d27c 100644 --- a/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmOutside.cs +++ b/EnergyPlus_oM/SimulationParameters/SurfaceConvectionAlgorithmOutside.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ public class SurfaceConvectionAlgorithmOutside : BHoMObject, IEnergyPlusClass public virtual SurfaceConvectionAlgorithmOutsideMethod Algorithm { get; set; } = SurfaceConvectionAlgorithmOutsideMethod.DOE2; } } + diff --git a/EnergyPlus_oM/SimulationParameters/Timestep.cs b/EnergyPlus_oM/SimulationParameters/Timestep.cs index 6727115..9454144 100644 --- a/EnergyPlus_oM/SimulationParameters/Timestep.cs +++ b/EnergyPlus_oM/SimulationParameters/Timestep.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -37,3 +37,4 @@ public class Timestep : BHoMObject, IEnergyPlusClass public virtual int NumberOfTimestepsPerHour { get; set; } = 6; } } + diff --git a/EnergyPlus_oM/SimulationParameters/Version.cs b/EnergyPlus_oM/SimulationParameters/Version.cs index dfde28e..d03974c 100644 --- a/EnergyPlus_oM/SimulationParameters/Version.cs +++ b/EnergyPlus_oM/SimulationParameters/Version.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -35,3 +35,4 @@ public class Version : BHoMObject, IEnergyPlusClass public virtual string VersionIdentifier { get; set; } = "9.2.0"; } } + diff --git a/EnergyPlus_oM/SimulationParameters/ZoneAirHeatBalanceAlgorithm.cs b/EnergyPlus_oM/SimulationParameters/ZoneAirHeatBalanceAlgorithm.cs index 7482e03..0e1d929 100644 --- a/EnergyPlus_oM/SimulationParameters/ZoneAirHeatBalanceAlgorithm.cs +++ b/EnergyPlus_oM/SimulationParameters/ZoneAirHeatBalanceAlgorithm.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ public class ZoneAirHeatBalanceAlgorithm : BHoMObject, IEnergyPlusClass public virtual ZoneAirHeatBalanceAlgorithmMethod Algorithm { get; set; } = ZoneAirHeatBalanceAlgorithmMethod.ThirdOrderBackwardDifference; } } + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlatePhotovoltaicThermal.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlatePhotovoltaicThermal.cs index 6d5a0eb..ffb3f63 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlatePhotovoltaicThermal.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlatePhotovoltaicThermal.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual null DesignFlowRate { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlateWater.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlateWater.cs index e79e127..2652faa 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlateWater.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorFlatPlateWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real MaximumFlowRate { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorIntegralCollectorStorage.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorIntegralCollectorStorage.cs index ab924a4..8c853ca 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorIntegralCollectorStorage.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorIntegralCollectorStorage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual real MaximumFlowRate { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceFlatPlate.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceFlatPlate.cs index 91bb8d8..0db3519 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceFlatPlate.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceFlatPlate.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual real Coefficient3OfIncidentAngleModifier { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceIntegralCollectorStorage.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceIntegralCollectorStorage.cs index 90c9532..dd670b3 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceIntegralCollectorStorage.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformanceIntegralCollectorStorage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual real EmissivityOfAbsorberPlate { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformancePhotovoltaicThermalSimple.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformancePhotovoltaicThermalSimple.cs index 945ccfb..8625081 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformancePhotovoltaicThermalSimple.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorPerformancePhotovoltaicThermalSimple.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real FrontSurfaceEmittance { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspired.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspired.cs index a8d9402..a60fdc7 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspired.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspired.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ ////public virtual object-list Surface10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspiredMultisystem.cs b/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspiredMultisystem.cs index 6e126d6..e445d0b 100644 --- a/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspiredMultisystem.cs +++ b/EnergyPlus_oM/SolarCollectors/SolarCollectorUnglazedTranspiredMultisystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual node OutdoorAirSystem5ZoneNode { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/SurfaceConstructionElements/EPConstruction.cs b/EnergyPlus_oM/SurfaceConstructionElements/EPConstruction.cs index d790f04..864a09a 100644 --- a/EnergyPlus_oM/SurfaceConstructionElements/EPConstruction.cs +++ b/EnergyPlus_oM/SurfaceConstructionElements/EPConstruction.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -39,3 +39,4 @@ public class EPConstruction : BHoMObject, IEnergyPlusClass public virtual List Layers { get; set; } = new List(); } } + diff --git a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterial.cs b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterial.cs index 837ee3b..4990ccc 100644 --- a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterial.cs +++ b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterial.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public class EPMaterial : BHoMObject, IEnergyPlusClass public virtual double VisibleAbsorptance { get; set; } = 0.7; } } + diff --git a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialVegetation.cs b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialVegetation.cs index c7e0728..1f6bcaa 100644 --- a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialVegetation.cs +++ b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialVegetation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,7 +86,8 @@ public class EPMaterialVegetation : BHoMObject, IEnergyPlusClass [Description("The field allows for user input of the initial moisture content of the soil layer. Range is (.05, .5] with the default being .1.")] public virtual double InitialVolumetricMoistureContentOfTheSoilLayer { get; set; } = 0.1; [Order] - [Description("The field allows for two models to be selected: Simple or Advanced.\nSimple is the original Ecoroof model - based on a constant diffusion of moisture through the soil.This model starts with the soil in two layers.Every time the soil properties update is called, it will look at the two soils moisture layers and asses which layer has more moisture in it.It then takes moisture from the higher moisture layer and redistributes it to the lower moisture layer at a constant rate.\nAdvanced is the later Ecoroof model.If you use it, you will need to increase your number of timesteps in hour for the simulation with a recommended value of 20.This moisture transport model is based on a project which looked at the way moisture transports through soil.It uses a finite difference method to divide the soil into layers(nodes).It redistributes the soil moisture according the model described in:\nMarcel G Schaap and Martinus Th.van Genuchten, 2006, ‘A modified Maulem - van Genuchten Formulation for Improved Description of the Hydraulic Conductivity Near Saturation’, Vadose Zone Journal 5(1), p 27 - 34.")] + [Description("The field allows for two models to be selected: Simple or Advanced.\nSimple is the original Ecoroof model - based on a constant diffusion of moisture through the soil.This model starts with the soil in two layers.Every time the soil properties update is called, it will look at the two soils moisture layers and asses which layer has more moisture in it.It then takes moisture from the higher moisture layer and redistributes it to the lower moisture layer at a constant rate.\nAdvanced is the later Ecoroof model.If you use it, you will need to increase your number of timesteps in hour for the simulation with a recommended value of 20.This moisture transport model is based on a project which looked at the way moisture transports through soil.It uses a finite difference method to divide the soil into layers(nodes).It redistributes the soil moisture according the model described in:\nMarcel G Schaap and Martinus Th.van Genuchten, 2006, �A modified Maulem - van Genuchten Formulation for Improved Description of the Hydraulic Conductivity Near Saturation�, Vadose Zone Journal 5(1), p 27 - 34.")] public virtual MoistureDiffusionCalculationMethod MoistureDiffusionCalculationMethod { get; set; } = MoistureDiffusionCalculationMethod.Simple; } } + diff --git a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGas.cs b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGas.cs index 9f3621b..d19888f 100644 --- a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGas.cs +++ b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGas.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ public class EPMaterialWindowGas : BHoMObject, IEnergyPlusClass public virtual double Thickness { get; set; } = 0.005; } } + diff --git a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGlazing.cs b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGlazing.cs index 1dfef8a..bd221f4 100644 --- a/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGlazing.cs +++ b/EnergyPlus_oM/SurfaceConstructionElements/EPMaterialWindowGlazing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -87,3 +87,4 @@ public class EPMaterialWindowGlazing : BHoMObject, IEnergyPlusClass public virtual double PoissonsRatio { get; set; } = 0.22; } } + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerAssignmentList.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerAssignmentList.cs index fd86826..0ebfabf 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerAssignmentList.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerAssignmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual object-list AvailabilityManager6Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerDifferentialThermostat.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerDifferentialThermostat.cs index 05b9bfd..ee8cf02 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerDifferentialThermostat.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerDifferentialThermostat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual real TemperatureDifferenceOffLimit { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOff.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOff.cs index d63b163..e98fb44 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOff.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOff.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real Temperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOn.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOn.cs index 4cec8fb..5583b6f 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOn.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHighTemperatureTurnOn.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real Temperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHybridVentilation.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHybridVentilation.cs index 0e97c76..ddca7e9 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHybridVentilation.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerHybridVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual real MinimumVentilationTime { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOff.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOff.cs index 57ce288..cbe82ac 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOff.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOff.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list ApplicabilityScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOn.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOn.cs index f390e69..df95f6c 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOn.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerLowTemperatureTurnOn.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual real Temperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightCycle.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightCycle.cs index 10bf631..f195e5f 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightCycle.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightCycle.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual object-list HeatingZoneFansOnlyZoneOrZoneListName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightVentilation.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightVentilation.cs index c62f2fb..fd2feb5 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightVentilation.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerNightVentilation.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list ControlZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerOptimumStart.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerOptimumStart.cs index 70cbf92..a64c071 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerOptimumStart.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerOptimumStart.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual integer NumberOfPreviousDays { get; set; } = new integer; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduled.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduled.cs index 0a77305..7014fd0 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduled.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual string ScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOff.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOff.cs index 009cc81..7545af2 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOff.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOff.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual string ScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOn.cs b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOn.cs index 0e0e7eb..2b0ccc3 100644 --- a/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOn.cs +++ b/EnergyPlus_oM/SystemAvailabilityManagers/AvailabilityManagerScheduledOn.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual string ScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/BuildingSurfaceDetailed.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/BuildingSurfaceDetailed.cs index 88a53b1..1bc2147 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/BuildingSurfaceDetailed.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/BuildingSurfaceDetailed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -67,3 +67,4 @@ public class BuildingSurfaceDetailed : BHoMObject, IEnergyPlusClass public virtual List Vertices { get; set; } = new List(); } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/FenestrationSurfaceDetailed.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/FenestrationSurfaceDetailed.cs index 4266910..09bbd89 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/FenestrationSurfaceDetailed.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/FenestrationSurfaceDetailed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ public class FenestrationSurfaceDetailed : BHoMObject, IEnergyPlusClass public virtual List Vertices { get; set; } = new List(); } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/GlobalGeometryRules.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/GlobalGeometryRules.cs index 768143d..f96b372 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/GlobalGeometryRules.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/GlobalGeometryRules.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ public class GlobalGeometryRules : BHoMObject, IEnergyPlusClass public virtual CoordinateSystem RectangularSurfaceCoordinateSystem { get; set; } = CoordinateSystem.Relative; } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/InternalMass.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/InternalMass.cs index d9f193c..81308a4 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/InternalMass.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/InternalMass.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -45,3 +45,4 @@ public class InternalMass : BHoMObject, IEnergyPlusClass public virtual double SurfaceArea { get; set; } = 0.0; } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/ShadingBuildingDetailed.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/ShadingBuildingDetailed.cs index 9540571..6f571d8 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/ShadingBuildingDetailed.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/ShadingBuildingDetailed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ public class ShadingBuildingDetailed : BHoMObject, IEnergyPlusClass public virtual List Vertices { get; set; } = new List(); } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/ThermalZonesAndSurfaces.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/ThermalZonesAndSurfaces.cs index df02df6..10bbb38 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/ThermalZonesAndSurfaces.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/ThermalZonesAndSurfaces.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ public class ThermalZonesAndSurfaces : BHoMObject public virtual List InternalMasses { get; set; } = new List(); } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/Zone.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/Zone.cs index 1c65946..68ad783 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/Zone.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/Zone.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ public class Zone : BHoMObject, IEnergyPlusClass public virtual bool PartOfTotalFloorArea { get; set; } = true; } } + diff --git a/EnergyPlus_oM/ThermalZonesAndSurfaces/ZoneList.cs b/EnergyPlus_oM/ThermalZonesAndSurfaces/ZoneList.cs index 75b80cd..a961e1b 100644 --- a/EnergyPlus_oM/ThermalZonesAndSurfaces/ZoneList.cs +++ b/EnergyPlus_oM/ThermalZonesAndSurfaces/ZoneList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -39,3 +39,4 @@ public class ZoneList : BHoMObject, IEnergyPlusClass public virtual List ZoneNames { get; set; } = new List(); } } + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatCool.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatCool.cs index 3b4e871..83b65ef 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatCool.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatCool.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual object-list ReheatCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatOnly.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatOnly.cs index 674d545..00435fe 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatOnly.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryFurnaceHeatOnly.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual object-list HeatingCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCool.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCool.cs index 33f9ec0..3f34fd0 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCool.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCool.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual object-list ReheatCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCoolVAVChangeoverBypass.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCoolVAVChangeoverBypass.cs index 7b79e4b..5dfb70b 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCoolVAVChangeoverBypass.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatCoolVAVChangeoverBypass.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ ////public virtual real MinimumRuntimeBeforeOperatingModeChange { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatOnly.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatOnly.cs index a704bf3..cbee90a 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatOnly.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatOnly.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual object-list HeatingCoilName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAir.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAir.cs index cd2eb51..934e953 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAir.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual choice DehumidificationControlType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAirMultiSpeed.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAirMultiSpeed.cs index 67243e8..83ee5b9 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAirMultiSpeed.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpAirToAirMultiSpeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ ////public virtual real CoolingSpeed4SupplyAirFlowRate { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpWaterToAir.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpWaterToAir.cs index 93f04e1..f94291b 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpWaterToAir.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitaryHeatPumpWaterToAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ ////public virtual choice HeatPumpCoilWaterFlowMode { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitarySystem.cs b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitarySystem.cs index a69a2be..9bfb756 100644 --- a/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitarySystem.cs +++ b/EnergyPlus_oM/UnitaryEquipment/AirLoopHVACUnitarySystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -136,3 +136,4 @@ ////public virtual object-list DesignSpecificationMultispeedObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UnitaryEquipment/UnitarySystemPerformanceMultispeed.cs b/EnergyPlus_oM/UnitaryEquipment/UnitarySystemPerformanceMultispeed.cs index f5bbc93..7b7b1a1 100644 --- a/EnergyPlus_oM/UnitaryEquipment/UnitarySystemPerformanceMultispeed.cs +++ b/EnergyPlus_oM/UnitaryEquipment/UnitarySystemPerformanceMultispeed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual real CoolingSpeed10SupplyAirFlowRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/AirTerminalSingleDuctUserDefined.cs b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/AirTerminalSingleDuctUserDefined.cs index 2ba9d70..105aac7 100644 --- a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/AirTerminalSingleDuctUserDefined.cs +++ b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/AirTerminalSingleDuctUserDefined.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual object-list AmbientZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/CoilUserDefined.cs b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/CoilUserDefined.cs index 982fef8..fff3924 100644 --- a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/CoilUserDefined.cs +++ b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/CoilUserDefined.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual object-list AmbientZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantComponentUserDefined.cs b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantComponentUserDefined.cs index f39809d..066d200 100644 --- a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantComponentUserDefined.cs +++ b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantComponentUserDefined.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ ////public virtual object-list AmbientZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantEquipmentOperationUserDefined.cs b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantEquipmentOperationUserDefined.cs index c20ebda..95077e0 100644 --- a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantEquipmentOperationUserDefined.cs +++ b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/PlantEquipmentOperationUserDefined.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual alpha Equipment10Name { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/ZoneHVACForcedAirUserDefined.cs b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/ZoneHVACForcedAirUserDefined.cs index b3dca43..ce8bf10 100644 --- a/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/ZoneHVACForcedAirUserDefined.cs +++ b/EnergyPlus_oM/UserDefinedHVACAndPlantComponentModels/ZoneHVACForcedAirUserDefined.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual object-list AmbientZoneName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlow.cs b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlow.cs index 70da37f..b064ed9 100644 --- a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlow.cs +++ b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -192,3 +192,4 @@ ////public virtual real HeatRecoveryHeatingEnergyTimeConstant { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControl.cs b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControl.cs index b5d7a84..02f7770 100644 --- a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControl.cs +++ b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControl.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -166,3 +166,4 @@ ////public virtual object-list LoadingIndex9CompressorPowerMultiplierFunctionOfTemperatureCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControlHR.cs b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControlHR.cs index 3016110..ea69c18 100644 --- a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControlHR.cs +++ b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/AirConditionerVariableRefrigerantFlowFluidTemperatureControlHR.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -212,3 +212,4 @@ ////public virtual object-list LoadingIndex11CompressorPowerMultiplierFunctionOfTemperatureCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/ZoneTerminalUnitList.cs b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/ZoneTerminalUnitList.cs index 6113172..c515b31 100644 --- a/EnergyPlus_oM/VariableRefrigerantFlowEquipment/ZoneTerminalUnitList.cs +++ b/EnergyPlus_oM/VariableRefrigerantFlowEquipment/ZoneTerminalUnitList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ ////public virtual object-list ZoneTerminalUnitName20 { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterMixed.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterMixed.cs index 26d5c53..a52e958 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterMixed.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterMixed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual real TankRecoveryTime { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterStratified.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterStratified.cs index d4b689b..57a1ed2 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterStratified.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageChilledWaterStratified.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -116,3 +116,4 @@ ////public virtual real Node10AdditionalLossCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceDetailed.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceDetailed.cs index c3ca042..6891903 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceDetailed.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceDetailed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual choice ThawProcessIndicator { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceSimple.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceSimple.cs index c874ee8..7ce070e 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceSimple.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/ThermalStorageIceSimple.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual node OutletNodeName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpPumpedCondenser.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpPumpedCondenser.cs index 7357141..63eec41 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpPumpedCondenser.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpPumpedCondenser.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -108,3 +108,4 @@ ////public virtual real ControlSensor2HeightInStratifiedTank { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpWrappedCondenser.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpWrappedCondenser.cs index 6e00a41..09614df 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpWrappedCondenser.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterHeatPumpWrappedCondenser.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -106,3 +106,4 @@ ////public virtual real ControlSensor2HeightInStratifiedTank { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterMixed.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterMixed.cs index 2005177..48a55b6 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterMixed.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterMixed.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -114,3 +114,4 @@ ////public virtual alpha End-UseSubcategory { get; set; } = new alpha; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterSizing.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterSizing.cs index 5bde171..59ca71b 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterSizing.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterSizing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual real HeightAspectRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterStratified.cs b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterStratified.cs index 29e6ecf..e0b394d 100644 --- a/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterStratified.cs +++ b/EnergyPlus_oM/WaterHeatersAndThermalStorage/WaterHeaterStratified.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -164,3 +164,4 @@ ////public virtual object-list IndirectAlternateSetpointTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/WaterSystems/WaterUseConnections.cs b/EnergyPlus_oM/WaterSystems/WaterUseConnections.cs index c63cc03..fc03d72 100644 --- a/EnergyPlus_oM/WaterSystems/WaterUseConnections.cs +++ b/EnergyPlus_oM/WaterSystems/WaterUseConnections.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual object-list WaterUseEquipment10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/WaterSystems/WaterUseEquipment.cs b/EnergyPlus_oM/WaterSystems/WaterUseEquipment.cs index 3fa5946..21a1d44 100644 --- a/EnergyPlus_oM/WaterSystems/WaterUseEquipment.cs +++ b/EnergyPlus_oM/WaterSystems/WaterUseEquipment.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual object-list LatentFractionScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/WaterSystems/WaterUseRainCollector.cs b/EnergyPlus_oM/WaterSystems/WaterUseRainCollector.cs index 738b387..d626bc0 100644 --- a/EnergyPlus_oM/WaterSystems/WaterUseRainCollector.cs +++ b/EnergyPlus_oM/WaterSystems/WaterUseRainCollector.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual object-list CollectionSurface10Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/WaterSystems/WaterUseStorage.cs b/EnergyPlus_oM/WaterSystems/WaterUseStorage.cs index add3576..90117f1 100644 --- a/EnergyPlus_oM/WaterSystems/WaterUseStorage.cs +++ b/EnergyPlus_oM/WaterSystems/WaterUseStorage.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual object-list TankOutsideSurfaceMaterialName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/WaterSystems/WaterUseWell.cs b/EnergyPlus_oM/WaterSystems/WaterUseWell.cs index 55cfd66..25aee5d 100644 --- a/EnergyPlus_oM/WaterSystems/WaterUseWell.cs +++ b/EnergyPlus_oM/WaterSystems/WaterUseWell.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual object-list WaterTableDepthScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneAirBalanceOutdoorAir.cs b/EnergyPlus_oM/ZoneAirflow/ZoneAirBalanceOutdoorAir.cs index 51bc74d..66233f5 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneAirBalanceOutdoorAir.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneAirBalanceOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual object-list InducedOutdoorAirScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneCoolTowerShower.cs b/EnergyPlus_oM/ZoneAirflow/ZoneCoolTowerShower.cs index 1b6fab2..b69bdd4 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneCoolTowerShower.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneCoolTowerShower.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual real RatedPowerConsumption { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneCrossMixing.cs b/EnergyPlus_oM/ZoneAirflow/ZoneCrossMixing.cs index 51d825d..bd22f64 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneCrossMixing.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneCrossMixing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual object-list MaximumOutdoorTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneEarthtube.cs b/EnergyPlus_oM/ZoneAirflow/ZoneEarthtube.cs index 57d4471..a918010 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneEarthtube.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneEarthtube.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ ////public virtual real VelocitySquaredTermFlowCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationDesignFlowRate.cs b/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationDesignFlowRate.cs index 850e1ae..42cfaeb 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationDesignFlowRate.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationDesignFlowRate.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual real VelocitySquaredTermCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationEffectiveLeakageArea.cs b/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationEffectiveLeakageArea.cs index 13e4876..3141436 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationEffectiveLeakageArea.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationEffectiveLeakageArea.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual real WindCoefficient { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationFlowCoefficient.cs b/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationFlowCoefficient.cs index 6863b9f..cbd0a99 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationFlowCoefficient.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneInfiltrationFlowCoefficient.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual real ShelterFactor { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneMixing.cs b/EnergyPlus_oM/ZoneAirflow/ZoneMixing.cs index 44b1eb0..5ca3714 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneMixing.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneMixing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual object-list MaximumOutdoorTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneRefrigerationDoorMixing.cs b/EnergyPlus_oM/ZoneAirflow/ZoneRefrigerationDoorMixing.cs index 9572807..9b6c6e7 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneRefrigerationDoorMixing.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneRefrigerationDoorMixing.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual choice DoorProtectionType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneThermalChimney.cs b/EnergyPlus_oM/ZoneAirflow/ZoneThermalChimney.cs index 96028ca..48267a7 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneThermalChimney.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneThermalChimney.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -202,3 +202,4 @@ ////public virtual real CrossSectionalAreasOfAirChannelInlet20 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneVentilationDesignFlowRate.cs b/EnergyPlus_oM/ZoneAirflow/ZoneVentilationDesignFlowRate.cs index a8db2ec..346f646 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneVentilationDesignFlowRate.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneVentilationDesignFlowRate.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -82,3 +82,4 @@ ////public virtual real MaximumWindSpeed { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneAirflow/ZoneVentilationWindandStackOpenArea.cs b/EnergyPlus_oM/ZoneAirflow/ZoneVentilationWindandStackOpenArea.cs index 5e7cbdf..2577385 100644 --- a/EnergyPlus_oM/ZoneAirflow/ZoneVentilationWindandStackOpenArea.cs +++ b/EnergyPlus_oM/ZoneAirflow/ZoneVentilationWindandStackOpenArea.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual real MaximumWindSpeed { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctConstantVolume.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctConstantVolume.cs index 7253411..70d66c9 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctConstantVolume.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctConstantVolume.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual null MaximumAirFlowRate { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAV.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAV.cs index ae09fa0..ceffb8b 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAV.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAV.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list DesignSpecificationOutdoorAirObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAVOutdoorAir.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAVOutdoorAir.cs index 2873a28..08d2351 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAVOutdoorAir.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalDualDuctVAVOutdoorAir.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual choice PerPersonVentilationRateMode { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeCooledBeam.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeCooledBeam.cs index 0d5ff94..06e65fd 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeCooledBeam.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeCooledBeam.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -76,3 +76,4 @@ ////public virtual real LeavingPipeInsideDiameter { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeBeam.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeBeam.cs index 4d8505a..56138ae 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeBeam.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeBeam.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ ////public virtual object-list BeamHeatingCapacityHotWaterFlowModificationFactorCurveName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeInduction.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeInduction.cs index b85db94..bedf24c 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeInduction.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeFourPipeInduction.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual object-list ZoneMixerName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeNoReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeNoReheat.cs index d50d8db..464a69d 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeNoReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeNoReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual choice PerPersonVentilationRateMode { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeReheat.cs index c6824a8..bad2545 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctConstantVolumeReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual real MaximumReheatAirTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctMixer.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctMixer.cs index 9bc5f2a..71f53f7 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctMixer.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctMixer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ ////public virtual choice PerPersonVentilationRateMode { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctParallelPIUReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctParallelPIUReheat.cs index fc339f9..5b104a6 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctParallelPIUReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctParallelPIUReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual real ConvergenceTolerance { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctSeriesPIUReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctSeriesPIUReheat.cs index 65e07ea..661a5fd 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctSeriesPIUReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctSeriesPIUReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual real ConvergenceTolerance { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctUncontrolled.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctUncontrolled.cs index 1894633..4a2a894 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctUncontrolled.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctUncontrolled.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual object-list DesignSpecificationAirTerminalSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolNoReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolNoReheat.cs index 3a9c83d..799778d 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolNoReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolNoReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ ////public virtual null ZoneMinimumAirFlowFraction { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolReheat.cs index 88fb1f3..fc77515 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVHeatAndCoolReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual real MaximumReheatAirTemperature { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVNoReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVNoReheat.cs index 8ecff4d..33a5e68 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVNoReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVNoReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ ////public virtual object-list DesignSpecificationOutdoorAirObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheat.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheat.cs index d7c4434..228d156 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheat.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ ////public virtual object-list DesignSpecificationOutdoorAirObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheatVariableSpeedFan.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheatVariableSpeedFan.cs index bcb0210..738f331 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheatVariableSpeedFan.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/AirTerminalSingleDuctVAVReheatVariableSpeedFan.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual real HeatingConvergenceTolerance { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/ZoneHVACAirDistributionUnit.cs b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/ZoneHVACAirDistributionUnit.cs index 1765a62..939eaa7 100644 --- a/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/ZoneHVACAirDistributionUnit.cs +++ b/EnergyPlus_oM/ZoneHVACAirLoopTerminalUnits/ZoneHVACAirDistributionUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual object-list DesignSpecificationAirTerminalSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointDualSetpoint.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointDualSetpoint.cs index 27e5ac5..908d7e7 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointDualSetpoint.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointDualSetpoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual object-list CoolingSetpointTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleCooling.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleCooling.cs index 82c56a2..d77a405 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleCooling.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual object-list SetpointTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeating.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeating.cs index 215912d..19540e3 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeating.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual object-list SetpointTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeatingOrCooling.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeatingOrCooling.cs index 4a1723c..227ab95 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeatingOrCooling.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointSingleHeatingOrCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual object-list SetpointTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerDualSetpoint.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerDualSetpoint.cs index 34ea596..7ebaa29 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerDualSetpoint.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerDualSetpoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,3 +36,4 @@ ////public virtual object-list FangerThermalComfortCoolingScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleCooling.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleCooling.cs index b9a9445..e261acb 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleCooling.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual object-list FangerThermalComfortScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeating.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeating.cs index c4bad72..ea8d4f9 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeating.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeating.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual object-list FangerThermalComfortScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeatingOrCooling.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeatingOrCooling.cs index f05065e..c307c19 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeatingOrCooling.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ThermostatSetpointThermalComfortFangerSingleHeatingOrCooling.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -34,3 +34,4 @@ ////public virtual object-list FangerThermalComfortScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlContaminantController.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlContaminantController.cs index 411ac50..3f51ee0 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlContaminantController.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlContaminantController.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual object-list GenericContaminantSetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlHumidistat.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlHumidistat.cs index 414bd03..538d565 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlHumidistat.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlHumidistat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ ////public virtual object-list DehumidifyingRelativeHumiditySetpointScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostat.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostat.cs index 258c6f6..2ee7404 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostat.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostat.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ ////public virtual real TemperatureDifferenceBetweenCutoutAndSetpoint { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatOperativeTemperature.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatOperativeTemperature.cs index 6b42b2c..2b15973 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatOperativeTemperature.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatOperativeTemperature.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ ////public virtual choice AdaptiveComfortModelType { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatStagedDualSetpoint.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatStagedDualSetpoint.cs index e737dce..2981a5f 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatStagedDualSetpoint.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatStagedDualSetpoint.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual real Stage4CoolingTemperatureOffset { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatTemperatureAndHumidity.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatTemperatureAndHumidity.cs index ca2a856..696c410 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatTemperatureAndHumidity.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatTemperatureAndHumidity.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual real OvercoolControlRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatThermalComfort.cs b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatThermalComfort.cs index c7c4e1b..1286186 100644 --- a/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatThermalComfort.cs +++ b/EnergyPlus_oM/ZoneHVACControlsAndThermostats/ZoneControlThermostatThermalComfort.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ ////public virtual object-list ThermalComfortControl4Name { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentConnections.cs b/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentConnections.cs index 34614e0..3a62de2 100644 --- a/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentConnections.cs +++ b/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentConnections.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ ////public virtual node ZoneReturnAirNode1FlowRateBasisNodeOrNodeListName { get; set; } = new node; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentList.cs b/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentList.cs index 9d4de45..b03fc6a 100644 --- a/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentList.cs +++ b/EnergyPlus_oM/ZoneHVACEquipmentConnections/ZoneHVACEquipmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -250,3 +250,4 @@ ////public virtual object-list ZoneEquipment18SequentialHeatingFractionScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACDehumidifierDX.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACDehumidifierDX.cs index 2dbaca9..42bc1ed 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACDehumidifierDX.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACDehumidifierDX.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ ////public virtual object-list CondensateCollectionWaterStorageTankName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilator.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilator.cs index 46e147d..e8872d1 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilator.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilator.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual object-list AvailabilityManagerListName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilatorController.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilatorController.cs index 3d50744..0b64518 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilatorController.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEnergyRecoveryVentilatorController.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ ////public virtual choice ControlHighIndoorHumidityBasedOnOutdoorHumidityRatio { get; set; } = new choice; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEvaporativeCoolerUnit.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEvaporativeCoolerUnit.cs index f16a30a..6f6b92b 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEvaporativeCoolerUnit.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACEvaporativeCoolerUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACFourPipeFanCoil.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACFourPipeFanCoil.cs index 23073b9..023ed4a 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACFourPipeFanCoil.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACFourPipeFanCoil.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ ////public virtual real MaximumSupplyAirTemperatureInHeatingMode { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACHybridUnitaryHVAC.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACHybridUnitaryHVAC.cs index c356587..449f425 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACHybridUnitaryHVAC.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACHybridUnitaryHVAC.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1344,3 +1344,4 @@ ////public virtual real Mode25MaximumSupplyAirMassFlowRateRatio { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACIdealLoadsAirSystem.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACIdealLoadsAirSystem.cs index 61eba49..e201a51 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACIdealLoadsAirSystem.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACIdealLoadsAirSystem.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnit.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnit.cs index b2cd3f0..143a6d9 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnit.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ ////public virtual object-list AvailabilityManagerListName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnitEquipmentList.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnitEquipmentList.cs index 12119f7..1049427 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnitEquipmentList.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACOutdoorAirUnitEquipmentList.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual null Component8Name { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalAirConditioner.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalAirConditioner.cs index 8b7dadc..55506ee 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalAirConditioner.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalAirConditioner.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual real MaximumSupplyAirTemperatureInHeatingMode { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalHeatPump.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalHeatPump.cs index d239594..39df4cc 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalHeatPump.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACPackagedTerminalHeatPump.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ ////public virtual real MaximumSupplyAirTemperatureInHeatingMode { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACTerminalUnitVariableRefrigerantFlow.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACTerminalUnitVariableRefrigerantFlow.cs index c2cb6e9..39330f0 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACTerminalUnitVariableRefrigerantFlow.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACTerminalUnitVariableRefrigerantFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ ////public virtual real MaximumOutdoorDry-BulbTemperatureForSupplementalHeaterOperation { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitHeater.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitHeater.cs index 6664fa5..e377c02 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitHeater.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitHeater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitVentilator.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitVentilator.cs index a1f9cef..981461a 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitVentilator.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACUnitVentilator.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -80,3 +80,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWaterToAirHeatPump.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWaterToAirHeatPump.cs index 837fccb..9f8db84 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWaterToAirHeatPump.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWaterToAirHeatPump.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWindowAirConditioner.cs b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWindowAirConditioner.cs index 606dafe..f1ae810 100644 --- a/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWindowAirConditioner.cs +++ b/EnergyPlus_oM/ZoneHVACForcedAirUnits/ZoneHVACWindowAirConditioner.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveElectric.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveElectric.cs index 1868340..526992d 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveElectric.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveElectric.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ ////public virtual null Efficiency { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveWater.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveWater.cs index 2b5c562..5c9577a 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveWater.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardConvectiveWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual real ConvergenceTolerance { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveElectric.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveElectric.cs index 56be97d..c793e17 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveElectric.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveElectric.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -448,3 +448,4 @@ ////public virtual real FractionOfRadiantEnergyToSurface100 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveSteam.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveSteam.cs index 92e0d9c..aab9618 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveSteam.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveSteam.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -456,3 +456,4 @@ ////public virtual real FractionOfRadiantEnergyToSurface100 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveWater.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveWater.cs index 73a4577..99e5b14 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveWater.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACBaseboardRadiantConvectiveWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -458,3 +458,4 @@ ////public virtual real FractionOfRadiantEnergyToSurface100 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACCoolingPanelRadiantConvectiveWater.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACCoolingPanelRadiantConvectiveWater.cs index 0a7ed6d..3c685e5 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACCoolingPanelRadiantConvectiveWater.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACCoolingPanelRadiantConvectiveWater.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -468,3 +468,4 @@ ////public virtual real FractionOfRadiantEnergyToSurface100 { get; set; } = new real; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACHighTemperatureRadiant.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACHighTemperatureRadiant.cs index 20cb941..31e4c17 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACHighTemperatureRadiant.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACHighTemperatureRadiant.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -462,3 +462,4 @@ ////public virtual null FractionOfRadiantEnergyToSurface100 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantConstantFlow.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantConstantFlow.cs index e2b2828..e7ac7e9 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantConstantFlow.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantConstantFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ ////public virtual null CircuitLength { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantElectric.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantElectric.cs index c29ab56..308bff2 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantElectric.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantElectric.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -52,3 +52,4 @@ ////public virtual object-list HeatingSetpointTemperatureScheduleName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantSurfaceGroup.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantSurfaceGroup.cs index 790ee13..5983955 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantSurfaceGroup.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantSurfaceGroup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -432,3 +432,4 @@ ////public virtual null FlowFractionForSurface100 { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantVariableFlow.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantVariableFlow.cs index 4c20931..3267edb 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantVariableFlow.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACLowTemperatureRadiantVariableFlow.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ ////public virtual null CircuitLength { get; set; } = new null; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlab.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlab.cs index 5d2a4ce..bd8a0e0 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlab.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlab.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -110,3 +110,4 @@ ////public virtual object-list DesignSpecificationZoneHVACSizingObjectName { get; set; } = new object-list; ////} ////} + diff --git a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlabSlabGroup.cs b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlabSlabGroup.cs index a7dac76..6fd2201 100644 --- a/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlabSlabGroup.cs +++ b/EnergyPlus_oM/ZoneHVACRadiativeConvectiveUnits/ZoneHVACVentilatedSlabSlabGroup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2020, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2021, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -172,3 +172,4 @@ ////public virtual node SlabOutletNodeNameForSurface10 { get; set; } = new node; ////} ////} +