summaryrefslogtreecommitdiff
path: root/2021/CH18/EX18.15/EX18_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH18/EX18.15/EX18_15.sce')
-rwxr-xr-x2021/CH18/EX18.15/EX18_15.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/CH18/EX18.15/EX18_15.sce b/2021/CH18/EX18.15/EX18_15.sce
new file mode 100755
index 000000000..a7502d7e6
--- /dev/null
+++ b/2021/CH18/EX18.15/EX18_15.sce
@@ -0,0 +1,11 @@
+//Finding of Speed ,Power developed
+//Given
+P1=8000;
+N1=90;
+H1=25;
+H2=15;
+//To Find
+N2=N1*(sqrt(H2)/sqrt(H1));
+P2=(P1*(H2)^(3/2))/(H1)^(3/2);
+disp("Speed ="+string(N2)+" rpm");
+disp("Power Developed ="+string(P2)+" Kilo watts");