Rack Density Analyzer
dc_analyze_rack_densityAnalyze rack density from rack count and power per rack to classify cooling strategy and get airflow and containment threshold recommendations.
Instructions
Analyze rack density classification and recommend appropriate cooling strategies.
Classifies rack density (low/medium/high/ultra-high/liquid-cooled), recommends cooling approach, estimates airflow requirements per rack, and flags containment and liquid cooling thresholds.
Args:
rack_count (number): Total number of racks
avg_kw_per_rack (number): Average power per rack in kW
floor_area_sqft (number): Optional white space area for W/sqft calculation
cooling_type (string): Optional current/planned cooling type
Returns density classification, recommended cooling strategy, airflow estimates, and recommendations.
Examples:
"I have 200 racks at 8 kW each in 10,000 sqft" -> rack_count: 200, avg_kw_per_rack: 8, floor_area_sqft: 10000
"Cooling strategy for 50 GPU racks at 40 kW" -> rack_count: 50, avg_kw_per_rack: 40
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rack_count | Yes | Total number of IT racks / cabinets | |
| cooling_type | No | Current or planned cooling type (e.g., 'air-cooled DX', 'chilled water', 'rear-door heat exchanger') | |
| avg_kw_per_rack | Yes | Average power draw per rack in kW (e.g., 8 for typical enterprise, 40+ for GPU/HPC) | |
| floor_area_sqft | No | Total white space floor area in square feet (for W/sqft calculation) |