summaryrefslogtreecommitdiff
path: root/3636/CH2/EX2.10/Ex2_10.sce
blob: df8697a8ea5c0e2f1e7ab70f2fa7646cb99df0ad (plain)
1
2
3
4
5
6
7
8
9
10
clear;
clc;
Na=6.02*10^23 // Avagadro Number in mol^-1
AtWt=28.09 //in g/mole
Density=5*10^22 //in atoms/cm^-3

//Calculation
DensityPerUnitVolume=(Density*AtWt)/(Na)

mprintf("Density per unit volume= %1.2f g cm^-3",DensityPerUnitVolume)