diff options
Diffstat (limited to '2870/CH7/EX7.11/Ex7_11.sce')
-rwxr-xr-x | 2870/CH7/EX7.11/Ex7_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2870/CH7/EX7.11/Ex7_11.sce b/2870/CH7/EX7.11/Ex7_11.sce new file mode 100755 index 000000000..158b5cded --- /dev/null +++ b/2870/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,14 @@ +clc;clear;
+//Example 7.11
+
+//given data
+P1=14;
+T1=50+460;
+T2=320+460;
+
+//constants used
+k=1.667;
+
+//calculations
+P2=P1*(T2/T1)^(k/(k-1));
+disp(P2,'exit pressure in psia')
|