blob: dafec357c49decdecc4718b90a6ab51a98b74603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Chapter 5 additional Example 1
//==============================================================================
clc;
clear;
// input data
// Copper has FCC structure
a = 3.6; // lattice parameter of copper in Å
// Calculations
r = a*sqrt(2)/4; // atomic radius of copper
// Output
mprintf('Atomic Radius of copper = %3.3f Å',r);
//==============================================================================
|