summaryrefslogtreecommitdiff
path: root/608/CH8/EX8.03/8_03.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /608/CH8/EX8.03/8_03.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 '608/CH8/EX8.03/8_03.sce')
-rwxr-xr-x608/CH8/EX8.03/8_03.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/608/CH8/EX8.03/8_03.sce b/608/CH8/EX8.03/8_03.sce
new file mode 100755
index 000000000..79400d816
--- /dev/null
+++ b/608/CH8/EX8.03/8_03.sce
@@ -0,0 +1,13 @@
+//Problem 8.03: Determine the current required in a 400 mm length of conductor of an electric motor, when the conductor is situated at right-angles to a magnetic field of flux density 1.2 T, if a force of 1.92 N is to be exerted on the conductor.
+
+//initializing the variables:
+F = 1.92; // in newton
+B = 1.2; // in tesla
+l = 0.40; // in m
+u0 = 4*%pi*1E-7;
+
+//calculation:
+I = F/(B*l)
+
+printf("\n\nResult\n\n")
+printf("\n (a)Current I = %.0f Amperes(A)",I) \ No newline at end of file