A typical 42U server rack with 10kW IT load generates enough heat to warm a 1,500 square foot home in winter—yet many engineers treat cooling calculations as simple IT power multiplication. The reality requires summing multiple heat sources with precise margin analysis to prevent both undercooling and inefficient oversizing.
The Formula: Breaking Down the Heat Sources
CRAC unit sizing follows a straightforward but often misunderstood formula: Required Cooling Load = IT Load + Lighting Load + Occupancy Load + Envelope/Misc. Load + Ventilation/Infiltration Load. Each term represents a distinct physical heat source that must be quantified in consistent units (typically kW or BTU/hr).
IT Load dominates—typically 70–90% of total load in modern data centers—representing the sensible heat from servers, switches, and storage devices. Lighting Load accounts for overhead lighting, often 1–2 W/ft² in data rooms. Occupancy Load captures human metabolic heat (approximately 100W per person). Envelope/Misc. Load includes solar gain through walls/windows, heat from UPS systems, and other equipment. Ventilation/Infiltration Load accounts for outside air introduced for pressurization or makeup air, which can add significant latent and sensible loads.
// The core calculation in code form
function calculateCRACCapacity(itLoad, lightingLoad, occupancyLoad, envelopeLoad, ventilationLoad, sizingMargin) {
const totalLoadKw = itLoad + lightingLoad + occupancyLoad + envelopeLoad + ventilationLoad;
const recommendedKw = totalLoadKw * (1 + sizingMargin / 100);
const recommendedBtu = recommendedKw * 3412.142;
const recommendedTons = recommendedBtu / 12000;
return { totalLoadKw, recommendedKw, recommendedBtu, recommendedTons };
}
Why sum all terms? Because cooling systems must handle the entire thermal envelope, not just IT equipment. Schneider Electric emphasizes that ignoring secondary heat sources leads to undersized systems that can't maintain ASHRAE TC 9.9 thermal envelopes during peak conditions.
Worked Example 1: Medium-Sized Data Room
Let's calculate for a 500 ft² data room with 8 server racks. IT Load: 80 kW (measured from power distribution units). Lighting Load: 0.75 kW (1.5 W/ft² × 500 ft²). Occupancy Load: 0.2 kW (2 technicians at 100W each). Envelope Load: 2.5 kW (solar gain through one exterior wall). Ventilation Load: 1.8 kW (outside air for pressurization). Sizing Margin: 15%.
Step 1: Total Load = 80 + 0.75 + 0.2 + 2.5 + 1.8 = 85.25 kW
Step 2: Convert to BTU/hr = 85.25 Ă— 3412.142 = 290,885 BTU/hr
Step 3: Apply Margin = 85.25 Ă— (1 + 0.15) = 98.04 kW
Step 4: Final Capacity = 98.04 kW = 334,500 BTU/hr = 27.9 tons
Notice how non-IT loads (5.25 kW) represent 6.2% of total load—significant enough to affect unit selection.
Worked Example 2: High-Density Colocation Suite
Consider a 1,200 ft² colocation space with 30kW/rack density. IT Load: 360 kW (12 racks × 30kW). Lighting Load: 1.8 kW (1.5 W/ft²). Occupancy Load: 0.3 kW (3 people). Envelope Load: 4.2 kW (minimal exterior exposure). Ventilation Load: 3.6 kW (higher outside air requirement). Sizing Margin: 20% (for future growth).
Total Load = 360 + 1.8 + 0.3 + 4.2 + 3.6 = 369.9 kW
Recommended Capacity = 369.9 Ă— 1.20 = 443.9 kW = 1,514,000 BTU/hr = 126.2 tons
Here, non-IT loads (9.9 kW) are only 2.7% of total—but still represent nearly 10 tons of cooling that must be accounted for.
What Engineers Often Miss
First, sensible heat ratio (SHR) matters critically. CRAC units are designed primarily for sensible cooling (removing dry heat), not latent cooling (removing moisture). A unit rated for 100,000 BTU/hr total cooling might only provide 85,000 BTU/hr sensible cooling at data center conditions. Always check manufacturer SHR curves at your design conditions.
Second, oversizing creates operational problems. Units that cycle too frequently struggle with humidity control and wear out faster. The common "add 50% to be safe" approach often backfires, creating unstable conditions that violate ASHRAE environmental envelopes.
Third, ventilation/infiltration loads vary dramatically with climate. A data center in Phoenix needs more cooling for outside air than one in Seattle, even with identical IT loads. This term is often underestimated or omitted entirely in preliminary calculations.
Try the Calculator
Manual calculations work for single scenarios, but comparing multiple design options requires quick iteration. The CRAC Unit Sizing Calculator implements the exact formula discussed here with automatic unit conversions and margin analysis. Input your specific loads to see how different margin percentages affect recommended capacity in both metric and imperial units.
Originally published at calcengineer.com/blog

