blob: 2c9f83b64b6d9a0b0177b749066aa5d2023bf687 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 6_4
clc;clear;
// Given values
b=1;// The momentum-flux correction factor
m=10;//Mass flow rate at kg/s
V_1=20;// m/s
// Calculation
F_r=b*m*V_1;
printf("The force needed to prevent the plate from moving horizontally due to the water stream=%0.0f N\n",F_r);
|