You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shading layer with zero thermal openings is not behaving the same as solid layer for tarcog calculations. As results following code was inserted.
std::shared_ptr
Layers::shading(double thickness,
double conductivity,
EffectiveLayers::EffectiveOpenness effectiveOpenness,
double frontEmissivity,
double frontTransmittance,
double backEmissivity,
double backTransmittance)
{
if(effectiveOpenness.isClosed())
{
return solid(thickness,
conductivity,
frontEmissivity,
frontTransmittance,
backEmissivity,
backTransmittance);
}
Check why std::make_shared with zero effective openings is not giving same results as
return solid(thickness,
conductivity,
frontEmissivity,
frontTransmittance,
backEmissivity,
backTransmittance);
The text was updated successfully, but these errors were encountered:
Shading layer with zero thermal openings is not behaving the same as solid layer for tarcog calculations. As results following code was inserted.
std::shared_ptr
Layers::shading(double thickness,
double conductivity,
EffectiveLayers::EffectiveOpenness effectiveOpenness,
double frontEmissivity,
double frontTransmittance,
double backEmissivity,
double backTransmittance)
{
if(effectiveOpenness.isClosed())
{
return solid(thickness,
conductivity,
frontEmissivity,
frontTransmittance,
backEmissivity,
backTransmittance);
}
Check why std::make_shared with zero effective openings is not giving same results as
return solid(thickness,
conductivity,
frontEmissivity,
frontTransmittance,
backEmissivity,
backTransmittance);
The text was updated successfully, but these errors were encountered: