aboutsummaryrefslogtreecommitdiff
path: root/src/sim-main.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-10-14 17:35:18 +0200
committerThomas White <taw@bitwiz.org.uk>2009-10-14 17:35:18 +0200
commit4e1e2ef4472e28a146e6c83d053f1fc4d2419f88 (patch)
treeb1702fc01bb3483bd566b0e9b38e84e376216462 /src/sim-main.c
parent58d51685fbaad1cdfce7fcbd15ab70456f9ef328 (diff)
Calculate reflections using reciprocal cell
Diffstat (limited to 'src/sim-main.c')
-rw-r--r--src/sim-main.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sim-main.c b/src/sim-main.c
index 38ad45bc..23ba3e99 100644
--- a/src/sim-main.c
+++ b/src/sim-main.c
@@ -61,20 +61,20 @@ int main(int argc, char *argv[])
image.tilt = 0.0;
image.omega = 0.0;
image.fmode = FORMULATION_CLEN;
- image.x_centre = 128;
- image.y_centre = 128;
- image.camera_len = 1.0; /* one metre */
- image.resolution = 5120;
- image.lambda = 0.6e-9;
+ image.x_centre = 255.5;
+ image.y_centre = 255.5;
+ image.camera_len = 0.2; /* 20 cm */
+ image.resolution = 5120; /* 512 pixels in 10 cm */
+ image.lambda = 0.2e-9; /* LCLS wavelength */
image.data = malloc(512*512*2);
image_add(list, &image);
- cell = cell_new_from_parameters(1.0,
- 1.0,
- 1.0,
+ cell = cell_new_from_parameters(28.10e-9,
+ 28.10e-9,
+ 16.52e-9,
deg2rad(90.0),
deg2rad(90.0),
- deg2rad(90.0));
+ deg2rad(120.0));
get_reflections(&image, cell);