summaryrefslogtreecommitdiff
path: root/2360/CH3/EX3.1/ex3_1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2360/CH3/EX3.1/ex3_1.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2360/CH3/EX3.1/ex3_1.sce')
-rwxr-xr-x2360/CH3/EX3.1/ex3_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2360/CH3/EX3.1/ex3_1.sce b/2360/CH3/EX3.1/ex3_1.sce
new file mode 100755
index 000000000..e9c7e8d49
--- /dev/null
+++ b/2360/CH3/EX3.1/ex3_1.sce
@@ -0,0 +1,16 @@
+// Exa 3.1
+format('v',7);clc;clear;close;
+// Given data
+N = 100;// number o turns
+B = 0.15;//air gap in Wb/m^2
+I = 5;//current in mA
+I = I * 10^-3;// in A
+l= 10;//length in mm
+b = 8;//width in mm
+A = l*b;//area in mm^2
+A = A * 10^-6;// in m^2
+Td = N*B*A*I;//deflecting torque in Nm
+K = 0.2*10^-6;// in Nm/degree
+// Td = Tc= K*theta;
+theta = Td/K;//deflecting in degrees
+disp(theta,"The deflecting in degrees is");