59 lines
1.2 KiB
Markdown

# Story 11.12: Copeland Parser
**Epic:** 11 - Advanced HVAC Components
**Priorité:** P2-MEDIUM
**Estimation:** 4h
**Statut:** backlog
**Dépendances:** Story 11.11 (VendorBackend Trait)
---
## Story
> En tant qu'ingénieur compresseur,
> Je veux l'intégration des données compresseur Copeland,
> Afin d'utiliser les coefficients Copeland dans les simulations.
---
## Contexte
Copeland (Emerson) fournit des coefficients AHRI 540 pour ses compresseurs scroll.
---
## Format JSON
```json
{
"model": "ZP54KCE-TFD",
"manufacturer": "Copeland",
"refrigerant": "R410A",
"capacity_coeffs": [18000.0, 350.0, -120.0, ...],
"power_coeffs": [4500.0, 95.0, 45.0, ...],
"validity": {
"t_suction_min": -10.0,
"t_suction_max": 20.0,
"t_discharge_min": 25.0,
"t_discharge_max": 65.0
}
}
```
---
## Critères d'Acceptation
- [ ] Parser JSON pour CopelandBackend
- [ ] 10 coefficients capacity
- [ ] 10 coefficients power
- [ ] Validity range extraite
- [ ] list_compressor_models() fonctionnel
- [ ] Erreurs claires pour modèle manquant
---
## Références
- [Epic 11 Technical Specifications](../planning-artifacts/epic-11-technical-specifications.md)