GPU Power & Cooling Optimizer
dc_gpu_cooling_optimizerCalculate thermal loads and cooling needs for GPU/AI clusters. Recommends air or liquid cooling strategies and projects energy costs and savings.
Instructions
Optimize cooling infrastructure for GPU/AI workloads. Calculates thermal loads for modern GPU clusters (H100, A100, H200, B200, GB200), recommends cooling strategies (air, rear-door, direct liquid, immersion), and projects energy costs and savings.
Handles the unique thermal challenges of AI/ML deployments: extreme power density (30-120+ kW/rack), liquid cooling CDU sizing, coolant flow rates, and PUE impact analysis.
Args:
gpu_count (number): Total number of GPUs
gpu_model (string): "H100", "A100", "H200", "B200", or "GB200"
rack_count (number): Number of racks housing GPUs
cooling_type (string): "air", "direct_liquid", "rear_door", or "immersion"
ambient_temp_f (number): Ambient temperature in °F (default: 95)
pue_target (number): Target PUE ratio (default: 1.3)
Returns total heat load, per-rack density, cooling strategy recommendation, CDU sizing, coolant flow rates, chilled water plant capacity, annual energy costs, and liquid vs air savings analysis.
Examples:
"Cool 64 H100 GPUs across 8 racks with liquid cooling" -> gpu_count: 64, gpu_model: "H100", rack_count: 8, cooling_type: "direct_liquid"
"What cooling do I need for 16 GB200s?" -> gpu_count: 16, gpu_model: "GB200", rack_count: 2, cooling_type: "immersion"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gpu_count | Yes | Total number of GPU accelerators in the deployment | |
| gpu_model | Yes | GPU model for TDP lookup: H100 (700W), A100 (400W), H200 (700W), B200 (1000W), GB200 (1200W) | |
| pue_target | Yes | Target Power Usage Effectiveness for facility evaluation | |
| rack_count | Yes | Number of racks in the GPU deployment | |
| cooling_type | Yes | Cooling strategy: air (traditional), rear_door (15-30 kW/rack), direct_liquid (30-60 kW/rack), immersion (>60 kW/rack) | |
| ambient_temp_f | Yes | Ambient supply air temperature in Fahrenheit (typical: 72-75°F) | |
| electricity_cost_per_kwh | No | Average electricity cost in $/kWh (default: $0.08) |