diff options
Diffstat (limited to '896/CH2/EX2.10/10.sce')
-rwxr-xr-x | 896/CH2/EX2.10/10.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/896/CH2/EX2.10/10.sce b/896/CH2/EX2.10/10.sce new file mode 100755 index 000000000..9a9073ab3 --- /dev/null +++ b/896/CH2/EX2.10/10.sce @@ -0,0 +1,10 @@ +clc
+//calc thickness of a storage tank
+p_working=250;//lbf/in^2
+//diameter of the cylinder = 10ft = 120in
+d=120;//in
+sigma_tensile=20000;//lbf/in^2
+t=p_working*d/sigma_tensile/2;//in
+disp("Thichness of the storage tank is")
+disp(t)
+disp("in")
\ No newline at end of file |