impedance property
Impedancia total (Z) en caliente
Implementation
double get impedance {
final R = resistanceAtMaxTemp;
final X = reactance;
return sqrt(R * R + X * X);
}
Impedancia total (Z) en caliente
double get impedance {
final R = resistanceAtMaxTemp;
final X = reactance;
return sqrt(R * R + X * X);
}