aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-11-20 16:26:10 +0100
committerThomas White <taw@physics.org>2009-11-20 16:26:10 +0100
commit9d1d72c1316e408223347d9b06dc7e4cdc0868ec (patch)
tree5ee3bf44cedf3fd2f6dc981f8cc4d5be2da47a90 /src
parentfb42533ca6f9077c6b1a03ad9cc76d73a53fb9f1 (diff)
32x32x32 unit cells
Diffstat (limited to 'src')
-rw-r--r--src/diffraction.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/diffraction.c b/src/diffraction.c
index 6bb48332..d1cc266c 100644
--- a/src/diffraction.c
+++ b/src/diffraction.c
@@ -44,9 +44,9 @@ static double lattice_factor(struct threevec q, double ax, double ay, double az,
{
struct threevec Udotq;
double f1, f2, f3;
- int na = 8;
- int nb = 8;
- int nc = 8;
+ int na = 32;
+ int nb = 32;
+ int nc = 32;
Udotq.u = (ax*q.u + ay*q.v + az*q.w)/2.0;
Udotq.v = (bx*q.u + by*q.v + bz*q.w)/2.0;