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 /2732/CH7/EX7.13/Ex7_13.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 '2732/CH7/EX7.13/Ex7_13.sce')
-rwxr-xr-x | 2732/CH7/EX7.13/Ex7_13.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2732/CH7/EX7.13/Ex7_13.sce b/2732/CH7/EX7.13/Ex7_13.sce new file mode 100755 index 000000000..2df7eecc2 --- /dev/null +++ b/2732/CH7/EX7.13/Ex7_13.sce @@ -0,0 +1,18 @@ +clc
+//initialization of variables
+clear
+p=6 //mm
+Ixx=2375 //cm^4
+Es=2*10^6 //kg/cm^2
+EAl=0.667*10^6 //kg/cm^2
+d1=10.6 //cm
+d2=10 //cm
+// calculations
+I1=2*(0+p/10*10*10.3^2)
+I2=Ixx*EAl/Es
+I=I1+I2
+n=I/I2
+// results
+printf('stiffness ratio = %.2f ',n)
+n1=Es*d1/(d2*EAl)
+printf('\n Stress ration = %.2f ',n1)
|