diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /278/CH7/EX7.1 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '278/CH7/EX7.1')
-rwxr-xr-x | 278/CH7/EX7.1/ex_7_1.sce | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/278/CH7/EX7.1/ex_7_1.sce b/278/CH7/EX7.1/ex_7_1.sce index cafd83af4..9ac3e67fc 100755 --- a/278/CH7/EX7.1/ex_7_1.sce +++ b/278/CH7/EX7.1/ex_7_1.sce @@ -1,10 +1,10 @@ -d=1200
-p=1.75
-sigmat2=28
-sigmat1=42
-//when longitudinal stress does not exceed 28Mpa
-t2=(p*d)/(4*sigmat2)
-disp(t,"Minimum wall thickness in mm=")
-//when circumferential stress does not exceed 42MPa
-t1=(p*d)/(2*sigmat1)
-disp(t,"Minimum wall thickness in mm=")
\ No newline at end of file +d=1200 +p=1.75 +sigmat2=28 +sigmat1=42 +//when longitudinal stress does not exceed 28Mpa +t2=(p*d)/(4*sigmat2) +disp(t2,"Minimum wall thickness in mm=") +//when circumferential stress does not exceed 42MPa +t1=(p*d)/(2*sigmat1) +disp(t1,"Minimum wall thickness in mm=")
\ No newline at end of file |