summaryrefslogtreecommitdiff
path: root/1226/CH17/EX17.3/EX17_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1226/CH17/EX17.3/EX17_3.sce')
-rwxr-xr-x1226/CH17/EX17.3/EX17_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1226/CH17/EX17.3/EX17_3.sce b/1226/CH17/EX17.3/EX17_3.sce
new file mode 100755
index 000000000..2c6567faa
--- /dev/null
+++ b/1226/CH17/EX17.3/EX17_3.sce
@@ -0,0 +1,10 @@
+clc;funcprot(0);//EXAMPLE 17.3
+// Initialisation of Variables
+Db=0.6;.....................//Diameter of the brake wheel in m
+d=0.026;......................//Diameter of the rope in m
+W=200;.......................//Dead load on the brake in N
+S=30;......................//Spring balance reading in N
+N=450;......................//Engine speed in rpm
+//Calculations
+BP=((W-S)*%pi*(Db+d)*N)/(60*1000);...............//Brake Power in KW
+disp(BP,"Brake Power (in KW):")