summaryrefslogtreecommitdiff
path: root/165/CH2/EX2.1.a/ex2_1_a.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /165/CH2/EX2.1.a/ex2_1_a.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '165/CH2/EX2.1.a/ex2_1_a.sce')
-rw-r--r--165/CH2/EX2.1.a/ex2_1_a.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/165/CH2/EX2.1.a/ex2_1_a.sce b/165/CH2/EX2.1.a/ex2_1_a.sce
new file mode 100644
index 000000000..5bce5295c
--- /dev/null
+++ b/165/CH2/EX2.1.a/ex2_1_a.sce
@@ -0,0 +1,13 @@
+//Example 2.1(a)
+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
+I=10*10^-3; //Current in the movable coil
+K=2*10^-6; //Spring Constant
+A=W*D; //Effective coil area
+Tau=B*A*N*I; //Deflecting Torque
+Theta=Tau/K; //Deflection
+printf('\nDeflecting torque = %.2f uNm\n',Tau*10^6)
+printf('\nDeflection = %d degree\n',Theta) \ No newline at end of file