Changeset 1340 for trunk/GSASIIobj.py
- Timestamp:
- May 10, 2014 8:12:27 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIobj.py
r1338 r1340 1247 1247 'Vol' : 'Unit cell volume', 1248 1248 # Atom vars (p::<var>:a) 1249 'dA([xyz]) ' : 'change to atomic coordinate, \\1',1249 'dA([xyz])$' : 'change to atomic coordinate, \\1', 1250 1250 'A([xyz])$' : '\\1 fractional atomic coordinate', 1251 1251 'AUiso':'Atomic isotropic displacement parameter', … … 1271 1271 'Polariz\.' : 'Polarization correction', 1272 1272 'SH/L' : 'FCJ peak asymmetry correction', 1273 '([UVW]) ' : 'Gaussian instrument broadening \\1',1274 '([XY]) ' : 'Cauchy instrument broadening \\1',1273 '([UVW])$' : 'Gaussian instrument broadening \\1', 1274 '([XY])$' : 'Cauchy instrument broadening \\1', 1275 1275 'Zero' : 'Debye-Scherrer zero correction', 1276 1276 'nDebye' : 'Debye model background corr. terms', … … 1565 1565 # shortcut routines 1566 1566 exp = np.exp 1567 sind = lambda x: np.sin(x*np.pi/180.)1568 tand = lambda x: np.tan(x*np.pi/180.)1569 cosd = lambda x: np.cos(x*np.pi/180.)1570 1567 sind = sin = s = lambda x: np.sin(x*np.pi/180.) 1571 1568 cosd = cos = c = lambda x: np.cos(x*np.pi/180.) … … 1585 1582 self.assgnVars = {} 1586 1583 '''A dict where keys are label names in the expression mapping to a GSAS-II 1587 variable. The value is a list with a G2 variable name and derivative step size.1584 variable. The value a G2 variable name. 1588 1585 Note that the G2 variable name may contain a wild-card and correspond to 1589 1586 multiple values.
Note: See TracChangeset
for help on using the changeset viewer.