summaryrefslogtreecommitdiff
path: root/2417/CH9/EX9.10/Ex9_10.sce
blob: 778440a3ea0c8f9d5c1b5b532c60366eabf3589f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 9.10\n\n\n");
// Chapter 9 : Gas Power Cycles
// Problem 9.10  (page no. 470) 
// Solution

//For four cycle,six cylinder engine,
//Using the results of problem 9.5,
hp=100; //Horsepower //Unit:hp
L=4/12; //Unit:ft //stroke is 4 in.
A=(%pi/4)*(3)^2*6; //Cylinder bore is 3 in.
N=4000/2; //Power strokes per minute //2L engine //Unit:rpm
//hp=(pm*LA*N)/33000;
pm=(hp*33000)/(L*A*N); //The mean effective pressure //psia
printf("The mean effective pressure is %f psia",pm);