🌡️ AC Tonnage Calculator

Calculate the perfect AC capacity for your room with precision

📐 Room Dimensions
🪟 Windows & Doors
🧭 Location & Orientation
👥 Usage & Occupancy

Recommended AC Capacity

Room Area
BTU Required
Heat Load
Efficiency Rating
Look for 5⭐
Debug Information:
💡 Pro Tips for Optimal AC Performance
• Choose an AC with 5-star energy rating for maximum efficiency
• Install proper curtains or blinds to reduce heat gain
• Ensure good insulation to minimize cooling loss
• Regular maintenance improves performance and reduces energy costs
• Consider inverter ACs for better energy savings
function resetCalculator() { // Reset all input fields to empty values document.getElementById(‘length’).value = ”; document.getElementById(‘breadth’).value = ”; document.getElementById(‘height’).value = ”; document.getElementById(‘windows’).value = ”; document.getElementById(‘windowSize’).selectedIndex = 0; document.getElementById(‘doors’).value = ”; document.getElementById(‘doorUsage’).selectedIndex = 0; document.getElementById(‘roomFacing’).selectedIndex = 0; document.getElementById(‘climate’).selectedIndex = 0; document.getElementById(‘floor’).selectedIndex = 0; document.getElementById(‘insulation’).selectedIndex = 0; document.getElementById(‘occupants’).value = ”; document.getElementById(‘appliances’).selectedIndex = 0; // Hide results and debug info document.getElementById(‘resultSection’).classList.remove(‘show’); document.getElementById(‘debugInfo’).classList.remove(‘show-debug’); console.log(‘Calculator reset – all fields cleared’); }