summaryrefslogtreecommitdiff
path: root/3862/CH8/EX8.11
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3862/CH8/EX8.11
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3862/CH8/EX8.11')
-rw-r--r--3862/CH8/EX8.11/Ex8_11.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3862/CH8/EX8.11/Ex8_11.sce b/3862/CH8/EX8.11/Ex8_11.sce
new file mode 100644
index 000000000..f97272901
--- /dev/null
+++ b/3862/CH8/EX8.11/Ex8_11.sce
@@ -0,0 +1,26 @@
+clear
+//
+
+//variable declaration
+
+P=(200) //loading,KN
+E=200*1000
+d1=40 //Young's modulus,N/mm^2
+A= %pi*(d1**2)/4 //Area of uniform portion**mm^2
+L1=1500 //length of uniform portion,mm
+d2=60 //diameter of tapered section,mm
+L2=500 //length of tapered section,mm
+//Extensions of uniform portion and tapering portion are worked out separately and then added to get extension of the given bar.
+
+//Extension of uniform portion
+
+delta1=(P*1000*L1)/(A*E)
+
+printf("\n delta1= %0.3f mm",delta1)
+
+delta2=(P*1000*4*L2)/(E*%pi*d1*d2)
+
+printf("\n delta2= %0.3f mm",delta2)
+
+T=delta1 + delta2
+printf("\n Total extension %0.3f mm",T)