blob: 79ae1c53fee712a37a822aa3ab4b2add3695a83a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation of variables
cv=0.1714//C.H.U
R=100.3//ft.lb
T=500//degree c
J=1400//in
Lam=R/J//C.H.U percent C
//CALCULATIONS
Cp=Lam+cv//C.H.U percent C
//RESULTS
printf('The specific heat at constant volume of a gaseous mixture is=% f C.H.U percent C',Cp)
|