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.4/EX3_4.sce | 15 +++++++++++++++ 2021/CH3/EX3.4/Ex3_4.pdf | Bin 0 -> 11114 bytes 2 files changed, 15 insertions(+) create mode 100755 2021/CH3/EX3.4/EX3_4.sce create mode 100755 2021/CH3/EX3.4/Ex3_4.pdf (limited to '2021/CH3/EX3.4') diff --git a/2021/CH3/EX3.4/EX3_4.sce b/2021/CH3/EX3.4/EX3_4.sce new file mode 100755 index 000000000..e36e5802e --- /dev/null +++ b/2021/CH3/EX3.4/EX3_4.sce @@ -0,0 +1,15 @@ +//Finding of Total Pressure , Depth of pressure +//Given +b=5; +h=5; +spgr=0.8; +rho=800; +g=9.81; +y1=(1+(5/3)); +//To Find +Ig=(b*h^3)/36; +Ay=(1/2)*b*h; +P=Ay*rho*g*y1; +Ycp=(Ig/(Ay*y1))+y1; +disp("P= "+string(P)+" Newtons"); +disp("Ycp ="+string(Ycp)+" meter"); diff --git a/2021/CH3/EX3.4/Ex3_4.pdf b/2021/CH3/EX3.4/Ex3_4.pdf new file mode 100755 index 000000000..0a04e0fd5 Binary files /dev/null and b/2021/CH3/EX3.4/Ex3_4.pdf differ -- cgit