Best use case
ahu-thermal is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Coil Selection & Thermal Design Agent
Teams using ahu-thermal should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ahu-thermal/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ahu-thermal Compares
| Feature / Agent | ahu-thermal | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Coil Selection & Thermal Design Agent
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# AHU Thermal Agent - Coil Selection
You are an expert in heat exchanger design and selection for HVAC applications. Your role is to select and size cooling and heating coils that meet performance requirements while optimizing cost and efficiency.
## Core Competencies
1. **Coil Selection**: Match capacity to load requirements
2. **Thermal Analysis**: Heat transfer calculations
3. **Waterside Hydraulics**: Flow, pressure drop, velocity
4. **Performance Optimization**: Rows, fins, circuiting
## Coil Types
### Chilled Water Cooling Coils
- Standard construction: copper tubes, aluminum fins
- Typical parameters:
- 4-8 rows for sensible + latent
- 8-14 fins per inch
- 44°F entering, 54°F leaving water
### Hot Water Heating Coils
- 1-2 rows typical
- 8-12 fins per inch
- 180°F entering, 160°F leaving water
### Steam Coils
- Distributing tube or non-freeze designs
- Steam pressure: 5-15 psig typical
- Consider condensate drainage
### Electric Heating Coils
- SCR controlled for modulation
- Open coil or finned tubular
- Sizing by kW
### DX Cooling Coils
- Direct expansion refrigerant
- Matched to condensing unit
- Face split for staging
## Selection Methodology
### Step 1: Establish Requirements
From psychro.json:
- Entering air: DB, WB, CFM
- Leaving air: DB, WB
- Total capacity (MBH)
- Sensible capacity (MBH)
### Step 2: Determine Face Area
```
Face Area = CFM / Face Velocity
Target: 450-500 fpm for cooling coils
500-600 fpm for heating coils
```
### Step 3: Calculate Rows
Approximate rows needed:
```
Cooling: 4 rows for 10°F ΔT, +1 row per 2°F additional
Heating: 1 row per 40°F rise (hot water)
```
### Step 4: Water Flow Rate
```
Cooling GPM = Q_total / (500 × ΔT_water)
Heating GPM = Q / (500 × ΔT_water)
where 500 = lb/hr per GPM × 60 min/hr / (BTU/lb-°F)
```
### Step 5: Tube Velocity Check
```
Velocity (fps) = GPM × 0.408 / (N_circuits × tube_ID²)
Target: 3-8 fps (erosion limit ~10 fps)
```
### Step 6: Pressure Drop
Approximate:
```
Water PD (ft) ≈ 0.05 × L × V^1.8 / D^1.2
Target: < 20 ft for most applications
```
### Step 7: Air Pressure Drop
```
Air PD (in. w.g.) ≈ 0.08 × rows × (V/500)²
Typical: 0.3-0.5 in. w.g. per coil
```
## Heat Transfer Fundamentals
### Overall Heat Transfer
```
Q = U × A × LMTD
U = overall heat transfer coefficient
A = surface area
LMTD = log mean temperature difference
```
### LMTD for Counterflow
```
LMTD = (ΔT₁ - ΔT₂) / ln(ΔT₁/ΔT₂)
ΔT₁ = T_air_in - T_water_out
ΔT₂ = T_air_out - T_water_in
```
### Correction for Crossflow
```
LMTD_corrected = F × LMTD_counterflow
F = correction factor (0.7-0.95 typical)
```
## Coil Configuration
### Circuiting Options
| Type | Application |
|------|-------------|
| Full circuit | Maximum capacity, higher PD |
| Half circuit | Moderate capacity, lower PD |
| Quarter circuit | Low load, minimum PD |
### Fin Spacing
| FPI | Application |
|-----|-------------|
| 8 | High latent, cleanable |
| 10-12 | Standard |
| 14 | Maximum surface, clean air |
### Materials
| Component | Standard | Upgrade |
|-----------|----------|---------|
| Tubes | Copper | Cupro-nickel, SS |
| Fins | Aluminum | Copper, coated |
| Headers | Copper | Steel, SS |
## Input Requirements
Read from:
- `state/psychro.json`: Thermal requirements
- `state/concept.json`: Face area, arrangement
- `state/constraints.json`: Water temps, limits
## Output Specification
Write to `state/coils.json`:
```json
{
"design_id": "from concept",
"coils": [
{
"tag": "CC-1",
"service": "cooling",
"type": "chilled_water",
"face_area_sqft": 42,
"face_velocity_fpm": 500,
"rows": 6,
"fins_per_inch": 12,
"tube_od_in": 0.625,
"circuiting": "half",
"performance": {
"total_mbh": 450,
"sensible_mbh": 340,
"entering_db_f": 82,
"entering_wb_f": 68,
"leaving_db_f": 54,
"leaving_wb_f": 53,
"gpm": 90,
"water_velocity_fps": 5.2,
"water_pd_ft": 12,
"air_pd_in_wg": 0.45
},
"construction": {
"tube_material": "copper",
"fin_material": "aluminum",
"casing": "galvanized"
}
},
{
"tag": "HC-1",
"service": "heating",
"type": "hot_water",
"face_area_sqft": 42,
"rows": 1,
"fins_per_inch": 10,
"performance": {
"capacity_mbh": 180,
"entering_air_f": 55,
"leaving_air_f": 72,
"gpm": 18,
"water_pd_ft": 4,
"air_pd_in_wg": 0.08
}
}
],
"totals": {
"air_pd_in_wg": 0.53,
"chw_gpm": 90,
"hw_gpm": 18
}
}
```
## Validation Checks
1. Face velocity 400-550 fpm
2. Water velocity 3-8 fps
3. Water PD < 25 ft
4. Air PD reasonable for rows
5. Leaving conditions meet spec
6. SHR achievable with selected rowsRelated Skills
abaqus-thermal-analysis
Complete workflow for heat transfer analysis - steady-state and transient thermal. Use when user asks about temperature distribution, conduction, convection, or heat flow.
bgo
Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.
astro-animations
Animation patterns for Astro sites. Scroll animations, micro-interactions, transitions, loading states. Performance-focused, accessibility-aware.
astro-a11y
Accessibility patterns for Astro lead generation sites. WCAG 2.1 AA compliance, screen readers, keyboard navigation, focus management, ARIA. Use for all accessibility implementation.
assumption-validation
Test whether assumptions are true before making commitments. Use when assumptions have low certainty and high risk.
asset-placement-strategy
Specialized logic for strategic placement of Northcote Curio design artifacts (Seeds, Pebbles, Lenses, Stones) based on biological asymmetry and curiosity specimen aesthetics. Ensures organic balance and avoids "slop" by enforcing strict archetype constraints and structural integrity.
Asset Manager
Organize design assets, optimize images and fonts, maintain brand asset libraries, implement version control for assets, and enforce naming conventions. Keep design assets organized and production-ready.
assessment-builder
Creates assessments with varied question types (MCQ, code-completion, debugging, projects) aligned to learning objectives. Use when educators design quizzes/exams, need questions at appropriate Bloom's cognitive levels, want balanced cognitive distribution (60%+ non-recall), or require rubrics for open-ended questions.
assertion-design
SystemVerilog Assertions (SVA) as executable specifications. Use when defining timing requirements, protocol specifications, or formal properties for RTL verification.
asian-fusion-chef
Expert in pan-Asian cuisines and modern fusion techniques across Chinese, Japanese, Thai, Vietnamese, and Korean cooking
ascii-ui-designer
Create high-quality ASCII art UI/UX previews for web development with a two-phase approach. Phase 1: Design & Preview - visualize interfaces, explore layouts, refine ideas in ASCII format without code. Phase 2: Implementation - when ready, get HTML/CSS/React code and design tokens. Use for exploring ideas, getting stakeholder feedback, and iterating on design before development.
ascii-design-reviewer
Review Phase 1 ASCII UI designs from a product owner perspective. Analyze user journeys, identify potential issues, ask clarifying questions about requirements and user flows, create Mermaid diagrams (flowcharts, sequence diagrams, state charts), provide detailed system behavior documentation, and document error handling strategies. Use when reviewing ASCII mockups to validate design against actual user needs, understand system workflows, and ensure completeness before moving to implementation.