summaryrefslogtreecommitdiff
path: root/3751/CH2/EX2.30/Ex2_30.sce
blob: 6c9f7983933aa7bd8d86ab6c0578de1aade76d0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Fluid system - By - Shiv Kumar
//Chapter 2 - Impact of Jet
//Example 2.30
     clc
     clear
     
//Given Data:-
        V=40;        //Absolute Velocity of Jet, m/s
        a=0.04;       //Cross-sectional area of Jet, m^2
        u=40;          //Speed of boat, km/hr

//Data Used:-
        rho=1000;      //Density of water, kg/m^3

//Computations:-
        u=u*1000/3600;         //m/s
        F=rho*a*(V+u)*V;          //N
        eta=2*u/(V+2*u)*100;          //in Percentage

//Results:-
     printf("(a)Propelling Force, F=%.f N \n", F)     //The answer vary due to round off error
     printf("(b)Efficiency of propulsion, eta=%.2f percent", eta)