diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH15/EX15.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2021/CH15/EX15.1')
-rwxr-xr-x | 2021/CH15/EX15.1/EX15_1.pdf | bin | 0 -> 19323 bytes | |||
-rwxr-xr-x | 2021/CH15/EX15.1/EX15_1.sce | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/2021/CH15/EX15.1/EX15_1.pdf b/2021/CH15/EX15.1/EX15_1.pdf Binary files differnew file mode 100755 index 000000000..33b273b6b --- /dev/null +++ b/2021/CH15/EX15.1/EX15_1.pdf 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");
|