summaryrefslogtreecommitdiff
path: root/1226/CH17/EX17.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1226/CH17/EX17.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1226/CH17/EX17.3')
-rwxr-xr-x1226/CH17/EX17.3/EX17_3.jpgbin0 -> 109604 bytes
-rwxr-xr-x1226/CH17/EX17.3/EX17_3.sce10
2 files changed, 10 insertions, 0 deletions
diff --git a/1226/CH17/EX17.3/EX17_3.jpg b/1226/CH17/EX17.3/EX17_3.jpg
new file mode 100755
index 000000000..bdb44ceb2
--- /dev/null
+++ b/1226/CH17/EX17.3/EX17_3.jpg
Binary files differ
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):")