diff options
Diffstat (limited to '165/CH2/EX2.1.b/ex2_1_b.sce')
-rw-r--r-- | 165/CH2/EX2.1.b/ex2_1_b.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/165/CH2/EX2.1.b/ex2_1_b.sce b/165/CH2/EX2.1.b/ex2_1_b.sce new file mode 100644 index 000000000..ae5cb4246 --- /dev/null +++ b/165/CH2/EX2.1.b/ex2_1_b.sce @@ -0,0 +1,10 @@ +//Example 2.1(b)
+clc;
+N=100; //No of turns of wire of the coil
+W=20*10^-3; //Width of the coil
+D=30*10^-3; //Depth of the ciol
+B=0.1; //Flux density in the gap
+Tau=30*10^-6; //Deflecting Torque
+A=W*D; //Effective coil area
+I=Tau/(B*A*N); //Current through the moving coil
+printf('\nCurrent through the moving coil = %.2f mA\n',I*1000)
\ No newline at end of file |