blob: 0ae2c41e364b17615ee1cb8161dc736f6401d455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear
//
//
//
//Variable declaration
a=1; //assume
n=2; //number of atoms
//Calculations
r=a*sqrt(3)/4; //radius of atom
V=4*%pi*r^3/3; //volume
f=n*V*100/a^3; //packing fraction
//Result
printf("\n packing fraction is %0.0f percentage",f)
|