summaryrefslogtreecommitdiff
path: root/3647/CH6/EX6.13
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3647/CH6/EX6.13
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3647/CH6/EX6.13')
-rw-r--r--3647/CH6/EX6.13/ex6_13.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3647/CH6/EX6.13/ex6_13.sce b/3647/CH6/EX6.13/ex6_13.sce
new file mode 100644
index 000000000..a3f0ae115
--- /dev/null
+++ b/3647/CH6/EX6.13/ex6_13.sce
@@ -0,0 +1,26 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+clc
+//initialisation of variables
+clear
+p=14.7//lbf/in^2
+w=15000//lbf/in^2
+p1=190//lbf/in^2
+q=0.35//percent
+q1=0.75//percent
+w1=2//ft
+q2=36//tonf/in^2
+f=6//in
+r1=3/8//in
+p2=4//in
+h=2240//in
+//CALCULATIONS
+A=w*q//lbf/in^2
+E=w*q1//lbf/in^2
+M1=(p2*A*(1/2)/(p1-p))//in
+M2=(w1*E*(1/2)/(p1-p))//in
+M3=p2*r1*((q2*h)/f)/(w1*12)//lbf/in^2 gauge
+//RESULTS
+printf('the Maximum possible diameter of cylinder =% f in',M2)
+printf('the Maximum allowable pressure=% f lbf/in^2 gauge',M3)