summaryrefslogtreecommitdiff
path: root/3776/CH1/EX1.6
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 10:59:42 +0530
committerprashantsinalkar2018-02-03 10:59:42 +0530
commitd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (patch)
tree612077a22c8142c0ae754ec11882a4e7d5dc25a4 /3776/CH1/EX1.6
parentf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (diff)
downloadScilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.gz
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.bz2
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.zip
Modified the code
Diffstat (limited to '3776/CH1/EX1.6')
-rw-r--r--3776/CH1/EX1.6/Ex1_6.sce6
1 files changed, 3 insertions, 3 deletions
diff --git a/3776/CH1/EX1.6/Ex1_6.sce b/3776/CH1/EX1.6/Ex1_6.sce
index ba7d7e038..11a4a83f1 100644
--- a/3776/CH1/EX1.6/Ex1_6.sce
+++ b/3776/CH1/EX1.6/Ex1_6.sce
@@ -5,10 +5,10 @@ frequency = 10 //Hz
stress_allow = 200 //MPa
R = 0.5 //m
-//caliculations
+//calculations
//
w = 2*%pi*frequency //rad/sec
a = (w**2)*R //sq.m/sec
F = mass*a //N
-A_req = F/stress_allow //sq.m , The required area for aloowing stress
-printf("\n The required size of rod is: %0.2f sq.m",A_req)
+A_req = F/stress_allow //sq.mm , The required area for allowing stress
+printf("\n The required size of rod is: %0.2f sq.mm",A_req)