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/CH17/EX17.11/EX17_11.pdf | Bin 0 -> 24351 bytes 2021/CH17/EX17.11/EX17_11.sce | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 2021/CH17/EX17.11/EX17_11.pdf create mode 100755 2021/CH17/EX17.11/EX17_11.sce (limited to '2021/CH17/EX17.11') diff --git a/2021/CH17/EX17.11/EX17_11.pdf b/2021/CH17/EX17.11/EX17_11.pdf new file mode 100755 index 000000000..3c665f161 Binary files /dev/null and b/2021/CH17/EX17.11/EX17_11.pdf differ diff --git a/2021/CH17/EX17.11/EX17_11.sce b/2021/CH17/EX17.11/EX17_11.sce new file mode 100755 index 000000000..a57589ca3 --- /dev/null +++ b/2021/CH17/EX17.11/EX17_11.sce @@ -0,0 +1,18 @@ +//Finding of Propelling Force,Work Done ,Efficiency +//Given +Cv=0.97; +g=9.81; +H=6; +rho=1000; +u=4; +d=0.15; +//To Find +V=Cv*sqrt(2*g*H); +A=(%pi/4)*d^2; +P=rho*A*(V+u)*V; +W=P*u; +E=(2*u*V)/(u+V)^2; +E1=E*100; +disp("Propelling Force ="+string(P)+" Newtons"); +disp("Work Done ="+string(W)+" N-m"); +disp("Efficiency ="+string(E1)+" Percentage"); -- cgit