From 9a98c0534ce327cdb8a59c3f24ab2a23e8622d87 Mon Sep 17 00:00:00 2001 From: miguel <31931809+miguelvaca@users.noreply.github.com> Date: Wed, 3 May 2023 15:10:21 +1000 Subject: [PATCH] Reduce N for ferrites to 1/4 of before --- toroid.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toroid.html b/toroid.html index eecc3f4..24dc70f 100644 --- a/toroid.html +++ b/toroid.html @@ -694,7 +694,7 @@ // Frequency independent characteristics: this.N_max = Math.PI / (Math.atan2(0.5e3 * this.cond_diameter_meters, (0.5 * this.core.B - 0.5e3 * this.cond_diameter_meters))); - this.N = 1 + Math.round(loop_turns_slider.value * (this.N_max - 1)); + this.N = 1 + Math.round(loop_turns_slider.value * (this.N_max - 1) * 0.25); //this.cond_length_meters = this.N * (2*this.core.C + this.core.A - this.core.B) * 1e-3; //this.cond_length_meters = 2e-3 * Math.sqrt ( (Math.PI * 0.5 * (this.core.A + this.core.B))**2 + (this.N * (2*this.core.C + this.core.A - this.core.B))**2 );