Changeset 2807
- Timestamp:
- Apr 24, 2017 1:52:27 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r2806 r2807 437 437 helptext = '''\t\t\tGSAS-II space group information 438 438 439 Space groups are entered here as given in Volume A of the International Tables, 440 except that spaces are placed between operators (e.g. "P 4/m m m" or "P -3 1 m"). 441 442 Where a centrosymmetric space group has alternate origin settings, Origin 2 (with 443 the center of symmetry at the origin, which gives a -x,-y,-z symmetry operator) is 444 always used. 439 Space groups are entered here as given in Volume I or Volume A of the 440 International Tables using the short Hermann-Mauguin symbol,except that spaces 441 are placed between axial fields (e.g. "P 4/m m m", "F D 3 M" or "p -3 1 m"). 442 NB: the cubic "bar" in "F d -3 m" is unnecessary, and upper/lower case is not required. 443 444 Where a centrosymmetric tetragonal or cubic space group has alternate origin settings, 445 Origin choice 2 (with the center of symmetry at the origin, which gives an -x,-y,-z 446 symmetry operator) is always used. Refer to the relevant pages in IT I or A to find 447 the offset in atom positions between the two choices. 445 448 446 449 For rhombohedral space groups, (R xxx) the hexagonal setting is assumed. Append a 447 450 final R to the name (R xxx R) to indicate that a rhombohedral cell should be 448 used (not recommended when alpha >> 120 , due to correlation.)451 used (not recommended when alpha >> 120 or << 60, due to correlation.) 449 452 450 453 GSAS-II will accept non-standard settings of space groups. For example, space 451 group "P -1" can be set to include face centering, using symbol "F -1". 454 group "P -1" can be set to include face centering, using symbol "F -1" and "P 1 1 21/a" 455 as a nonstandard version of "P 21/c". 452 456 453 457 Review the symmetry operators generated by GSAS-II to confirm that you have 454 458 entered the right symbol for your structure. 455 459 ''' 456 dlg = G2G.SingleStringDialog(General, 457 'Get Space Group', 458 'Input the space group with spaces between operators (e.g. P 4/m m m)', 459 value=generalData['SGData']['SpGrp'],help=helptext) 460 dlg = G2G.SingleStringDialog(General,'Get Space Group', 461 ' Input the space group with spaces between axial fields \n (e.g. p 21/c, P 63/m m c, P 4/m m m', 462 value=generalData['SGData']['SpGrp'],help=helptext) 460 463 if not dlg.Show(): 461 464 dlg.Destroy() … … 3526 3529 labelY='difference',newPlot=True,Title='DIFFaX vs GSASII',lines=True) 3527 3530 # GSASIIpath.IPyBreak() 3528 G2plt.PlotPatterns(G2frame,plotType='PWDR' )3531 G2plt.PlotPatterns(G2frame,plotType='PWDR',newPlot=True) 3529 3532 else: #selected area 3530 3533 data['Layers']['Sadp'] = {} -
trunk/imports/G2pwd_BrukerRAW.py
r2738 r2807 128 128 for iBlock in range(blockNum): 129 129 headLen = int(st.unpack('<i',File.read(4))[0]) 130 if nBlock > 1:131 headLen += 40130 # if nBlock > 1: 131 # headLen += 40 132 132 nSteps = int(st.unpack('<i',File.read(4))[0]) 133 133 if not nSteps: break
Note: See TracChangeset
for help on using the changeset viewer.