summaryrefslogtreecommitdiff
path: root/24/CH29/EX29.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /24/CH29/EX29.7
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 '24/CH29/EX29.7')
-rwxr-xr-x24/CH29/EX29.7/Example29_7.sce14
-rwxr-xr-x24/CH29/EX29.7/Example29_7_result.txt2
2 files changed, 16 insertions, 0 deletions
diff --git a/24/CH29/EX29.7/Example29_7.sce b/24/CH29/EX29.7/Example29_7.sce
new file mode 100755
index 000000000..ce2bfa481
--- /dev/null
+++ b/24/CH29/EX29.7/Example29_7.sce
@@ -0,0 +1,14 @@
+//Given that
+h = 2.1*10^-2 //in m
+w = 1.2*10^-2 //in m
+n = 250
+B = 0.23 //in T
+i = 100*10^-6 //in A
+theta = 28 //in degree
+
+//Sample Problem 29-7
+printf("**Sample Problem 29-7**\n")
+A = h*w
+T = B*i*n*A
+k = T/theta
+printf("The value of constant k is equal to %eN.m/degree", k) \ No newline at end of file
diff --git a/24/CH29/EX29.7/Example29_7_result.txt b/24/CH29/EX29.7/Example29_7_result.txt
new file mode 100755
index 000000000..0d2a8fc8d
--- /dev/null
+++ b/24/CH29/EX29.7/Example29_7_result.txt
@@ -0,0 +1,2 @@
+**Sample Problem 29-7**
+The value of constant k is equal to 5.175000e-008N.m/degree \ No newline at end of file