summaryrefslogtreecommitdiff
path: root/1544/CH5/EX5.3/Ch05Ex3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1544/CH5/EX5.3/Ch05Ex3.sce')
-rwxr-xr-x1544/CH5/EX5.3/Ch05Ex3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1544/CH5/EX5.3/Ch05Ex3.sce b/1544/CH5/EX5.3/Ch05Ex3.sce
new file mode 100755
index 000000000..e3162a2d7
--- /dev/null
+++ b/1544/CH5/EX5.3/Ch05Ex3.sce
@@ -0,0 +1,11 @@
+// Scilab code Ex5.3: Pg 147 (2008)
+clc; clear;
+e = 100; // Induced emf, V
+// For simplification let (delta_phi)/(delta_t) = k
+k = 0.1; // Rate of chage of flux linked with coil, Wb/s
+// Since e =((-N)*delta_phi)/delta_t, soling for N
+N = (e)/k; // Number of turns
+printf("\nThe number of turns on the coil = %4d", N);
+
+// Result
+// The number of turns on the coil = 1000