summaryrefslogtreecommitdiff
path: root/2132/CH4/EX4.2/Example4_2.sce
blob: 56b3bd276b528fcd9614f7e22daad3405810ed2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example 4.2
clc;
clear;
close;
format('v',9);
//Given data :
w=1000;//kg/m^3
h=50/1000;//m
p=w*h;//kg/m^2
p=p*9.81;//N/m^2 or Pa
disp(p,"Pressure Intensity in Pa : ");
alfa=30;//degree
h=50;//mm
l=h/sind(alfa);//mm
disp(l,"Reading in tube in mm : ");