Skip to content

Commit 8d8ab28

Browse files
committed
Explicitly set sb_hc_Frc = 0 when sfExCnd = SPECIFIEDT and sfExHcModel = INPUT.
1 parent ede178e commit 8d8ab28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cncult3.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2705,7 +2705,6 @@ void SBC::sb_SetCoeffs( // set convective and radiant coefficients
27052705
{ sb_txa = sb_pXS->sfExT;
27062706
sb_txr = sb_txa;
27072707
sb_HCAmbient();
2708-
sb_hcFrc = 0.f; // no wind; consider adding exterior surface wind speed user input
27092708
sb_hxa = sb_hcMult * (sb_hcNat + sb_hcFrc);
27102709
sb_hxr = 0.f;
27112710
}
@@ -2939,6 +2938,7 @@ x printf( "Hit\n");
29392938

29402939
case C_CONVMODELCH_INPUT:
29412940
sb_hcNat = 1.f;
2941+
sb_hcFrc = 0.f;
29422942
break;
29432943

29442944
default:

0 commit comments

Comments
 (0)