summaryrefslogtreecommitdiff
path: root/278/CH5/EX5.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /278/CH5/EX5.8
downloadScilab-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-x278/CH5/EX5.8/ex_5_8.sce14
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)