forked from LBNL-ETA/Windows-CalcEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test natural ventilation of narrow gap at edge
- Loading branch information
1 parent
bf4294f
commit 4bda8f0
Showing
1 changed file
with
179 additions
and
0 deletions.
There are no files selected for viewing
179 changes: 179 additions & 0 deletions
179
src/Tarcog/tst/units/GapLayerAtEdgeVentilationNarrow.unit.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
#include <memory> | ||
#include <gtest/gtest.h> | ||
|
||
#include "WCETarcog.hpp" | ||
|
||
class TestGapLayerAtEdgeVentilationNarrow : public testing::Test | ||
{ | ||
private: | ||
std::shared_ptr<Tarcog::ISO15099::CSingleSystem> m_TarcogSystem; | ||
|
||
protected: | ||
void SetUp() override | ||
{ | ||
///////////////////////////////////////////////////////// | ||
// Outdoor | ||
///////////////////////////////////////////////////////// | ||
auto airTemperature = 255.15; // Kelvins | ||
auto airSpeed = 5.5; // meters per second | ||
auto tSky = 255.15; // Kelvins | ||
auto solarRadiation = 0.0; | ||
|
||
auto Outdoor = Tarcog::ISO15099::Environments::outdoor( | ||
airTemperature, airSpeed, solarRadiation, tSky, Tarcog::ISO15099::SkyModel::AllSpecified); | ||
ASSERT_TRUE(Outdoor != nullptr); | ||
Outdoor->setHCoeffModel(Tarcog::ISO15099::BoundaryConditionsCoeffModel::CalculateH); | ||
|
||
///////////////////////////////////////////////////////// | ||
/// Indoor | ||
///////////////////////////////////////////////////////// | ||
|
||
auto roomTemperature = 295.15; | ||
|
||
auto Indoor = Tarcog::ISO15099::Environments::indoor(roomTemperature); | ||
ASSERT_TRUE(Indoor != nullptr); | ||
|
||
// IGU | ||
auto solidLayerThickness = 0.005715; // [m] | ||
auto solidLayerConductance = 1.0; | ||
|
||
auto solidLayer = Tarcog::ISO15099::Layers::solid(solidLayerThickness, solidLayerConductance); | ||
ASSERT_TRUE(solidLayer != nullptr); | ||
|
||
auto shadeLayerThickness = 0.01; | ||
auto shadeLayerConductance = 160.0; | ||
auto Atop = 0.1; | ||
auto Abot = 0.1; | ||
auto Aleft = 0.1; | ||
auto Aright = 0.1; | ||
auto Afront = 0.2; | ||
|
||
EffectiveLayers::ShadeOpenness openness{Afront, Aleft, Aright, Atop, Abot}; | ||
|
||
double windowWidth = 1; | ||
double windowHeight = 1; | ||
|
||
EffectiveLayers::EffectiveLayerOther effectiveLayer{ | ||
windowWidth, windowHeight, shadeLayerThickness, openness}; | ||
|
||
EffectiveLayers::EffectiveOpenness effOpenness{effectiveLayer.getEffectiveOpenness()}; | ||
|
||
auto shadeLayer = Tarcog::ISO15099::Layers::shading( | ||
shadeLayerThickness, shadeLayerConductance, effOpenness); | ||
|
||
ASSERT_TRUE(shadeLayer != nullptr); | ||
|
||
auto gapThickness = 0.00001; | ||
auto gap = Tarcog::ISO15099::Layers::gap(gapThickness); | ||
ASSERT_TRUE(gap != nullptr); | ||
|
||
Tarcog::ISO15099::CIGU aIGU(windowWidth, windowHeight); | ||
aIGU.addLayers({solidLayer, gap, shadeLayer}); | ||
|
||
///////////////////////////////////////////////////////// | ||
/// System | ||
///////////////////////////////////////////////////////// | ||
m_TarcogSystem = std::make_shared<Tarcog::ISO15099::CSingleSystem>(aIGU, Indoor, Outdoor); | ||
ASSERT_TRUE(m_TarcogSystem != nullptr); | ||
} | ||
|
||
public: | ||
std::shared_ptr<Tarcog::ISO15099::CIGUSolidLayer> GetSolidLayer() const | ||
{ | ||
auto solidLayer = m_TarcogSystem->getSolidLayers()[0]; | ||
assert(std::dynamic_pointer_cast<Tarcog::ISO15099::CIGUSolidLayer>(solidLayer) | ||
!= nullptr); | ||
return std::dynamic_pointer_cast<Tarcog::ISO15099::CIGUSolidLayer>(solidLayer); | ||
}; | ||
|
||
std::shared_ptr<Tarcog::ISO15099::CIGUVentilatedGapLayer> GetGap() const | ||
{ | ||
auto gap = m_TarcogSystem->getGapLayers()[0]; | ||
assert(std::dynamic_pointer_cast<Tarcog::ISO15099::CIGUVentilatedGapLayer>(gap) | ||
!= nullptr); | ||
return std::dynamic_pointer_cast<Tarcog::ISO15099::CIGUVentilatedGapLayer>(gap); | ||
}; | ||
|
||
std::shared_ptr<Tarcog::ISO15099::CIGUSolidLayer> GetShadeLayer() const | ||
{ | ||
auto shadeLayer = m_TarcogSystem->getSolidLayers()[1]; | ||
assert(std::dynamic_pointer_cast<Tarcog::ISO15099::CIGUSolidLayer>(shadeLayer) | ||
!= nullptr); | ||
return std::dynamic_pointer_cast<Tarcog::ISO15099::CIGUSolidLayer>(shadeLayer); | ||
}; | ||
}; | ||
|
||
TEST_F(TestGapLayerAtEdgeVentilationNarrow, GainEnergy) | ||
{ | ||
SCOPED_TRACE("Begin Test: Test Ventilated Gap Layer - Gain Energy"); | ||
|
||
auto aLayer = GetGap(); | ||
|
||
// Airflow iterations are set to 1e-4 and it cannot exceed that precision | ||
|
||
ASSERT_TRUE(aLayer != nullptr); | ||
auto gainEnergy = aLayer->getGainFlow(); | ||
EXPECT_NEAR(2.6304479156184216e-07, gainEnergy, 1e-4); | ||
} | ||
|
||
TEST_F(TestGapLayerAtEdgeVentilationNarrow, SolidTemperatures) | ||
{ | ||
SCOPED_TRACE("Begin Test: Test Ventilated Gap Layer - Solid Temperatures"); | ||
|
||
auto aLayer = GetSolidLayer(); | ||
|
||
// Airflow iterations are set to 1e-4 and it cannot exceed that precision | ||
|
||
ASSERT_TRUE(aLayer != nullptr); | ||
auto frontTemperature = aLayer->getTemperature(FenestrationCommon::Side::Front); | ||
auto backTemperature = aLayer->getTemperature(FenestrationCommon::Side::Back); | ||
EXPECT_NEAR(256.64672591206738, frontTemperature, 1e-4); | ||
EXPECT_NEAR(265.20051449953229, backTemperature, 1e-4); | ||
} | ||
|
||
TEST_F(TestGapLayerAtEdgeVentilationNarrow, GapTemperatures) | ||
{ | ||
SCOPED_TRACE("Begin Test: Test Ventilated Gap Layer - Gap Temperatures"); | ||
|
||
auto aLayer = GetGap(); | ||
|
||
// Airflow iterations are set to 1e-4 and it cannot exceed that precision | ||
|
||
ASSERT_TRUE(aLayer != nullptr); | ||
auto frontTemperature = aLayer->getTemperature(FenestrationCommon::Side::Front); | ||
auto backTemperature = aLayer->getTemperature(FenestrationCommon::Side::Back); | ||
auto layerTemperature = aLayer->layerTemperature(); | ||
auto averageTemperature = aLayer->averageTemperature(); | ||
EXPECT_NEAR(265.20051449953229, frontTemperature, 1e-4); | ||
EXPECT_NEAR(265.21548175865297, backTemperature, 1e-4); | ||
EXPECT_NEAR(265.20799812909263, layerTemperature, 1e-4); | ||
EXPECT_NEAR(265.20799812909263, averageTemperature, 1e-4); | ||
} | ||
|
||
TEST_F(TestGapLayerAtEdgeVentilationNarrow, ShadeTemperatures) | ||
{ | ||
SCOPED_TRACE("Begin Test: Test Ventilated Gap Layer - Shade Temperatures"); | ||
|
||
auto aLayer = GetShadeLayer(); | ||
|
||
// Airflow iterations are set to 1e-4 and it cannot exceed that precision | ||
|
||
ASSERT_TRUE(aLayer != nullptr); | ||
auto frontTemperature = aLayer->getTemperature(FenestrationCommon::Side::Front); | ||
auto backTemperature = aLayer->getTemperature(FenestrationCommon::Side::Back); | ||
EXPECT_NEAR(265.21548175865297, frontTemperature, 1e-4); | ||
EXPECT_NEAR(280.18274087932645, backTemperature, 1e-4); | ||
} | ||
|
||
TEST_F(TestGapLayerAtEdgeVentilationNarrow, AirflowReferencePoint) | ||
{ | ||
SCOPED_TRACE("Begin Test: Test Ventilated Gap Layer - Airflow Reference Point"); | ||
|
||
auto aLayer = GetGap(); | ||
|
||
// Airflow iterations are set to 1e-4 and it cannot exceed that precision | ||
|
||
ASSERT_TRUE(aLayer != nullptr); | ||
auto airflowReferencePoint = aLayer->getAirflowReferencePoint(0.5); | ||
EXPECT_NEAR(6911.5835605046359, airflowReferencePoint, 1e-4); | ||
} |