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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
Probabilities module
====================
The probabilities module contains a classes that allow the calculation of
weigth and probability matrixes for mixed-layer minerals.
Theory
------
Mixed-layer probabilities
^^^^^^^^^^^^^^^^^^^^^^^^^
These probability classes use the Reichweite (= R) concept and
Markovian statistics to calculate how the layer stacking sequence is ordered (or
disordered).
The value for R denotes what number of previous layers (in a stack of layers)
still influence the type of the following component. With other words, for:
- R=0; the type of the next component does not depend on the previous components,
- R=1; the type of the next component depends on the type of the previous component,
- R=2; the type of the next component depends on the type of the previous 2 components,
- ...
We can describe the stacking sequence using two types of statistics: weight
fractions and probabilities. Some examples:
- the fraction of A type layers would be called :math:`W_A`
- the probability of finding an A type layer in a stack would be called :math:`P_A`
- the fraction of A type layers immediately followed by a B type layer would be called :math:`W_{AB}`
- the probability of finding an A type layer immediately followed by a B type layer would be called :math:`P_{AB}`
There exist a number of general relations between the weight fractions W and
probabilities P which are detailed below. They are valid regardless of the
value for R or the number of components G. Some of them are detailed below.
For a more complete explanation: see Drits & Tchoubar (1990).
For stacks composed of G types of layers, we can write (with :math:`N` the number of layers):
.. math::
:nowrap:
\begin{align*}
& \begin{aligned}
& W_{i} = \frac{N_{i}}{N_{max}} &\forall i \in \left[{1,2,\dots,G}\right] \\
& W_{ij} = \frac{N_{ij}}{N_{max}-1} &\forall i, j \in \left[{1,2,\dots,G}\right] \\
& W_{ijk} = \frac{N_{ijk}}{N_{max}-2} &\forall i, j, k \in \left[{1,2,\dots,G}\right] \\
& \text{etc.} \\
\end{aligned}
\quad \quad
\begin{aligned}
& W_{ij} = W_i \cdot P_{ij} \\
& W_{ijk} = W_{ij} \cdot P_{ijk} \\
& \text{etc.} \\
\end{aligned}
\quad \quad
\begin{aligned}
& \sum_{i=1}^{G}{W_i} = 1 \\
& \sum_{i=1}^{G}{\sum_{j=1}^{G}{W_{ij}}} = 1 \\
& \text{etc.} \\
\end{aligned}
\quad \quad
\begin{aligned}
& \sum_{j=1}^{G}{P_{ij}} = 1 \\
& \sum_{k=1}^{G}{P_{ijk}} = 1 \\
& \text{etc.} \\
\end{aligned} \\
\end{align*}
Because of these relationships it is not neccesary to always give all of the
possible weight fractions and probability combinations. Each class contains
a description of the number of 'independent' variables required for a certain
combination of R ang G. It also details which ones were chosen and how the
others are calculated from them.
More often than not, ratios of several weight fractions are used,
as they make the calculations somehwat easier.
On the other hand, the actual meaning of these fractions is a little
harder to grasp at first.
Class functionality
^^^^^^^^^^^^^^^^^^^
The classes all inherit from an 'abstract' base class which provides a number
of common functions. One of the 'handy' features are its indexable properties
`mW` and `mP`. These allow you to quickly get or set an element in one of the
matrixes::
>>> from pyxrd.probabilities.models import R1G3Model
>>> prob = R1G3Model()
>>> prob.mW[0] = 0.75 # set W1
>>> print prob.mW[0]
0.75
>>> prob.mW[0,1] = 0.5 # set W12
>>> print prob.mW[0,1]
0.5
Note however, that doing so might produce invalid matrices and produce strange
X-ray diffraction patterns (or none at all). It is therefore recommended to use
the attributes of the selected 'independent' parameters (see previous section)
as setting these will trigger a complete re-calculation of the matrices.
If however, you do want to create a matrix manually, you can do so by setting
all the highest-level elements, which are:
- for an R0 class only the Wi values
- for an R1 class the Wi and Pij values
- for an R2 class the Wij and Pijk values
- for an R3 class the Wijk and Pijkl values
After this you can call the `solve` and `validate` methods, which will calculate
the other values (e.g. for an R2 it will calculate Wi, Wijk and Pij values).
An example::
>>> from pyxrd.probabilities.models import R1G2Model
>>> prob = R1G2Model()
>>> prob.mW[0] = 0.75 # set W1
>>> prob.mW[1] = 0.25 # set W2 (needs to be 1 - W1 !)
>>> prob.mP[1,1] = 0.3 # set P22
>>> prob.mP[1,0] = 0.7 # set P21 (needs to be 1 - P22 !)
>>> prob.mP[0,1] = 0.7 / 3.0 # set P12 (needs to be P21 * W2 / W1!)
>>> prob.mP[0,0] = 2.3 / 3.0 # set P11 (needs to be 1 - P12 !)
>>> prob.solve()
>>> prob.validate()
>>> print prob.get_distribution_matrix()
[[ 0.75 0. ]
[ 0. 0.25]]
>>> print prob.get_probability_matrix()
[[ 0.76666667 0.23333333]
[ 0.7 0.3 ]]
Note that at the end we print the validation matrixes to be sure that we did a
good job: if all is valid, we should see only "True" values. For more details
on what elements produced an invalid results, you can look at the W_valid_mask
and P_valid_mask properties.
The exact same result could have been achieved using the independent parameter
properties::
>>> from pyxrd.probabilities.models import R1G2Model
>>> prob = R1G2Model()
>>> prob.W1 = 0.75
>>> prob.P11_or_P22 = 0.3
>>> print prob.get_distribution_matrix()
[[ 0.75 0. ]
[ 0. 0.25]]
>>> print prob.get_probability_matrix()
[[ 0.76666667 0.23333333]
[ 0.7 0.3 ]]
For more information see the
:class:`~pyxrd.probabilities.models.base_models._AbstractProbability` class
Models
------
Base Models
^^^^^^^^^^^
.. module:: pyxrd.probabilities.models.base_models
.. autoclass:: _AbstractProbability
:members:
R0 Models
^^^^^^^^^
R0 models have :math:`G - 1` independent parameters, :math:`G` being the number of components.
Partial weight fractions were chosen as independent parameters,
as this approach scales very well to a large number of components:
If we define a partial weight fraction as
:math:`F_i = \frac{W_i}{\sum_{j=i}^{G}{W_j}} \forall i \in \left[ {1,G} \right]`,
and keep in mind the general rule :math:`\sum_{i=1}^{G}{W_i} = 1`, we can
calculate all the weight fractions from these partial weight fractions progressively, since:
- :math:`F_1` will acutally be equal to :math:`W_1`.
- the denominator of every fraction :math:`F_i` is equal to
:math:`1 - \sum_{j=1}^{i-1}{W_j}`, and you are able to calculate this:
- for :math:`F_2`, it would be :math:`1 - W_1`, and you know
:math:`W_1` from the first fracion
- for :math:`F_3` it would be :math:`1 - W_1 - W_2`, and you can get
:math:`W_1` and :math:`W_2` from the previous two fractions.
- once the weight fractions of the first :math:`G - 1` components are known,
then the weight fractions of the last component can be calculated
as :math:`W_g = 1 - \sum_{i=1}^{G}{W_i}`.
.. module:: pyxrd.probabilities.models.R0models
.. autoclass:: R0G1Model
:members:
.. autoclass:: R0G2Model
:members:
.. autoclass:: R0G3Model
:members:
.. autoclass:: R0G4Model
:members:
.. autoclass:: R0G5Model
:members:
.. autoclass:: R0G6Model
:members:
R1 Models
^^^^^^^^^
.. module:: pyxrd.probabilities.models.R1models
.. autoclass:: R1G2Model
:members:
.. autoclass:: R1G3Model
:members:
.. autoclass:: R1G4Model
:members:
R2 Models
^^^^^^^^^
.. module:: pyxrd.probabilities.models.R2models
.. autoclass:: R2G2Model
:members:
.. autoclass:: R2G3Model
:members:
R3 Models
^^^^^^^^^
.. module:: pyxrd.probabilities.models.R3models
.. autoclass:: R3G2Model
:members:
|