Heating Calculator
Tell Us About Your Space
Heating Calculator
Here's what you need to know!
Area Type:
${userInputs.areaType || 'Not specified'}
Installation Type:
${userInputs.installationType || 'Not specified'}
Mounting Type:
${userInputs.mountingType || 'Not specified'}
${userInputs.temperature ? `
Desired Temperature:
${userInputs.temperature}°F
` : ''}
Your Total Square Feet:
${fmt(userInputs.sqft)} Sq Ft.
${userInputs.areaCode ? `
Location Area Code:
${userInputs.areaCode}
` : ''}
${userInputs.spaceType ? `
Commercial or Residential:
${userInputs.spaceType}
` : ''}
Estimated heating load:
${fmt(recommendations.needBTU)} BTU/h (${fmt(recommendations.needWatts)} watts)
Recommended Systems
`;
// Add recommendations with safety checks
if (recommendations.picks && recommendations.picks.length > 0) {
recommendations.picks.forEach(pick => {
if (pick && pick.config) {
const imageHtml = pick.imageUrl ?
`
` :
`
`;
}
});
} else {
html += `
`;
}
html += `
No image available
`;
html += `
${imageHtml}
${pick.name || 'Product'}
Configuration ${pick.config.units ? pick.config.units.map(u => `${u.qty} × ${u.sizeWatts}W`).join(' + ') : 'N/A'}
Estimated equipment cost $${fmt(pick.config.totalCost)}
No suitable products found for your requirements. Please contact us for assistance.