From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1364/CH9/EX9.7.1/9_7_1.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 1364/CH9/EX9.7.1/9_7_1.sce (limited to '1364/CH9/EX9.7.1/9_7_1.sce') 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) -- cgit