diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2744/CH10/EX10.4/Ex10_4.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2744/CH10/EX10.4/Ex10_4.sce')
-rwxr-xr-x | 2744/CH10/EX10.4/Ex10_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2744/CH10/EX10.4/Ex10_4.sce b/2744/CH10/EX10.4/Ex10_4.sce new file mode 100755 index 000000000..98bdd536a --- /dev/null +++ b/2744/CH10/EX10.4/Ex10_4.sce @@ -0,0 +1,14 @@ +clear;
+clc;
+d = 78;// inches
+t = 3/4;// inches
+n1 = 70/100;// efficiency of the longitudinal riveted joint
+f = 6;// tons/in^2
+n2 = 60/100;// efficiency of the circumferential riveted joint
+p = f*2240/(d/(2*t*n1));//lb/in^2
+p = round(p-1);
+f1 = p*d/(2*t);// lb/in^2
+f2 = p*d/(4*t*n2);// lb/in^2
+printf('The permissible steam pressure, p = %d lb/in^2',p);
+printf('\n The circumferential stress, f1 = %d lb/in^2 = %.2f tons/in^2',f1,f1/2240);
+printf('\n The longitudinal stress, f2 = %d lb/in^2 = %.2f tons/in^2',f2,f2/2240);
|