summaryrefslogtreecommitdiff
path: root/539/CH14/EX14.2.a/Example_14_2a.sce
blob: d214aea7a3f0647bbf317ea24267a1aa436f0ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//Computations of the Density

clear;
clc;

printf("\tExample 14.2\n");

printf("\n\tPart A");
Ac=12.01;  //in g/mol  Molecular weight of Carbon
Ah=1.008;  //in g/mol  molecular weight of hydrogen
a=7.41*10^-8;  //in cm
b=4.94*10^-8;  //in cm
c=2.55*10^-8;  //in cm
Na=6.023*10^23;

Vc=a*b*c;
n=2;
A=(2*Ac)+(4*Ah);

density_c=n*A/(Vc*Na);

printf("\nDensity is : %f g/cm^3\n",density_c);

//End