summaryrefslogtreecommitdiff
path: root/1427/CH25/EX25.10/25_10.sce
blob: f20fbc01d582f10f000b0db3284ec8cada1487d0 (plain)
1
2
3
4
5
6
7
8
//ques-25.10
//Calculating temperatures required for Carbon dioxide
clc
C=900;//velocity (in m/s)
M=44;//molar mass of CO2 (in g/mol)
T1=(C^2*%pi*M/1000)/(8*8.314);//Cavg
T2=(C^2*M/1000)/(2*8.314);//Cmp
printf("The required temperatures are %d K and %d K.",T1,T2);