summaryrefslogtreecommitdiff
path: root/2021/CH15/EX15.1/EX15_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH15/EX15.1/EX15_1.sce')
-rwxr-xr-x2021/CH15/EX15.1/EX15_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2021/CH15/EX15.1/EX15_1.sce b/2021/CH15/EX15.1/EX15_1.sce
new file mode 100755
index 000000000..e09698926
--- /dev/null
+++ b/2021/CH15/EX15.1/EX15_1.sce
@@ -0,0 +1,17 @@
+//Finding of Velocities
+//Given
+T1=293;
+T2=293;
+P1=40;
+P2=35;
+R=287;
+A1=30*10^-4;
+A2=15*10^-4;
+Q=0.15;
+//To Find
+rho1=P1/(R*T1);
+V1=Q/(A1*rho1*10000);
+rho2=P2/(R*T2);
+V2=Q/(A2*rho2*10000);
+disp("Velocity at Section-1 ="+string(V1)+" m/sec");
+disp("Velocity at Section-2 ="+string(V2)+" m/sec");