deltaTWindKoeling property
Effectieve temperatuurcorrectie K door windkoeling (IEC 60287-2-1).
Negatief = wind verbetert koeling; positief = deksel-penalty.
Alleen van toepassing bij bovengrondse leidingen.
Implementation
double get deltaTWindKoeling {
if (!windkoelingActief) return 0.0;
final dtWind = switch (windsnelheid) {
Windsnelheid.windstil => 0.0,
Windsnelheid.zwak => 3.0,
Windsnelheid.matig => 6.0,
Windsnelheid.sterk => 10.0,
Windsnelheid.storm => 15.0,
};
final dtDeksel = gootMetDeksel ? 5.0 : 0.0;
return dtDeksel - dtWind;
}