Skip to content

Commit c5f3d2e

Browse files
committed
fix(writer): Fix bug in other side temperature translator
1 parent 839894b commit c5f3d2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

honeybee_openstudio/writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def face_to_openstudio(face, os_model, adj_map=None, ignore_complex_sub_faces=Tr
352352
srf_prop = OSSurfacePropertyOtherSideCoefficients(os_model)
353353
srf_prop.setName('{}_OtherTemp'.format(face.identifier))
354354
htc = fbc.heat_transfer_coefficient
355-
os_face.setCombinedConvectiveRadiativeFilmCoefficient(htc)
355+
srf_prop.setCombinedConvectiveRadiativeFilmCoefficient(htc)
356356
if fbc.temperature == autocalculate:
357357
srf_prop.setConstantTemperatureCoefficient(0)
358358
srf_prop.setExternalDryBulbTemperatureCoefficient(1)

0 commit comments

Comments
 (0)