Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

You are correct that the Zone Averaged MRT is the default algorithm (link to updated Engineering Reference Section). This approach is calculating the MRT based on the surface area, temperature, and emissivity of each zone's surface.

$$ T_{zone-averaged} = \Sigma \frac{\epsilon_i * A_i *T_i}{\epsilon_i * A_i } $$

where "i" is for each surface in a zone. This isn't necessarily positioning the occupant in the centroid of the zone -- just calculating a fictitious "average" MRT weighted by areas and emissivity.

A. Yes, you could ask EnergyPlus to calculate MRT for a specific location in a zone using either of the other two options. Surface Weighted MRT is going to calculate an average of the surface temperature that occupants are closest to and the averaged MRT of all other surfaces in the zone.

$$ T_{surface-weighted} = \frac{T_{radiant-others} + T_{surface}}{2} $$

where

$$ T_{radiant-others} = \Sigma \frac{\epsilon_i * A_i *T_i}{\epsilon_i * A_i } $$

and "i" is for all other surfaces in zone. This is a decent approximation, but if you want to know MRT for a very specific location in the zone, then you should rather use the Angle Factor MRT option. This calculated MRT like the first Zone Averaged MRT option, but weights surfaces by their view factors (VF) to the occupant(s) instead of their surface areas and uses T^4 instead of T.

$$ T_{angle-factor} = \Sigma \frac{\epsilon_i * VF_i *T_i^4}{\epsilon_i * VF_i } $$

However, this requires that the user adds a ComfortViewFactorAngles object to the IDF that sets each surface's view factor so you'll have to manually calculate them or have another tool calculate them for you.

No matter which of the three MRT methods you use, the output variable you want to examine is Zone Thermal Comfort Mean Radiant Temperature

B. You define which of the three MRT methods you want to use in the Mean Radiant Temperature Calculation Type input field of the People object assigned to the zone where you want the MRT calculations to take place.

You are correct that the Zone Averaged MRT is the default algorithm (link to updated Engineering Reference Section). This approach is calculating the MRT based on the surface area, temperature, and emissivity of each zone's surface.

$$ T_{zone-averaged} = \Sigma \frac{\epsilon_i * A_i *T_i}{\epsilon_i * A_i } $$

where "i" is for each surface in a zone. This isn't necessarily positioning the occupant in the centroid of the zone -- just calculating a fictitious "average" MRT weighted by areas and emissivity.

A. A. Yes, you could ask EnergyPlus to calculate MRT for a specific location in a zone using either of the other two options. Surface Weighted MRT is going to calculate an average of the surface temperature that occupants are closest to and the averaged MRT of all other surfaces in the zone.

$$ T_{surface-weighted} = \frac{T_{radiant-others} + T_{surface}}{2} $$

where

$$ T_{radiant-others} = \Sigma \frac{\epsilon_i * A_i *T_i}{\epsilon_i * A_i } $$

and "i" is for all other surfaces in zone. This is a decent approximation, but if you want to know MRT for a very specific location in the zone, then you should rather use the Angle Factor MRT option. This calculated MRT like the first Zone Averaged MRT option, but weights surfaces by their view factors (VF) to the occupant(s) instead of their surface areas and uses T^4 instead of T.

$$ T_{angle-factor} = \Sigma \frac{\epsilon_i * VF_i *T_i^4}{\epsilon_i * VF_i } $$

However, this requires that the user adds a ComfortViewFactorAngles object to the IDF that sets each surface's view factor so you'll have to manually calculate them or have another tool calculate them for you.

No matter which of the three MRT methods you use, the output variable you want to examine is Zone Thermal Comfort Mean Radiant Temperature

B. B. You define which of the three MRT methods you want to use in the Mean Radiant Temperature Calculation Type input field of the People object assigned to the zone where you want the MRT calculations to take place.