-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from LBNL-ETA/CompositionHeatFlowAttempt
Composition heat flow attempt
- Loading branch information
Showing
78 changed files
with
4,219 additions
and
4,697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#pragma once | ||
|
||
namespace Tarcog::ISO15099 | ||
{ | ||
enum class AirVerticalDirection | ||
{ | ||
None, | ||
Up, | ||
Down | ||
}; | ||
|
||
enum class AirHorizontalDirection | ||
{ | ||
None, | ||
Leeward, | ||
Windward | ||
}; | ||
|
||
struct AirflowProperties | ||
{ | ||
AirflowProperties() = default; | ||
AirflowProperties(double mAirSpeed, | ||
AirVerticalDirection mAirVerticalDirection, | ||
AirHorizontalDirection mAirHorizontalDirection, | ||
bool mIsVentilationForced); | ||
|
||
double m_AirSpeed{0}; | ||
AirVerticalDirection m_AirVerticalDirection{AirVerticalDirection::None}; | ||
AirHorizontalDirection m_AirHorizontalDirection{AirHorizontalDirection::None}; | ||
bool m_IsVentilationForced{false}; | ||
}; | ||
} |
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,14 @@ | ||
#include "AirFlow.hpp" | ||
|
||
namespace Tarcog::ISO15099 | ||
{ | ||
AirflowProperties::AirflowProperties(double mAirSpeed, | ||
AirVerticalDirection mAirVerticalDirection, | ||
AirHorizontalDirection mAirHorizontalDirection, | ||
bool mIsVentilationForced) : | ||
m_AirSpeed(mAirSpeed), | ||
m_AirVerticalDirection(mAirVerticalDirection), | ||
m_AirHorizontalDirection(mAirHorizontalDirection), | ||
m_IsVentilationForced(mIsVentilationForced) | ||
{} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.