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 /1364/CH9/EX9.7.1/9_7_1.sce | |
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 '1364/CH9/EX9.7.1/9_7_1.sce')
-rwxr-xr-x | 1364/CH9/EX9.7.1/9_7_1.sce | 16 |
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)
|