1 | # -*- coding: utf-8 -*- |
---|
2 | #GSASIIobj - data objects for GSAS-II |
---|
3 | ########### SVN repository information ################### |
---|
4 | # $Date: 2017-03-30 01:36:43 +0000 (Thu, 30 Mar 2017) $ |
---|
5 | # $Author: toby $ |
---|
6 | # $Revision: 2765 $ |
---|
7 | # $URL: trunk/GSASIIobj.py $ |
---|
8 | # $Id: GSASIIobj.py 2765 2017-03-30 01:36:43Z toby $ |
---|
9 | ########### SVN repository information ################### |
---|
10 | |
---|
11 | ''' |
---|
12 | *GSASIIobj: Data objects* |
---|
13 | ========================= |
---|
14 | |
---|
15 | This module defines and/or documents the data structures used in GSAS-II, as well |
---|
16 | as provides misc. support routines. |
---|
17 | |
---|
18 | Constraints Tree Item |
---|
19 | ---------------------- |
---|
20 | |
---|
21 | .. _Constraints_table: |
---|
22 | |
---|
23 | .. index:: |
---|
24 | single: Constraints object description |
---|
25 | single: Data object descriptions; Constraints |
---|
26 | |
---|
27 | Constraints are stored in a dict, separated into groups. |
---|
28 | Note that parameter are named in the following pattern, |
---|
29 | p:h:<var>:n, where p is the phase number, h is the histogram number |
---|
30 | <var> is a variable name and n is the parameter number. |
---|
31 | If a parameter does not depend on a histogram or phase or is unnumbered, that |
---|
32 | number is omitted. |
---|
33 | Note that the contents of each dict item is a List where each element in the |
---|
34 | list is a :ref:`constraint definition objects <Constraint_definitions_table>`. |
---|
35 | The constraints in this form are converted in |
---|
36 | :func:`GSASIIstrIO.ProcessConstraints` to the form used in :mod:`GSASIImapvars` |
---|
37 | |
---|
38 | The keys in the Constraints dict are: |
---|
39 | |
---|
40 | .. tabularcolumns:: |l|p{4.5in}| |
---|
41 | |
---|
42 | ========== ==================================================== |
---|
43 | key explanation |
---|
44 | ========== ==================================================== |
---|
45 | Hist This specifies a list of constraints on |
---|
46 | histogram-related parameters, |
---|
47 | which will be of form :h:<var>:n. |
---|
48 | HAP This specifies a list of constraints on parameters |
---|
49 | that are defined for every histogram in each phase |
---|
50 | and are of form p:h:<var>:n. |
---|
51 | Phase This specifies a list of constraints on phase |
---|
52 | parameters, |
---|
53 | which will be of form p::<var>:n. |
---|
54 | Global This specifies a list of constraints on parameters |
---|
55 | that are not tied to a histogram or phase and |
---|
56 | are of form ::<var>:n |
---|
57 | ========== ==================================================== |
---|
58 | |
---|
59 | .. _Constraint_definitions_table: |
---|
60 | |
---|
61 | .. index:: |
---|
62 | single: Constraint definition object description |
---|
63 | single: Data object descriptions; Constraint Definition |
---|
64 | |
---|
65 | Each constraint is defined as an item in a list. Each constraint is of form:: |
---|
66 | |
---|
67 | [[<mult1>, <var1>], [<mult2>, <var2>],..., <fixedval>, <varyflag>, <constype>] |
---|
68 | |
---|
69 | Where the variable pair list item containing two values [<mult>, <var>], where: |
---|
70 | |
---|
71 | * <mult> is a multiplier for the constraint (float) |
---|
72 | * <var> a :class:`G2VarObj` object (previously a str variable name of form |
---|
73 | 'p:h:name[:at]') |
---|
74 | |
---|
75 | Note that the last three items in the list play a special role: |
---|
76 | |
---|
77 | * <fixedval> is the fixed value for a `constant equation` (``constype=c``) |
---|
78 | constraint or is None. For a `New variable` (``constype=f``) constraint, |
---|
79 | a variable name can be specified as a str (used for externally |
---|
80 | generated constraints) |
---|
81 | * <varyflag> is True or False for `New variable` (``constype=f``) constraints |
---|
82 | or is None. This will be implemented in the future to indicate if these variables |
---|
83 | should be refined. |
---|
84 | * <constype> is one of four letters, 'e', 'c', 'h', 'f' that determines the type of constraint: |
---|
85 | |
---|
86 | * 'e' defines a set of equivalent variables. Only the first variable is refined (if the |
---|
87 | appropriate refine flag is set) and and all other equivalent variables in the list |
---|
88 | are generated from that variable, using the appropriate multipliers. |
---|
89 | * 'c' defines a constraint equation of form, |
---|
90 | :math:`m_1 \\times var_1 + m_2 \\times var_2 + ... = c` |
---|
91 | * 'h' defines a variable to hold (not vary). Any variable on this list is not varied, |
---|
92 | even if its refinement flag is set. Only one [mult,var] pair is allowed in a hold |
---|
93 | constraint and the mult value is ignored. |
---|
94 | This is of particular value when needing to hold one or more variables where a |
---|
95 | single flag controls a set of variables such as, coordinates, |
---|
96 | the reciprocal metric tensor or anisotropic displacement parameter. |
---|
97 | * 'f' defines a new variable (function) according to relationship |
---|
98 | :math:`newvar = m_1 \\times var_1 + m_2 \\times var_2 + ...` |
---|
99 | |
---|
100 | Covariance Tree Item |
---|
101 | -------------------- |
---|
102 | |
---|
103 | .. _Covariance_table: |
---|
104 | |
---|
105 | .. index:: |
---|
106 | single: Covariance description |
---|
107 | single: Data object descriptions; Covariance |
---|
108 | |
---|
109 | The Covariance tree item has results from the last least-squares run. They |
---|
110 | are stored in a dict with these keys: |
---|
111 | |
---|
112 | .. tabularcolumns:: |l|l|p{4in}| |
---|
113 | |
---|
114 | ============= =============== ==================================================== |
---|
115 | key sub-key explanation |
---|
116 | ============= =============== ==================================================== |
---|
117 | newCellDict \ dict with lattice parameters computed by |
---|
118 | :func:`GSASIIstrMath.GetNewCellParms` (dict) |
---|
119 | title \ Name of gpx file(?) (str) |
---|
120 | variables \ Values for all N refined variables |
---|
121 | (list of float values, length N, |
---|
122 | ordered to match varyList) |
---|
123 | sig \ Uncertainty values for all N refined variables |
---|
124 | (list of float values, length N, |
---|
125 | ordered to match varyList) |
---|
126 | varyList \ List of directly refined variables |
---|
127 | (list of str values, length N) |
---|
128 | newAtomDict \ dict with atom position values computed in |
---|
129 | :func:`GSASIIstrMath.ApplyXYZshifts` (dict) |
---|
130 | Rvals \ R-factors, GOF, Marquardt value for last |
---|
131 | refinement cycle (dict) |
---|
132 | \ Nobs Number of observed data points (int) |
---|
133 | \ Rwp overall weighted profile R-factor (%, float) |
---|
134 | \ chisq sum[w*(Iobs-Icalc)**2] for all data |
---|
135 | note this is not the reduced chi squared (float) |
---|
136 | \ lamMax Marquardt value applied to Hessian diagonal |
---|
137 | (float) |
---|
138 | \ GOF The goodness-of-fit, aka square root of |
---|
139 | the reduced chi squared. (float) |
---|
140 | covMatrix \ The (NxN) covVariance matrix (np.array) |
---|
141 | ============= =============== ==================================================== |
---|
142 | |
---|
143 | Phase Tree Items |
---|
144 | ---------------- |
---|
145 | |
---|
146 | .. _Phase_table: |
---|
147 | |
---|
148 | .. index:: |
---|
149 | single: Phase object description |
---|
150 | single: Data object descriptions; Phase |
---|
151 | |
---|
152 | Phase information is stored in the GSAS-II data tree as children of the |
---|
153 | Phases item in a dict with keys: |
---|
154 | |
---|
155 | .. tabularcolumns:: |l|l|p{4in}| |
---|
156 | |
---|
157 | ========== =============== ==================================================== |
---|
158 | key sub-key explanation |
---|
159 | ========== =============== ==================================================== |
---|
160 | General \ Overall information for the phase (dict) |
---|
161 | \ AtomPtrs list of four locations to use to pull info |
---|
162 | from the atom records (list) |
---|
163 | \ F000X x-ray F(000) intensity (float) |
---|
164 | \ F000N neutron F(000) intensity (float) |
---|
165 | \ Mydir directory of current .gpx file (str) |
---|
166 | \ MCSA controls Monte Carlo-Simulated Annealing controls (dict) |
---|
167 | \ Cell List with 8 items: cell refinement flag (bool) |
---|
168 | a, b, c, (Angstrom, float) |
---|
169 | alpha, beta & gamma (degrees, float) |
---|
170 | volume (A^3, float) |
---|
171 | \ Type 'nuclear' or 'macromolecular' for now (str) |
---|
172 | \ Map dict of map parameters |
---|
173 | \ SH Texture dict of spherical harmonic preferred orientation |
---|
174 | parameters |
---|
175 | \ Isotope dict of isotopes for each atom type |
---|
176 | \ Isotopes dict of scattering lengths for each isotope |
---|
177 | combination for each element in phase |
---|
178 | \ Name phase name (str) |
---|
179 | \ SGData Space group details as a :ref:`space group (SGData) object <SGData_table>` |
---|
180 | as defined in :func:`GSASIIspc.SpcGroup`. |
---|
181 | \ Pawley neg wt Restraint value for negative Pawley intensities |
---|
182 | (float) |
---|
183 | \ Flip dict of Charge flip controls |
---|
184 | \ Data plot type data plot type ('Mustrain', 'Size' or |
---|
185 | 'Preferred orientation') for powder data (str) |
---|
186 | \ Mass Mass of unit cell contents in g/mol |
---|
187 | \ POhkl March-Dollase preferred orientation direction |
---|
188 | \ Z dict of atomic numbers for each atom type |
---|
189 | \ vdWRadii dict of van der Waals radii for each atom type |
---|
190 | \ Color Colors for atoms (list of (r,b,g) triplets) |
---|
191 | \ AtomTypes List of atom types |
---|
192 | \ AtomMass List of masses for atoms |
---|
193 | \ doPawley Flag for Pawley intensity extraction (bool) |
---|
194 | \ NoAtoms Number of atoms per unit cell of each type (dict) |
---|
195 | \ Pawley dmin maximum Q (as d-space) to use for Pawley |
---|
196 | extraction (float) |
---|
197 | \ BondRadii Default radius for each atom used to compute |
---|
198 | interatomic distances (list of floats) |
---|
199 | \ AngleRadii Default radius for each atom used to compute |
---|
200 | interatomic angles (list of floats) |
---|
201 | \ DisAglCtls Dict with distance/angle search controls, |
---|
202 | which has keys 'Name', 'AtomTypes', |
---|
203 | 'BondRadii', 'AngleRadii' which are as above |
---|
204 | except are possibly edited. Also contains |
---|
205 | 'Factors', which is a 2 element list with |
---|
206 | a multiplier for bond and angle search range |
---|
207 | [typically (0.85,0.85)]. |
---|
208 | ranId \ unique random number Id for phase (int) |
---|
209 | pId \ Phase Id number for current project (int). |
---|
210 | Atoms \ Atoms in phase as a list of lists. The outer list |
---|
211 | is for each atom, the inner list contains varying |
---|
212 | items depending on the type of phase, see |
---|
213 | the :ref:`Atom Records <Atoms_table>` description. |
---|
214 | (list of lists) |
---|
215 | Drawing \ Display parameters (dict) |
---|
216 | \ ballScale Size of spheres in ball-and-stick display (float) |
---|
217 | \ bondList dict with bonds |
---|
218 | \ contourLevel map contour level in e/A^3 (float) |
---|
219 | \ showABC Flag to show view point triplet (bool). True=show. |
---|
220 | \ viewDir cartesian viewing direction (np.array with three |
---|
221 | elements) |
---|
222 | \ Zclip clipping distance in A (float) |
---|
223 | \ backColor background for plot as and R,G,B triplet |
---|
224 | (default = [0, 0, 0], black). |
---|
225 | (list with three atoms) |
---|
226 | \ selectedAtoms List of selected atoms (list of int values) |
---|
227 | \ showRigidBodies Flag to highlight rigid body placement |
---|
228 | \ sizeH Size ratio for H atoms (float) |
---|
229 | \ bondRadius Size of binds in A (float) |
---|
230 | \ atomPtrs positions of x, type, site sym, ADP flag in Draw Atoms (list) |
---|
231 | \ viewPoint list of lists. First item in list is [x,y,z] |
---|
232 | in fractional coordinates for the center of |
---|
233 | the plot. Second item list of previous & current |
---|
234 | atom number viewed (may be [0,0]) |
---|
235 | \ showHydrogen Flag to control plotting of H atoms. |
---|
236 | \ unitCellBox Flag to control display of the unit cell. |
---|
237 | \ ellipseProb Probability limit for display of thermal |
---|
238 | ellipsoids in % (float). |
---|
239 | \ vdwScale Multiplier of van der Waals radius for |
---|
240 | display of vdW spheres. |
---|
241 | \ Atoms A list of lists with an entry for each atom |
---|
242 | that is plotted. |
---|
243 | \ Zstep Step to de/increase Z-clip (float) |
---|
244 | \ Quaternion Viewing quaternion (4 element np.array) |
---|
245 | \ radiusFactor Distance ratio for searching for bonds. ? Bonds |
---|
246 | are located that are within r(Ra+Rb) and (Ra+Rb)/r |
---|
247 | where Ra and Rb are the atomic radii. |
---|
248 | \ oldxy previous view point (list with two floats) |
---|
249 | \ cameraPos Viewing position in A for plot (float) |
---|
250 | \ depthFog True if use depthFog on plot - set currently as False (bool) |
---|
251 | RBModels \ Rigid body assignments (note Rigid body definitions |
---|
252 | are stored in their own main top-level tree entry.) |
---|
253 | Pawley ref \ Pawley reflections |
---|
254 | Histograms \ A dict of dicts. The key for the outer dict is |
---|
255 | the histograms tied to this phase. The inner |
---|
256 | dict contains the combined phase/histogram |
---|
257 | parameters for items such as scale factors, |
---|
258 | size and strain parameters. (dict) |
---|
259 | MCSA \ Monte-Carlo simulated annealing parameters (dict) |
---|
260 | \ |
---|
261 | ========== =============== ==================================================== |
---|
262 | |
---|
263 | Rigid Body Objects |
---|
264 | ------------------ |
---|
265 | |
---|
266 | .. _RBData_table: |
---|
267 | |
---|
268 | .. index:: |
---|
269 | single: Rigid Body Data description |
---|
270 | single: Data object descriptions; Rigid Body Data |
---|
271 | |
---|
272 | Rigid body descriptions are available for two types of rigid bodies: 'Vector' |
---|
273 | and 'Residue'. Vector rigid bodies are developed by a sequence of translations each |
---|
274 | with a refinable magnitude and Residue rigid bodies are described as Cartesian coordinates |
---|
275 | with defined refinable torsion angles. |
---|
276 | |
---|
277 | .. tabularcolumns:: |l|l|p{4in}| |
---|
278 | |
---|
279 | ========== =============== ==================================================== |
---|
280 | key sub-key explanation |
---|
281 | ========== =============== ==================================================== |
---|
282 | Vector RBId vector rigid bodies (dict of dict) |
---|
283 | \ AtInfo Drad, Color: atom drawing radius & color for each atom type (dict) |
---|
284 | \ RBname Name assigned by user to rigid body (str) |
---|
285 | \ VectMag vector magnitudes in A (list) |
---|
286 | \ rbXYZ Cartesian coordinates for Vector rigid body (list of 3 float) |
---|
287 | \ rbRef 3 assigned reference atom nos. in rigid body for origin |
---|
288 | definition, use center of atoms flag (list of 3 int & 1 bool) |
---|
289 | \ VectRef refinement flags for VectMag values (list of bool) |
---|
290 | \ rbTypes Atom types for each atom in rigid body (list of str) |
---|
291 | \ rbVect Cartesian vectors for each translation used to build rigid body (list of lists) |
---|
292 | \ useCount Number of times rigid body is used in any structure (int) |
---|
293 | Residue RBId residue rigid bodies (dict of dict) |
---|
294 | \ AtInfo Drad, Color: atom drawing radius & color for each atom type(dict) |
---|
295 | \ RBname Name assigned by user to rigid body (str) |
---|
296 | \ rbXYZ Cartesian coordinates for Residue rigid body (list of 3 float) |
---|
297 | \ rbTypes Atom types for each atom in rigid body (list of str) |
---|
298 | \ atNames Names of each atom in rigid body (e.g. C1,N2...) (list of str) |
---|
299 | \ rbRef 3 assigned reference atom nos. in rigid body for origin |
---|
300 | definition, use center of atoms flag (list of 3 int & 1 bool) |
---|
301 | \ rbSeq Orig,Piv,angle,Riding (list): definition of internal rigid body |
---|
302 | torsion; origin atom (int), pivot atom (int), torsion angle (float), |
---|
303 | riding atoms (list of int) |
---|
304 | \ SelSeq [int,int] used by SeqSizer to identify objects |
---|
305 | \ useCount Number of times rigid body is used in any structure (int) |
---|
306 | RBIds \ unique Ids generated upon creation of each rigid body (dict) |
---|
307 | \ Vector Ids for each Vector rigid body (list) |
---|
308 | \ Residue Ids for each Residue rigid body (list) |
---|
309 | ========== =============== ==================================================== |
---|
310 | |
---|
311 | Space Group Objects |
---|
312 | ------------------- |
---|
313 | |
---|
314 | .. _SGData_table: |
---|
315 | |
---|
316 | .. index:: |
---|
317 | single: Space Group Data description |
---|
318 | single: Data object descriptions; Space Group Data |
---|
319 | |
---|
320 | Space groups are interpreted by :func:`GSASIIspc.SpcGroup` |
---|
321 | and the information is placed in a SGdata object |
---|
322 | which is a dict with these keys: |
---|
323 | |
---|
324 | .. tabularcolumns:: |l|p{4.5in}| |
---|
325 | |
---|
326 | ========== ==================================================== |
---|
327 | key explanation |
---|
328 | ========== ==================================================== |
---|
329 | SpGrp space group symbol (str) |
---|
330 | Laue one of the following 14 Laue classes: |
---|
331 | -1, 2/m, mmm, 4/m, 4/mmm, 3R, |
---|
332 | 3mR, 3, 3m1, 31m, 6/m, 6/mmm, m3, m3m (str) |
---|
333 | SGInv True if centrosymmetric, False if not (bool) |
---|
334 | SGLatt Lattice centering type. Will be one of |
---|
335 | P, A, B, C, I, F, R (str) |
---|
336 | SGUniq unique axis if monoclinic. Will be |
---|
337 | a, b, or c for monoclinic space groups. |
---|
338 | Will be blank for non-monoclinic. (str) |
---|
339 | SGCen Symmetry cell centering vectors. A (n,3) np.array |
---|
340 | of centers. Will always have at least one row: |
---|
341 | ``np.array([[0, 0, 0]])`` |
---|
342 | SGOps symmetry operations as a list of form |
---|
343 | ``[[M1,T1], [M2,T2],...]`` |
---|
344 | where :math:`M_n` is a 3x3 np.array |
---|
345 | and :math:`T_n` is a length 3 np.array. |
---|
346 | Atom coordinates are transformed where the |
---|
347 | Asymmetric unit coordinates [X is (x,y,z)] |
---|
348 | are transformed using |
---|
349 | :math:`X^\prime = M_n*X+T_n` |
---|
350 | SGSys symmetry unit cell: type one of |
---|
351 | 'triclinic', 'monoclinic', 'orthorhombic', |
---|
352 | 'tetragonal', 'rhombohedral', 'trigonal', |
---|
353 | 'hexagonal', 'cubic' (str) |
---|
354 | SGPolax Axes for space group polarity. Will be one of |
---|
355 | '', 'x', 'y', 'x y', 'z', 'x z', 'y z', |
---|
356 | 'xyz'. In the case where axes are arbitrary |
---|
357 | '111' is used (P 1, and ?). |
---|
358 | ========== ==================================================== |
---|
359 | |
---|
360 | .. _SSGData_table: |
---|
361 | |
---|
362 | .. index:: |
---|
363 | single: Superspace Group Data description |
---|
364 | single: Data object descriptions; Superspace Group Data |
---|
365 | |
---|
366 | Superspace groups [3+1] are interpreted by :func:`GSASIIspc.SSpcGroup` |
---|
367 | and the information is placed in a SSGdata object |
---|
368 | which is a dict with these keys: |
---|
369 | |
---|
370 | .. tabularcolumns:: |l|p{4.5in}| |
---|
371 | |
---|
372 | ========== ==================================================== |
---|
373 | key explanation |
---|
374 | ========== ==================================================== |
---|
375 | SSpGrp superspace group symbol extension to space group |
---|
376 | symbol, accidental spaces removed |
---|
377 | SSGCen 4D cell centering vectors [0,0,0,0] at least |
---|
378 | SSGOps 4D symmetry operations as [M,T] so that M*x+T = x' |
---|
379 | ========== ==================================================== |
---|
380 | |
---|
381 | |
---|
382 | Atom Records |
---|
383 | ------------ |
---|
384 | |
---|
385 | .. _Atoms_table: |
---|
386 | |
---|
387 | .. index:: |
---|
388 | single: Atoms record description |
---|
389 | single: Data object descriptions; Atoms record |
---|
390 | |
---|
391 | |
---|
392 | If ``phasedict`` points to the phase information in the data tree, then |
---|
393 | atoms are contained in a list of atom records (list) in |
---|
394 | ``phasedict['Atoms']``. Also needed to read atom information |
---|
395 | are four pointers, ``cx,ct,cs,cia = phasedict['General']['atomPtrs']``, |
---|
396 | which define locations in the atom record, as shown below. Items shown are |
---|
397 | always present; additional ones for macromolecular phases are marked 'mm' |
---|
398 | |
---|
399 | .. tabularcolumns:: |l|p{4.5in}| |
---|
400 | |
---|
401 | ============== ==================================================== |
---|
402 | location explanation |
---|
403 | ============== ==================================================== |
---|
404 | ct-4 mm - residue number (str) |
---|
405 | ct-3 mm - residue name (e.g. ALA) (str) |
---|
406 | ct-2 mm - chain label (str) |
---|
407 | ct-1 atom label (str) |
---|
408 | ct atom type (str) |
---|
409 | ct+1 refinement flags; combination of 'F', 'X', 'U' (str) |
---|
410 | cx,cx+1,cx+2 the x,y and z coordinates (3 floats) |
---|
411 | cs site symmetry (str) |
---|
412 | cs+1 site multiplicity (int) |
---|
413 | cia ADP flag: Isotropic ('I') or Anisotropic ('A') |
---|
414 | cia+1 Uiso (float) |
---|
415 | cia+2...cia+7 U11, U22, U33, U12, U13, U23 (6 floats) |
---|
416 | atom[cia+8] unique atom identifier (int) |
---|
417 | |
---|
418 | ============== ==================================================== |
---|
419 | |
---|
420 | Drawing Atom Records |
---|
421 | -------------------- |
---|
422 | |
---|
423 | .. _Drawing_atoms_table: |
---|
424 | |
---|
425 | .. index:: |
---|
426 | single: Drawing atoms record description |
---|
427 | single: Data object descriptions; Drawing atoms record |
---|
428 | |
---|
429 | |
---|
430 | If ``phasedict`` points to the phase information in the data tree, then |
---|
431 | drawing atoms are contained in a list of drawing atom records (list) in |
---|
432 | ``phasedict['Drawing']['Atoms']``. Also needed to read atom information |
---|
433 | are four pointers, ``cx,ct,cs,ci = phasedict['Drawing']['AtomPtrs']``, |
---|
434 | which define locations in the atom record, as shown below. Items shown are |
---|
435 | always present; additional ones for macromolecular phases are marked 'mm' |
---|
436 | |
---|
437 | .. tabularcolumns:: |l|p{4.5in}| |
---|
438 | |
---|
439 | ============== ==================================================== |
---|
440 | location explanation |
---|
441 | ============== ==================================================== |
---|
442 | ct-4 mm - residue number (str) |
---|
443 | ct-3 mm - residue name (e.g. ALA) (str) |
---|
444 | ct-2 mm - chain label (str) |
---|
445 | ct-1 atom label (str) |
---|
446 | ct atom type (str) |
---|
447 | cx,cx+1,cx+2 the x,y and z coordinates (3 floats) |
---|
448 | cs-1 Sym Op symbol; sym. op number + unit cell id (e.g. '1,0,-1') (str) |
---|
449 | cs atom drawing style; e.g. 'balls & sticks' (str) |
---|
450 | cs+1 atom label style (e.g. 'name') (str) |
---|
451 | cs+2 atom color (RBG triplet) (int) |
---|
452 | cs+3 ADP flag: Isotropic ('I') or Anisotropic ('A') |
---|
453 | cs+4 Uiso (float) |
---|
454 | cs+5...cs+11 U11, U22, U33, U12, U13, U23 (6 floats) |
---|
455 | ci unique atom identifier; matches source atom Id in Atom Records (int) |
---|
456 | ============== ==================================================== |
---|
457 | |
---|
458 | Powder Diffraction Tree Items |
---|
459 | ----------------------------- |
---|
460 | |
---|
461 | .. _Powder_table: |
---|
462 | |
---|
463 | .. index:: |
---|
464 | single: Powder data object description |
---|
465 | single: Data object descriptions; Powder Data |
---|
466 | |
---|
467 | Every powder diffraction histogram is stored in the GSAS-II data tree |
---|
468 | with a top-level entry named beginning with the string "PWDR ". The |
---|
469 | diffraction data for that information are directly associated with |
---|
470 | that tree item and there are a series of children to that item. The |
---|
471 | routines :func:`GSASII.GSASII.GetUsedHistogramsAndPhasesfromTree` |
---|
472 | and :func:`GSASIIstrIO.GetUsedHistogramsAndPhases` will |
---|
473 | load this information into a dictionary where the child tree name is |
---|
474 | used as a key, and the information in the main entry is assigned |
---|
475 | a key of ``Data``, as outlined below. |
---|
476 | |
---|
477 | .. tabularcolumns:: |p{1in}|p{1in}|p{4in}| |
---|
478 | |
---|
479 | ====================== =============== ==================================================== |
---|
480 | key sub-key explanation |
---|
481 | ====================== =============== ==================================================== |
---|
482 | Comments \ Text strings extracted from the original powder |
---|
483 | data header. These cannot be changed by the user; |
---|
484 | it may be empty. |
---|
485 | Limits \ A list of two two element lists, as [[Ld,Hd],[L,H]] |
---|
486 | where L and Ld are the current and default lowest |
---|
487 | two-theta value to be used and |
---|
488 | where H and Hd are the current and default highest |
---|
489 | two-theta value to be used. |
---|
490 | Reflection Lists \ A dict with an entry for each phase in the |
---|
491 | histogram. The contents of each dict item |
---|
492 | is a dict containing reflections, as described in |
---|
493 | the :ref:`Powder Reflections <PowderRefl_table>` |
---|
494 | description. |
---|
495 | Instrument Parameters \ A list containing two dicts where the possible |
---|
496 | keys in each dict are listed below. The value |
---|
497 | for each item is a list containing three values: |
---|
498 | the initial value, the current value and a |
---|
499 | refinement flag which can have a value of |
---|
500 | True, False or 0 where 0 indicates a value that |
---|
501 | cannot be refined. The first and second |
---|
502 | values are floats unless otherwise noted. |
---|
503 | Items in the first dict are noted as [1] |
---|
504 | \ Lam Specifies a wavelength in Angstroms [1] |
---|
505 | \ Lam1 Specifies the primary wavelength in |
---|
506 | Angstrom, when an alpha1, alpha2 |
---|
507 | source is used [1] |
---|
508 | \ Lam2 Specifies the secondary wavelength in |
---|
509 | Angstrom, when an alpha1, alpha2 |
---|
510 | source is used [1] |
---|
511 | I(L2)/I(L1) Ratio of Lam2 to Lam1 [1] |
---|
512 | \ Type Histogram type (str) [1]: |
---|
513 | * 'PXC' for constant wavelength x-ray |
---|
514 | * 'PNC' for constant wavelength neutron |
---|
515 | * 'PNT' for time of flight neutron |
---|
516 | \ Zero Two-theta zero correction in *degrees* [1] |
---|
517 | \ Azimuth Azimuthal setting angle for data recorded |
---|
518 | with differing setting angles [1] |
---|
519 | \ U, V, W Cagliotti profile coefficients |
---|
520 | for Gaussian instrumental broadening, where the |
---|
521 | FWHM goes as |
---|
522 | :math:`U \\tan^2\\theta + V \\tan\\theta + W` [1] |
---|
523 | \ X, Y Cauchy (Lorentzian) instrumental broadening |
---|
524 | coefficients [1] |
---|
525 | \ SH/L Variant of the Finger-Cox-Jephcoat asymmetric |
---|
526 | peak broadening ratio. Note that this is the |
---|
527 | average between S/L and H/L where S is |
---|
528 | sample height, H is the slit height and |
---|
529 | L is the goniometer diameter. [1] |
---|
530 | \ Polariz. Polarization coefficient. [1] |
---|
531 | wtFactor \ A weighting factor to increase or decrease |
---|
532 | the leverage of data in the histogram (float). |
---|
533 | A value of 1.0 weights the data with their |
---|
534 | standard uncertainties and a larger value |
---|
535 | increases the weighting of the data (equivalent |
---|
536 | to decreasing the uncertainties). |
---|
537 | Sample Parameters \ Specifies a dict with parameters that describe how |
---|
538 | the data were collected, as listed |
---|
539 | below. Refinable parameters are a list containing |
---|
540 | a float and a bool, where the second value |
---|
541 | specifies if the value is refined, otherwise |
---|
542 | the value is a float unless otherwise noted. |
---|
543 | \ Scale The histogram scale factor (refinable) |
---|
544 | \ Absorption The sample absorption coefficient as |
---|
545 | :math:`\\mu r` where r is the radius |
---|
546 | (refinable). Only valid for Debye-Scherrer geometry. |
---|
547 | \ SurfaceRoughA Surface roughness parameter A as defined by |
---|
548 | Surotti,J. Appl. Cryst, 5,325-331, 1972.(refinable - |
---|
549 | only valid for Bragg-Brentano geometry) |
---|
550 | \ SurfaceRoughB Surface roughness parameter B (refinable - |
---|
551 | only valid for Bragg-Brentano geometry) |
---|
552 | \ DisplaceX, Sample displacement from goniometer center |
---|
553 | DisplaceY where Y is along the beam direction and |
---|
554 | X is perpendicular. Units are :math:`\\mu m` |
---|
555 | (refinable). |
---|
556 | \ Phi, Chi, Goniometer sample setting angles, in degrees. |
---|
557 | Omega |
---|
558 | \ Gonio. radius Radius of the diffractometer in mm |
---|
559 | \ InstrName A name for the instrument, used in preparing |
---|
560 | a CIF (str). |
---|
561 | \ Force, Variables that describe how the measurement |
---|
562 | Temperature, was performed. Not used directly in |
---|
563 | Humidity, any computations. |
---|
564 | Pressure, |
---|
565 | Voltage |
---|
566 | \ ranId The random-number Id for the histogram |
---|
567 | (same value as where top-level key is ranId) |
---|
568 | \ Type Type of diffraction data, may be 'Debye-Scherrer' |
---|
569 | or 'Bragg-Brentano' (str). |
---|
570 | \ Diffuse not in use? |
---|
571 | hId \ The number assigned to the histogram when |
---|
572 | the project is loaded or edited (can change) |
---|
573 | ranId \ A random number id for the histogram |
---|
574 | that does not change |
---|
575 | Background \ The background is stored as a list with where |
---|
576 | the first item in the list is list and the second |
---|
577 | item is a dict. The list contains the background |
---|
578 | function and its coefficients; the dict contains |
---|
579 | Debye diffuse terms and background peaks. |
---|
580 | (TODO: this needs to be expanded.) |
---|
581 | Data \ The data consist of a list of 6 np.arrays |
---|
582 | containing in order: |
---|
583 | |
---|
584 | 0. the x-postions (two-theta in degrees), |
---|
585 | 1. the intensity values (Yobs), |
---|
586 | 2. the weights for each Yobs value |
---|
587 | 3. the computed intensity values (Ycalc) |
---|
588 | 4. the background values |
---|
589 | 5. Yobs-Ycalc |
---|
590 | ====================== =============== ==================================================== |
---|
591 | |
---|
592 | Powder Reflection Data Structure |
---|
593 | -------------------------------- |
---|
594 | |
---|
595 | .. _PowderRefl_table: |
---|
596 | |
---|
597 | .. index:: |
---|
598 | single: Powder reflection object description |
---|
599 | single: Data object descriptions; Powder Reflections |
---|
600 | |
---|
601 | For every phase in a histogram, the ``Reflection Lists`` value is a dict |
---|
602 | one element of which is `'RefList'`, which is a np.array containing |
---|
603 | reflections. The columns in that array are documented below. |
---|
604 | |
---|
605 | ========== ==================================================== |
---|
606 | index explanation |
---|
607 | ========== ==================================================== |
---|
608 | 0,1,2 h,k,l (float) |
---|
609 | 3 multiplicity |
---|
610 | 4 d-space, Angstrom |
---|
611 | 5 pos, two-theta |
---|
612 | 6 sig, Gaussian width |
---|
613 | 7 gam, Lorenzian width |
---|
614 | 8 :math:`F_{obs}^2` |
---|
615 | 9 :math:`F_{calc}^2` |
---|
616 | 10 reflection phase, in degrees |
---|
617 | 11 intensity correction for reflection, this times |
---|
618 | :math:`F_{obs}^2` or :math:`F_{calc}^2` gives Iobs or Icalc |
---|
619 | ========== ==================================================== |
---|
620 | |
---|
621 | Single Crystal Tree Items |
---|
622 | ------------------------- |
---|
623 | |
---|
624 | .. _Xtal_table: |
---|
625 | |
---|
626 | .. index:: |
---|
627 | single: Single Crystal data object description |
---|
628 | single: Data object descriptions; Single crystal data |
---|
629 | |
---|
630 | Every single crystal diffraction histogram is stored in the GSAS-II data tree |
---|
631 | with a top-level entry named beginning with the string "HKLF ". The |
---|
632 | diffraction data for that information are directly associated with |
---|
633 | that tree item and there are a series of children to that item. The |
---|
634 | routines :func:`GSASII.GSASII.GetUsedHistogramsAndPhasesfromTree` |
---|
635 | and :func:`GSASIIstrIO.GetUsedHistogramsAndPhases` will |
---|
636 | load this information into a dictionary where the child tree name is |
---|
637 | used as a key, and the information in the main entry is assigned |
---|
638 | a key of ``Data``, as outlined below. |
---|
639 | |
---|
640 | .. tabularcolumns:: |l|l|p{4in}| |
---|
641 | |
---|
642 | ====================== =============== ==================================================== |
---|
643 | key sub-key explanation |
---|
644 | ====================== =============== ==================================================== |
---|
645 | Data \ A dict that contains the |
---|
646 | reflection table, |
---|
647 | as described in the |
---|
648 | :ref:`Single Crystal Reflections |
---|
649 | <XtalRefl_table>` |
---|
650 | description. |
---|
651 | |
---|
652 | Instrument Parameters \ A list containing two dicts where the possible |
---|
653 | keys in each dict are listed below. The value |
---|
654 | for most items is a list containing two values: |
---|
655 | the initial value, the current value. |
---|
656 | The first and second |
---|
657 | values are floats unless otherwise noted. |
---|
658 | \ Lam Specifies a wavelength in Angstroms (two floats) |
---|
659 | \ Type Histogram type (two str values): |
---|
660 | * 'SXC' for constant wavelength x-ray |
---|
661 | * 'SNC' for constant wavelength neutron |
---|
662 | * 'SNT' for time of flight neutron |
---|
663 | \ InstrName A name for the instrument, used in preparing |
---|
664 | a CIF (str). |
---|
665 | |
---|
666 | wtFactor \ A weighting factor to increase or decrease |
---|
667 | the leverage of data in the histogram (float). |
---|
668 | A value of 1.0 weights the data with their |
---|
669 | standard uncertainties and a larger value |
---|
670 | increases the weighting of the data (equivalent |
---|
671 | to decreasing the uncertainties). |
---|
672 | |
---|
673 | hId \ The number assigned to the histogram when |
---|
674 | the project is loaded or edited (can change) |
---|
675 | ranId \ A random number id for the histogram |
---|
676 | that does not change |
---|
677 | ====================== =============== ==================================================== |
---|
678 | |
---|
679 | Single Crystal Reflection Data Structure |
---|
680 | ---------------------------------------- |
---|
681 | |
---|
682 | .. _XtalRefl_table: |
---|
683 | |
---|
684 | .. index:: |
---|
685 | single: Single Crystal reflection object description |
---|
686 | single: Data object descriptions; Single Crystal Reflections |
---|
687 | |
---|
688 | For every single crystal a histogram, the ``'Data'`` item contains |
---|
689 | the structure factors as an np.array in item `'RefList'`. |
---|
690 | The columns in that array are documented below. |
---|
691 | |
---|
692 | ========== ==================================================== |
---|
693 | index explanation |
---|
694 | ========== ==================================================== |
---|
695 | 0,1,2 h,k,l (float) |
---|
696 | 3 multiplicity |
---|
697 | 4 d-space, Angstrom |
---|
698 | 5 :math:`F_{obs}^2` |
---|
699 | 6 :math:`\sigma(F_{obs}^2)` |
---|
700 | 7 :math:`F_{calc}^2` |
---|
701 | 8 :math:`F_{obs}^2T` |
---|
702 | 9 :math:`F_{calc}^2T` |
---|
703 | 10 reflection phase, in degrees |
---|
704 | 11 intensity correction for reflection, this times |
---|
705 | :math:`F_{obs}^2` or :math:`F_{calc}^2` |
---|
706 | gives Iobs or Icalc |
---|
707 | ========== ==================================================== |
---|
708 | |
---|
709 | Image Data Structure |
---|
710 | -------------------- |
---|
711 | |
---|
712 | .. _Image_table: |
---|
713 | |
---|
714 | .. index:: |
---|
715 | image: Image data object description |
---|
716 | image: Image object descriptions |
---|
717 | |
---|
718 | Every 2-dimensional image is stored in the GSAS-II data tree |
---|
719 | with a top-level entry named beginning with the string "IMG ". The |
---|
720 | image data are directly associated with that tree item and there |
---|
721 | are a series of children to that item. The routines :func:`GSASII.GSASII.GetUsedHistogramsAndPhasesfromTree` |
---|
722 | and :func:`GSASIIstrIO.GetUsedHistogramsAndPhases` will |
---|
723 | load this information into a dictionary where the child tree name is |
---|
724 | used as a key, and the information in the main entry is assigned |
---|
725 | a key of ``Data``, as outlined below. |
---|
726 | |
---|
727 | .. tabularcolumns:: |l|l|p{4in}| |
---|
728 | |
---|
729 | ====================== ====================== ==================================================== |
---|
730 | key sub-key explanation |
---|
731 | ====================== ====================== ==================================================== |
---|
732 | Comments \ Text strings extracted from the original image data |
---|
733 | header or a metafile. These cannot be changed by |
---|
734 | the user; it may be empty. |
---|
735 | Image Controls azmthOff (float) The offset to be applied to an azimuthal |
---|
736 | value. Accomodates |
---|
737 | detector orientations other than with the detector |
---|
738 | X-axis |
---|
739 | horizontal. |
---|
740 | \ background image (list:str,float) The name of a tree item ("IMG ...") that is to be subtracted |
---|
741 | during image integration multiplied by value. It must have the same size/shape as |
---|
742 | the integrated image. NB: value < 0 for subtraction. |
---|
743 | \ calibrant (str) The material used for determining the position/orientation |
---|
744 | of the image. The data is obtained from :func:`ImageCalibrants` |
---|
745 | and UserCalibrants.py (supplied by user). |
---|
746 | \ calibdmin (float) The minimum d-spacing used during the last calibration run. |
---|
747 | \ calibskip (int) The number of expected diffraction lines skipped during the last |
---|
748 | calibration run. |
---|
749 | \ center (list:floats) The [X,Y] point in detector coordinates (mm) where the direct beam |
---|
750 | strikes the detector plane as determined by calibration. This point |
---|
751 | does not have to be within the limits of the detector boundaries. |
---|
752 | \ centerAzm (bool) If True then the azimuth reported for the integrated slice |
---|
753 | of the image is at the center line otherwise it is at the leading edge. |
---|
754 | \ color (str) The name of the colormap used to display the image. Default = 'Paired'. |
---|
755 | \ cutoff (float) The minimum value of I/Ib for a point selected in a diffraction ring for |
---|
756 | calibration calculations. See pixLimit for details as how point is found. |
---|
757 | \ DetDepth (float) Coefficient for penetration correction to distance; accounts for diffraction |
---|
758 | ring offset at higher angles. Optionally determined by calibration. |
---|
759 | \ DetDepthRef (bool) If True then refine DetDepth during calibration/recalibration calculation. |
---|
760 | \ distance (float) The distance (mm) from sample to detector plane. |
---|
761 | \ ellipses (list:lists) Each object in ellipses is a list [center,phi,radii,color] where |
---|
762 | center (list) is location (mm) of the ellipse center on the detector plane, phi is the |
---|
763 | rotation of the ellipse minor axis from the x-axis, and radii are the minor & major |
---|
764 | radii of the ellipse. If radii[0] is negative then parameters describe a hyperbola. Color |
---|
765 | is the selected drawing color (one of 'b', 'g' ,'r') for the ellipse/hyperbola. |
---|
766 | \ edgemin (float) Not used; parameter in EdgeFinder code. |
---|
767 | \ fullIntegrate (bool) If True then integrate over full 360 deg azimuthal range. |
---|
768 | \ GonioAngles (list:floats) The 'Omega','Chi','Phi' goniometer angles used for this image. |
---|
769 | Required for texture calculations. |
---|
770 | \ invert_x (bool) If True display the image with the x-axis inverted. |
---|
771 | \ invert_y (bool) If True display the image with the y-axis inverted. |
---|
772 | \ IOtth (list:floats) The minimum and maximum 2-theta values to be used for integration. |
---|
773 | \ LRazimuth (list:floats) The minimum and maximum azimuth values to be used for integration. |
---|
774 | \ Oblique (list:float,bool) If True apply a detector absorption correction using the value to the |
---|
775 | intensities obtained during integration. |
---|
776 | \ outAzimuths (int) The number of azimuth pie slices. |
---|
777 | \ outChannels (int) The number of 2-theta steps. |
---|
778 | \ pixelSize (list:ints) The X,Y dimensions (microns) of each pixel. |
---|
779 | \ pixLimit (int) A box in the image with 2*pixLimit+1 edges is searched to find the maximum. |
---|
780 | This value (I) along with the minimum (Ib) in the box is reported by :func:`GSASIIimage.ImageLocalMax` |
---|
781 | and subject to cutoff in :func:`GSASIIimage.makeRing`. |
---|
782 | Locations are used to construct rings of points for calibration calcualtions. |
---|
783 | \ PolaVal (list:float,bool) If type='SASD' and if True, apply polarization correction to intensities from |
---|
784 | integration using value. |
---|
785 | \ rings (list:lists) Each entry is [X,Y,dsp] where X & Y are lists of x,y coordinates around a |
---|
786 | diffraction ring with the same d-spacing (dsp) |
---|
787 | \ ring (list) The x,y coordinates of the >5 points on an inner ring |
---|
788 | selected by the user, |
---|
789 | \ Range (list) The minimum & maximum values of the image |
---|
790 | \ rotation (float) The angle between the x-axis and the vector about which the |
---|
791 | detector is tilted. Constrained to -180 to 180 deg. |
---|
792 | \ SampleShape (str) Currently only 'Cylinder'. Sample shape for Debye-Scherrer experiments; used for absorption |
---|
793 | calculations. |
---|
794 | \ SampleAbs (list: float,bool) Value of absorption coefficient for Debye-Scherrer experimnents, flag if True |
---|
795 | to cause correction to be applied. |
---|
796 | \ setDefault (bool) If True the use the image controls values for all new images to be read. (might be removed) |
---|
797 | \ setRings (bool) If True then display all the selected x,y ring positions (vida supra rings) used in the calibration. |
---|
798 | \ showLines (bool) If True then isplay the integration limits to be used. |
---|
799 | \ size (list:int) The number of pixels on the image x & y axes |
---|
800 | \ type (str) One of 'PWDR', 'SASD' or 'REFL' for powder, small angle or reflectometry data, respectively. |
---|
801 | \ tilt (float) The angle the detector normal makes with the incident beam; range -90 to 90. |
---|
802 | \ wavelength (float) Tha radiation wavelength (Angstroms) as entered by the user (or someday obtained from the image header). |
---|
803 | |
---|
804 | Masks Arcs (list: lists) Each entry [2-theta,[azimuth[0],azimuth[1]],thickness] describes an arc mask |
---|
805 | to be excluded from integration |
---|
806 | \ Frames (list:lists) Each entry describes the x,y points (3 or more - mm) that describe a frame outside |
---|
807 | of which is excluded from recalibration and integration. Only one frame is allowed. |
---|
808 | \ Points (list:lists) Each entry [x,y,radius] (mm) describes an excluded spot on the image to be excluded |
---|
809 | from integration. |
---|
810 | \ Polygons (list:lists) Each entry is a list of 3+ [x,y] points (mm) that describe a polygon on the image |
---|
811 | to be excluded from integration. |
---|
812 | \ Rings (list: lists) Each entry [2-theta,thickness] describes a ring mask |
---|
813 | to be excluded from integration. |
---|
814 | \ Thresholds (list:[tuple,list]) [(Imin,Imax),[Imin,Imax]] This gives lower and upper limits for points on the image to be included |
---|
815 | in integrsation. The tuple is the image intensity limits and the list are those set by the user. |
---|
816 | |
---|
817 | Stress/Strain Sample phi (float) Sample rotation about vertical axis. |
---|
818 | \ Sample z (float) Sample translation from the calibration sample position (for Sample phi = 0) |
---|
819 | These will be restricted by space group symmetry; result of strain fit refinement. |
---|
820 | \ Type (str) 'True' or 'Conventional': The strain model used for the calculation. |
---|
821 | \ d-zero (list:dict) Each item is for a diffraction ring on the image; all items are from the same phase |
---|
822 | and are used to determine the strain tensor. |
---|
823 | The dictionary items are: |
---|
824 | 'Dset': (float) True d-spacing for the diffraction ring; entered by the user. |
---|
825 | 'Dcalc': (float) Average calculated d-spacing determined from strain coeff. |
---|
826 | 'Emat': (list: float) The strain tensor elements e11, e12 & e22 (e21=e12, rest are 0) |
---|
827 | 'Esig': (list: float) Esds for Emat from fitting. |
---|
828 | 'pixLimit': (int) Search range to find highest point on ring for each data point |
---|
829 | 'cutoff': (float) I/Ib cutoff for searching. |
---|
830 | 'ImxyObs': (list: lists) [[X],[Y]] observed points to be used for strain calculations. |
---|
831 | 'ImtaObs': (list: lists) [[d],[azm]] transformed via detector calibration from ImxyObs. |
---|
832 | 'ImtaCalc': (list: lists [[d],[azm]] calculated d-spacing & azimuth from fit. |
---|
833 | |
---|
834 | ====================== ====================== ==================================================== |
---|
835 | |
---|
836 | Parameter Dictionary |
---|
837 | ------------------------- |
---|
838 | |
---|
839 | .. _parmDict_table: |
---|
840 | |
---|
841 | .. index:: |
---|
842 | single: Parameter dictionary |
---|
843 | |
---|
844 | The parameter dictionary contains all of the variable parameters for the refinement. |
---|
845 | The dictionary keys are the name of the parameter (<phase>:<hist>:<name>:<atom>). |
---|
846 | It is prepared in two ways. When loaded from the tree |
---|
847 | (in :meth:`GSASII.GSASII.MakeLSParmDict` and |
---|
848 | :meth:`GSASIIIO.ExportBaseclass.loadParmDict`), |
---|
849 | the values are lists with two elements: ``[value, refine flag]`` |
---|
850 | |
---|
851 | When loaded from the GPX file (in |
---|
852 | :func:`GSASIIstrMain.Refine` and :func:`GSASIIstrMain.SeqRefine`), the value in the |
---|
853 | dict is the actual parameter value (usually a float, but sometimes a |
---|
854 | letter or string flag value (such as I or A for iso/anisotropic). |
---|
855 | |
---|
856 | |
---|
857 | *Classes and routines* |
---|
858 | ---------------------- |
---|
859 | |
---|
860 | ''' |
---|
861 | import re |
---|
862 | import imp |
---|
863 | import random as ran |
---|
864 | import sys |
---|
865 | import GSASIIpath |
---|
866 | import GSASIImath as G2mth |
---|
867 | import numpy as np |
---|
868 | |
---|
869 | GSASIIpath.SetVersionNumber("$Revision: 2765 $") |
---|
870 | |
---|
871 | DefaultControls = { |
---|
872 | 'deriv type':'analytic Hessian', |
---|
873 | 'min dM/M':0.0001,'shift factor':1.,'max cyc':3,'F**2':False, |
---|
874 | 'UsrReject':{'minF/sig':0,'MinExt':0.01,'MaxDF/F':100.,'MaxD':500.,'MinD':0.05}, |
---|
875 | 'Copy2Next':False,'Reverse Seq':False,'HatomFix':False, |
---|
876 | 'Author':'no name', |
---|
877 | 'FreePrm1':'Sample humidity (%)', |
---|
878 | 'FreePrm2':'Sample voltage (V)', |
---|
879 | 'FreePrm3':'Applied load (MN)', |
---|
880 | 'ShowCell':False, |
---|
881 | } |
---|
882 | '''Values to be used as defaults for the initial contents of the ``Controls`` |
---|
883 | data tree item. |
---|
884 | ''' |
---|
885 | def StripUnicode(string,subs='.'): |
---|
886 | '''Strip non-ASCII characters from strings |
---|
887 | |
---|
888 | :param str string: string to strip Unicode characters from |
---|
889 | :param str subs: character(s) to place into string in place of each |
---|
890 | Unicode character. Defaults to '.' |
---|
891 | |
---|
892 | :returns: a new string with only ASCII characters |
---|
893 | ''' |
---|
894 | s = '' |
---|
895 | for c in string: |
---|
896 | if ord(c) < 128: |
---|
897 | s += c |
---|
898 | else: |
---|
899 | s += subs |
---|
900 | return s.encode('ascii','replace') |
---|
901 | |
---|
902 | def MakeUniqueLabel(lbl,labellist): |
---|
903 | '''Make sure that every a label is unique against a list by adding |
---|
904 | digits at the end until it is not found in list. |
---|
905 | |
---|
906 | :param str lbl: the input label |
---|
907 | :param list labellist: the labels that have already been encountered |
---|
908 | :returns: lbl if not found in labellist or lbl with ``_1-9`` (or |
---|
909 | ``_10-99``, etc.) appended at the end |
---|
910 | ''' |
---|
911 | lbl = StripUnicode(lbl.strip(),'_') |
---|
912 | if not lbl: # deal with a blank label |
---|
913 | lbl = '_1' |
---|
914 | if lbl not in labellist: |
---|
915 | labellist.append(lbl) |
---|
916 | return lbl |
---|
917 | i = 1 |
---|
918 | prefix = lbl |
---|
919 | if '_' in lbl: |
---|
920 | prefix = lbl[:lbl.rfind('_')] |
---|
921 | suffix = lbl[lbl.rfind('_')+1:] |
---|
922 | try: |
---|
923 | i = int(suffix)+1 |
---|
924 | except: # suffix could not be parsed |
---|
925 | i = 1 |
---|
926 | prefix = lbl |
---|
927 | while prefix+'_'+str(i) in labellist: |
---|
928 | i += 1 |
---|
929 | else: |
---|
930 | lbl = prefix+'_'+str(i) |
---|
931 | labellist.append(lbl) |
---|
932 | return lbl |
---|
933 | |
---|
934 | PhaseIdLookup = {} |
---|
935 | '''dict listing phase name and random Id keyed by sequential phase index as a str; |
---|
936 | best to access this using :func:`LookupPhaseName` |
---|
937 | ''' |
---|
938 | PhaseRanIdLookup = {} |
---|
939 | '''dict listing phase sequential index keyed by phase random Id; |
---|
940 | best to access this using :func:`LookupPhaseId` |
---|
941 | ''' |
---|
942 | HistIdLookup = {} |
---|
943 | '''dict listing histogram name and random Id, keyed by sequential histogram index as a str; |
---|
944 | best to access this using :func:`LookupHistName` |
---|
945 | ''' |
---|
946 | HistRanIdLookup = {} |
---|
947 | '''dict listing histogram sequential index keyed by histogram random Id; |
---|
948 | best to access this using :func:`LookupHistId` |
---|
949 | ''' |
---|
950 | AtomIdLookup = {} |
---|
951 | '''dict listing for each phase index as a str, the atom label and atom random Id, |
---|
952 | keyed by atom sequential index as a str; |
---|
953 | best to access this using :func:`LookupAtomLabel` |
---|
954 | ''' |
---|
955 | AtomRanIdLookup = {} |
---|
956 | '''dict listing for each phase the atom sequential index keyed by atom random Id; |
---|
957 | best to access this using :func:`LookupAtomId` |
---|
958 | ''' |
---|
959 | ShortPhaseNames = {} |
---|
960 | '''a dict containing a possibly shortened and when non-unique numbered |
---|
961 | version of the phase name. Keyed by the phase sequential index. |
---|
962 | ''' |
---|
963 | ShortHistNames = {} |
---|
964 | '''a dict containing a possibly shortened and when non-unique numbered |
---|
965 | version of the histogram name. Keyed by the histogram sequential index. |
---|
966 | ''' |
---|
967 | |
---|
968 | VarDesc = {} |
---|
969 | ''' This dictionary lists descriptions for GSAS-II variables, |
---|
970 | as set in :func:`CompileVarDesc`. See that function for a description |
---|
971 | for how keys and values are written. |
---|
972 | ''' |
---|
973 | |
---|
974 | reVarDesc = {} |
---|
975 | ''' This dictionary lists descriptions for GSAS-II variables with |
---|
976 | the same values as :attr:`VarDesc` except that keys have been compiled as |
---|
977 | regular expressions. Initialized in :func:`CompileVarDesc`. |
---|
978 | ''' |
---|
979 | |
---|
980 | def IndexAllIds(Histograms,Phases): |
---|
981 | '''Scan through the used phases & histograms and create an index |
---|
982 | to the random numbers of phases, histograms and atoms. While doing this, |
---|
983 | confirm that assigned random numbers are unique -- just in case lightning |
---|
984 | strikes twice in the same place. |
---|
985 | |
---|
986 | Note: this code assumes that the atom random Id (ranId) is the last |
---|
987 | element each atom record. |
---|
988 | |
---|
989 | This is called in three places (only): :func:`GSASIIstrIO.GetUsedHistogramsAndPhases` |
---|
990 | (which loads the histograms and phases from a GPX file), |
---|
991 | :meth:`~GSASII.GSASII.GetUsedHistogramsAndPhasesfromTree` |
---|
992 | (which loads the histograms and phases from the data tree.) and |
---|
993 | :meth:`GSASIIconstrGUI.UpdateConstraints` |
---|
994 | (which displays & edits the constraints in a GUI) |
---|
995 | |
---|
996 | TODO: do we need a lookup for rigid body variables? |
---|
997 | ''' |
---|
998 | # process phases and atoms |
---|
999 | PhaseIdLookup.clear() |
---|
1000 | PhaseRanIdLookup.clear() |
---|
1001 | AtomIdLookup.clear() |
---|
1002 | AtomRanIdLookup.clear() |
---|
1003 | ShortPhaseNames.clear() |
---|
1004 | for ph in Phases: |
---|
1005 | cx,ct,cs,cia = Phases[ph]['General']['AtomPtrs'] |
---|
1006 | ranId = Phases[ph]['ranId'] |
---|
1007 | while ranId in PhaseRanIdLookup: |
---|
1008 | # Found duplicate random Id! note and reassign |
---|
1009 | print ("\n\n*** Phase "+str(ph)+" has repeated ranId. Fixing.\n") |
---|
1010 | Phases[ph]['ranId'] = ranId = ran.randint(0,sys.maxint) |
---|
1011 | pId = str(Phases[ph]['pId']) |
---|
1012 | PhaseIdLookup[pId] = (ph,ranId) |
---|
1013 | PhaseRanIdLookup[ranId] = pId |
---|
1014 | shortname = ph #[:10] |
---|
1015 | while shortname in ShortPhaseNames.values(): |
---|
1016 | shortname = ph[:8] + ' ('+ pId + ')' |
---|
1017 | ShortPhaseNames[pId] = shortname |
---|
1018 | AtomIdLookup[pId] = {} |
---|
1019 | AtomRanIdLookup[pId] = {} |
---|
1020 | for iatm,at in enumerate(Phases[ph]['Atoms']): |
---|
1021 | ranId = at[cia+8] |
---|
1022 | while ranId in AtomRanIdLookup[pId]: # check for dups |
---|
1023 | print ("\n\n*** Phase "+str(ph)+" atom "+str(iatm)+" has repeated ranId. Fixing.\n") |
---|
1024 | at[cia+8] = ranId = ran.randint(0,sys.maxint) |
---|
1025 | AtomRanIdLookup[pId][ranId] = str(iatm) |
---|
1026 | if Phases[ph]['General']['Type'] == 'macromolecular': |
---|
1027 | label = '%s_%s_%s_%s'%(at[ct-1],at[ct-3],at[ct-4],at[ct-2]) |
---|
1028 | else: |
---|
1029 | label = at[ct-1] |
---|
1030 | AtomIdLookup[pId][str(iatm)] = (label,ranId) |
---|
1031 | # process histograms |
---|
1032 | HistIdLookup.clear() |
---|
1033 | HistRanIdLookup.clear() |
---|
1034 | ShortHistNames.clear() |
---|
1035 | for hist in Histograms: |
---|
1036 | ranId = Histograms[hist]['ranId'] |
---|
1037 | while ranId in HistRanIdLookup: |
---|
1038 | # Found duplicate random Id! note and reassign |
---|
1039 | print ("\n\n*** Histogram "+str(hist)+" has repeated ranId. Fixing.\n") |
---|
1040 | Histograms[hist]['ranId'] = ranId = ran.randint(0,sys.maxint) |
---|
1041 | hId = str(Histograms[hist]['hId']) |
---|
1042 | HistIdLookup[hId] = (hist,ranId) |
---|
1043 | HistRanIdLookup[ranId] = hId |
---|
1044 | shortname = hist[:15] |
---|
1045 | while shortname in ShortHistNames.values(): |
---|
1046 | shortname = hist[:11] + ' ('+ hId + ')' |
---|
1047 | ShortHistNames[hId] = shortname |
---|
1048 | |
---|
1049 | def LookupAtomId(pId,ranId): |
---|
1050 | '''Get the atom number from a phase and atom random Id |
---|
1051 | |
---|
1052 | :param int/str pId: the sequential number of the phase |
---|
1053 | :param int ranId: the random Id assigned to an atom |
---|
1054 | |
---|
1055 | :returns: the index number of the atom (str) |
---|
1056 | ''' |
---|
1057 | if not AtomRanIdLookup: |
---|
1058 | raise Exception,'Error: LookupAtomId called before IndexAllIds was run' |
---|
1059 | if pId is None or pId == '': |
---|
1060 | raise KeyError,'Error: phase is invalid (None or blank)' |
---|
1061 | pId = str(pId) |
---|
1062 | if pId not in AtomRanIdLookup: |
---|
1063 | raise KeyError,'Error: LookupAtomId does not have phase '+pId |
---|
1064 | if ranId not in AtomRanIdLookup[pId]: |
---|
1065 | raise KeyError,'Error: LookupAtomId, ranId '+str(ranId)+' not in AtomRanIdLookup['+pId+']' |
---|
1066 | return AtomRanIdLookup[pId][ranId] |
---|
1067 | |
---|
1068 | def LookupAtomLabel(pId,index): |
---|
1069 | '''Get the atom label from a phase and atom index number |
---|
1070 | |
---|
1071 | :param int/str pId: the sequential number of the phase |
---|
1072 | :param int index: the index of the atom in the list of atoms |
---|
1073 | |
---|
1074 | :returns: the label for the atom (str) and the random Id of the atom (int) |
---|
1075 | ''' |
---|
1076 | if not AtomIdLookup: |
---|
1077 | raise Exception,'Error: LookupAtomLabel called before IndexAllIds was run' |
---|
1078 | if pId is None or pId == '': |
---|
1079 | raise KeyError,'Error: phase is invalid (None or blank)' |
---|
1080 | pId = str(pId) |
---|
1081 | if pId not in AtomIdLookup: |
---|
1082 | raise KeyError,'Error: LookupAtomLabel does not have phase '+pId |
---|
1083 | if index not in AtomIdLookup[pId]: |
---|
1084 | raise KeyError,'Error: LookupAtomLabel, ranId '+str(index)+' not in AtomRanIdLookup['+pId+']' |
---|
1085 | return AtomIdLookup[pId][index] |
---|
1086 | |
---|
1087 | def LookupPhaseId(ranId): |
---|
1088 | '''Get the phase number and name from a phase random Id |
---|
1089 | |
---|
1090 | :param int ranId: the random Id assigned to a phase |
---|
1091 | :returns: the sequential Id (pId) number for the phase (str) |
---|
1092 | ''' |
---|
1093 | if not PhaseRanIdLookup: |
---|
1094 | raise Exception,'Error: LookupPhaseId called before IndexAllIds was run' |
---|
1095 | if ranId not in PhaseRanIdLookup: |
---|
1096 | raise KeyError,'Error: LookupPhaseId does not have ranId '+str(ranId) |
---|
1097 | return PhaseRanIdLookup[ranId] |
---|
1098 | |
---|
1099 | def LookupPhaseName(pId): |
---|
1100 | '''Get the phase number and name from a phase Id |
---|
1101 | |
---|
1102 | :param int/str pId: the sequential assigned to a phase |
---|
1103 | :returns: (phase,ranId) where phase is the name of the phase (str) |
---|
1104 | and ranId is the random # id for the phase (int) |
---|
1105 | ''' |
---|
1106 | if not PhaseIdLookup: |
---|
1107 | raise Exception,'Error: LookupPhaseName called before IndexAllIds was run' |
---|
1108 | if pId is None or pId == '': |
---|
1109 | raise KeyError,'Error: phase is invalid (None or blank)' |
---|
1110 | pId = str(pId) |
---|
1111 | if pId not in PhaseIdLookup: |
---|
1112 | raise KeyError,'Error: LookupPhaseName does not have index '+pId |
---|
1113 | return PhaseIdLookup[pId] |
---|
1114 | |
---|
1115 | def LookupHistId(ranId): |
---|
1116 | '''Get the histogram number and name from a histogram random Id |
---|
1117 | |
---|
1118 | :param int ranId: the random Id assigned to a histogram |
---|
1119 | :returns: the sequential Id (hId) number for the histogram (str) |
---|
1120 | ''' |
---|
1121 | if not HistRanIdLookup: |
---|
1122 | raise Exception,'Error: LookupHistId called before IndexAllIds was run' |
---|
1123 | if ranId not in HistRanIdLookup: |
---|
1124 | raise KeyError,'Error: LookupHistId does not have ranId '+str(ranId) |
---|
1125 | return HistRanIdLookup[ranId] |
---|
1126 | |
---|
1127 | def LookupHistName(hId): |
---|
1128 | '''Get the histogram number and name from a histogram Id |
---|
1129 | |
---|
1130 | :param int/str hId: the sequential assigned to a histogram |
---|
1131 | :returns: (hist,ranId) where hist is the name of the histogram (str) |
---|
1132 | and ranId is the random # id for the histogram (int) |
---|
1133 | ''' |
---|
1134 | if not HistIdLookup: |
---|
1135 | raise Exception,'Error: LookupHistName called before IndexAllIds was run' |
---|
1136 | if hId is None or hId == '': |
---|
1137 | raise KeyError,'Error: histogram is invalid (None or blank)' |
---|
1138 | hId = str(hId) |
---|
1139 | if hId not in HistIdLookup: |
---|
1140 | raise KeyError,'Error: LookupHistName does not have index '+hId |
---|
1141 | return HistIdLookup[hId] |
---|
1142 | |
---|
1143 | def fmtVarDescr(varname): |
---|
1144 | '''Return a string with a more complete description for a GSAS-II variable |
---|
1145 | |
---|
1146 | :param str varname: A full G2 variable name with 2 or 3 or 4 |
---|
1147 | colons (<p>:<h>:name[:<a>] or <p>::RBname:<r>:<t>]) |
---|
1148 | |
---|
1149 | :returns: a string with the description |
---|
1150 | ''' |
---|
1151 | s,l = VarDescr(varname) |
---|
1152 | return s+": "+l |
---|
1153 | |
---|
1154 | def VarDescr(varname): |
---|
1155 | '''Return two strings with a more complete description for a GSAS-II variable |
---|
1156 | |
---|
1157 | :param str name: A full G2 variable name with 2 or 3 or 4 |
---|
1158 | colons (<p>:<h>:name[:<a>] or <p>::RBname:<r>:<t>]) |
---|
1159 | |
---|
1160 | :returns: (loc,meaning) where loc describes what item the variable is mapped |
---|
1161 | (phase, histogram, etc.) and meaning describes what the variable does. |
---|
1162 | ''' |
---|
1163 | |
---|
1164 | # special handling for parameter names without a colons |
---|
1165 | # for now, assume self-defining |
---|
1166 | if varname.find(':') == -1: |
---|
1167 | return "Global",varname |
---|
1168 | |
---|
1169 | l = getVarDescr(varname) |
---|
1170 | if not l: |
---|
1171 | return ("invalid variable name ("+str(varname)+")!"),"" |
---|
1172 | # return "invalid variable name!","" |
---|
1173 | |
---|
1174 | if not l[-1]: |
---|
1175 | l[-1] = "(variable needs a definition! Set it in CompileVarDesc)" |
---|
1176 | |
---|
1177 | if len(l) == 3: #SASD variable name! |
---|
1178 | s = 'component:'+l[1] |
---|
1179 | return s,l[-1] |
---|
1180 | s = "" |
---|
1181 | if l[0] is not None and l[1] is not None: # HAP: keep short |
---|
1182 | if l[2] == "Scale": # fix up ambigous name |
---|
1183 | l[5] = "Phase fraction" |
---|
1184 | if l[0] == '*': |
---|
1185 | lbl = 'Seq. ref.' |
---|
1186 | else: |
---|
1187 | lbl = ShortPhaseNames.get(l[0],'? #'+str(l[0])) |
---|
1188 | if l[1] == '*': |
---|
1189 | hlbl = 'Seq. ref.' |
---|
1190 | else: |
---|
1191 | hlbl = ShortHistNames.get(l[1],'? #'+str(l[1])) |
---|
1192 | if hlbl[:4] == 'HKLF': |
---|
1193 | hlbl = 'Xtl='+hlbl[5:] |
---|
1194 | elif hlbl[:4] == 'PWDR': |
---|
1195 | hlbl = 'Pwd='+hlbl[5:] |
---|
1196 | else: |
---|
1197 | hlbl = 'Hist='+hlbl |
---|
1198 | s = "Ph="+str(lbl)+" * "+str(hlbl) |
---|
1199 | else: |
---|
1200 | if l[2] == "Scale": # fix up ambigous name: must be scale factor, since not HAP |
---|
1201 | l[5] = "Scale factor" |
---|
1202 | if l[2] == 'Back': # background parameters are "special", alas |
---|
1203 | s = 'Hist='+ShortHistNames.get(l[1],'? #'+str(l[1])) |
---|
1204 | l[-1] += ' #'+str(l[3]) |
---|
1205 | elif l[4] is not None: # rigid body parameter or modulation parm |
---|
1206 | lbl = ShortPhaseNames.get(l[0],'phase?') |
---|
1207 | if 'RB' in l[2]: #rigid body parm |
---|
1208 | s = "Res #"+str(l[3])+" body #"+str(l[4])+" in "+str(lbl) |
---|
1209 | else: #modulation parm |
---|
1210 | s = 'Atom %s wave %s in %s'%(LookupAtomLabel(l[0],l[3])[0],l[4],lbl) |
---|
1211 | elif l[3] is not None: # atom parameter, |
---|
1212 | lbl = ShortPhaseNames.get(l[0],'phase?') |
---|
1213 | try: |
---|
1214 | albl = LookupAtomLabel(l[0],l[3])[0] |
---|
1215 | except KeyError: |
---|
1216 | albl = 'Atom?' |
---|
1217 | s = "Atom "+str(albl)+" in "+str(lbl) |
---|
1218 | elif l[0] == '*': |
---|
1219 | s = "All phases " |
---|
1220 | elif l[0] is not None: |
---|
1221 | lbl = ShortPhaseNames.get(l[0],'phase?') |
---|
1222 | s = "Phase "+str(lbl) |
---|
1223 | elif l[1] == '*': |
---|
1224 | s = 'All hists' |
---|
1225 | elif l[1] is not None: |
---|
1226 | hlbl = ShortHistNames.get(l[1],'? #'+str(l[1])) |
---|
1227 | if hlbl[:4] == 'HKLF': |
---|
1228 | hlbl = 'Xtl='+hlbl[5:] |
---|
1229 | elif hlbl[:4] == 'PWDR': |
---|
1230 | hlbl = 'Pwd='+hlbl[5:] |
---|
1231 | else: |
---|
1232 | hlbl = 'Hist='+hlbl |
---|
1233 | s = str(hlbl) |
---|
1234 | if not s: |
---|
1235 | s = 'Global' |
---|
1236 | return s,l[-1] |
---|
1237 | |
---|
1238 | def getVarDescr(varname): |
---|
1239 | '''Return a short description for a GSAS-II variable |
---|
1240 | |
---|
1241 | :param str name: A full G2 variable name with 2 or 3 or 4 |
---|
1242 | colons (<p>:<h>:name[:<a1>][:<a2>]) |
---|
1243 | |
---|
1244 | :returns: a six element list as [`p`,`h`,`name`,`a1`,`a2`,`description`], |
---|
1245 | where `p`, `h`, `a1`, `a2` are str values or `None`, for the phase number, |
---|
1246 | the histogram number and the atom number; `name` will always be |
---|
1247 | a str; and `description` is str or `None`. |
---|
1248 | If the variable name is incorrectly formed (for example, wrong |
---|
1249 | number of colons), `None` is returned instead of a list. |
---|
1250 | ''' |
---|
1251 | l = varname.split(':') |
---|
1252 | if len(l) == 2: #SASD parameter name |
---|
1253 | return varname,l[0],getDescr(l[1]) |
---|
1254 | if len(l) == 3: |
---|
1255 | l += [None,None] |
---|
1256 | elif len(l) == 4: |
---|
1257 | l += [None] |
---|
1258 | elif len(l) != 5: |
---|
1259 | return None |
---|
1260 | for i in (0,1,3,4): |
---|
1261 | if l[i] == "": |
---|
1262 | l[i] = None |
---|
1263 | l += [getDescr(l[2])] |
---|
1264 | return l |
---|
1265 | |
---|
1266 | def CompileVarDesc(): |
---|
1267 | '''Set the values in the variable description lookup table (:attr:`VarDesc`) |
---|
1268 | into :attr:`reVarDesc`. This is called in :func:`getDescr` so the initialization |
---|
1269 | is always done before use. |
---|
1270 | |
---|
1271 | Note that keys may contain regular expressions, where '[xyz]' |
---|
1272 | matches 'x' 'y' or 'z' (equivalently '[x-z]' describes this as range of values). |
---|
1273 | '.*' matches any string. For example:: |
---|
1274 | |
---|
1275 | 'AUiso':'Atomic isotropic displacement parameter', |
---|
1276 | |
---|
1277 | will match variable ``'p::AUiso:a'``. |
---|
1278 | If parentheses are used in the key, the contents of those parentheses can be |
---|
1279 | used in the value, such as:: |
---|
1280 | |
---|
1281 | 'AU([123][123])':'Atomic anisotropic displacement parameter U\\1', |
---|
1282 | |
---|
1283 | will match ``AU11``, ``AU23``,.. and `U11`, `U23` etc will be displayed |
---|
1284 | in the value when used. |
---|
1285 | |
---|
1286 | ''' |
---|
1287 | if reVarDesc: return # already done |
---|
1288 | for key,value in { |
---|
1289 | # derived or other sequential vars |
---|
1290 | '([abc])$' : 'Lattice parameter, \\1, from Ai and Djk', # N.B. '$' prevents match if any characters follow |
---|
1291 | u'\u03B1' : u'Lattice parameter, \u03B1, from Ai and Djk', |
---|
1292 | u'\u03B2' : u'Lattice parameter, \u03B2, from Ai and Djk', |
---|
1293 | u'\u03B3' : u'Lattice parameter, \u03B3, from Ai and Djk', |
---|
1294 | # ambiguous, alas: |
---|
1295 | 'Scale' : 'Phase or Histogram scale factor', |
---|
1296 | # Phase vars (p::<var>) |
---|
1297 | 'A([0-5])' : 'Reciprocal metric tensor component \\1', |
---|
1298 | '[vV]ol' : 'Unit cell volume', # probably an error that both upper and lower case are used |
---|
1299 | # Atom vars (p::<var>:a) |
---|
1300 | 'dA([xyz])$' : 'change to atomic coordinate, \\1', |
---|
1301 | 'A([xyz])$' : '\\1 fractional atomic coordinate', |
---|
1302 | 'AUiso':'Atomic isotropic displacement parameter', |
---|
1303 | 'AU([123][123])':'Atomic anisotropic displacement parameter U\\1', |
---|
1304 | 'Afrac': 'Atomic occupancy parameter', |
---|
1305 | 'Amul': 'Atomic site multiplicity value', |
---|
1306 | 'AM([xyz])$' : 'Atomic magnetic moment parameter, \\1', |
---|
1307 | # Hist & Phase (HAP) vars (p:h:<var>) |
---|
1308 | 'Back': 'Background term', |
---|
1309 | 'BkPkint;(.*)':'Background peak #\\1 intensity', |
---|
1310 | 'BkPkpos;(.*)':'Background peak #\\1 position', |
---|
1311 | 'BkPksig;(.*)':'Background peak #\\1 Gaussian width', |
---|
1312 | 'BkPkgam;(.*)':'Background peak #\\1 Cauchy width', |
---|
1313 | 'Bab([AU])': 'Babinet solvent scattering coef. \\1', |
---|
1314 | 'D([123][123])' : 'Anisotropic strain coef. \\1', |
---|
1315 | 'Extinction' : 'Extinction coef.', |
---|
1316 | 'MD' : 'March-Dollase coef.', |
---|
1317 | 'Mustrain;.*' : 'Microstrain coef.', |
---|
1318 | 'Size;.*' : 'Crystallite size value', |
---|
1319 | 'eA$' : 'Cubic mustrain value', |
---|
1320 | 'Ep$' : 'Primary extinction', |
---|
1321 | 'Es$' : 'Secondary type II extinction', |
---|
1322 | 'Eg$' : 'Secondary type I extinction', |
---|
1323 | 'Flack' : 'Flack parameter', |
---|
1324 | 'TwinFr' : 'Twin fraction', |
---|
1325 | #Histogram vars (:h:<var>) |
---|
1326 | 'Absorption' : 'Absorption coef.', |
---|
1327 | 'Displace([XY])' : 'Debye-Scherrer sample displacement \\1', |
---|
1328 | 'Lam' : 'Wavelength', |
---|
1329 | 'Polariz\.' : 'Polarization correction', |
---|
1330 | 'SH/L' : 'FCJ peak asymmetry correction', |
---|
1331 | '([UVW])$' : 'Gaussian instrument broadening \\1', |
---|
1332 | '([XY])$' : 'Cauchy instrument broadening \\1', |
---|
1333 | 'Zero' : 'Debye-Scherrer zero correction', |
---|
1334 | 'nDebye' : 'Debye model background corr. terms', |
---|
1335 | 'nPeaks' : 'Fixed peak background corr. terms', |
---|
1336 | 'RBV.*' : 'Vector rigid body parameter', |
---|
1337 | 'RBR.*' : 'Residue rigid body parameter', |
---|
1338 | 'RBRO([aijk])' : 'Residue rigid body orientation parameter', |
---|
1339 | 'RBRP([xyz])' : 'Residue rigid body position parameter', |
---|
1340 | 'RBRTr;.*' : 'Residue rigid body torsion parameter', |
---|
1341 | 'RBR([TLS])([123AB][123AB])' : 'Residue rigid body group disp. param.', |
---|
1342 | 'constr([0-9]*)' : 'Parameter from constraint', |
---|
1343 | # supersymmetry parameters p::<var>:a:o 'Flen','Fcent'? |
---|
1344 | 'mV([0-2])$' : 'Modulation vector component \\1', |
---|
1345 | 'Fsin' : 'Sin site fraction modulation', |
---|
1346 | 'Fcos' : 'Cos site fraction modulation', |
---|
1347 | 'Fzero' : 'Crenel function offset', #may go away |
---|
1348 | 'Fwid' : 'Crenel function width', |
---|
1349 | 'Tmin' : 'ZigZag/Block min location', |
---|
1350 | 'Tmax' : 'ZigZag/Block max location', |
---|
1351 | '([XYZ])max': 'ZigZag/Block max value for \\1', |
---|
1352 | '([XYZ])sin' : 'Sin position wave for \\1', |
---|
1353 | '([XYZ])cos' : 'Cos position wave for \\1', |
---|
1354 | 'U([123][123])sin$' : 'Sin thermal wave for U\\1', |
---|
1355 | 'U([123][123])cos$' : 'Cos thermal wave for U\\1', |
---|
1356 | 'M([XYZ])sin$' : 'Sin mag. moment wave for \\1', |
---|
1357 | 'M([XYZ])cos$' : 'Cos mag. moment wave for \\1', |
---|
1358 | # PDF peak parms (l:<var>;l = peak no.) |
---|
1359 | 'PDFpos' : 'PDF peak position', |
---|
1360 | 'PDFmag' : 'PDF peak magnitude', |
---|
1361 | 'PDFsig' : 'PDF peak std. dev.', |
---|
1362 | # SASD vars (l:<var>;l = component) |
---|
1363 | 'Aspect ratio' : 'Particle aspect ratio', |
---|
1364 | 'Length' : 'Cylinder length', |
---|
1365 | 'Diameter' : 'Cylinder/disk diameter', |
---|
1366 | 'Thickness' : 'Disk thickness', |
---|
1367 | 'Shell thickness' : 'Multiplier to get inner(<1) or outer(>1) sphere radius', |
---|
1368 | 'Dist' : 'Interparticle distance', |
---|
1369 | 'VolFr' : 'Dense scatterer volume fraction', |
---|
1370 | 'epis' : 'Sticky sphere epsilon', |
---|
1371 | 'Sticky' : 'Stickyness', |
---|
1372 | 'Depth' : 'Well depth', |
---|
1373 | 'Width' : 'Well width', |
---|
1374 | 'Volume' : 'Particle volume', |
---|
1375 | 'Radius' : 'Sphere/cylinder/disk radius', |
---|
1376 | 'Mean' : 'Particle mean radius', |
---|
1377 | 'StdDev' : 'Standard deviation in Mean', |
---|
1378 | 'G$': 'Guinier prefactor', |
---|
1379 | 'Rg$': 'Guinier radius of gyration', |
---|
1380 | 'B$': 'Porod prefactor', |
---|
1381 | 'P$': 'Porod power', |
---|
1382 | 'Cutoff': 'Porod cutoff', |
---|
1383 | 'PkInt': 'Bragg peak intensity', |
---|
1384 | 'PkPos': 'Bragg peak position', |
---|
1385 | 'PkSig': 'Bragg peak sigma', |
---|
1386 | 'PkGam': 'Bragg peak gamma', |
---|
1387 | 'e([12][12])' : 'strain tensor e\1', # strain vars e11, e22, e12 |
---|
1388 | 'Dcalc': 'Calc. d-spacing', |
---|
1389 | 'Back$': 'background parameter', |
---|
1390 | 'pos$': 'peak position', |
---|
1391 | 'int$': 'peak intensity', |
---|
1392 | 'WgtFrac':'phase weight fraction', |
---|
1393 | }.items(): |
---|
1394 | VarDesc[key] = value |
---|
1395 | reVarDesc[re.compile(key)] = value |
---|
1396 | |
---|
1397 | def getDescr(name): |
---|
1398 | '''Return a short description for a GSAS-II variable |
---|
1399 | |
---|
1400 | :param str name: The descriptive part of the variable name without colons (:) |
---|
1401 | |
---|
1402 | :returns: a short description or None if not found |
---|
1403 | ''' |
---|
1404 | |
---|
1405 | CompileVarDesc() # compile the regular expressions, if needed |
---|
1406 | for key in reVarDesc: |
---|
1407 | m = key.match(name) |
---|
1408 | if m: |
---|
1409 | reVarDesc[key] |
---|
1410 | return m.expand(reVarDesc[key]) |
---|
1411 | return None |
---|
1412 | |
---|
1413 | def GenWildCard(varlist): |
---|
1414 | '''Generate wildcard versions of G2 variables. These introduce '*' |
---|
1415 | for a phase, histogram or atom number (but only for one of these |
---|
1416 | fields) but only when there is more than one matching variable in the |
---|
1417 | input variable list. So if the input is this:: |
---|
1418 | |
---|
1419 | varlist = ['0::AUiso:0', '0::AUiso:1', '1::AUiso:0'] |
---|
1420 | |
---|
1421 | then the output will be this:: |
---|
1422 | |
---|
1423 | wildList = ['*::AUiso:0', '0::AUiso:*'] |
---|
1424 | |
---|
1425 | :param list varlist: an input list of GSAS-II variable names |
---|
1426 | (such as 0::AUiso:0) |
---|
1427 | |
---|
1428 | :returns: wildList, the generated list of wild card variable names. |
---|
1429 | ''' |
---|
1430 | wild = [] |
---|
1431 | for i in (0,1,3): |
---|
1432 | currentL = varlist[:] |
---|
1433 | while currentL: |
---|
1434 | item1 = currentL.pop(0) |
---|
1435 | i1splt = item1.split(':') |
---|
1436 | if i >= len(i1splt): continue |
---|
1437 | if i1splt[i]: |
---|
1438 | nextL = [] |
---|
1439 | i1splt[i] = '[0-9]+' |
---|
1440 | rexp = re.compile(':'.join(i1splt)) |
---|
1441 | matchlist = [item1] |
---|
1442 | for nxtitem in currentL: |
---|
1443 | if rexp.match(nxtitem): |
---|
1444 | matchlist += [nxtitem] |
---|
1445 | else: |
---|
1446 | nextL.append(nxtitem) |
---|
1447 | if len(matchlist) > 1: |
---|
1448 | i1splt[i] = '*' |
---|
1449 | wild.append(':'.join(i1splt)) |
---|
1450 | currentL = nextL |
---|
1451 | return wild |
---|
1452 | |
---|
1453 | def LookupWildCard(varname,varlist): |
---|
1454 | '''returns a list of variable names from list varname |
---|
1455 | that match wildcard name in varname |
---|
1456 | |
---|
1457 | :param str varname: a G2 variable name containing a wildcard |
---|
1458 | (such as \*::var) |
---|
1459 | :param list varlist: the list of all variable names used in |
---|
1460 | the current project |
---|
1461 | :returns: a list of matching GSAS-II variables (may be empty) |
---|
1462 | ''' |
---|
1463 | rexp = re.compile(varname.replace('*','[0-9]+')) |
---|
1464 | return sorted([var for var in varlist if rexp.match(var)]) |
---|
1465 | |
---|
1466 | |
---|
1467 | def _lookup(dic,key): |
---|
1468 | '''Lookup a key in a dictionary, where None returns an empty string |
---|
1469 | but an unmatched key returns a question mark. Used in :class:`G2VarObj` |
---|
1470 | ''' |
---|
1471 | if key is None: |
---|
1472 | return "" |
---|
1473 | elif key == "*": |
---|
1474 | return "*" |
---|
1475 | else: |
---|
1476 | return dic.get(key,'?') |
---|
1477 | |
---|
1478 | class G2VarObj(object): |
---|
1479 | '''Defines a GSAS-II variable either using the phase/atom/histogram |
---|
1480 | unique Id numbers or using a character string that specifies |
---|
1481 | variables by phase/atom/histogram number (which can change). |
---|
1482 | Note that :func:`LoadID` should be used to (re)load the current Ids |
---|
1483 | before creating or later using the G2VarObj object. |
---|
1484 | |
---|
1485 | This can store rigid body variables, but does not translate the residue # and |
---|
1486 | body # to/from random Ids |
---|
1487 | |
---|
1488 | A :class:`G2VarObj` object can be created with a single parameter: |
---|
1489 | |
---|
1490 | :param str/tuple varname: a single value can be used to create a :class:`G2VarObj` |
---|
1491 | object. If a string, it must be of form "p:h:var" or "p:h:var:a", where |
---|
1492 | |
---|
1493 | * p is the phase number (which may be left blank or may be '*' to indicate all phases); |
---|
1494 | * h is the histogram number (which may be left blank or may be '*' to indicate all histograms); |
---|
1495 | * a is the atom number (which may be left blank in which case the third colon is omitted). |
---|
1496 | The atom number can be specified as '*' if a phase number is specified (not as '*'). |
---|
1497 | For rigid body variables, specify a will be a string of form "residue:body#" |
---|
1498 | |
---|
1499 | Alternately a single tuple of form (Phase,Histogram,VarName,AtomID) can be used, where |
---|
1500 | Phase, Histogram, and AtomID are None or are ranId values (or one can be '*') |
---|
1501 | and VarName is a string. Note that if Phase is '*' then the AtomID is an atom number. |
---|
1502 | For a rigid body variables, AtomID is a string of form "residue:body#". |
---|
1503 | |
---|
1504 | If four positional arguments are supplied, they are: |
---|
1505 | |
---|
1506 | :param str/int phasenum: The number for the phase (or None or '*') |
---|
1507 | :param str/int histnum: The number for the histogram (or None or '*') |
---|
1508 | :param str varname: a single value can be used to create a :class:`G2VarObj` |
---|
1509 | :param str/int atomnum: The number for the atom (or None or '*') |
---|
1510 | |
---|
1511 | ''' |
---|
1512 | IDdict = {} |
---|
1513 | IDdict['phases'] = {} |
---|
1514 | IDdict['hists'] = {} |
---|
1515 | IDdict['atoms'] = {} |
---|
1516 | def __init__(self,*args): |
---|
1517 | self.phase = None |
---|
1518 | self.histogram = None |
---|
1519 | self.name = '' |
---|
1520 | self.atom = None |
---|
1521 | if len(args) == 1 and (type(args[0]) is list or type(args[0]) is tuple) and len(args[0]) == 4: |
---|
1522 | # single arg with 4 values |
---|
1523 | self.phase,self.histogram,self.name,self.atom = args[0] |
---|
1524 | elif len(args) == 1 and ':' in args[0]: |
---|
1525 | #parse a string |
---|
1526 | lst = args[0].split(':') |
---|
1527 | if lst[0] == '*': |
---|
1528 | self.phase = '*' |
---|
1529 | if len(lst) > 3: |
---|
1530 | self.atom = lst[3] |
---|
1531 | self.histogram = HistIdLookup.get(lst[1],[None,None])[1] |
---|
1532 | elif lst[1] == '*': |
---|
1533 | self.histogram = '*' |
---|
1534 | self.phase = PhaseIdLookup.get(lst[0],[None,None])[1] |
---|
1535 | else: |
---|
1536 | self.histogram = HistIdLookup.get(lst[1],[None,None])[1] |
---|
1537 | self.phase = PhaseIdLookup.get(lst[0],[None,None])[1] |
---|
1538 | if len(lst) == 4: |
---|
1539 | if lst[3] == '*': |
---|
1540 | self.atom = '*' |
---|
1541 | else: |
---|
1542 | self.atom = AtomIdLookup[lst[0]].get(lst[3],[None,None])[1] |
---|
1543 | elif len(lst) == 5: |
---|
1544 | self.atom = lst[3]+":"+lst[4] |
---|
1545 | elif len(lst) == 3: |
---|
1546 | pass |
---|
1547 | else: |
---|
1548 | raise Exception,"Too many colons in var name "+str(args[0]) |
---|
1549 | self.name = lst[2] |
---|
1550 | elif len(args) == 4: |
---|
1551 | if args[0] == '*': |
---|
1552 | self.phase = '*' |
---|
1553 | self.atom = args[3] |
---|
1554 | else: |
---|
1555 | self.phase = PhaseIdLookup.get(str(args[0]),[None,None])[1] |
---|
1556 | if args[3] == '*': |
---|
1557 | self.atom = '*' |
---|
1558 | elif args[0] is not None: |
---|
1559 | self.atom = AtomIdLookup[args[0]].get(str(args[3]),[None,None])[1] |
---|
1560 | if args[1] == '*': |
---|
1561 | self.histogram = '*' |
---|
1562 | else: |
---|
1563 | self.histogram = HistIdLookup.get(str(args[1]),[None,None])[1] |
---|
1564 | self.name = args[2] |
---|
1565 | else: |
---|
1566 | raise Exception,"Incorrectly called GSAS-II parameter name" |
---|
1567 | |
---|
1568 | #print "DEBUG: created ",self.phase,self.histogram,self.name,self.atom |
---|
1569 | |
---|
1570 | def __str__(self): |
---|
1571 | return self.varname() |
---|
1572 | |
---|
1573 | def varname(self): |
---|
1574 | '''Formats the GSAS-II variable name as a "traditional" GSAS-II variable |
---|
1575 | string (p:h:<var>:a) or (p:h:<var>) |
---|
1576 | |
---|
1577 | :returns: the variable name as a str |
---|
1578 | ''' |
---|
1579 | a = "" |
---|
1580 | if self.phase == "*": |
---|
1581 | ph = "*" |
---|
1582 | if self.atom: |
---|
1583 | a = ":" + str(self.atom) |
---|
1584 | else: |
---|
1585 | ph = _lookup(PhaseRanIdLookup,self.phase) |
---|
1586 | if self.atom == '*': |
---|
1587 | a = ':*' |
---|
1588 | elif self.atom: |
---|
1589 | if ":" in str(self.atom): |
---|
1590 | a = ":" + str(self.atom) |
---|
1591 | elif ph in AtomRanIdLookup: |
---|
1592 | a = ":" + AtomRanIdLookup[ph].get(self.atom,'?') |
---|
1593 | else: |
---|
1594 | a = ":?" |
---|
1595 | if self.histogram == "*": |
---|
1596 | hist = "*" |
---|
1597 | else: |
---|
1598 | hist = _lookup(HistRanIdLookup,self.histogram) |
---|
1599 | s = (ph + ":" + hist + ":" + str(self.name)) + a |
---|
1600 | return s |
---|
1601 | |
---|
1602 | def __repr__(self): |
---|
1603 | '''Return the detailed contents of the object |
---|
1604 | ''' |
---|
1605 | s = "<" |
---|
1606 | if self.phase == '*': |
---|
1607 | s += "Phases: all; " |
---|
1608 | if self.atom is not None: |
---|
1609 | if ":" in str(self.atom): |
---|
1610 | s += "Rigid body" + str(self.atom) + "; " |
---|
1611 | else: |
---|
1612 | s += "Atom #" + str(self.atom) + "; " |
---|
1613 | elif self.phase is not None: |
---|
1614 | ph = _lookup(PhaseRanIdLookup,self.phase) |
---|
1615 | s += "Phase: rId=" + str(self.phase) + " (#"+ ph + "); " |
---|
1616 | if self.atom == '*': |
---|
1617 | s += "Atoms: all; " |
---|
1618 | elif ":" in str(self.atom): |
---|
1619 | s += "Rigid body" + str(self.atom) + "; " |
---|
1620 | elif self.atom is not None: |
---|
1621 | s += "Atom rId=" + str(self.atom) |
---|
1622 | if ph in AtomRanIdLookup: |
---|
1623 | s += " (#" + AtomRanIdLookup[ph].get(self.atom,'?') + "); " |
---|
1624 | else: |
---|
1625 | s += " (#? -- not found!); " |
---|
1626 | if self.histogram == '*': |
---|
1627 | s += "Histograms: all; " |
---|
1628 | elif self.histogram is not None: |
---|
1629 | hist = _lookup(HistRanIdLookup,self.histogram) |
---|
1630 | s += "Histogram: rId=" + str(self.histogram) + " (#"+ hist + "); " |
---|
1631 | s += 'Variable name="' + str(self.name) + '">' |
---|
1632 | return s+" ("+self.varname()+")" |
---|
1633 | |
---|
1634 | def __eq__(self, other): |
---|
1635 | if type(other) is type(self): |
---|
1636 | return (self.phase == other.phase and |
---|
1637 | self.histogram == other.histogram and |
---|
1638 | self.name == other.name and |
---|
1639 | self.atom == other.atom) |
---|
1640 | return False |
---|
1641 | |
---|
1642 | def _show(self): |
---|
1643 | 'For testing, shows the current lookup table' |
---|
1644 | print 'phases', self.IDdict['phases'] |
---|
1645 | print 'hists', self.IDdict['hists'] |
---|
1646 | print 'atomDict', self.IDdict['atoms'] |
---|
1647 | |
---|
1648 | #========================================================================== |
---|
1649 | # shortcut routines |
---|
1650 | exp = np.exp |
---|
1651 | sind = sin = s = lambda x: np.sin(x*np.pi/180.) |
---|
1652 | cosd = cos = c = lambda x: np.cos(x*np.pi/180.) |
---|
1653 | tand = tan = t = lambda x: np.tan(x*np.pi/180.) |
---|
1654 | sqrt = sq = lambda x: np.sqrt(x) |
---|
1655 | pi = lambda: np.pi |
---|
1656 | class ExpressionObj(object): |
---|
1657 | '''Defines an object with a user-defined expression, to be used for |
---|
1658 | secondary fits or restraints. Object is created null, but is changed |
---|
1659 | using :meth:`LoadExpression`. This contains only the minimum |
---|
1660 | information that needs to be stored to save and load the expression |
---|
1661 | and how it is mapped to GSAS-II variables. |
---|
1662 | ''' |
---|
1663 | def __init__(self): |
---|
1664 | self.expression = '' |
---|
1665 | 'The expression as a text string' |
---|
1666 | self.assgnVars = {} |
---|
1667 | '''A dict where keys are label names in the expression mapping to a GSAS-II |
---|
1668 | variable. The value a G2 variable name. |
---|
1669 | Note that the G2 variable name may contain a wild-card and correspond to |
---|
1670 | multiple values. |
---|
1671 | ''' |
---|
1672 | self.freeVars = {} |
---|
1673 | '''A dict where keys are label names in the expression mapping to a free |
---|
1674 | parameter. The value is a list with: |
---|
1675 | |
---|
1676 | * a name assigned to the parameter |
---|
1677 | * a value for to the parameter and |
---|
1678 | * a flag to determine if the variable is refined. |
---|
1679 | ''' |
---|
1680 | self.depVar = None |
---|
1681 | |
---|
1682 | self.lastError = ('','') |
---|
1683 | '''Shows last encountered error in processing expression |
---|
1684 | (list of 1-3 str values)''' |
---|
1685 | |
---|
1686 | self.distance_dict = None # to be used for defining atom phase/symmetry info |
---|
1687 | self.distance_atoms = None # to be used for defining atom distances |
---|
1688 | |
---|
1689 | def LoadExpression(self,expr,exprVarLst,varSelect,varName,varValue,varRefflag): |
---|
1690 | '''Load the expression and associated settings into the object. Raises |
---|
1691 | an exception if the expression is not parsed, if not all functions |
---|
1692 | are defined or if not all needed parameter labels in the expression |
---|
1693 | are defined. |
---|
1694 | |
---|
1695 | This will not test if the variable referenced in these definitions |
---|
1696 | are actually in the parameter dictionary. This is checked when the |
---|
1697 | computation for the expression is done in :meth:`SetupCalc`. |
---|
1698 | |
---|
1699 | :param str expr: the expression |
---|
1700 | :param list exprVarLst: parameter labels found in the expression |
---|
1701 | :param dict varSelect: this will be 0 for Free parameters |
---|
1702 | and non-zero for expression labels linked to G2 variables. |
---|
1703 | :param dict varName: Defines a name (str) associated with each free parameter |
---|
1704 | :param dict varValue: Defines a value (float) associated with each free parameter |
---|
1705 | :param dict varRefflag: Defines a refinement flag (bool) |
---|
1706 | associated with each free parameter |
---|
1707 | ''' |
---|
1708 | self.expression = expr |
---|
1709 | self.compiledExpr = None |
---|
1710 | self.freeVars = {} |
---|
1711 | self.assgnVars = {} |
---|
1712 | for v in exprVarLst: |
---|
1713 | if varSelect[v] == 0: |
---|
1714 | self.freeVars[v] = [ |
---|
1715 | varName.get(v), |
---|
1716 | varValue.get(v), |
---|
1717 | varRefflag.get(v), |
---|
1718 | ] |
---|
1719 | else: |
---|
1720 | self.assgnVars[v] = varName[v] |
---|
1721 | self.CheckVars() |
---|
1722 | |
---|
1723 | def EditExpression(self,exprVarLst,varSelect,varName,varValue,varRefflag): |
---|
1724 | '''Load the expression and associated settings from the object into |
---|
1725 | arrays used for editing. |
---|
1726 | |
---|
1727 | :param list exprVarLst: parameter labels found in the expression |
---|
1728 | :param dict varSelect: this will be 0 for Free parameters |
---|
1729 | and non-zero for expression labels linked to G2 variables. |
---|
1730 | :param dict varName: Defines a name (str) associated with each free parameter |
---|
1731 | :param dict varValue: Defines a value (float) associated with each free parameter |
---|
1732 | :param dict varRefflag: Defines a refinement flag (bool) |
---|
1733 | associated with each free parameter |
---|
1734 | |
---|
1735 | :returns: the expression as a str |
---|
1736 | ''' |
---|
1737 | for v in self.freeVars: |
---|
1738 | varSelect[v] = 0 |
---|
1739 | varName[v] = self.freeVars[v][0] |
---|
1740 | varValue[v] = self.freeVars[v][1] |
---|
1741 | varRefflag[v] = self.freeVars[v][2] |
---|
1742 | for v in self.assgnVars: |
---|
1743 | varSelect[v] = 1 |
---|
1744 | varName[v] = self.assgnVars[v] |
---|
1745 | return self.expression |
---|
1746 | |
---|
1747 | def GetVaried(self): |
---|
1748 | 'Returns the names of the free parameters that will be refined' |
---|
1749 | return ["::"+self.freeVars[v][0] for v in self.freeVars if self.freeVars[v][2]] |
---|
1750 | |
---|
1751 | def GetVariedVarVal(self): |
---|
1752 | 'Returns the names and values of the free parameters that will be refined' |
---|
1753 | return [("::"+self.freeVars[v][0],self.freeVars[v][1]) for v in self.freeVars if self.freeVars[v][2]] |
---|
1754 | |
---|
1755 | def UpdateVariedVars(self,varyList,values): |
---|
1756 | 'Updates values for the free parameters (after a refinement); only updates refined vars' |
---|
1757 | for v in self.freeVars: |
---|
1758 | if not self.freeVars[v][2]: continue |
---|
1759 | if "::"+self.freeVars[v][0] not in varyList: continue |
---|
1760 | indx = varyList.index("::"+self.freeVars[v][0]) |
---|
1761 | self.freeVars[v][1] = values[indx] |
---|
1762 | |
---|
1763 | def GetIndependentVars(self): |
---|
1764 | 'Returns the names of the required independent parameters used in expression' |
---|
1765 | return [self.assgnVars[v] for v in self.assgnVars] |
---|
1766 | |
---|
1767 | def CheckVars(self): |
---|
1768 | '''Check that the expression can be parsed, all functions are |
---|
1769 | defined and that input loaded into the object is internally |
---|
1770 | consistent. If not an Exception is raised. |
---|
1771 | |
---|
1772 | :returns: a dict with references to packages needed to |
---|
1773 | find functions referenced in the expression. |
---|
1774 | ''' |
---|
1775 | ret = self.ParseExpression(self.expression) |
---|
1776 | if not ret: |
---|
1777 | raise Exception("Expression parse error") |
---|
1778 | exprLblList,fxnpkgdict = ret |
---|
1779 | # check each var used in expression is defined |
---|
1780 | defined = self.assgnVars.keys() + self.freeVars.keys() |
---|
1781 | notfound = [] |
---|
1782 | for var in exprLblList: |
---|
1783 | if var not in defined: |
---|
1784 | notfound.append(var) |
---|
1785 | if notfound: |
---|
1786 | msg = 'Not all variables defined' |
---|
1787 | msg1 = 'The following variables were not defined: ' |
---|
1788 | msg2 = '' |
---|
1789 | for var in notfound: |
---|
1790 | if msg: msg += ', ' |
---|
1791 | msg += var |
---|
1792 | self.lastError = (msg1,' '+msg2) |
---|
1793 | raise Exception(msg) |
---|
1794 | return fxnpkgdict |
---|
1795 | |
---|
1796 | def ParseExpression(self,expr): |
---|
1797 | '''Parse an expression and return a dict of called functions and |
---|
1798 | the variables used in the expression. Returns None in case an error |
---|
1799 | is encountered. If packages are referenced in functions, they are loaded |
---|
1800 | and the functions are looked up into the modules global |
---|
1801 | workspace. |
---|
1802 | |
---|
1803 | Note that no changes are made to the object other than |
---|
1804 | saving an error message, so that this can be used for testing prior |
---|
1805 | to the save. |
---|
1806 | |
---|
1807 | :returns: a list of used variables |
---|
1808 | ''' |
---|
1809 | self.lastError = ('','') |
---|
1810 | import ast |
---|
1811 | def FindFunction(f): |
---|
1812 | '''Find the object corresponding to function f |
---|
1813 | :param str f: a function name such as 'numpy.exp' |
---|
1814 | :returns: (pkgdict,pkgobj) where pkgdict contains a dict |
---|
1815 | that defines the package location(s) and where pkgobj |
---|
1816 | defines the object associated with the function. |
---|
1817 | If the function is not found, pkgobj is None. |
---|
1818 | ''' |
---|
1819 | df = f.split('.') |
---|
1820 | pkgdict = {} |
---|
1821 | # no listed package, try in current namespace |
---|
1822 | if len(df) == 1: |
---|
1823 | try: |
---|
1824 | fxnobj = eval(f) |
---|
1825 | return pkgdict,fxnobj |
---|
1826 | except (AttributeError, NameError): |
---|
1827 | return None,None |
---|
1828 | else: |
---|
1829 | try: |
---|
1830 | fxnobj = eval(f) |
---|
1831 | pkgdict[df[0]] = eval(df[0]) |
---|
1832 | return pkgdict,fxnobj |
---|
1833 | except (AttributeError, NameError): |
---|
1834 | pass |
---|
1835 | # includes a package, lets try to load the packages |
---|
1836 | pkgname = '' |
---|
1837 | path = sys.path |
---|
1838 | for pkg in f.split('.')[:-1]: # if needed, descend down the tree |
---|
1839 | if pkgname: |
---|
1840 | pkgname += '.' + pkg |
---|
1841 | else: |
---|
1842 | pkgname = pkg |
---|
1843 | fp = None |
---|
1844 | try: |
---|
1845 | fp, fppath,desc = imp.find_module(pkg,path) |
---|
1846 | pkgobj = imp.load_module(pkg,fp,fppath,desc) |
---|
1847 | pkgdict[pkgname] = pkgobj |
---|
1848 | path = [fppath] |
---|
1849 | except Exception as msg: |
---|
1850 | print('load of '+pkgname+' failed with error='+str(msg)) |
---|
1851 | return {},None |
---|
1852 | finally: |
---|
1853 | if fp: fp.close() |
---|
1854 | try: |
---|
1855 | #print 'before',pkgdict.keys() |
---|
1856 | fxnobj = eval(f,globals(),pkgdict) |
---|
1857 | #print 'after 1',pkgdict.keys() |
---|
1858 | #fxnobj = eval(f,pkgdict) |
---|
1859 | #print 'after 2',pkgdict.keys() |
---|
1860 | return pkgdict,fxnobj |
---|
1861 | except: |
---|
1862 | continue |
---|
1863 | return None # not found |
---|
1864 | def ASTtransverse(node,fxn=False): |
---|
1865 | '''Transverse a AST-parsed expresson, compiling a list of variables |
---|
1866 | referenced in the expression. This routine is used recursively. |
---|
1867 | |
---|
1868 | :returns: varlist,fxnlist where |
---|
1869 | varlist is a list of referenced variable names and |
---|
1870 | fxnlist is a list of used functions |
---|
1871 | ''' |
---|
1872 | varlist = [] |
---|
1873 | fxnlist = [] |
---|
1874 | if isinstance(node, list): |
---|
1875 | for b in node: |
---|
1876 | v,f = ASTtransverse(b,fxn) |
---|
1877 | varlist += v |
---|
1878 | fxnlist += f |
---|
1879 | elif isinstance(node, ast.AST): |
---|
1880 | for a, b in ast.iter_fields(node): |
---|
1881 | if isinstance(b, ast.AST): |
---|
1882 | if a == 'func': |
---|
1883 | fxnlist += ['.'.join(ASTtransverse(b,True)[0])] |
---|
1884 | continue |
---|
1885 | v,f = ASTtransverse(b,fxn) |
---|
1886 | varlist += v |
---|
1887 | fxnlist += f |
---|
1888 | elif isinstance(b, list): |
---|
1889 | v,f = ASTtransverse(b,fxn) |
---|
1890 | varlist += v |
---|
1891 | fxnlist += f |
---|
1892 | elif node.__class__.__name__ == "Name": |
---|
1893 | varlist += [b] |
---|
1894 | elif fxn and node.__class__.__name__ == "Attribute": |
---|
1895 | varlist += [b] |
---|
1896 | return varlist,fxnlist |
---|
1897 | try: |
---|
1898 | exprast = ast.parse(expr) |
---|
1899 | except SyntaxError: |
---|
1900 | s = '' |
---|
1901 | import traceback |
---|
1902 | for i in traceback.format_exc().splitlines()[-3:-1]: |
---|
1903 | if s: s += "\n" |
---|
1904 | s += str(i) |
---|
1905 | self.lastError = ("Error parsing expression:",s) |
---|
1906 | return |
---|
1907 | # find the variables & functions |
---|
1908 | v,f = ASTtransverse(exprast) |
---|
1909 | varlist = sorted(list(set(v))) |
---|
1910 | fxnlist = list(set(f)) |
---|
1911 | pkgdict = {} |
---|
1912 | # check the functions are defined |
---|
1913 | for fxn in fxnlist: |
---|
1914 | fxndict,fxnobj = FindFunction(fxn) |
---|
1915 | if not fxnobj: |
---|
1916 | self.lastError = ("Error: Invalid function",fxn, |
---|
1917 | "is not defined") |
---|
1918 | return |
---|
1919 | if not hasattr(fxnobj,'__call__'): |
---|
1920 | self.lastError = ("Error: Not a function.",fxn, |
---|
1921 | "cannot be called as a function") |
---|
1922 | return |
---|
1923 | pkgdict.update(fxndict) |
---|
1924 | return varlist,pkgdict |
---|
1925 | |
---|
1926 | def GetDepVar(self): |
---|
1927 | 'return the dependent variable, or None' |
---|
1928 | return self.depVar |
---|
1929 | |
---|
1930 | def SetDepVar(self,var): |
---|
1931 | 'Set the dependent variable, if used' |
---|
1932 | self.depVar = var |
---|
1933 | #========================================================================== |
---|
1934 | class ExpressionCalcObj(object): |
---|
1935 | '''An object used to evaluate an expression from a :class:`ExpressionObj` |
---|
1936 | object. |
---|
1937 | |
---|
1938 | :param ExpressionObj exprObj: a :class:`~ExpressionObj` expression object with |
---|
1939 | an expression string and mappings for the parameter labels in that object. |
---|
1940 | ''' |
---|
1941 | def __init__(self,exprObj): |
---|
1942 | self.eObj = exprObj |
---|
1943 | 'The expression and mappings; a :class:`ExpressionObj` object' |
---|
1944 | self.compiledExpr = None |
---|
1945 | 'The expression as compiled byte-code' |
---|
1946 | self.exprDict = {} |
---|
1947 | '''dict that defines values for labels used in expression and packages |
---|
1948 | referenced by functions |
---|
1949 | ''' |
---|
1950 | self.lblLookup = {} |
---|
1951 | '''Lookup table that specifies the expression label name that is |
---|
1952 | tied to a particular GSAS-II parameters in the parmDict. |
---|
1953 | ''' |
---|
1954 | self.fxnpkgdict = {} |
---|
1955 | '''a dict with references to packages needed to |
---|
1956 | find functions referenced in the expression. |
---|
1957 | ''' |
---|
1958 | self.varLookup = {} |
---|
1959 | '''Lookup table that specifies the GSAS-II variable(s) |
---|
1960 | indexed by the expression label name. (Used for only for diagnostics |
---|
1961 | not evaluation of expression.) |
---|
1962 | ''' |
---|
1963 | self.su = None |
---|
1964 | '''Standard error evaluation where supplied by the evaluator |
---|
1965 | ''' |
---|
1966 | # Patch: for old-style expressions with a (now removed step size) |
---|
1967 | for v in self.eObj.assgnVars: |
---|
1968 | if not isinstance(self.eObj.assgnVars[v], basestring): |
---|
1969 | self.eObj.assgnVars[v] = self.eObj.assgnVars[v][0] |
---|
1970 | self.parmDict = {} |
---|
1971 | '''A copy of the parameter dictionary, for distance and angle computation |
---|
1972 | ''' |
---|
1973 | |
---|
1974 | def SetupCalc(self,parmDict): |
---|
1975 | '''Do all preparations to use the expression for computation. |
---|
1976 | Adds the free parameter values to the parameter dict (parmDict). |
---|
1977 | ''' |
---|
1978 | if self.eObj.expression.startswith('Dist') or self.eObj.expression.startswith('Angle'): |
---|
1979 | return |
---|
1980 | self.fxnpkgdict = self.eObj.CheckVars() |
---|
1981 | # all is OK, compile the expression |
---|
1982 | self.compiledExpr = compile(self.eObj.expression,'','eval') |
---|
1983 | |
---|
1984 | # look at first value in parmDict to determine its type |
---|
1985 | parmsInList = True |
---|
1986 | for key in parmDict: |
---|
1987 | val = parmDict[key] |
---|
1988 | if isinstance(val, basestring): |
---|
1989 | parmsInList = False |
---|
1990 | break |
---|
1991 | try: # check if values are in lists |
---|
1992 | val = parmDict[key][0] |
---|
1993 | except (TypeError,IndexError): |
---|
1994 | parmsInList = False |
---|
1995 | break |
---|
1996 | |
---|
1997 | # set up the dicts needed to speed computations |
---|
1998 | self.exprDict = {} |
---|
1999 | self.lblLookup = {} |
---|
2000 | self.varLookup = {} |
---|
2001 | for v in self.eObj.freeVars: |
---|
2002 | varname = self.eObj.freeVars[v][0] |
---|
2003 | varname = "::" + varname.lstrip(':').replace(' ','_').replace(':',';') |
---|
2004 | self.lblLookup[varname] = v |
---|
2005 | self.varLookup[v] = varname |
---|
2006 | if parmsInList: |
---|
2007 | parmDict[varname] = [self.eObj.freeVars[v][1],self.eObj.freeVars[v][2]] |
---|
2008 | else: |
---|
2009 | parmDict[varname] = self.eObj.freeVars[v][1] |
---|
2010 | self.exprDict[v] = self.eObj.freeVars[v][1] |
---|
2011 | for v in self.eObj.assgnVars: |
---|
2012 | varname = self.eObj.assgnVars[v] |
---|
2013 | if '*' in varname: |
---|
2014 | varlist = LookupWildCard(varname,parmDict.keys()) |
---|
2015 | if len(varlist) == 0: |
---|
2016 | raise Exception,"No variables match "+str(v) |
---|
2017 | for var in varlist: |
---|
2018 | self.lblLookup[var] = v |
---|
2019 | if parmsInList: |
---|
2020 | self.exprDict[v] = np.array([parmDict[var][0] for var in varlist]) |
---|
2021 | else: |
---|
2022 | self.exprDict[v] = np.array([parmDict[var] for var in varlist]) |
---|
2023 | self.varLookup[v] = [var for var in varlist] |
---|
2024 | elif varname in parmDict: |
---|
2025 | self.lblLookup[varname] = v |
---|
2026 | self.varLookup[v] = varname |
---|
2027 | if parmsInList: |
---|
2028 | self.exprDict[v] = parmDict[varname][0] |
---|
2029 | else: |
---|
2030 | self.exprDict[v] = parmDict[varname] |
---|
2031 | else: |
---|
2032 | self.exprDict[v] = None |
---|
2033 | # raise Exception,"No value for variable "+str(v) |
---|
2034 | self.exprDict.update(self.fxnpkgdict) |
---|
2035 | |
---|
2036 | def UpdateVars(self,varList,valList): |
---|
2037 | '''Update the dict for the expression with a set of values |
---|
2038 | :param list varList: a list of variable names |
---|
2039 | :param list valList: a list of corresponding values |
---|
2040 | ''' |
---|
2041 | for var,val in zip(varList,valList): |
---|
2042 | self.exprDict[self.lblLookup.get(var,'undefined: '+var)] = val |
---|
2043 | |
---|
2044 | def UpdateDict(self,parmDict): |
---|
2045 | '''Update the dict for the expression with values in a dict |
---|
2046 | :param list parmDict: a dict of values some of which may be in use here |
---|
2047 | ''' |
---|
2048 | if self.eObj.expression.startswith('Dist') or self.eObj.expression.startswith('Angle'): |
---|
2049 | self.parmDict = parmDict |
---|
2050 | return |
---|
2051 | for var in parmDict: |
---|
2052 | if var in self.lblLookup: |
---|
2053 | self.exprDict[self.lblLookup[var]] = parmDict[var] |
---|
2054 | |
---|
2055 | def EvalExpression(self): |
---|
2056 | '''Evaluate an expression. Note that the expression |
---|
2057 | and mapping are taken from the :class:`ExpressionObj` expression object |
---|
2058 | and the parameter values were specified in :meth:`SetupCalc`. |
---|
2059 | :returns: a single value for the expression. If parameter |
---|
2060 | values are arrays (for example, from wild-carded variable names), |
---|
2061 | the sum of the resulting expression is returned. |
---|
2062 | |
---|
2063 | For example, if the expression is ``'A*B'``, |
---|
2064 | where A is 2.0 and B maps to ``'1::Afrac:*'``, which evaluates to:: |
---|
2065 | |
---|
2066 | [0.5, 1, 0.5] |
---|
2067 | |
---|
2068 | then the result will be ``4.0``. |
---|
2069 | ''' |
---|
2070 | self.su = None |
---|
2071 | if self.eObj.expression.startswith('Dist'): |
---|
2072 | # GSASIIpath.IPyBreak() |
---|
2073 | dist = G2mth.CalcDist(self.eObj.distance_dict, self.eObj.distance_atoms, self.parmDict) |
---|
2074 | return dist |
---|
2075 | elif self.eObj.expression.startswith('Angle'): |
---|
2076 | angle = G2mth.CalcAngle(self.eObj.angle_dict, self.eObj.angle_atoms, self.parmDict) |
---|
2077 | return angle |
---|
2078 | if self.compiledExpr is None: |
---|
2079 | raise Exception,"EvalExpression called before SetupCalc" |
---|
2080 | try: |
---|
2081 | val = eval(self.compiledExpr,globals(),self.exprDict) |
---|
2082 | except TypeError: |
---|
2083 | val = None |
---|
2084 | if not np.isscalar(val): |
---|
2085 | val = np.sum(val) |
---|
2086 | return val |
---|
2087 | |
---|
2088 | class G2Exception(Exception): |
---|
2089 | def __init__(self,msg): |
---|
2090 | self.msg = msg |
---|
2091 | def __str__(self): |
---|
2092 | return repr(self.msg) |
---|
2093 | |
---|
2094 | def CreatePDFitems(G2frame,PWDRtree,ElList,Qlimits,numAtm=1,FltBkg=0,PDFnames=[]): |
---|
2095 | '''Create and initialize a new set of PDF tree entries |
---|
2096 | |
---|
2097 | :param Frame G2frame: main GSAS-II tree frame object |
---|
2098 | :param str PWDRtree: name of PWDR to be used to create PDF item |
---|
2099 | :param dict ElList: data structure with composition |
---|
2100 | :param list Qlimits: Q limits to be used for computing the PDF |
---|
2101 | :param float numAtm: no. atom in chemical formula |
---|
2102 | :param float FltBkg: flat background value |
---|
2103 | :param list PDFnames: previously used PDF names |
---|
2104 | |
---|
2105 | :returns: the Id of the newly created PDF entry |
---|
2106 | ''' |
---|
2107 | PDFname = 'PDF '+PWDRtree[4:] # this places two spaces after PDF, which is needed is some places |
---|
2108 | if PDFname in PDFnames: |
---|
2109 | print('Skipping, entry already exists: '+PDFname) |
---|
2110 | return None |
---|
2111 | #PDFname = MakeUniqueLabel(PDFname,PDFnames) |
---|
2112 | Id = G2frame.PatternTree.AppendItem(parent=G2frame.root,text=PDFname) |
---|
2113 | Data = { |
---|
2114 | 'Sample':{'Name':PWDRtree,'Mult':1.0}, |
---|
2115 | 'Sample Bkg.':{'Name':'','Mult':-1.0,'Refine':False}, |
---|
2116 | 'Container':{'Name':'','Mult':-1.0,'Refine':False}, |
---|
2117 | 'Container Bkg.':{'Name':'','Mult':-1.0},'ElList':ElList, |
---|
2118 | 'Geometry':'Cylinder','Diam':1.0,'Pack':0.50,'Form Vol':10.0*numAtm,'Flat Bkg':FltBkg, |
---|
2119 | 'DetType':'Area detector','ObliqCoeff':0.2,'Ruland':0.025,'QScaleLim':Qlimits, |
---|
2120 | 'Lorch':False,'BackRatio':0.0,'Rmax':100.,'noRing':False,'IofQmin':1.0, |
---|
2121 | 'I(Q)':[],'S(Q)':[],'F(Q)':[],'G(R)':[]} |
---|
2122 | G2frame.PatternTree.SetItemPyData(G2frame.PatternTree.AppendItem(Id,text='PDF Controls'),Data) |
---|
2123 | G2frame.PatternTree.SetItemPyData(G2frame.PatternTree.AppendItem(Id,text='PDF Peaks'), |
---|
2124 | {'Limits':[1.,5.],'Background':[2,[0.,-0.2*np.pi],False],'Peaks':[]}) |
---|
2125 | return Id |
---|
2126 | |
---|
2127 | |
---|
2128 | if __name__ == "__main__": |
---|
2129 | # test equation evaluation |
---|
2130 | def showEQ(calcobj): |
---|
2131 | print 50*'=' |
---|
2132 | print calcobj.eObj.expression,'=',calcobj.EvalExpression() |
---|
2133 | for v in sorted(calcobj.varLookup): |
---|
2134 | print " ",v,'=',calcobj.exprDict[v],'=',calcobj.varLookup[v] |
---|
2135 | # print ' Derivatives' |
---|
2136 | # for v in calcobj.derivStep.keys(): |
---|
2137 | # print ' d(Expr)/d('+v+') =',calcobj.EvalDeriv(v) |
---|
2138 | |
---|
2139 | obj = ExpressionObj() |
---|
2140 | |
---|
2141 | obj.expression = "A*np.exp(B)" |
---|
2142 | obj.assgnVars = {'B': '0::Afrac:1'} |
---|
2143 | obj.freeVars = {'A': [u'A', 0.5, True]} |
---|
2144 | #obj.CheckVars() |
---|
2145 | calcobj = ExpressionCalcObj(obj) |
---|
2146 | |
---|
2147 | obj1 = ExpressionObj() |
---|
2148 | obj1.expression = "A*np.exp(B)" |
---|
2149 | obj1.assgnVars = {'B': '0::Afrac:*'} |
---|
2150 | obj1.freeVars = {'A': [u'Free Prm A', 0.5, True]} |
---|
2151 | #obj.CheckVars() |
---|
2152 | calcobj1 = ExpressionCalcObj(obj1) |
---|
2153 | |
---|
2154 | obj2 = ExpressionObj() |
---|
2155 | obj2.distance_stuff = np.array([[0,1],[1,-1]]) |
---|
2156 | obj2.expression = "Dist(1,2)" |
---|
2157 | GSASIIpath.InvokeDebugOpts() |
---|
2158 | parmDict2 = {'0::Afrac:0':[0.0,True], '0::Afrac:1': [1.0,False]} |
---|
2159 | calcobj2 = ExpressionCalcObj(obj2) |
---|
2160 | calcobj2.SetupCalc(parmDict2) |
---|
2161 | showEQ(calcobj2) |
---|
2162 | |
---|
2163 | parmDict1 = {'0::Afrac:0':1.0, '0::Afrac:1': 1.0} |
---|
2164 | print '\nDict = ',parmDict1 |
---|
2165 | calcobj.SetupCalc(parmDict1) |
---|
2166 | showEQ(calcobj) |
---|
2167 | calcobj1.SetupCalc(parmDict1) |
---|
2168 | showEQ(calcobj1) |
---|
2169 | |
---|
2170 | parmDict2 = {'0::Afrac:0':[0.0,True], '0::Afrac:1': [1.0,False]} |
---|
2171 | print 'Dict = ',parmDict2 |
---|
2172 | calcobj.SetupCalc(parmDict2) |
---|
2173 | showEQ(calcobj) |
---|
2174 | calcobj1.SetupCalc(parmDict2) |
---|
2175 | showEQ(calcobj1) |
---|
2176 | calcobj2.SetupCalc(parmDict2) |
---|
2177 | showEQ(calcobj2) |
---|