blob: e3162a2d745785956aaa177b3ecdc038c2f7b98c (
plain)
1
2
3
4
5
6
7
8
9
10
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
|