blob: 65377ab68cece0c5e5e8c582c2ee6d8158958779 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Chapter 7: Solid State
//Problem: 4
clc;
//Declaration of Variables
r_Na = 0.98 * 10 ** - 10 //in m
r_Cl = 1.81 * 10 ** - 10 //in m
// Solution
rr = r_Na / r_Cl
mprintf("When the radius ration is :%.2f, the coordination number is 6.",rr)
|