summaryrefslogtreecommitdiff
path: root/2657/CH1/EX1.2/Ex1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2657/CH1/EX1.2/Ex1_2.sce')
-rwxr-xr-x2657/CH1/EX1.2/Ex1_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2657/CH1/EX1.2/Ex1_2.sce b/2657/CH1/EX1.2/Ex1_2.sce
new file mode 100755
index 000000000..6ed257156
--- /dev/null
+++ b/2657/CH1/EX1.2/Ex1_2.sce
@@ -0,0 +1,12 @@
+//Calculation of brake power and friction power
+clc,clear
+//Given:
+ip=10 //Indicated power in kW
+eta_m=80 //Mechanical efficiency in percent
+//Solution:
+//Since, eta_m = bp/ip
+bp=(eta_m/100)*ip //Brake power in kW
+fp=ip-bp //Friction power in kW
+//Results:
+printf("\n The brake power delivered, bp = %d kW\n",bp)
+printf(" The friction power, fp = %d kW\n\n",fp)