summaryrefslogtreecommitdiff
path: root/3523/CH3/EX3.7.5/Ex3_5.sce
blob: c2e6edcd1001e4da6c17d7093186864c4b442d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Example 6// Ch 3
clc;
clear;
close;
// given data
m = 1;//in kg
M=2.016;//molecular weight of helium
k = 8314// gas constant in J/kg.mol.K
p = 1.01*10^5;//1 atm=1.01*10^5 N/m2
T = 273;//in kelvin
G = m*k*T/(M*p);//volume of 1kg of helium in m^3
printf("volume of 1kg of helium is %f m^3",G)