blob: a9ee159c5092f357c1851f1047999b5d6b3cf777 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 13.3//
l=0.154//nm //length of a single bond
n=750;// number of bonds
L=l*sqrt(2*n)
mprintf("L = %f nm",L)
a=109.5;//degree
b=2;//given
Le=2*n*l*sind(a/b)
mprintf("\nLe = %i nm",Le)
|