From b36362e706a70a657916e65bc02bb0665f2ddb54 Mon Sep 17 00:00:00 2001 From: miguel <31931809+miguelvaca@users.noreply.github.com> Date: Mon, 8 Nov 2021 12:12:06 +1100 Subject: [PATCH] Fix Pd for PI --- toroid.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toroid.html b/toroid.html index 3ef0d4f..9d30715 100644 --- a/toroid.html +++ b/toroid.html @@ -1043,7 +1043,7 @@ } this.I_wire = function (frequency, voltage) { - const Rac = this.getWireResistance(frequency); + const Rac = this.getWireResistance(frequency, this.cond_diameter_meters * 0.5); return (voltage / Rac); }