Changeset 460
- Timestamp:
- Jan 31, 2012 3:40:48 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r459 r460 46 46 [ wxID_DRAWATOMSTYLE, wxID_DRAWATOMLABEL, wxID_DRAWATOMCOLOR, wxID_DRAWATOMRESETCOLOR, 47 47 wxID_DRAWVIEWPOINT, wxID_DRAWTRANSFORM, wxID_DRAWDELETE, wxID_DRAWFILLCELL, 48 wxID_DRAWADDEQUIV, wxID_DRAWFILLCOORD, wxID_DRAWDISAGL, wxID_DRAWTORSION, 49 ] = [wx.NewId() for _init_coll_DrawAtom_Items in range(1 2)]48 wxID_DRAWADDEQUIV, wxID_DRAWFILLCOORD, wxID_DRAWDISAGL, wxID_DRAWTORSION, wxID_DRAWPLANE, 49 ] = [wx.NewId() for _init_coll_DrawAtom_Items in range(13)] 50 50 51 51 [ wxID_IMCALIBRATE,wxID_IMRECALIBRATE,wxID_IMINTEGRATE, wxID_IMCLEARCALIB, … … 509 509 self.DrawAtomCompute.Append(id=wxID_DRAWDISAGL, kind=wx.ITEM_NORMAL,text='Distances & Angles', 510 510 help='Compute distances & angles for selected atoms') 511 self.DrawAtomCompute.Append(id=wxID_DRAWTORSION, kind=wx.ITEM_NORMAL,text='Torsion s',511 self.DrawAtomCompute.Append(id=wxID_DRAWTORSION, kind=wx.ITEM_NORMAL,text='Torsion angle', 512 512 help='Compute torsion angle for 4 selected atoms') 513 self.DrawAtomCompute.Append(id=wxID_DRAWPLANE, kind=wx.ITEM_NORMAL,text='Best plane', 514 help='Compute best plane for 3+ selected atoms') 513 515 514 516 # end of GSAS-II menu definitions -
trunk/GSASIIphsGUI.py
r459 r460 1080 1080 if 'DisAglCtls' in generalData: 1081 1081 DisAglCtls = generalData['DisAglCtls'] 1082 # else:1083 # DisAglCtls['Name'] = generalData['Name']1084 # DisAglCtls['Factors'] = [0.85,0.85]1085 # DisAglCtls['AtomTypes'] = generalData['AtomTypes']1086 # DisAglCtls['BondRadii'] = generalData['BondRadii']1087 # DisAglCtls['AngleRadii'] = generalData['AngleRadii']1088 1082 dlg = DisAglDialog(self,DisAglCtls,generalData) 1089 1083 if dlg.ShowModal() == wx.ID_OK: … … 1834 1828 def OnDrawTorsion(event): 1835 1829 indx = drawAtoms.GetSelectedRows() 1836 print 'Future torsion calc for atoms',indx 1837 1830 if len(indx) != 4: 1831 print '**** ERROR - need 4 atoms for torsion calculation' 1832 return 1833 TorsionData = {} 1834 drawingData = data['Drawing'] 1835 atomData = drawingData['Atoms'] 1836 colLabels = [drawAtoms.GetColLabelValue(c) for c in range(drawAtoms.GetNumberCols())] 1837 cx = colLabels.index('x') 1838 cn = colLabels.index('Name') 1839 xyz = [] 1840 for i,atom in enumerate(atomData): 1841 if i in indx: 1842 xyz.append([i,]+atom[cn:cn+2]+atom[cx:cx+4]) #also gets Sym Op 1843 TorsionData['Atoms'] = xyz 1844 generalData = data['General'] 1845 TorsionData['Name'] = generalData['Name'] 1846 TorsionData['SGData'] = generalData['SGData'] 1847 TorsionData['Cell'] = generalData['Cell'][1:] #+ volume 1848 if 'pId' in data: 1849 TorsionData['pId'] = data['pId'] 1850 TorsionData['covData'] = self.PatternTree.GetItemPyData(G2gd.GetPatternTreeItemId(self,self.root, 'Covariance')) 1851 G2str.Torsion(TorsionData) 1852 1853 def OnDrawPlane(event): 1854 indx = drawAtoms.GetSelectedRows() 1855 if len(indx) < 3: 1856 print '**** ERROR - need 3+ atoms for plane calculation' 1857 return 1858 PlaneData = {} 1859 drawingData = data['Drawing'] 1860 atomData = drawingData['Atoms'] 1861 colLabels = [drawAtoms.GetColLabelValue(c) for c in range(drawAtoms.GetNumberCols())] 1862 cx = colLabels.index('x') 1863 cn = colLabels.index('Name') 1864 xyz = [] 1865 for i,atom in enumerate(atomData): 1866 if i in indx: 1867 xyz.append([i,]+atom[cn:cn+2]+atom[cx:cx+3]) 1868 generalData = data['General'] 1869 PlaneData['Name'] = generalData['Name'] 1870 PlaneData['Atoms'] = xyz 1871 PlaneData['Cell'] = generalData['Cell'][1:] #+ volume 1872 G2str.BestPlane(PlaneData) 1873 1838 1874 def OnDrawDistAngle(event): 1839 1875 indx = drawAtoms.GetSelectedRows() … … 3098 3134 self.dataFrame.Bind(wx.EVT_MENU, OnDrawDistAngle, id=G2gd.wxID_DRAWDISAGL) 3099 3135 self.dataFrame.Bind(wx.EVT_MENU, OnDrawTorsion, id=G2gd.wxID_DRAWTORSION) 3136 self.dataFrame.Bind(wx.EVT_MENU, OnDrawPlane, id=G2gd.wxID_DRAWPLANE) 3100 3137 UpdateDrawAtoms() 3101 3138 G2plt.PlotStructure(self,data) -
trunk/GSASIIplot.py
r456 r460 2184 2184 self.G2plotNB.status.SetStatusText('Drawing saved to: '+Fname,1) 2185 2185 2186 def GetTruePosition(xy ):2186 def GetTruePosition(xy,Add=False): 2187 2187 View = glGetIntegerv(GL_VIEWPORT) 2188 2188 Proj = glGetDoublev(GL_PROJECTION_MATRIX) 2189 2189 Model = glGetDoublev(GL_MODELVIEW_MATRIX) 2190 2190 Zmax = 1. 2191 if Add: 2192 Indx = GetSelectedAtoms() 2191 2193 for i,atom in enumerate(drawAtoms): 2192 2194 x,y,z = atom[cx:cx+3] … … 2195 2197 if np.allclose(xy,XY,atol=10) and Z < Zmax: 2196 2198 Zmax = Z 2197 SetSelectedAtoms(i) 2199 try: 2200 Indx.remove(i) 2201 ClearSelectedAtoms() 2202 for id in Indx: 2203 SetSelectedAtoms(id,Add) 2204 except: 2205 SetSelectedAtoms(i,Add) 2198 2206 2199 2207 def OnMouseDown(event): 2200 2208 xy = event.GetPosition() 2201 2209 if event.ShiftDown(): 2202 GetTruePosition(xy) 2210 if event.LeftIsDown(): 2211 GetTruePosition(xy) 2212 elif event.RightIsDown(): 2213 GetTruePosition(xy,True) 2203 2214 else: 2204 2215 drawingData['Rotation'][3] = xy … … 2206 2217 2207 2218 def OnMouseMove(event): 2219 if event.ShiftDown(): 2220 return 2208 2221 newxy = event.GetPosition() 2209 2222 page = getSelection() … … 2217 2230 x,y,z = drawingData['testPos'][0] 2218 2231 self.G2plotNB.status.SetStatusText('moving test point %.4f,%.4f,%.4f'%(x,y,z),1) 2219 2220 2232 2221 2233 if event.Dragging() and not event.ControlDown(): 2222 2234 if event.LeftIsDown(): … … 2235 2247 2236 2248 def OnMouseWheel(event): 2249 if event.ShiftDown(): 2250 return 2237 2251 drawingData['cameraPos'] += event.GetWheelRotation()/24 2238 2252 drawingData['cameraPos'] = max(10,min(500,drawingData['cameraPos'])) … … 2271 2285 self.dataDisplay.GetPage(page).ClearSelection() #this is the Atoms grid in Atoms 2272 2286 2273 def SetSelectedAtoms(ind ):2287 def SetSelectedAtoms(ind,Add=False): 2274 2288 page = getSelection() 2275 2289 if page: 2276 2290 if self.dataDisplay.GetPageText(page) == 'Draw Atoms': 2277 self.dataDisplay.GetPage(page).SelectRow(ind ) #this is the Atoms grid in Draw Atoms2291 self.dataDisplay.GetPage(page).SelectRow(ind,Add) #this is the Atoms grid in Draw Atoms 2278 2292 elif self.dataDisplay.GetPageText(page) == 'Atoms': 2279 2293 Id = drawAtoms[ind][-2] -
trunk/GSASIIstruct.py
r459 r460 2673 2673 val = '%8.4f'%(dist[4]) 2674 2674 print ' %8s%10s+(%4d) %12s'%(dist[1].ljust(8),dist[2].ljust(10),dist[3],val.center(12)),line 2675 2675 2676 def Torsion(TorsionData): 2677 2678 def ShowBanner(name): 2679 print 80*'*' 2680 print ' Torsion angle for phase '+name 2681 print 80*'*','\n' 2682 2683 ShowBanner(TorsionData['Name']) 2684 SGData = TorsionData['SGData'] 2685 SGtext = G2spc.SGPrint(SGData) 2686 for line in SGtext: print line 2687 Cell = TorsionData['Cell'] 2688 2689 Amat,Bmat = G2lat.cell2AB(Cell[:6]) 2690 covData = {} 2691 if 'covData' in TorsionData: 2692 covData = TorsionData['covData'] 2693 covMatrix = covData['covMatrix'] 2694 varyList = covData['varyList'] 2695 pfx = str(TorsionData['pId'])+'::' 2696 A = G2lat.cell2A(Cell[:6]) 2697 cellSig = getCellEsd(pfx,SGData,A,covData) 2698 names = [' a = ',' b = ',' c = ',' alpha = ',' beta = ',' gamma = ',' Volume = '] 2699 valEsd = [G2mth.ValEsd(Cell[i],cellSig[i],True) for i in range(7)] 2700 line = '\n Unit cell:' 2701 for name,vals in zip(names,valEsd): 2702 line += name+vals 2703 print line 2704 else: 2705 print '\n Unit cell: a = ','%.5f'%(Cell[0]),' b = ','%.5f'%(Cell[1]),' c = ','%.5f'%(Cell[2]), \ 2706 ' alpha = ','%.3f'%(Cell[3]),' beta = ','%.3f'%(Cell[4]),' gamma = ', \ 2707 '%.3f'%(Cell[5]),' volume = ','%.3f'%(Cell[6]) 2708 for atom in TorsionData['Atoms']: 2709 print atom 2710 2711 def BestPlane(PlaneData): 2712 2713 def ShowBanner(name): 2714 print 80*'*' 2715 print ' Best plane result for phase '+name 2716 print 80*'*','\n' 2717 2718 ShowBanner(PlaneData['Name']) 2719 2720 # Cell = PlaneData['Cell'] 2721 # Amat,Bmat = G2lat.cell2AB(Cell[:6]) 2722 # 2723 # Atoms = PlaneData['Atoms'] 2724 # sumXYZ = np.zeros(3) 2725 # XYZ = [] 2726 # Natoms = len(Atoms) 2727 # for atom in Atoms: 2728 # xyz = np.array(atom[3:6]) 2729 # XYZ.append(xyz) 2730 # sumXYZ += xyz 2731 # sumXYZ /= Natoms 2732 # XYZ = np.array(XYZ)-sumXYZ 2733 # XYZ = np.inner(Amat,XYZ).T 2734 # Zmat = np.zeros((3,3)) 2735 # print ' Selected atoms: Cartesian coordinates centered at',sumXYZ 2736 # Evec,Emat = nl.eig(Zmat) 2737 # Evec = np.sqrt(Evec)/(Natoms-3) 2738 # Order = np.argsort(Evec) 2739 # print [Evec[Order[i]] for i in [2,1,0]] 2740 # XYZ = np.inner(XYZ,Emat.T).T 2741 # XYZ = np.array([XYZ[Order[2]],XYZ[Order[1]],XYZ[Order[0]]]).T 2742 # print ' Atoms in Cartesian best plane coordinates:' 2743 # for i,xyz in enumerate(XYZ): 2744 # print Atoms[i][1],xyz 2745 2746 Cell = PlaneData['Cell'] 2747 Amat,Bmat = G2lat.cell2AB(Cell[:6]) 2748 Atoms = PlaneData['Atoms'] 2749 sumXYZ = np.zeros(3) 2750 XYZ = [] 2751 Natoms = len(Atoms) 2752 for atom in Atoms: 2753 xyz = np.array(atom[3:6]) 2754 XYZ.append(xyz) 2755 sumXYZ += xyz 2756 sumXYZ /= Natoms 2757 XYZ = np.array(XYZ)-sumXYZ 2758 XYZ = np.inner(Amat,XYZ).T 2759 Zmat = np.zeros((3,3)) 2760 for i,xyz in enumerate(XYZ): 2761 Zmat += np.outer(xyz.T,xyz) 2762 print ' Selected atoms centered at %10.5f %10.5f %10.5f'%(sumXYZ[0],sumXYZ[1],sumXYZ[2]) 2763 Evec,Emat = nl.eig(Zmat) 2764 Evec = np.sqrt(Evec)/(Natoms-3) 2765 Order = np.argsort(Evec) 2766 XYZ = np.inner(XYZ,Emat.T).T 2767 XYZ = np.array([XYZ[Order[2]],XYZ[Order[1]],XYZ[Order[0]]]).T 2768 print ' Atoms in Cartesian best plane coordinates:' 2769 print ' Name X Y Z' 2770 for i,xyz in enumerate(XYZ): 2771 print ' %6s%10.3f%10.3f%10.3f'%(Atoms[i][1].ljust(6),xyz[0],xyz[1],xyz[2]) 2772 print '\n Best plane RMS X =%8.3f, Y =%8.3f, Z =%8.3f'%(Evec[Order[2]],Evec[Order[1]],Evec[Order[0]]) 2773 2676 2774 2677 2775 def main(): -
trunk/help/gsasII.html
r457 r460 25 25 <o:Author>Von Dreele</o:Author> 26 26 <o:LastAuthor>Von Dreele</o:LastAuthor> 27 <o:Revision>2 5</o:Revision>28 <o:TotalTime>1 625</o:TotalTime>27 <o:Revision>28</o:Revision> 28 <o:TotalTime>1786</o:TotalTime> 29 29 <o:Created>2011-11-28T16:49:00Z</o:Created> 30 <o:LastSaved>2012-01- 23T21:39:00Z</o:LastSaved>31 <o:Pages> 5</o:Pages>32 <o:Words> 2599</o:Words>33 <o:Characters> 14815</o:Characters>30 <o:LastSaved>2012-01-31T21:14:00Z</o:LastSaved> 31 <o:Pages>6</o:Pages> 32 <o:Words>3855</o:Words> 33 <o:Characters>21980</o:Characters> 34 34 <o:Company>Argonne National Laboratory</o:Company> 35 <o:Lines>1 23</o:Lines>36 <o:Paragraphs> 34</o:Paragraphs>37 <o:CharactersWithSpaces> 17380</o:CharactersWithSpaces>35 <o:Lines>183</o:Lines> 36 <o:Paragraphs>51</o:Paragraphs> 37 <o:CharactersWithSpaces>25784</o:CharactersWithSpaces> 38 38 <o:Version>12.00</o:Version> 39 39 </o:DocumentProperties> 40 40 </xml><![endif]--> 41 <link rel=dataStoreItem href="gsasII_files/item000 1.xml"42 target="gsasII_files/props000 2.xml">41 <link rel=dataStoreItem href="gsasII_files/item0006.xml" 42 target="gsasII_files/props0007.xml"> 43 43 <link rel=themeData href="gsasII_files/themedata.thmx"> 44 44 <link rel=colorSchemeMapping href="gsasII_files/colorschememapping.xml"> … … 348 348 /* Font Definitions */ 349 349 @font-face 350 {font-family:Wingdings;351 panose-1:5 0 0 0 0 0 0 0 0 0;352 mso-font-charset:2;353 mso-generic-font-family:auto;354 mso-font-pitch:variable;355 mso-font-signature:0 268435456 0 0 -2147483648 0;}356 @font-face357 350 {font-family:"Cambria Math"; 358 351 panose-1:2 4 5 3 5 4 6 3 2 4; … … 531 524 mso-style-unhide:no; 532 525 color:gray;} 526 p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing 527 {mso-style-noshow:yes; 528 mso-style-priority:1; 529 mso-style-unhide:no; 530 mso-style-qformat:yes; 531 mso-style-parent:""; 532 margin:0in; 533 margin-bottom:.0001pt; 534 mso-pagination:widow-orphan; 535 font-size:12.0pt; 536 font-family:"Times New Roman","serif"; 537 mso-fareast-font-family:"Times New Roman"; 538 mso-fareast-theme-font:minor-fareast;} 533 539 p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph 534 540 {mso-style-noshow:yes; … … 762 768 mso-ansi-font-size:10.0pt; 763 769 font-family:Symbol;} 770 @list l0:level2 771 {mso-level-tab-stop:1.0in; 772 mso-level-number-position:left; 773 text-indent:-.25in;} 774 @list l0:level3 775 {mso-level-tab-stop:1.5in; 776 mso-level-number-position:left; 777 text-indent:-.25in;} 778 @list l0:level4 779 {mso-level-tab-stop:2.0in; 780 mso-level-number-position:left; 781 text-indent:-.25in;} 782 @list l0:level5 783 {mso-level-tab-stop:2.5in; 784 mso-level-number-position:left; 785 text-indent:-.25in;} 786 @list l0:level6 787 {mso-level-tab-stop:3.0in; 788 mso-level-number-position:left; 789 text-indent:-.25in;} 790 @list l0:level7 791 {mso-level-tab-stop:3.5in; 792 mso-level-number-position:left; 793 text-indent:-.25in;} 794 @list l0:level8 795 {mso-level-tab-stop:4.0in; 796 mso-level-number-position:left; 797 text-indent:-.25in;} 798 @list l0:level9 799 {mso-level-tab-stop:4.5in; 800 mso-level-number-position:left; 801 text-indent:-.25in;} 764 802 @list l1 765 803 {mso-list-id:359092647; … … 803 841 text-indent:-.25in;} 804 842 @list l2 843 {mso-list-id:374699300; 844 mso-list-type:hybrid; 845 mso-list-template-ids:1881540156 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 846 @list l2:level1 847 {mso-level-tab-stop:none; 848 mso-level-number-position:left; 849 text-indent:-.25in;} 850 @list l3 805 851 {mso-list-id:656106218; 806 852 mso-list-type:hybrid; 807 853 mso-list-template-ids:185874704 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 808 @list l 2:level1854 @list l3:level1 809 855 {mso-level-tab-stop:none; 810 856 mso-level-number-position:left; 811 857 text-indent:-.25in;} 812 @list l 2:level2858 @list l3:level2 813 859 {mso-level-tab-stop:1.0in; 814 860 mso-level-number-position:left; 815 861 text-indent:-.25in;} 816 @list l 2:level3862 @list l3:level3 817 863 {mso-level-tab-stop:1.5in; 818 864 mso-level-number-position:left; 819 865 text-indent:-.25in;} 820 @list l 2:level4866 @list l3:level4 821 867 {mso-level-tab-stop:2.0in; 822 868 mso-level-number-position:left; 823 869 text-indent:-.25in;} 824 @list l 2:level5870 @list l3:level5 825 871 {mso-level-tab-stop:2.5in; 826 872 mso-level-number-position:left; 827 873 text-indent:-.25in;} 828 @list l 2:level6874 @list l3:level6 829 875 {mso-level-tab-stop:3.0in; 830 876 mso-level-number-position:left; 831 877 text-indent:-.25in;} 832 @list l 2:level7878 @list l3:level7 833 879 {mso-level-tab-stop:3.5in; 834 880 mso-level-number-position:left; 835 881 text-indent:-.25in;} 836 @list l 2:level8882 @list l3:level8 837 883 {mso-level-tab-stop:4.0in; 838 884 mso-level-number-position:left; 839 885 text-indent:-.25in;} 840 @list l 2:level9886 @list l3:level9 841 887 {mso-level-tab-stop:4.5in; 842 888 mso-level-number-position:left; 843 889 text-indent:-.25in;} 844 @list l 3890 @list l4 845 891 {mso-list-id:734669460; 846 892 mso-list-type:hybrid; 847 mso-list-template-ids:1 679557810 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}848 @list l 3:level1893 mso-list-template-ids:1215081880 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 894 @list l4:level1 849 895 {mso-level-tab-stop:none; 850 896 mso-level-number-position:left; 851 897 text-indent:-.25in;} 852 @list l 3:level2898 @list l4:level2 853 899 {mso-level-tab-stop:1.0in; 854 900 mso-level-number-position:left; 855 901 text-indent:-.25in;} 856 @list l 3:level3902 @list l4:level3 857 903 {mso-level-tab-stop:1.5in; 858 904 mso-level-number-position:left; 859 905 text-indent:-.25in;} 860 @list l 3:level4906 @list l4:level4 861 907 {mso-level-tab-stop:2.0in; 862 908 mso-level-number-position:left; 863 909 text-indent:-.25in;} 864 @list l 3:level5910 @list l4:level5 865 911 {mso-level-tab-stop:2.5in; 866 912 mso-level-number-position:left; 867 913 text-indent:-.25in;} 868 @list l 3:level6914 @list l4:level6 869 915 {mso-level-tab-stop:3.0in; 870 916 mso-level-number-position:left; 871 917 text-indent:-.25in;} 872 @list l 3:level7918 @list l4:level7 873 919 {mso-level-tab-stop:3.5in; 874 920 mso-level-number-position:left; 875 921 text-indent:-.25in;} 876 @list l 3:level8922 @list l4:level8 877 923 {mso-level-tab-stop:4.0in; 878 924 mso-level-number-position:left; 879 925 text-indent:-.25in;} 880 @list l 3:level9926 @list l4:level9 881 927 {mso-level-tab-stop:4.5in; 882 928 mso-level-number-position:left; 883 929 text-indent:-.25in;} 884 @list l4 930 @list l5 931 {mso-list-id:919948450; 932 mso-list-type:hybrid; 933 mso-list-template-ids:-1587136908 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 934 @list l5:level1 935 {mso-level-tab-stop:none; 936 mso-level-number-position:left; 937 text-indent:-.25in;} 938 @list l5:level2 939 {mso-level-tab-stop:1.0in; 940 mso-level-number-position:left; 941 text-indent:-.25in;} 942 @list l5:level3 943 {mso-level-tab-stop:1.5in; 944 mso-level-number-position:left; 945 text-indent:-.25in;} 946 @list l5:level4 947 {mso-level-tab-stop:2.0in; 948 mso-level-number-position:left; 949 text-indent:-.25in;} 950 @list l5:level5 951 {mso-level-tab-stop:2.5in; 952 mso-level-number-position:left; 953 text-indent:-.25in;} 954 @list l5:level6 955 {mso-level-tab-stop:3.0in; 956 mso-level-number-position:left; 957 text-indent:-.25in;} 958 @list l5:level7 959 {mso-level-tab-stop:3.5in; 960 mso-level-number-position:left; 961 text-indent:-.25in;} 962 @list l5:level8 963 {mso-level-tab-stop:4.0in; 964 mso-level-number-position:left; 965 text-indent:-.25in;} 966 @list l5:level9 967 {mso-level-tab-stop:4.5in; 968 mso-level-number-position:left; 969 text-indent:-.25in;} 970 @list l6 885 971 {mso-list-id:1035230400; 886 972 mso-list-type:hybrid; 887 973 mso-list-template-ids:-191352120 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 888 @list l 4:level1974 @list l6:level1 889 975 {mso-level-tab-stop:none; 890 976 mso-level-number-position:left; 891 977 text-indent:-.25in;} 892 @list l 4:level2978 @list l6:level2 893 979 {mso-level-number-format:alpha-lower; 894 980 mso-level-tab-stop:none; 895 981 mso-level-number-position:left; 896 982 text-indent:-.25in;} 897 @list l 4:level3983 @list l6:level3 898 984 {mso-level-tab-stop:1.5in; 899 985 mso-level-number-position:left; 900 986 text-indent:-.25in;} 901 @list l 4:level4987 @list l6:level4 902 988 {mso-level-tab-stop:2.0in; 903 989 mso-level-number-position:left; 904 990 text-indent:-.25in;} 905 @list l 4:level5991 @list l6:level5 906 992 {mso-level-tab-stop:2.5in; 907 993 mso-level-number-position:left; 908 994 text-indent:-.25in;} 909 @list l 4:level6995 @list l6:level6 910 996 {mso-level-tab-stop:3.0in; 911 997 mso-level-number-position:left; 912 998 text-indent:-.25in;} 913 @list l 4:level7999 @list l6:level7 914 1000 {mso-level-tab-stop:3.5in; 915 1001 mso-level-number-position:left; 916 1002 text-indent:-.25in;} 917 @list l 4:level81003 @list l6:level8 918 1004 {mso-level-tab-stop:4.0in; 919 1005 mso-level-number-position:left; 920 1006 text-indent:-.25in;} 921 @list l 4:level91007 @list l6:level9 922 1008 {mso-level-tab-stop:4.5in; 923 1009 mso-level-number-position:left; 924 1010 text-indent:-.25in;} 925 @list l5 1011 @list l7 1012 {mso-list-id:1092893336; 1013 mso-list-type:hybrid; 1014 mso-list-template-ids:678328898 1814840374 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1015 @list l7:level1 1016 {mso-level-number-format:alpha-lower; 1017 mso-level-tab-stop:none; 1018 mso-level-number-position:left; 1019 margin-left:1.0in; 1020 text-indent:-.25in;} 1021 @list l8 1022 {mso-list-id:1115830170; 1023 mso-list-type:hybrid; 1024 mso-list-template-ids:1445361610 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1025 @list l8:level1 1026 {mso-level-tab-stop:none; 1027 mso-level-number-position:left; 1028 text-indent:-.25in;} 1029 @list l8:level2 1030 {mso-level-tab-stop:1.0in; 1031 mso-level-number-position:left; 1032 text-indent:-.25in;} 1033 @list l8:level3 1034 {mso-level-tab-stop:1.5in; 1035 mso-level-number-position:left; 1036 text-indent:-.25in;} 1037 @list l8:level4 1038 {mso-level-tab-stop:2.0in; 1039 mso-level-number-position:left; 1040 text-indent:-.25in;} 1041 @list l8:level5 1042 {mso-level-tab-stop:2.5in; 1043 mso-level-number-position:left; 1044 text-indent:-.25in;} 1045 @list l8:level6 1046 {mso-level-tab-stop:3.0in; 1047 mso-level-number-position:left; 1048 text-indent:-.25in;} 1049 @list l8:level7 1050 {mso-level-tab-stop:3.5in; 1051 mso-level-number-position:left; 1052 text-indent:-.25in;} 1053 @list l8:level8 1054 {mso-level-tab-stop:4.0in; 1055 mso-level-number-position:left; 1056 text-indent:-.25in;} 1057 @list l8:level9 1058 {mso-level-tab-stop:4.5in; 1059 mso-level-number-position:left; 1060 text-indent:-.25in;} 1061 @list l9 1062 {mso-list-id:1162892763; 1063 mso-list-type:hybrid; 1064 mso-list-template-ids:2091276960 -1984140816 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1065 @list l9:level1 1066 {mso-level-number-format:alpha-lower; 1067 mso-level-tab-stop:none; 1068 mso-level-number-position:left; 1069 margin-left:1.0in; 1070 text-indent:-.25in;} 1071 @list l10 1072 {mso-list-id:1323200535; 1073 mso-list-type:hybrid; 1074 mso-list-template-ids:-720724778 859726762 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1075 @list l10:level1 1076 {mso-level-number-format:alpha-lower; 1077 mso-level-tab-stop:none; 1078 mso-level-number-position:left; 1079 margin-left:1.0in; 1080 text-indent:-.25in;} 1081 @list l11 926 1082 {mso-list-id:1326516832; 927 1083 mso-list-type:hybrid; 928 1084 mso-list-template-ids:1433942448 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 929 @list l 5:level11085 @list l11:level1 930 1086 {mso-level-tab-stop:none; 931 1087 mso-level-number-position:left; 932 1088 text-indent:-.25in;} 933 @list l 5:level21089 @list l11:level2 934 1090 {mso-level-tab-stop:1.0in; 935 1091 mso-level-number-position:left; 936 1092 text-indent:-.25in;} 937 @list l 5:level31093 @list l11:level3 938 1094 {mso-level-tab-stop:1.5in; 939 1095 mso-level-number-position:left; 940 1096 text-indent:-.25in;} 941 @list l 5:level41097 @list l11:level4 942 1098 {mso-level-tab-stop:2.0in; 943 1099 mso-level-number-position:left; 944 1100 text-indent:-.25in;} 945 @list l 5:level51101 @list l11:level5 946 1102 {mso-level-tab-stop:2.5in; 947 1103 mso-level-number-position:left; 948 1104 text-indent:-.25in;} 949 @list l 5:level61105 @list l11:level6 950 1106 {mso-level-tab-stop:3.0in; 951 1107 mso-level-number-position:left; 952 1108 text-indent:-.25in;} 953 @list l 5:level71109 @list l11:level7 954 1110 {mso-level-tab-stop:3.5in; 955 1111 mso-level-number-position:left; 956 1112 text-indent:-.25in;} 957 @list l 5:level81113 @list l11:level8 958 1114 {mso-level-tab-stop:4.0in; 959 1115 mso-level-number-position:left; 960 1116 text-indent:-.25in;} 961 @list l 5:level91117 @list l11:level9 962 1118 {mso-level-tab-stop:4.5in; 963 1119 mso-level-number-position:left; 964 1120 text-indent:-.25in;} 965 @list l6 1121 @list l12 1122 {mso-list-id:1453328047; 1123 mso-list-type:hybrid; 1124 mso-list-template-ids:768896778 -756651182 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1125 @list l12:level1 1126 {mso-level-number-format:alpha-lower; 1127 mso-level-tab-stop:none; 1128 mso-level-number-position:left; 1129 margin-left:1.0in; 1130 text-indent:-.25in; 1131 mso-ansi-font-weight:normal;} 1132 @list l13 966 1133 {mso-list-id:1602683002; 967 1134 mso-list-type:hybrid; 968 1135 mso-list-template-ids:120980256 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 969 @list l 6:level11136 @list l13:level1 970 1137 {mso-level-tab-stop:none; 971 1138 mso-level-number-position:left; 972 1139 text-indent:-.25in;} 973 @list l 6:level21140 @list l13:level2 974 1141 {mso-level-number-format:alpha-lower; 975 1142 mso-level-tab-stop:none; 976 1143 mso-level-number-position:left; 977 1144 text-indent:-.25in;} 978 @list l 6:level31145 @list l13:level3 979 1146 {mso-level-tab-stop:1.5in; 980 1147 mso-level-number-position:left; 981 1148 text-indent:-.25in;} 982 @list l 6:level41149 @list l13:level4 983 1150 {mso-level-tab-stop:2.0in; 984 1151 mso-level-number-position:left; 985 1152 text-indent:-.25in;} 986 @list l 6:level51153 @list l13:level5 987 1154 {mso-level-tab-stop:2.5in; 988 1155 mso-level-number-position:left; 989 1156 text-indent:-.25in;} 990 @list l 6:level61157 @list l13:level6 991 1158 {mso-level-tab-stop:3.0in; 992 1159 mso-level-number-position:left; 993 1160 text-indent:-.25in;} 994 @list l 6:level71161 @list l13:level7 995 1162 {mso-level-tab-stop:3.5in; 996 1163 mso-level-number-position:left; 997 1164 text-indent:-.25in;} 998 @list l 6:level81165 @list l13:level8 999 1166 {mso-level-tab-stop:4.0in; 1000 1167 mso-level-number-position:left; 1001 1168 text-indent:-.25in;} 1002 @list l 6:level91169 @list l13:level9 1003 1170 {mso-level-tab-stop:4.5in; 1004 1171 mso-level-number-position:left; 1005 1172 text-indent:-.25in;} 1006 @list l7 1173 @list l14 1174 {mso-list-id:1669404025; 1175 mso-list-type:hybrid; 1176 mso-list-template-ids:-879317700 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1177 @list l14:level1 1178 {mso-level-number-format:alpha-lower; 1179 mso-level-tab-stop:none; 1180 mso-level-number-position:left; 1181 margin-left:1.0in; 1182 text-indent:-.25in; 1183 mso-ansi-font-weight:normal;} 1184 @list l15 1185 {mso-list-id:1988123269; 1186 mso-list-type:hybrid; 1187 mso-list-template-ids:176320334 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1188 @list l15:level1 1189 {mso-level-tab-stop:none; 1190 mso-level-number-position:left; 1191 text-indent:-.25in;} 1192 @list l15:level2 1193 {mso-level-tab-stop:1.0in; 1194 mso-level-number-position:left; 1195 text-indent:-.25in;} 1196 @list l15:level3 1197 {mso-level-tab-stop:1.5in; 1198 mso-level-number-position:left; 1199 text-indent:-.25in;} 1200 @list l15:level4 1201 {mso-level-tab-stop:2.0in; 1202 mso-level-number-position:left; 1203 text-indent:-.25in;} 1204 @list l15:level5 1205 {mso-level-tab-stop:2.5in; 1206 mso-level-number-position:left; 1207 text-indent:-.25in;} 1208 @list l15:level6 1209 {mso-level-tab-stop:3.0in; 1210 mso-level-number-position:left; 1211 text-indent:-.25in;} 1212 @list l15:level7 1213 {mso-level-tab-stop:3.5in; 1214 mso-level-number-position:left; 1215 text-indent:-.25in;} 1216 @list l15:level8 1217 {mso-level-tab-stop:4.0in; 1218 mso-level-number-position:left; 1219 text-indent:-.25in;} 1220 @list l15:level9 1221 {mso-level-tab-stop:4.5in; 1222 mso-level-number-position:left; 1223 text-indent:-.25in;} 1224 @list l16 1007 1225 {mso-list-id:2029942403; 1008 1226 mso-list-type:hybrid; 1009 1227 mso-list-template-ids:-1051437922 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 1010 @list l 7:level11228 @list l16:level1 1011 1229 {mso-level-tab-stop:none; 1012 1230 mso-level-number-position:left; 1013 1231 text-indent:-.25in;} 1014 @list l 7:level21232 @list l16:level2 1015 1233 {mso-level-tab-stop:1.0in; 1016 1234 mso-level-number-position:left; 1017 1235 text-indent:-.25in;} 1018 @list l 7:level31236 @list l16:level3 1019 1237 {mso-level-tab-stop:1.5in; 1020 1238 mso-level-number-position:left; 1021 1239 text-indent:-.25in;} 1022 @list l 7:level41240 @list l16:level4 1023 1241 {mso-level-tab-stop:2.0in; 1024 1242 mso-level-number-position:left; 1025 1243 text-indent:-.25in;} 1026 @list l 7:level51244 @list l16:level5 1027 1245 {mso-level-tab-stop:2.5in; 1028 1246 mso-level-number-position:left; 1029 1247 text-indent:-.25in;} 1030 @list l 7:level61248 @list l16:level6 1031 1249 {mso-level-tab-stop:3.0in; 1032 1250 mso-level-number-position:left; 1033 1251 text-indent:-.25in;} 1034 @list l 7:level71252 @list l16:level7 1035 1253 {mso-level-tab-stop:3.5in; 1036 1254 mso-level-number-position:left; 1037 1255 text-indent:-.25in;} 1038 @list l 7:level81256 @list l16:level8 1039 1257 {mso-level-tab-stop:4.0in; 1040 1258 mso-level-number-position:left; 1041 1259 text-indent:-.25in;} 1042 @list l 7:level91260 @list l16:level9 1043 1261 {mso-level-tab-stop:4.5in; 1044 1262 mso-level-number-position:left; … … 1071 1289 <link href=gsasIIfav.png rel="SHORTCUT ICON"> 1072 1290 <!--[if gte mso 9]><xml> 1073 <o:shapedefaults v:ext="edit" spidmax=" 7170"/>1291 <o:shapedefaults v:ext="edit" spidmax="9218"/> 1074 1292 </xml><![endif]--><!--[if gte mso 9]><xml> 1075 1293 <o:shapelayout v:ext="edit"> … … 1102 1320 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/> 1103 1321 <o:lock v:ext="edit" aspectratio="t"/> 1104 </v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s103 6" type="#_x0000_t75"1322 </v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s1038" type="#_x0000_t75" 1105 1323 alt="GSAS-II logo" style='position:absolute;margin-left:56pt;margin-top:0; 1106 1324 width:96pt;height:96pt;z-index:1;visibility:visible;mso-wrap-style:square; … … 1154 1372 as outlined below: <o:p></o:p></span></p> 1155 1373 1156 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l 4 level1 lfo2'><![if !supportLists]><span1374 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span 1157 1375 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 1158 1376 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu … … 1160 1378 1161 1379 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1162 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1380 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1163 1381 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 1164 1382 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1166 1384 saved GSAS-II project file (name.gpx). If you currently have a project file 1167 1385 open, you are asked if it is OK to over write it; Cancel will cancel the 1168 process.</p> 1169 1170 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1171 auto;text-indent:-.25in;mso-list:l4 level2 lfo2'><![if !supportLists]><span 1386 process. <b style='mso-bidi-font-weight:normal'>NB</b>: you may open a backup <span 1387 class=SpellE>gpx</span> file (e.g. name.bak3.gpx) to recover a previous version 1388 of your project. Remember to <b style='mso-bidi-font-weight:normal'>Save As</b>… 1389 to e.g. name.gpx to overwrite the current version. Otherwise you may get 1390 backups of your backup file (e.g. name.bak3.bak0.gpx, etc.).</p> 1391 1392 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1393 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1172 1394 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 1173 1395 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1181 1403 1182 1404 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1183 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1405 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1184 1406 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 1185 1407 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1191 1413 1192 1414 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1193 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1415 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1194 1416 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 1195 1417 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1200 1422 1201 1423 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1202 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1424 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1203 1425 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span 1204 1426 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1209 1431 option) GSAS-II; useful for escaping from GSAS-II if needed.</span></p> 1210 1432 1211 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 4 level1 lfo2'><![if !supportLists]><span1433 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span 1212 1434 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span 1213 1435 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu … … 1215 1437 1216 1438 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1217 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1439 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1218 1440 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 1219 1441 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1229 1451 1230 1452 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1231 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1453 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1232 1454 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 1233 1455 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1242 1464 1243 1465 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1244 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1466 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1245 1467 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 1246 1468 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1251 1473 1252 1474 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1253 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1475 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1254 1476 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 1255 1477 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1257 1479 1258 1480 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1259 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1481 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1260 1482 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span 1261 1483 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1263 1485 1264 1486 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1265 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1487 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1266 1488 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span 1267 1489 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1269 1491 1270 1492 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1271 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1493 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1272 1494 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>g.<span 1273 1495 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1275 1497 1276 1498 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1277 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1499 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1278 1500 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>h.<span 1279 1501 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1281 1503 1282 1504 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1283 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1505 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1284 1506 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>i.<span 1285 1507 style='font:7.0pt "Times New Roman"'> … … 1288 1510 1289 1511 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1290 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1512 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1291 1513 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>j.<span 1292 1514 style='font:7.0pt "Times New Roman"'> … … 1294 1516 data</b> - </p> 1295 1517 1296 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 4 level1 lfo2'><![if !supportLists]><span1518 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span 1297 1519 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span 1298 1520 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu … … 1300 1522 1301 1523 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1302 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1524 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1303 1525 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 1304 1526 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1306 1528 1307 1529 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1308 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1530 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1309 1531 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 1310 1532 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1313 1535 1314 1536 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1315 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1537 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1316 1538 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 1317 1539 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1319 1541 1320 1542 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1321 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1543 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1322 1544 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 1323 1545 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1325 1547 1326 1548 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1327 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1549 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1328 1550 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span 1329 1551 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 1330 1552 style='mso-bidi-font-weight:normal'>Solve</b> - </p> 1331 1553 1332 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 4 level1 lfo2'><![if !supportLists]><span1554 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span 1333 1555 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span 1334 1556 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu … … 1336 1558 1337 1559 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1338 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1560 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1339 1561 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 1340 1562 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1342 1564 1343 1565 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1344 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1566 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1345 1567 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 1346 1568 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1348 1570 1349 1571 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1350 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1572 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1351 1573 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 1352 1574 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1354 1576 1355 1577 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1356 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1578 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1357 1579 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 1358 1580 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 1359 1581 style='mso-bidi-font-weight:normal'>Import HKLs…</b> - </p> 1360 1582 1361 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 4 level1 lfo2'><![if !supportLists]><span1583 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span 1362 1584 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span 1363 1585 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu … … 1365 1587 1366 1588 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1367 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1589 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1368 1590 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 1369 1591 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1371 1593 1372 1594 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1373 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1595 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1374 1596 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 1375 1597 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1377 1599 1378 1600 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1379 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1601 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1380 1602 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 1381 1603 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1383 1605 1384 1606 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1385 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1607 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1386 1608 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 1387 1609 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1389 1611 1390 1612 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1391 auto;text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1613 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1392 1614 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span 1393 1615 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1395 1617 1396 1618 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 1397 text-indent:-.25in;mso-list:l 4 level2 lfo2'><![if !supportLists]><span1619 text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span 1398 1620 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span 1399 1621 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1461 1683 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> 1462 1684 1463 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l 5 level1 lfo4'><![if !supportLists]><span1685 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span 1464 1686 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 1465 1687 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 1466 1688 style='mso-fareast-font-family:"Times New Roman"'>Select whether the refinement 1467 1689 uses ‘analytic <span class=SpellE>Jacobian</span>’, ‘analytic 1468 Hessian’ or ‘numeric’ derivatives. The la tteris slower and1690 Hessian’ or ‘numeric’ derivatives. The last is slower and 1469 1691 perhaps a bit less accurate, but may be needed if the analytic functions are 1470 not fully developed. The <span class=SpellE>Jacobian</span> matrix is shaped N x1471 M (parameters x observations) and is much larger than the Hessian matrix which 1472 is shaped M x M (parameters x parameters). Generally use ‘analytic1692 not fully developed. The <span class=SpellE>Jacobian</span> matrix is shaped N 1693 x M (parameters x observations) and is much larger than the Hessian matrix 1694 which is shaped M x M (parameters x parameters). Generally use ‘analytic 1473 1695 Hessian’ for routine work.<o:p></o:p></span></p> 1474 1696 1475 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 5 level1 lfo4'><![if !supportLists]><span1697 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span 1476 1698 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span 1477 1699 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1483 1705 to 1.0.<o:p></o:p></span></p> 1484 1706 1485 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 5 level1 lfo4'><![if !supportLists]><span1707 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span 1486 1708 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span 1487 1709 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 1488 style='mso-fareast-font-family:"Times New Roman"'>If ‘analytic Jacobean’ 1489 is chosen then select ‘Initial shift factor’ for the first cycle of 1490 refinement. This value is modified by the least squares routine. The allowed 1491 range is 10<sup>-5</sup> to 100. Smaller values may be needed if your initial <span 1492 class=GramE>refinement</span> trials immediately diverge, however make sure 1493 your starting parameter values are ‘reasonable’. The selected 1494 default (=1.0) normally gives good performance.<o:p></o:p></span></p> 1495 1496 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo4'><![if !supportLists]><span 1710 style='mso-fareast-font-family:"Times New Roman"'>If ‘analytic 1711 Jacobean’ is chosen then select ‘Initial shift factor’ for 1712 the first cycle of refinement. This value is modified by the least squares 1713 routine. The allowed range is 10<sup>-5</sup> to 100. Smaller values may be 1714 needed if your initial <span class=GramE>refinement</span> trials immediately 1715 diverge, however make sure your starting parameter values are 1716 ‘reasonable’. The selected default (=1.0) normally gives good 1717 performance.<o:p></o:p></span></p> 1718 1719 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span 1497 1720 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span 1498 1721 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 1499 style='mso-fareast-font-family:"Times New Roman"'>If ‘analytic Hessian’1500 is chosen then select ‘Max cycles’, the maximum number of least 1501 squares cycles to be performed. Choices are given in the pull down selection; 1502 the default is 3 cycles.<o:p></o:p></span></p>1503 1504 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l 5 level1 lfo4'><![if !supportLists]><span1722 style='mso-fareast-font-family:"Times New Roman"'>If ‘analytic 1723 Hessian’ is chosen then select ‘Max cycles’, the maximum 1724 number of least squares cycles to be performed. Choices are given in the pull 1725 down selection; the default is 3 cycles.<o:p></o:p></span></p> 1726 1727 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span 1505 1728 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span 1506 1729 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1533 1756 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> 1534 1757 1535 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l 6 level1 lfo6'><![if !supportLists]><span1758 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l13 level1 lfo3'><![if !supportLists]><span 1536 1759 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 1537 1760 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1540 1763 the ‘Edit menu.<o:p></o:p></span></p> 1541 1764 1542 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 6 level1 lfo6'><![if !supportLists]><span1765 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo3'><![if !supportLists]><span 1543 1766 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span 1544 1767 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1547 1770 1548 1771 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1549 auto;text-indent:-.25in;mso-list:l 6 level2 lfo6'><![if !supportLists]><span1772 auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span 1550 1773 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 1551 1774 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1565 1788 1566 1789 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1567 auto;text-indent:-.25in;mso-list:l 6 level2 lfo6'><![if !supportLists]><span1790 auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span 1568 1791 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 1569 1792 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1584 1807 1585 1808 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 1586 auto;text-indent:-.25in;mso-list:l 6 level2 lfo6'><![if !supportLists]><span1809 auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span 1587 1810 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 1588 1811 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1596 1819 the first one. Choose those and press OK. Cancel in either dialog will cancel 1597 1820 the operation. The equivalenced parameters will show as an equation of the form 1598 M<sub>1</sub>*P<sub>1</sub>+M<sub>2</sub>*P<sub>2</sub>+…=C; the multipliers1599 M1, <span class=GramE>M2, …</span> and C can be changed via the 1600 ‘Edit’ button. The keyword ‘CONSTR’ marks it as a1821 M<sub>1</sub>*P<sub>1</sub>+M<sub>2</sub>*P<sub>2</sub>+…=C; the 1822 multipliers M1, <span class=GramE>M2, …</span> and C can be changed via 1823 the ‘Edit’ button. The keyword ‘CONSTR’ marks it as a 1601 1824 constraint. A Delete button can be used to remove it.<o:p></o:p></span></p> 1602 1825 1603 1826 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 1604 text-indent:-.25in;mso-list:l 6 level2 lfo6'><![if !supportLists]><span1827 text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span 1605 1828 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 1606 1829 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b … … 1619 1842 window... <o:p></o:p></span></p> 1620 1843 1621 <h4><a name=Limits><span style='mso-fareast-font-family:"Times New Roman"'>Limits</span></a><span1622 style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>1623 1624 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This1625 window shows the limits in position to be used in any fitting for this powder1626 pattern. The ‘original’ values are obtained from the minimum &1627 maximum values in the powder pattern. You can modify ‘changed’ as1628 needed.<o:p></o:p></span></p>1629 1630 1844 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> 1631 1845 1632 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l1 level1 lfo 8'><![if !supportLists]><span1846 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l1 level1 lfo4'><![if !supportLists]><span 1633 1847 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 1634 1848 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1642 1856 operation.<o:p></o:p></span></p> 1643 1857 1644 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l1 level1 lfo 8'><![if !supportLists]><span1858 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l1 level1 lfo4'><![if !supportLists]><span 1645 1859 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span 1646 1860 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span … … 1708 1922 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>When 1709 1923 a phase is selected from the <a href="#Data_tree">data tree</a>, parameters are 1710 show from that selected phase in a tabbed window. Clicking on the tab raises 1711 the windows listed below. <o:p></o:p></span></p> 1924 shown for that selected phase in a tabbed window. Clicking on the tab raises 1925 the windows listed below. Each tab is identified by the underlined phrase in 1926 the following:<o:p></o:p></span></p> 1712 1927 1713 1928 <h4><a name=General><u>General</u> Phase Parameters</a></h4> … … 1716 1931 1717 1932 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This 1718 is used for overall parameters describing the phase such as thespace group,1933 gives overall parameters describing the phase such as the name, space group, 1719 1934 the unit cell parameters and overall parameters for the atom present in the 1720 1935 phase. <a name=Data><o:p></o:p></a></span></p> … … 1734 1949 <span style='mso-bookmark:Draw_Options'></span> 1735 1950 1736 <h4><span style='mso-bookmark:Texture'><a name="Draw_Atoms"><u>Draw Atoms</u></a></span></h4> 1951 <h4><span style='mso-bookmark:Texture'><a name="Draw_Atoms"><u>Draw Atoms<o:p></o:p></u></a></span></h4> 1952 1953 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark: 1954 Draw_Atoms'>This gives a list of the atoms and bonds that are to be rendered as 1955 lines, van <span class=SpellE>der</span> Waals radii balls, sticks, balls & 1956 sticks, ellipsoids & sticks or <span class=SpellE>polyhedra</span>. There 1957 are two menus for this tab; Edit allows modification of the list of atoms to be 1958 rendered and Compute gives some options for geometric characterization of 1959 selected atoms.</span></span></p> 1960 1961 <h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><span 1962 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></span></h5> 1963 1964 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span 1965 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 1966 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 1967 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Atom 1968 Selection from table: select individual atoms by a left click of the mouse when 1969 pointed at the left most column (atom numbers) of the atom display; hold down 1970 the Ctrl key to add to your selection; a previously selected atom will be 1971 deselected. A selected atom will be highlighted (in grey) and the atom will be 1972 shown in green on the plot. Selection without the Ctrl key will clear previous 1973 selections. A double left click in the (empty) upper left box will select or 1974 deselect all atoms.</span></span></p> 1975 1976 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span 1977 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 1978 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span 1979 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Atom 1980 Selection from plot: select an atom by a left click of the mouse when pointed 1981 at the center of the displayed atom, it will turn green if successful and the 1982 corresponding entry in the table will be highlighted (in grey); any previous 1983 selections will be cleared. To add to .your selection use the right mouse 1984 button; if a previously selection is reselected it is removed from the 1985 selection list. <b style='mso-bidi-font-weight:normal'>NB</b>: beware of atoms 1986 that are hiding behind the one you are trying to select, they may be selected inadvertently. 1987 You can rotate the structure anytime during the selection process.</span></span></p> 1988 1989 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span 1990 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 1991 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span 1992 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Double 1993 left click a Name, Type and Sym Op column heading: a dialog box is shown that 1994 allows you to select all atoms with that characteristic. For example, selecting 1995 the Type column will show all the atom types; your choice will then cause all 1996 those atoms to be selected.</span></span></p> 1997 1998 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span 1999 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2000 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span 2001 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Double 2002 left click a Style, Label or Color column: a dialog box is shown that allows 2003 you to select a rendering option for all the atoms. For Color a color choice 2004 dialog is displayed that covers the entire color spectrum. Choose a color by 2005 any of the means available, press the “Add to Custom Colors”, 2006 select that color in the Custom colors display and then press OK. <b 2007 style='mso-bidi-font-weight:normal'>NB</b>: selecting Color will make all atoms 2008 have the same color and for Style “blank” means the atoms 2009 aren’t rendered and thus the plot will not show any atoms or bonds!</span></span></p> 2010 2011 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span 2012 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2013 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span 2014 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu 2015 ‘<b style='mso-bidi-font-weight:normal'>Edit’ - </b>The edit menu 2016 shows operations that can be performed on your selected atoms. You must select 2017 one or more atoms before using any of the menu items.</span></span></p> 2018 2019 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2020 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2021 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2022 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 2023 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2024 style='mso-bidi-font-weight:normal'>Atom style</b> – select the rendering 2025 style for the selected atoms</span></span></p> 2026 2027 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2028 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2029 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2030 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 2031 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2032 style='mso-bidi-font-weight:normal'>Atom label</b> – select the item to 2033 be shown as a label for each atom in selection. The choices are: none, type, 2034 name or number.</span></span></p> 2035 2036 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2037 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2038 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2039 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 2040 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2041 style='mso-bidi-font-weight:normal'>Atom color</b> – select the color for 2042 the atom; a color choice dialog is displayed that covers the entire color 2043 spectrum. Choose a color by any of the means available, press the “Add to 2044 Custom Colors”, select that color in the Custom colors display and then 2045 press OK.</span></span></p> 2046 2047 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2048 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2049 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2050 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span 2051 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2052 style='mso-bidi-font-weight:normal'>Reset atom colors</b> – return the 2053 atom color back to their defaults for the selected atoms.</span></span></p> 2054 2055 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2056 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2057 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2058 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span 2059 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2060 style='mso-bidi-font-weight:normal'>View point</b> – position the plot 2061 view point to the first atom in the selection.</span></span></p> 2062 2063 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2064 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2065 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2066 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span 2067 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2068 style='mso-bidi-font-weight:normal'>Add atoms</b> – using the selected 2069 atoms, new ones are added to the bottom of the list after applying your choice 2070 of symmetry operator and unit cell translation selected via a dialog display. 2071 Duplicate atom positions are not retained. Any anisotropic thermal displacement 2072 parameters (<span class=SpellE>Uij</span>) will be transformed as appropriate.</span></span></p> 2073 2074 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2075 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2076 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2077 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>g.<span 2078 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2079 style='mso-bidi-font-weight:normal'>Transform atoms</b> – apply a 2080 symmetry operator and unit cell translation to the set of selected atoms; they 2081 will be changed in place. Any anisotropic thermal displacement parameters (<span 2082 class=SpellE>Uij</span>) will be transformed as appropriate.</span></span></p> 2083 2084 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2085 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2086 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2087 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>h.<span 2088 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2089 style='mso-bidi-font-weight:normal'>Fill CN-sphere</b> – using the atoms 2090 currently in the draw atom table, find all atoms that belong in the 2091 coordination sphere around the selected atoms via unit cell translations. NB: 2092 symmetry operations are not used in this search.</span></span></p> 2093 2094 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2095 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2096 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2097 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>i.<span 2098 style='font:7.0pt "Times New Roman"'> 2099 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Fill unit 2100 cell</b> - using the atoms currently in the draw atom table, find all atoms 2101 that fall inside or on the edge/surface/corners of the unit cell. This 2102 operation is frequently performed before Fill CN-sphere.</span></span></p> 2103 2104 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2105 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark: 2106 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2107 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>j.<span 2108 style='font:7.0pt "Times New Roman"'> 2109 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Delete 2110 atoms</b> – clear the entire draw atom table; it is then refilled from 2111 the Atoms table. You should do this operation after any changes in the Atoms 2112 table, e.g. by a structure refinement.</span></span></p> 2113 2114 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span 2115 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2116 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span 2117 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Menu 2118 ‘<b style='mso-bidi-font-weight:normal'>Compute’</b> - The compute 2119 menu gives a choice of geometric calculations to be performed with the selected 2120 atoms. You must select the appropriate number of atoms for these to work.</span></span></p> 2121 2122 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2123 auto;text-indent:-.25in;mso-list:l9 level1 lfo16'><span style='mso-bookmark: 2124 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2125 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 2126 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2127 style='mso-bidi-font-weight:normal'>Distance Angles</b> – not developed 2128 yet…</span></span></p> 2129 2130 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2131 auto;text-indent:-.25in;mso-list:l9 level1 lfo16'><span style='mso-bookmark: 2132 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span 2133 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 2134 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2135 style='mso-bidi-font-weight:normal'>Torsion angle</b> – when 4 atoms are 2136 selected, a torsion angle will be found for them. The atoms in the selection 2137 are then reordered so that the A1-A4 distance is longest with the other two in 2138 distance order between; the torsion angle is a right hand angle about the A2-A3 2139 vector for the sequence of atoms A1-A2-A3-A4. An estimated standard deviation 2140 is given for the torsion angle if a current variance-covariance matrix is 2141 available. The result is shown on the console window; it may be cut & 2142 pasted to another application (e.g. Microsoft Word).</span></span></p> 2143 2144 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 2145 text-indent:-.25in;mso-list:l9 level1 lfo16'><span style='mso-bookmark:Texture'><span 2146 style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span style='mso-fareast-font-family: 2147 "Times New Roman"'><span style='mso-list:Ignore'>c.<span style='font:7.0pt "Times New Roman"'> 2148 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Best 2149 plane</b> – when 3 or more atoms are selected, a best plane is determined 2150 for them. The result is shown on the console window; it may be cut & pasted 2151 to another application (e.g. Microsoft Word). Shown are the atom coordinates 2152 transformed to Cartesian best plane coordinates where the largest range is over 2153 the X-axis and the smallest is over the Z-axis with the origin at the <span 2154 class=SpellE>unweighted</span> center of the selection. Root mean square 2155 displacements along each axis for the best plane are also listed. The Z-axis 2156 RMS value indicates the flatness of the proposed plane. <b style='mso-bidi-font-weight: 2157 normal'>NB</b>: if you select e.g. all atoms then Best plane will give 2158 Cartesian coordinates for these atoms with respect to a coordinate system where 2159 the X-axis is along the longest axis of the atom grouping and the Z-axis is 2160 along the shortest distance. The origin is at the <span class=SpellE>unweighted</span> 2161 center of the selected atoms.</span></span></p> 1737 2162 1738 2163 <span style='mso-bookmark:Draw_Atoms'></span> … … 1754 2179 <span style='mso-bookmark:Comments'></span> 1755 2180 1756 <h4><span style='mso-bookmark:Texture'><a name=Background><span 1757 style='mso-fareast-font-family:"Times New Roman"'>Background</span></a></span><span 2181 <h4><span style='mso-bookmark:Texture'><a name=Background></a><a name=Limits><span 2182 style='mso-bookmark:Background'><span style='mso-fareast-font-family:"Times New Roman"'>Limits</span></span></a></span><span 2183 style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span 2184 style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></span></h4> 2185 2186 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark: 2187 Background'><span style='mso-fareast-font-family:"Times New Roman"'>This window 2188 shows the limits in position to be used in any fitting for this powder pattern. 2189 The ‘original’ values are obtained from the minimum & maximum 2190 values in the powder pattern. You can modify ‘changed’ as needed.<o:p></o:p></span></span></span></p> 2191 2192 <h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span 2193 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></span></h5> 2194 2195 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 2196 style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><![if !supportLists]><span 2197 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 2198 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 2199 style='mso-fareast-font-family:"Times New Roman"'>Menu ‘<b 2200 style='mso-bidi-font-weight:normal'>File</b>’ – <o:p></o:p></span></span></span></p> 2201 2202 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2203 auto;text-indent:-.25in;mso-list:l14 level1 lfo17'><span style='mso-bookmark: 2204 Texture'><span style='mso-bookmark:Background'><![if !supportLists]><span 2205 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 2206 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2207 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span></span><span 2208 style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span 2209 style='mso-fareast-font-family:"Times New Roman"'> – this copies the limits 2210 shown to other selected powder patterns. If used, a dialog box (Copy Parameters) 2211 will appear showing the list of available powder patterns, you can copy the limits 2212 parameters to any or all of them; select ‘All’ to copy them to all 2213 patterns. Then select ‘OK’ to do the copy; ‘Cancel’ to 2214 cancel the operation.<o:p></o:p></span></span></span></p> 2215 2216 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 2217 text-indent:-.25in;mso-list:l14 level1 lfo17'><span style='mso-bookmark:Texture'><span 2218 style='mso-bookmark:Background'><![if !supportLists]><span style='mso-fareast-font-family: 2219 "Times New Roman"'><span style='mso-list:Ignore'>b.<span style='font:7.0pt "Times New Roman"'> 2220 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Modify 2221 the values of ‘changed’; this can be done by entering the desired 2222 value into the appropriate boxes or by dragging the limit bars (left – vertical 2223 green dashed line, right – vertical red dashed line) into position. A 2224 left or right mouse click on a data point on the plot will set the associated 2225 limit.<o:p></o:p></span></span></span></p> 2226 2227 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span 2228 style='mso-fareast-font-family:"Times New Roman"'>Background</span></span></span><span 1758 2229 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4> 1759 2230 … … 1765 2236 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5> 1766 2237 1767 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span 1768 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1769 "Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'> 1770 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu 1771 ‘<b style='mso-bidi-font-weight:normal'>File</b>’ – <b 1772 style='mso-bidi-font-weight:normal'>Copy</b> – this copies the background 1773 parameters shown to other selected powder patterns. If used, a dialog box (Copy 1774 Parameters) will appear showing the list of available powder patterns, you can 1775 copy the background parameters to any or all of them; select ‘All’ 1776 to copy them to all patterns. Then select ‘OK’ to do the copy; 1777 ‘Cancel’ to cancel the operation.<o:p></o:p></span></span></p> 1778 1779 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span 2238 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 1780 2239 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1781 2240 "Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'> 1782 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 1783 can select a different Background function from the pull down tab.<o:p></o:p></span></span></p> 1784 1785 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span 2241 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu 2242 ‘<b style='mso-bidi-font-weight:normal'>File</b>’ – <o:p></o:p></span></span></p> 2243 2244 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2245 auto;text-indent:-.25in;mso-list:l14 level1 lfo17'><span style='mso-bookmark: 2246 Texture'><![if !supportLists]><span style='mso-fareast-font-family:"Times New Roman"'><span 2247 style='mso-list:Ignore'>c.<span style='font:7.0pt "Times New Roman"'> 2248 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span 2249 style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span><span 2250 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'> 2251 – this copies the background parameters shown to other selected powder 2252 patterns. If used, a dialog box (Copy Parameters) will appear showing the list 2253 of available powder patterns, you can copy the background parameters to any or 2254 all of them; select ‘All’ to copy them to all patterns. Then select 2255 ‘OK’ to do the copy; ‘Cancel’ to cancel the operation.<o:p></o:p></span></span></p> 2256 2257 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 1786 2258 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1787 2259 "Times New Roman"'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'> 1788 2260 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 1789 can choose to refine/not refine the background coefficients.<o:p></o:p></span></span></p>1790 1791 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 7 level1 lfo10'><span2261 can select a different Background function from the pull down tab.<o:p></o:p></span></span></p> 2262 2263 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 1792 2264 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1793 2265 "Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'> 1794 2266 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 1795 can select the number of background coefficients to be used (1-36).<o:p></o:p></span></span></p>1796 1797 <p class=MsoListParagraphCxSp Last style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span2267 can choose to refine/not refine the background coefficients.<o:p></o:p></span></span></p> 2268 2269 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 1798 2270 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1799 2271 "Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'> 2272 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 2273 can select the number of background coefficients to be used (1-36).<o:p></o:p></span></span></p> 2274 2275 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 2276 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 2277 "Times New Roman"'><span style='mso-list:Ignore'>6.<span style='font:7.0pt "Times New Roman"'> 1800 2278 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 1801 2279 can change individual background coefficient values. Enter the value then press … … 1803 2281 new value.<o:p></o:p></span></span></p> 1804 2282 2283 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 2284 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 2285 "Times New Roman"'><span style='mso-list:Ignore'>7.<span style='font:7.0pt "Times New Roman"'> 2286 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 2287 can introduce one or more Debye scattering terms into the background. For each 2288 one you should enter a sensible value for ‘R’ – an expected <span 2289 class=SpellE>interatomic</span> distance in an amorphous phase is appropriate. 2290 Select parameters to refine; usually start with the ‘A’ 2291 coefficients.<o:p></o:p></span></span></p> 2292 2293 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span 2294 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 2295 "Times New Roman"'><span style='mso-list:Ignore'>8.<span style='font:7.0pt "Times New Roman"'> 2296 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 2297 can introduce single Bragg peaks into the background. For each you should 2298 specify at least the position. Select parameters to refine; usually start with 2299 the ‘<span class=SpellE>int</span>’ coefficients.<o:p></o:p></span></span></p> 2300 1805 2301 <h4><span style='mso-bookmark:Texture'><a name="Instrument_Parameters"><span 1806 2302 style='mso-fareast-font-family:"Times New Roman"'>Instrument Parameters</span></a></span><span … … 1808 2304 1809 2305 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family: 1810 "Times New Roman"'>This window... <o:p></o:p></span></span></p> 1811 1812 <h4><span style='mso-bookmark:Texture'><a name="Sample_Parameters"><span 1813 style='mso-fareast-font-family:"Times New Roman"'>Sample Parameters</span></a></span><span 2306 "Times New Roman"'>This window shows the instrument parameters for the selected 2307 powder data set. <o:p></o:p></span></span></p> 2308 2309 <h5><span style='mso-bookmark:Texture'><a name="Sample_Parameters"><span 2310 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></a></span></h5> 2311 2312 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span 2313 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span 2314 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span 2315 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 2316 style='mso-fareast-font-family:"Times New Roman"'>Menu ‘<b 2317 style='mso-bidi-font-weight:normal'>Operations</b>’ – <o:p></o:p></span></span></span></p> 2318 2319 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2320 auto;text-indent:-.25in;mso-list:l12 level1 lfo18'><span style='mso-bookmark: 2321 Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span 2322 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span 2323 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2324 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Reset 2325 profile </span></b></span></span><span style='mso-bookmark:Texture'><span 2326 style='mso-bookmark:Sample_Parameters'><span style='mso-fareast-font-family: 2327 "Times New Roman"'>– resets the values for the instrument parameters to 2328 the default values shown in parentheses for each entry.<o:p></o:p></span></span></span></p> 2329 2330 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2331 auto;text-indent:-.25in;mso-list:l12 level1 lfo18'><span style='mso-bookmark: 2332 Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span 2333 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span 2334 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2335 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span></span><span 2336 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span 2337 style='mso-fareast-font-family:"Times New Roman"'> – this copies the instrument 2338 parameters shown to other selected powder patterns. If used, a dialog box (Copy 2339 Parameters) will appear showing the list of available powder patterns, you can 2340 copy the instrument parameters to any or all of them; select ‘All’ 2341 to copy them to all patterns. Then select ‘OK’ to do the copy; 2342 ‘Cancel’ to cancel the operation.<o:p></o:p></span></span></span></p> 2343 2344 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 2345 auto;text-indent:-.25in;mso-list:l12 level1 lfo18'><span style='mso-bookmark: 2346 Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span 2347 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span 2348 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b 2349 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Change 2350 radiation</span></b></span></span><span style='mso-bookmark:Texture'><span 2351 style='mso-bookmark:Sample_Parameters'><span style='mso-fareast-font-family: 2352 "Times New Roman"'> – this changes the radiation between single 2353 wavelength (e.g. for synchrotron source) and K</span></span></span><span 2354 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span 2355 style='font-family:Symbol;mso-fareast-font-family:"Times New Roman"'>a</span></sub></span></span><span 2356 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span 2357 style='mso-fareast-font-family:"Times New Roman"'>1</span></sub></span></span><span 2358 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span 2359 style='mso-fareast-font-family:"Times New Roman"'>/K</span></span></span><span 2360 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span 2361 style='font-family:Symbol;mso-fareast-font-family:"Times New Roman"'>a</span></sub></span></span><span 2362 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span 2363 style='mso-fareast-font-family:"Times New Roman"'>2</span></sub></span></span><span 2364 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span 2365 style='mso-fareast-font-family:"Times New Roman"'> wavelength pairs (e.g. a laboratory 2366 tube source).<o:p></o:p></span></span></span></p> 2367 2368 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span 2369 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span 2370 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span 2371 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 2372 style='mso-fareast-font-family:"Times New Roman"'>You can change any of the 2373 profile coefficients<o:p></o:p></span></span></span></p> 2374 2375 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span 2376 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span 2377 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span 2378 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><span 2379 style='mso-fareast-font-family:"Times New Roman"'>You can choose to refine any 2380 profile coefficients. <b style='mso-bidi-font-weight:normal'>NB</b>: In certain 2381 circumstances some choices are ignored e.g. Zero is not refined during peak 2382 fitting. Also some choices may lead to unstable refinement, e.g. <span 2383 class=GramE>Lam</span> refinement and lattice parameter refinement. Examine the 2384 ‘</span></span></span><a href="#Covariance"><span style='mso-bookmark: 2385 Texture'><span style='mso-bookmark:Sample_Parameters'><span style='mso-fareast-font-family: 2386 "Times New Roman"'>Covariance’</span></span></span><span 2387 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'></span></span></a><span 2388 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span 2389 style='mso-fareast-font-family:"Times New Roman"'> display for highly 2390 correlated parameters.<o:p></o:p></span></span></span></p> 2391 2392 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span 2393 style='mso-fareast-font-family:"Times New Roman"'>Sample Parameters</span></span></span><span 1814 2394 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4> 1815 2395 … … 1854 2434 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5> 1855 2435 1856 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l 3 level1 lfo12'><span2436 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span 1857 2437 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1858 "Times New Roman"'><span style='mso-list:Ignore'> 1.<span style='font:7.0pt "Times New Roman"'> 2438 "Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'> 1859 2439 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu 1860 2440 ‘<b style='mso-bidi-font-weight:normal'>Operations</b>’ – <b … … 1872 2452 table to the position shown here.<o:p></o:p></span></span></p> 1873 2453 1874 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l 3 level1 lfo12'><span2454 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span 1875 2455 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 1876 "Times New Roman"'><span style='mso-list:Ignore'> 2.<span style='font:7.0pt "Times New Roman"'> 2456 "Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'> 1877 2457 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You 1878 2458 may deselect individual peaks from indexing by <span class=SpellE>unchecking</span> … … 1931 2511 <ul type=disc> 1932 2512 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1933 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2513 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1934 2514 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Home: 1935 2515 returns the plot to the initial scaling <o:p></o:p></span></span></li> 1936 2516 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1937 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2517 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1938 2518 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Back: 1939 2519 returns the plot to the previous scaling <o:p></o:p></span></span></li> 1940 2520 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1941 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2521 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1942 2522 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Forward: 1943 2523 reverses the action in the previous press(es) of the Back button <o:p></o:p></span></span></li> 1944 2524 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1945 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2525 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1946 2526 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Pan: 1947 2527 allows you to control panning across the plot (press left mouse button) 1948 2528 and zooming (press right mouse button), <o:p></o:p></span></span></li> 1949 2529 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1950 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2530 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1951 2531 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Zoom: 1952 2532 allows you to select a portion of the plot (press right mouse button & 1953 2533 drag for zoom box) for the next plot. <o:p></o:p></span></span></li> 1954 2534 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1955 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2535 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1956 2536 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Save: 1957 2537 allows you to save the currently displayed plot in one of several 1958 2538 graphical formats suitable for printing or insertion in a document. The <o:p></o:p></span></span></li> 1959 2539 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 1960 mso-list:l0 level1 lfo1 3;tab-stops:list .5in'><span style='mso-bookmark:2540 mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark: 1961 2541 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Help: 1962 2542 accesses GSASII help on the specific plot type. <o:p></o:p></span></span></li> … … 2006 2586 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5> 2007 2587 2008 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l 2 level1 lfo15'><span2588 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l3 level1 lfo11'><span 2009 2589 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 2010 2590 "Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'> … … 2015 2595 are shown in the tool tip and the status bar.</span></p> 2016 2596 2017 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l 2 level1 lfo15'><span2597 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l3 level1 lfo11'><span 2018 2598 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family: 2019 2599 "Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>
Note: See TracChangeset
for help on using the changeset viewer.