forked from refnx/refnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefcalc.h
98 lines (67 loc) · 3.4 KB
/
refcalc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
refcalc.h
*Calculates the specular (Neutron or X-ray) reflectivity from a stratified
series of layers.
The refnx code is distributed under the following license:
Copyright (c) 2015 A. R. J. Nelson, Australian Nuclear Science and Technology
Organisation
Permission to use and redistribute the source code or binary forms of this
software and its documentation, with or without modification is hereby
granted provided that the above notice of copyright, these terms of use,
and the disclaimer of warranty below appear in the source code and
documentation, and that none of the names of above institutions or
authors appear in advertising or endorsement of works derived from this
software without specific prior written permission from all parties.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THIS SOFTWARE.
*/
/*
abeles uses the Abeles matrix method to calculate specular
reflectivity.
parratt uses the Parratt recursion formula to calculate specular
reflectivity.
The system is assumed to consist of a series of uniformly dense layers
(slabs). The radiation is incident through the fronting medium, leaving
through the backing medium.
Parameters
----------
numcoefs - the number of parameters held in the coefP array. This should be
4 * N + 8 values long, were N is the number of layers.
coefP - an array holding the parameters. See below for a more detailed
description
npoints - the number of points in the yP and xP arrays
yP - this user supplied array is filled by the reflect function. It must be
npoints long
xP - array containing the Q (momentum transfer) points. It has units Å**-1.
The array is npoints long
Detailed description of the entries in coefP
--------------------------------------------
coefP[0] - the number of layers. Should be an integer.
4 * (int) coefP[0] + 8 == numcoefs
coefP[1] - scale factor. The calculated reflectivity is multiplied by this
value. i.e. yP = scale * ref + background
coefP[2] - fronting SLD, real part. (10**-6 Å**-2)
coefP[3] - fronting SLD, imaginary part. (10**-6 Å**-2)
coefP[4] - backing SLD, real part. (10**-6 Å**-2)
coefP[5] - backing SLD, imaginary part. (10**-6 Å**-2)
coefP[6] - background. A constant value added to all the reflectivity
points.
coefP[7] - roughness between backing medium and bottom most layer (Å). If
there are no layers, the roughness between the fronting and backing media.
coefP[4 * M + 8] - thickness of layer M, with M = 0, ... N - 1. (Å)
coefP[4 * M + 9] - SLD of layer M, real part (10**-6 Å**-2)
coefP[4 * M + 10] - SLD of layer M, imaginary part (10**-6 Å**-2)
coefP[4 * M + 11] - roughness between layer M - 1 / M (Å)
*/
#ifndef REFCALC_H
#define REFCALC_H
void abeles(int numcoefs, const double *coefP, int npoints, double *yP,
const double *xP);
void parratt(int numcoefs, const double *coefP, int npoints, double *yP,
const double *xP);
#endif