diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH8/EX8.7 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2 Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip |
Diffstat (limited to '3864/CH8/EX8.7')
-rw-r--r-- | 3864/CH8/EX8.7/Ex8_7.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/3864/CH8/EX8.7/Ex8_7.sce b/3864/CH8/EX8.7/Ex8_7.sce new file mode 100644 index 000000000..134c16ad3 --- /dev/null +++ b/3864/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,30 @@ +clear +// +// + +//Initilization of Variables + +d=750 //mm //Diameter of shell +t=8 //mm //THickness +p=2.5 //N/mm**2 +E=2*10**5 //N/mm**2 +mu=0.25 //Poissons ratio + +//Calculations + +//Hoop stress +f1=p*d*(4*t)**-1 //N/mm**2 +f2=p*d*(4*t)**-1 //N/mm**2 + +//Change in Diameter +dell_d=d*p*d*(1-mu)*(4*t*E)**-1 //mm + +//Change in Volume +dell_V=3*p*d*(1-mu)*(4*t*E)**-1*%pi*6**-1*d**3 + +//Answer for Change in diameter is incorrect in book + +//Result +printf("\n Stress introduced is %0.2f N/mm**2",f1) +printf("\n Change in Diameter is %0.2f N/mm**2",dell_d) +printf("\n Change in Volume is %0.2f mm**3",dell_V) |