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 /278/CH5/EX5.8 | |
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 '278/CH5/EX5.8')
-rwxr-xr-x | 278/CH5/EX5.8/ex_5_8.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/278/CH5/EX5.8/ex_5_8.sce b/278/CH5/EX5.8/ex_5_8.sce new file mode 100755 index 000000000..2f4ecb552 --- /dev/null +++ b/278/CH5/EX5.8/ex_5_8.sce @@ -0,0 +1,14 @@ +//find width and depth of beam
+//refer fig 5.7
+clc
+W=400//N
+L=300//mm
+f=40//N/mm^2
+//h=2*b
+//Z=b*h^2/6=2b^3/3//mm^3
+M=W*L//N-mm
+//f=M/Z
+b=[M*1.5/(f)]^(1/3)//mm
+h=2*b//mm
+printf("the width of beam is ,%f mm\n",b)
+printf("the height of beam is,%f mm\n",h)
|