From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 278/CH5/EX5.8/ex_5_8.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 278/CH5/EX5.8/ex_5_8.sce (limited to '278/CH5/EX5.8') 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) -- cgit