summaryrefslogtreecommitdiff
path: root/2066/CH2/EX2.5/2_5.sce
blob: 879c47d3c51f3122574cd47ceb5a723697624f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clc
clear
//Initialization of variables
pb=28.5 //in mercury
d=13.6 //g/cc
gam=62.4
xm=10 //in
xw=2 //ft
//calculations
dp= xw*gam/144 - xm/12 *gam/144 + xm/12 *gam/144 *d
//results
printf("Pressure difference = %.2f psi",dp)
if dp>0 then
    printf("\n Pressure at A is greater than that at B")
elseif dp=0
    printf("\n Pressure at both A and B are equal")
else
    printf("\n Pressure at A is less than that at B")
end