1 /* This file is part of the hkl library.
3 * The hkl library is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
8 * The hkl library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with the hkl library. If not, see <http://www.gnu.org/licenses/>.
16 * Copyright (C) 2003-2014 Synchrotron SOLEIL
17 * L'Orme des Merisiers Saint-Aubin
18 * BP 48 91192 GIF-sur-YVETTE CEDEX
20 * Authors: Picca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>
22 #include <gsl/gsl_errno.h> // for ::GSL_SUCCESS
23 #include <gsl/gsl_vector_double.h> // for gsl_vector
24 #include <gsl/gsl_sys.h> // for gsl_isnan
25 #include <stdio.h> // for fprintf, stderr
26 #include <stdlib.h> // for NULL, exit, free
27 #include <sys/types.h> // for uint
28 #include "hkl-detector-private.h" // for hkl_detector_compute_kf
29 #include "hkl-geometry-private.h" // for HklHolder, _HklGeometry, etc
30 #include "hkl-macros-private.h" // for HKL_MALLOC, hkl_assert, etc
31 #include "hkl-matrix-private.h" // for hkl_matrix_solve, etc
32 #include "hkl-parameter-private.h"
33 #include "hkl-pseudoaxis-auto-private.h" // for HklModeAutoInfo, etc
34 #include "hkl-pseudoaxis-common-psi-private.h" // for HklEnginePsi, etc
35 #include "hkl-pseudoaxis-private.h" // for _HklEngine, HklEngineInfo, etc
36 #include "hkl-quaternion-private.h" // for hkl_quaternion_to_matrix
37 #include "hkl-sample-private.h" // for _HklSample
38 #include "hkl-source-private.h" // for hkl_source_compute_ki
39 #include "hkl-vector-private.h" // for HklVector, etc
40 #include "hkl.h" // for HklEngine, HklGeometry, etc
41 #include "hkl/ccan/array_size/array_size.h" // for ARRAY_SIZE
42 #include "hkl/ccan/container_of/container_of.h" // for container_of
43 #include "hkl/ccan/darray/darray.h" // for darray_item
45 #define HKL_MODE_PSI_ERROR hkl_mode_psi_error_quark ()
47 static GQuark
hkl_mode_psi_error_quark (void)
49 return g_quark_from_static_string ("hkl-mode-psi-error-quark");
53 HKL_MODE_PSI_ERROR_INIT
, /* can not init the engine */
54 HKL_MODE_PSI_ERROR_GET
, /* can not get the engine */
57 /***********************/
58 /* numerical functions */
59 /***********************/
61 int _psi_func(const gsl_vector
*x
, void *params
, gsl_vector
*f
)
64 HklVector dhkl0
, hkl1
;
65 HklVector ki
, kf
, Q
, n
;
67 HklEngine
*engine
= params
;
68 HklEnginePsi
*psi_engine
= container_of(engine
, HklEnginePsi
, engine
);
69 HklModePsi
*modepsi
= container_of(engine
->mode
, HklModePsi
, parent
);
70 HklHolder
*sample_holder
;
72 CHECK_NAN(x
->data
, x
->size
);
74 /* update the workspace from x; */
75 set_geometry_axes(engine
, x
->data
);
78 hkl_source_compute_ki(&engine
->geometry
->source
, &ki
);
79 hkl_detector_compute_kf(engine
->detector
, engine
->geometry
, &kf
);
81 hkl_vector_minus_vector(&Q
, &ki
);
82 if (hkl_vector_is_null(&Q
)){
89 /* for now the 0 holder is the sample holder. */
90 sample_holder
= darray_item(engine
->geometry
->holders
, 0);
91 hkl_quaternion_to_matrix(&sample_holder
->q
, &RUB
);
92 hkl_matrix_times_matrix(&RUB
, &engine
->sample
->UB
);
95 hkl_matrix_solve(&RUB
, &dhkl0
, &Q
);
96 hkl_vector_minus_vector(&dhkl0
, &modepsi
->hkl0
);
98 /* compute the intersection of the plan P(kf, ki) and PQ (normal Q) */
100 * now that dhkl0 have been computed we can use a
101 * normalized Q to compute n and psi
103 hkl_vector_normalize(&Q
);
105 hkl_vector_vectorial_product(&n
, &ki
);
106 hkl_vector_vectorial_product(&n
, &Q
);
108 /* compute hkl1 in the laboratory referentiel */
109 /* for now the 0 holder is the sample holder. */
110 for(unsigned int i
=0; i
<3; ++i
)
111 hkl1
.data
[i
] = darray_item(engine
->mode
->parameters
, i
)->_value
;
113 hkl_matrix_times_vector(&engine
->sample
->UB
, &hkl1
);
114 hkl_vector_rotated_quaternion(&hkl1
, &sample_holder
->q
);
116 /* project hkl1 on the plan of normal Q */
117 hkl_vector_project_on_plan(&hkl1
, &Q
);
118 if (hkl_vector_is_null(&hkl1
)){
119 /* hkl1 colinear with Q */
120 f
->data
[0] = dhkl0
.data
[0];
121 f
->data
[1] = dhkl0
.data
[1];
122 f
->data
[2] = dhkl0
.data
[2];
125 f
->data
[0] = dhkl0
.data
[0];
126 f
->data
[1] = dhkl0
.data
[1];
127 f
->data
[2] = dhkl0
.data
[2];
128 f
->data
[3] = psi_engine
->psi
->_value
- hkl_vector_oriented_angle(&n
, &hkl1
, &Q
);
134 static int hkl_mode_initialized_set_psi_real(HklMode
*self
,
136 HklGeometry
*geometry
,
137 HklDetector
*detector
,
144 HklModePsi
*psi_mode
= container_of(self
, HklModePsi
, parent
);
145 HklHolder
*sample_holder
;
147 hkl_error (error
== NULL
|| *error
== NULL
);
150 /* update the geometry internals */
151 hkl_geometry_update(geometry
);
154 /* for now the 0 holder is the sample holder. */
155 sample_holder
= darray_item(geometry
->holders
, 0);
156 hkl_quaternion_to_matrix(&sample_holder
->q
, &RUB
);
157 hkl_matrix_times_matrix(&RUB
, &sample
->UB
);
160 hkl_source_compute_ki(&geometry
->source
, &ki
);
161 hkl_detector_compute_kf(detector
, geometry
, &psi_mode
->Q0
);
162 hkl_vector_minus_vector(&psi_mode
->Q0
, &ki
);
163 if (hkl_vector_is_null(&psi_mode
->Q0
)){
166 HKL_MODE_PSI_ERROR_INIT
,
167 "can not initialize the \"%s\" engine when hkl is null",
172 hkl_matrix_solve(&RUB
, &psi_mode
->hkl0
, &psi_mode
->Q0
);
175 self
->initialized
= initialized
;
180 static int hkl_mode_get_psi_real(HklMode
*base
,
182 HklGeometry
*geometry
,
183 HklDetector
*detector
,
193 if (!base
|| !engine
|| !engine
->mode
|| !geometry
|| !detector
|| !sample
){
196 HKL_MODE_PSI_ERROR_GET
,
201 /* get kf, ki and Q */
202 hkl_source_compute_ki(&geometry
->source
, &ki
);
203 hkl_detector_compute_kf(detector
, geometry
, &kf
);
205 hkl_vector_minus_vector(&Q
, &ki
);
206 if (hkl_vector_is_null(&Q
)){
209 HKL_MODE_PSI_ERROR_GET
,
210 "can not compute psi when hkl is null (kf == ki)");
213 /* needed for a problem of precision */
214 hkl_vector_normalize(&Q
);
216 /* compute the intersection of the plan P(kf, ki) and PQ (normal Q) */
218 hkl_vector_vectorial_product(&n
, &ki
);
219 hkl_vector_vectorial_product(&n
, &Q
);
221 /* compute hkl1 in the laboratory referentiel */
222 /* the geometry was already updated in the detector compute kf */
223 /* for now the 0 holder is the sample holder. */
224 for(unsigned int i
=0; i
<3; ++i
)
225 hkl1
.data
[i
] = darray_item(base
->parameters
, i
)->_value
;
227 hkl_matrix_times_vector(&sample
->UB
, &hkl1
);
228 hkl_vector_rotated_quaternion(&hkl1
, &darray_item(geometry
->holders
, 0)->q
);
230 /* project hkl1 on the plan of normal Q */
231 hkl_vector_project_on_plan(&hkl1
, &Q
);
233 if (hkl_vector_is_null(&hkl1
)){
236 HKL_MODE_PSI_ERROR_GET
,
237 "can not compute psi when Q and the ref vector are colinear");
240 HklEnginePsi
*psi_engine
= container_of(engine
, HklEnginePsi
, engine
);
242 /* compute the angle beetween hkl1 and n */
243 psi_engine
->psi
->_value
= hkl_vector_oriented_angle(&n
, &hkl1
, &Q
);
250 HklMode
*hkl_mode_psi_new(const HklModeAutoInfo
*auto_info
)
252 static const HklModeOperations operations
= {
253 HKL_MODE_OPERATIONS_AUTO_DEFAULTS
,
254 .capabilities
= HKL_ENGINE_CAPABILITIES_READABLE
| HKL_ENGINE_CAPABILITIES_WRITABLE
| HKL_ENGINE_CAPABILITIES_INITIALIZABLE
,
255 .initialized_set
= hkl_mode_initialized_set_psi_real
,
256 .get
= hkl_mode_get_psi_real
,
260 if (darray_size(auto_info
->info
.axes_w
) != 4){
261 fprintf(stderr
, "This generic HklModePsi need exactly 4 axes");
265 self
= HKL_MALLOC(HklModePsi
);
267 /* the base constructor; */
268 hkl_mode_auto_init(&self
->parent
,
272 return &self
->parent
;
279 static void hkl_engine_psi_free_real(HklEngine
*base
)
281 HklEnginePsi
*self
=container_of(base
, HklEnginePsi
, engine
);
282 hkl_engine_release(&self
->engine
);
286 HklEngine
*hkl_engine_psi_new(void)
289 static const HklPseudoAxis psi
= {
290 .parameter
= { HKL_PARAMETER_DEFAULTS_ANGLE
, .name
= "psi",
291 .description
= "angle between the reference vector and the diffraction plan",
294 static const HklPseudoAxis
*pseudo_axes
[] = {&psi
};
295 static const HklEngineInfo info
= {
297 .pseudo_axes
= DARRAY(pseudo_axes
),
299 static const HklEngineOperations operations
= {
300 HKL_ENGINE_OPERATIONS_DEFAULTS
,
301 .free
=hkl_engine_psi_free_real
,
304 self
= HKL_MALLOC(HklEnginePsi
);
306 hkl_engine_init(&self
->engine
, &info
, &operations
);
308 self
->psi
= register_pseudo_axis(&self
->engine
, &psi
.parameter
);
310 return &self
->engine
;