blob: 29c3e59d4010ffc6a99ff6cde7093fe34f7a2d79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
///Chapter No 7 Fluid Mechanics
//Example 7.11 Page No 121
//#Input data
clc;
clear;
Z=15; //Pressure due to column in m
S=0.85; //Oil of specific gravity
g=9.81; //Gravity
///Calculation
rho=S*10^3; //Density of oil in kg/m**3
P=rho*g*Z; //Pressure in N/m**2 or kPa
///Output
printf('Density of oil= % f kg/m^3 \n ',rho);
printf('Pressure= %f N/m**2 \n ',P);
|