summaryrefslogtreecommitdiff
path: root/2021/CH5/EX5.10/EX5_10.sce
blob: 9342c533ba7389e3f708c5fabb801c46a116099e (plain)
1
2
3
4
5
6
7
8
9
10
11
//Finding of convective acceleration
//Given
v1=2.5;
v2=16;
s=3.75;
//To Find
a=(v2-v1)/s;
a1=v1*a;
a2=v2*a;
disp("Acceleration at inlet="+string(a1)+" m/s^2");
disp("Acceleration at outlet="+string(a2)+" m/s^2");