blob: c07e8f12481491c1ab99fb89503eee7f179f4239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialisation of variables
p=38//cm^3/rev
Q=65//min
d=1800//rpm
p1=103//bars
h=1/1000//rev/min
//CALCULATIONS
Q1=p*h*d//min
Ev=Q/Q1*100//percent
Ta=(p*10^-6)*(p1*10^5)/(2*(%pi))//N.m
//RESULTS
printf('The volumetric efficiency and torque applied to the shaft is=% f N.m',Ta)
|