summaryrefslogtreecommitdiff
path: root/1364/CH9/EX9.7.1/9_7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1364/CH9/EX9.7.1/9_7_1.sce')
-rwxr-xr-x1364/CH9/EX9.7.1/9_7_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1364/CH9/EX9.7.1/9_7_1.sce b/1364/CH9/EX9.7.1/9_7_1.sce
new file mode 100755
index 000000000..8642624f7
--- /dev/null
+++ b/1364/CH9/EX9.7.1/9_7_1.sce
@@ -0,0 +1,16 @@
+clc
+//initialisation of variables
+r= 0.448
+R= 0.868
+r1= 0.152
+R1= 0.807
+//CALCULATIONS
+P= R^3/r^2
+U= R/r
+P1= R1^3/r1^2
+U1= R1/r1
+//RESULTS
+printf (' power ratio in case 1= %.2f ',P)
+printf (' \n velocity ratio in case 1= %.2f ',U)
+printf (' \n power ratio in case 2= %.2f ',P1)
+printf (' \n velocity ratio in case 2= %.1f ',U1)