From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3647/CH6/EX6.13/ex6_13.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 3647/CH6/EX6.13/ex6_13.sce (limited to '3647/CH6/EX6.13') 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) -- cgit