diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml
index a41cf7e08a..cb2376a019 100644
--- a/HPXMLtoOpenStudio/measure.xml
+++ b/HPXMLtoOpenStudio/measure.xml
@@ -3,8 +3,8 @@
3.1
hpxm_lto_openstudio
b1543b30-9465-45ff-ba04-1d1f85e763bc
- 78d28973-41cf-482b-aab8-53b59beea41c
- 2025-01-03T01:19:55Z
+ 95e76879-5bd0-4f40-9bc9-a6f07b622400
+ 2025-01-03T03:27:12Z
D8922A73
HPXMLtoOpenStudio
HPXML to OpenStudio Translator
@@ -327,7 +327,7 @@
defaults.rb
rb
resource
- 22375A02
+ EB4D5A1A
energyplus.rb
diff --git a/HPXMLtoOpenStudio/resources/defaults.rb b/HPXMLtoOpenStudio/resources/defaults.rb
index cb5212be84..9fbd257932 100644
--- a/HPXMLtoOpenStudio/resources/defaults.rb
+++ b/HPXMLtoOpenStudio/resources/defaults.rb
@@ -870,8 +870,9 @@ def self.apply_building_construction(hpxml_header, hpxml_bldg)
cond_crawl_volume = hpxml_bldg.inferred_conditioned_crawlspace_volume()
nbeds = hpxml_bldg.building_construction.number_of_bedrooms
if hpxml_bldg.building_construction.average_ceiling_height.nil?
- # ASHRAE 62.2 default for average floor to ceiling height
- hpxml_bldg.building_construction.average_ceiling_height = 8.2
+ # Note: We do not try to calculate it from CFA & ConditionedBuildingVolume since
+ # that is not a reliable assumption if there is a, e.g., conditioned crawlspace.
+ hpxml_bldg.building_construction.average_ceiling_height = 8.2 # ASHRAE 62.2 default
hpxml_bldg.building_construction.average_ceiling_height_isdefaulted = true
end
if hpxml_bldg.building_construction.conditioned_building_volume.nil?