diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1226/CH17/EX17.10/EX17_10.sce | |
download | Scilab-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.10/EX17_10.sce')
-rwxr-xr-x | 1226/CH17/EX17.10/EX17_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1226/CH17/EX17.10/EX17_10.sce b/1226/CH17/EX17.10/EX17_10.sce new file mode 100755 index 000000000..e494833a4 --- /dev/null +++ b/1226/CH17/EX17.10/EX17_10.sce @@ -0,0 +1,16 @@ +clc;funcprot(0);//EXAMPLE 17.10
+// Initialisation of Variables
+Db=0.7;.............................//Diameter of brake pulley in m
+d=0.025;............................//Diameter of the rope in m
+W=50;...............................//Load on the tight side of the rope in kg
+S=50;...............................//Spring balance reading in N
+N=900;..............................//Engine rpm
+mf=4;...............................//Rate of fuel consumption in kg/h
+C=44000;............................//Calorific value of fuel in kJ/kg
+g=9.81;.............................//Acceleration due to gravity in m/s^2
+//Calculations
+BP=(((W*g)-S)*%pi*(Db+d)*N)/(60*1000);........................//Brake power in kW
+bsfc=mf/BP;...................................................//Brake specific fuel consumption in kJ/hW-h
+disp(bsfc,"Brake specific fuel consumption (in kJ/hW-h)")
+etathB=(BP*3600)/(mf*C);.............................................//Brake thermal efficiency
+disp(etathB*100,"Brake thermal efficiency:")
|