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 --- 2021/CH3/EX3.5/EX3_5.sce | 19 +++++++++++++++++++ 2021/CH3/EX3.5/Ex3_5.pdf | Bin 0 -> 10994 bytes 2 files changed, 19 insertions(+) create mode 100755 2021/CH3/EX3.5/EX3_5.sce create mode 100755 2021/CH3/EX3.5/Ex3_5.pdf (limited to '2021/CH3/EX3.5') diff --git a/2021/CH3/EX3.5/EX3_5.sce b/2021/CH3/EX3.5/EX3_5.sce new file mode 100755 index 000000000..cdbd61484 --- /dev/null +++ b/2021/CH3/EX3.5/EX3_5.sce @@ -0,0 +1,19 @@ +//Finding of Total Pressure , Depth of pressure +//Given +T=4; +rho=1000; +g=9.81; +l=2; +b=1/2; +y1=2; +y2=1/3; +//To Find +A=(6/2)*1; +A1=(l*b); +A2=l*5; +y3=((A1*y1)+(2*A2*y2))/(A1+2*A2); +P=rho*g*A*y3;disp(y3); +Ig=(l^2+(4*l*T)+T^2)/(36*(l+T)); +Ycp=(Ig/(A*y3))+y3; +disp("P= "+string(P)+" Newtons"); +disp("Ycp ="+string(Ycp)+" meter"); diff --git a/2021/CH3/EX3.5/Ex3_5.pdf b/2021/CH3/EX3.5/Ex3_5.pdf new file mode 100755 index 000000000..5d5614012 Binary files /dev/null and b/2021/CH3/EX3.5/Ex3_5.pdf differ -- cgit