diff options
Diffstat (limited to '1529/CH9/EX9.6/9_06.sce')
-rwxr-xr-x | 1529/CH9/EX9.6/9_06.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/1529/CH9/EX9.6/9_06.sce b/1529/CH9/EX9.6/9_06.sce new file mode 100755 index 000000000..ed008023c --- /dev/null +++ b/1529/CH9/EX9.6/9_06.sce @@ -0,0 +1,22 @@ +//Chapter 9, Problem 6
+clc;
+B=1.4; //flux density
+l=12*10^-2; //length
+N=80; //no of turns
+n=1200/60; //rotation in sec
+E1=90; //emf
+r=(8*10^-2)/2;
+Q90=%pi/2;
+//calculating velocity
+v=2*%pi*n*r;
+//calculating maximum emf
+E=2*N*B*v*l*sin(Q90);
+//calculating velocity with emf 90V
+v=E1/(2*N*B*l*sin(Q90));
+//calculating speed of coil
+w=v/r;
+w1=(w*60)/(2*%pi);
+disp("(a)");
+printf("Maximum emf induced = %f V",E);
+disp("(b)");
+printf("Speed of coil in rev/min = %d rev/min",w1);
|