Changeset 5332
- Timestamp:
- Sep 11, 2022 10:12:53 AM (9 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r5323 r5332 8083 8083 elif G2frame.GPXtree.GetItemText(item) == 'Cluster Analysis': 8084 8084 data = G2frame.GPXtree.GetItemPyData(item) 8085 G2frame.dataWindow.helpKey = 'Cluster Analysis' 8085 8086 G2seq.UpdateClusterAnalysis(G2frame,data) 8086 8087 elif G2frame.GPXtree.GetItemText(item) == 'Restraints': -
trunk/GSASIIplot.py
r5323 r5332 11573 11573 :param array YM: data matrix; plotted as contour 11574 11574 :param array XYZ: array of 3D PCA coordinates; plotted as 3D scatter plot 11575 ;param dict CLuDict: Cluster info; may have dend ogram & Kmeans results11575 ;param dict CLuDict: Cluster info; may have dendrogram & Kmeans results 11576 11576 :param str Title: plot title 11577 11577 :param str PlotName: plot tab name … … 11616 11616 Imin = np.min(YM) 11617 11617 Imax = np.max(YM) 11618 if CLuDict['CLuZ'] is None and CLuDict['plots'] == 'Dend ogram':11618 if CLuDict['CLuZ'] is None and CLuDict['plots'] == 'Dendrogram': 11619 11619 CLuDict['plots'] = 'All' 11620 11620 if CLuDict['plots'] == 'Distances': … … 11626 11626 Plot.set_xlabel('Data set',fontsize=12) 11627 11627 Plot.set_ylabel('Data set',fontsize=12) 11628 elif CLuDict['plots'] == 'Dend ogram':11628 elif CLuDict['plots'] == 'Dendrogram': 11629 11629 CLR = SCH.dendrogram(CLuDict['CLuZ'],orientation='right',ax=Plot) 11630 11630 Plot.set_title('%s %s'%(CLuDict['LinkMethod'],Title)) … … 11672 11672 CLR = SCH.dendrogram(CLuDict['CLuZ'],orientation='right',ax=ax3) 11673 11673 ax3.set_title('%s %s'%(CLuDict['LinkMethod'],Title)) 11674 ax3.set_ xlabel(r''+'data set no.',fontsize=12)11675 ax3.set_ ylabel(r''+CLuDict['Method']+' distance',fontsize=12)11674 ax3.set_ylabel(r''+'data set no.',fontsize=12) 11675 ax3.set_xlabel(r''+CLuDict['Method']+' distance',fontsize=12) 11676 11676 ax4.plot(100.*CLuDict['PCA'][:10]/np.sum(CLuDict['PCA'])) 11677 11677 ax4.set_xlabel('PCA index',fontsize=12) -
trunk/GSASIIseqGUI.py
r5331 r5332 1731 1731 1732 1732 def OnCompute(event): 1733 ClusData['ConDistMat'] = SSD.pdist(ClusData['DataMatrix'],ClusData['Method']) 1733 if 'minkowski' in ClusData['Method']: 1734 ClusData['ConDistMat'] = SSD.pdist(ClusData['DataMatrix'],ClusData['Method'],p=int(ClusData['MinkP'])) 1735 else: 1736 ClusData['ConDistMat'] = SSD.pdist(ClusData['DataMatrix'],ClusData['Method']) 1737 wx.CallAfter(UpdateClusterAnalysis,G2frame,ClusData) 1738 1739 def OnExponent(event): 1740 ClusData['MinkP'] = minp.GetValue() 1741 ClusData['ConDistMat'] = [] 1742 ClusData['CLuZ'] = None 1743 OnCompute(event) 1734 1744 wx.CallAfter(UpdateClusterAnalysis,G2frame,ClusData) 1735 1745 … … 1742 1752 method.Bind(wx.EVT_COMBOBOX, OnClusterMethod) 1743 1753 methsizer.Add(method,0,WACV) 1754 if 'minkowski' in ClusData['Method']: 1755 methsizer.Add(wx.StaticText(G2frame.dataWindow,label=' exponent: '),0,WACV) 1756 choicep = ['1','2','3','4','10'] 1757 minp = wx.ComboBox(G2frame.dataWindow,choices=choicep,style=wx.CB_READONLY|wx.CB_DROPDOWN) 1758 minp.SetValue(ClusData['MinkP']) 1759 minp.Bind(wx.EVT_COMBOBOX, OnExponent) 1760 methsizer.Add(minp,0,WACV) 1744 1761 compute = wx.Button(G2frame.dataWindow,label='Compute distance matrix') 1745 1762 compute.Bind(wx.EVT_BUTTON,OnCompute) … … 1826 1843 print('Number of Mean-shift clusters found: %d'%(np.max(result.labels_)+1)) 1827 1844 elif ClusData['Scikit'] == 'Affinity propagation': 1828 result = SKC.AffinityPropagation(affinity='precomputed' ).fit(SSD.squareform(ClusData['ConDistMat']))1845 result = SKC.AffinityPropagation(affinity='precomputed',damping=0.5).fit(SSD.squareform(ClusData['ConDistMat'])) 1829 1846 print('Number of Affinity propagation clusters found: %d'%(np.max(result.labels_)+1)) 1830 1847 elif ClusData['Scikit'] == 'Agglomerative clustering': … … 1853 1870 choice = ['K-Means','Affinity propagation','Mean-shift','Spectral clustering','Agglomerative clustering'] 1854 1871 clusSizer = wx.BoxSizer(wx.HORIZONTAL) 1855 clusSizer.Add(wx.StaticText(G2frame.dataWindow,label='Select clus ering method: '),0,WACV)1872 clusSizer.Add(wx.StaticText(G2frame.dataWindow,label='Select clustering method: '),0,WACV) 1856 1873 clusMethod = wx.ComboBox(G2frame.dataWindow,choices=choice,style=wx.CB_READONLY|wx.CB_DROPDOWN) 1857 1874 clusMethod.SetValue(ClusData['Scikit']) … … 1870 1887 scikitSizer.Add(clusSizer) 1871 1888 useTxt = '%s used the whitened data matrix'%ClusData['Scikit'] 1872 if ClusData['Scikit'] in [' Spectral clustering','Agglomerative clustering']:1889 if ClusData['Scikit'] in ['Agglomerative clustering','Affinity propagation']: 1873 1890 useTxt = '%s used %s for distance method'%(ClusData['Scikit'],ClusData['Method']) 1874 1891 scikitSizer.Add(wx.StaticText(G2frame.dataWindow,label=useTxt)) … … 1973 1990 ClusData['Scikit'] = ClusData.get('Scikit','K-Means') 1974 1991 ClusData['OutMethod'] = ClusData.get('OutMethod','Isolation Forest') 1992 ClusData['MinkP'] = ClusData.get('MinkP','2') 1975 1993 #end patch 1976 1994 G2frame.dataWindow.ClearData() … … 2027 2045 choice = ['All','Distances','3D PCA',] 2028 2046 else: 2029 choice = ['All','Distances','Dend ogram','3D PCA',]2047 choice = ['All','Distances','Dendrogram','3D PCA',] 2030 2048 plotsel = wx.ComboBox(G2frame.dataWindow,choices=choice,style=wx.CB_READONLY|wx.CB_DROPDOWN) 2031 2049 plotsel.SetValue(str(ClusData['plots'])) … … 2046 2064 G2G.HorizontalLine(mainSizer,G2frame.dataWindow) 2047 2065 mainSizer.Add(outlierSizer()) 2048 Nout = len(ClusData['codes'])-np.count_nonzero(ClusData['codes']+1) 2066 Nout = 0 2067 if ClusData['codes'] is not None: 2068 Nout = len(ClusData['codes'])-np.count_nonzero(ClusData['codes']+1) 2049 2069 if Nout > 0: 2050 2070 mainSizer.Add(wx.StaticText(G2frame.dataWindow, … … 2062 2082 bigSizer.Add(mainSizer) 2063 2083 2064 bigSizer.Add(G2G.HelpButton(G2frame.dataWindow,helpIndex= 'Cluster Analysis'))2084 bigSizer.Add(G2G.HelpButton(G2frame.dataWindow,helpIndex=G2frame.dataWindow.helpKey)) 2065 2085 bigSizer.Layout() 2066 2086 bigSizer.FitInside(G2frame.dataWindow) -
trunk/help/gsasII.html
r5317 r5332 25 25 <o:Author>Von Dreele</o:Author> 26 26 <o:LastAuthor>Von Dreele, Robert B.</o:LastAuthor> 27 <o:Revision> 199</o:Revision>28 <o:TotalTime> 6789</o:TotalTime>27 <o:Revision>222</o:Revision> 28 <o:TotalTime>7991</o:TotalTime> 29 29 <o:Created>2011-11-28T16:49:00Z</o:Created> 30 <o:LastSaved>2022-0 4-14T14:05:00Z</o:LastSaved>31 <o:Pages> 1</o:Pages>32 <o:Words>1 6481</o:Words>33 <o:Characters> 93944</o:Characters>30 <o:LastSaved>2022-09-09T19:03:00Z</o:LastSaved> 31 <o:Pages>43</o:Pages> 32 <o:Words>17907</o:Words> 33 <o:Characters>102071</o:Characters> 34 34 <o:Company>Argonne National Laboratory</o:Company> 35 <o:Lines> 782</o:Lines>36 <o:Paragraphs>2 20</o:Paragraphs>37 <o:CharactersWithSpaces>11 0205</o:CharactersWithSpaces>35 <o:Lines>850</o:Lines> 36 <o:Paragraphs>239</o:Paragraphs> 37 <o:CharactersWithSpaces>119739</o:CharactersWithSpaces> 38 38 <o:Version>16.00</o:Version> 39 39 </o:DocumentProperties> … … 42 42 </o:OfficeDocumentSettings> 43 43 </xml><![endif]--> 44 <link rel=dataStoreItem href="gsasII_files/item00 24.xml"45 target="gsasII_files/props0 25.xml">44 <link rel=dataStoreItem href="gsasII_files/item0054.xml" 45 target="gsasII_files/props055.xml"> 46 46 <link rel=themeData href="gsasII_files/themedata.thmx"> 47 47 <link rel=colorSchemeMapping href="gsasII_files/colorschememapping.xml"> 48 48 <!--[if gte mso 9]><xml> 49 49 <w:WordDocument> 50 <w:Zoom>220</w:Zoom> 51 <w:SpellingState>Clean</w:SpellingState> 52 <w:GrammarState>Clean</w:GrammarState> 50 <w:View>Print</w:View> 51 <w:Zoom>172</w:Zoom> 53 52 <w:TrackMoves>false</w:TrackMoves> 54 53 <w:TrackFormatting/> … … 974 973 mso-bidi-font-family:"Times New Roman";} 975 974 p 976 {mso-style-priority:99; 975 {mso-style-noshow:yes; 976 mso-style-priority:99; 977 977 mso-margin-top-alt:auto; 978 978 margin-right:0in; … … 1298 1298 font-family:"Times New Roman",serif; 1299 1299 mso-fareast-font-family:"Times New Roman";} 1300 span. SpellE1301 {mso-style-name: "";1302 mso-s pl-e:yes;}1303 span. GramE1304 {mso-style-name: "";1305 mso- gram-e:yes;}1300 span.pre 1301 {mso-style-name:pre; 1302 mso-style-unhide:no;} 1303 span.mjxassistivemathml 1304 {mso-style-name:mjx_assistive_mathml; 1305 mso-style-unhide:no;} 1306 1306 .MsoChpDefault 1307 1307 {mso-style-type:export-only; … … 3131 3131 font-family:Wingdings;} 3132 3132 @list l28 3133 {mso-list-id:1000932356; 3134 mso-list-type:hybrid; 3135 mso-list-template-ids:115493284 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3136 @list l28:level1 3137 {mso-level-number-format:bullet; 3138 mso-level-text:; 3139 mso-level-tab-stop:none; 3140 mso-level-number-position:left; 3141 margin-left:.25in; 3142 text-indent:-.25in; 3143 font-family:Symbol;} 3144 @list l28:level2 3145 {mso-level-number-format:bullet; 3146 mso-level-text:o; 3147 mso-level-tab-stop:none; 3148 mso-level-number-position:left; 3149 margin-left:.75in; 3150 text-indent:-.25in; 3151 font-family:"Courier New";} 3152 @list l28:level3 3153 {mso-level-number-format:bullet; 3154 mso-level-text:; 3155 mso-level-tab-stop:none; 3156 mso-level-number-position:left; 3157 margin-left:1.25in; 3158 text-indent:-.25in; 3159 font-family:Wingdings;} 3160 @list l28:level4 3161 {mso-level-number-format:bullet; 3162 mso-level-text:; 3163 mso-level-tab-stop:none; 3164 mso-level-number-position:left; 3165 margin-left:1.75in; 3166 text-indent:-.25in; 3167 font-family:Symbol;} 3168 @list l28:level5 3169 {mso-level-number-format:bullet; 3170 mso-level-text:o; 3171 mso-level-tab-stop:none; 3172 mso-level-number-position:left; 3173 margin-left:2.25in; 3174 text-indent:-.25in; 3175 font-family:"Courier New";} 3176 @list l28:level6 3177 {mso-level-number-format:bullet; 3178 mso-level-text:; 3179 mso-level-tab-stop:none; 3180 mso-level-number-position:left; 3181 margin-left:2.75in; 3182 text-indent:-.25in; 3183 font-family:Wingdings;} 3184 @list l28:level7 3185 {mso-level-number-format:bullet; 3186 mso-level-text:; 3187 mso-level-tab-stop:none; 3188 mso-level-number-position:left; 3189 margin-left:3.25in; 3190 text-indent:-.25in; 3191 font-family:Symbol;} 3192 @list l28:level8 3193 {mso-level-number-format:bullet; 3194 mso-level-text:o; 3195 mso-level-tab-stop:none; 3196 mso-level-number-position:left; 3197 margin-left:3.75in; 3198 text-indent:-.25in; 3199 font-family:"Courier New";} 3200 @list l28:level9 3201 {mso-level-number-format:bullet; 3202 mso-level-text:; 3203 mso-level-tab-stop:none; 3204 mso-level-number-position:left; 3205 margin-left:4.25in; 3206 text-indent:-.25in; 3207 font-family:Wingdings;} 3208 @list l29 3133 3209 {mso-list-id:1003506942; 3134 3210 mso-list-template-ids:244079786;} 3135 @list l2 8:level13211 @list l29:level1 3136 3212 {mso-level-number-format:bullet; 3137 3213 mso-level-text:; … … 3140 3216 text-indent:-.25in; 3141 3217 font-family:Symbol;} 3142 @list l2 8:level23218 @list l29:level2 3143 3219 {mso-level-number-format:bullet; 3144 3220 mso-level-text:; … … 3150 3226 mso-ansi-font-weight:normal; 3151 3227 mso-ansi-font-style:normal;} 3152 @list l2 8:level33228 @list l29:level3 3153 3229 {mso-level-tab-stop:1.5in; 3154 3230 mso-level-number-position:left; 3155 3231 text-indent:-.25in;} 3156 @list l2 8:level43232 @list l29:level4 3157 3233 {mso-level-tab-stop:2.0in; 3158 3234 mso-level-number-position:left; 3159 3235 text-indent:-.25in;} 3160 @list l2 8:level53236 @list l29:level5 3161 3237 {mso-level-tab-stop:2.5in; 3162 3238 mso-level-number-position:left; 3163 3239 text-indent:-.25in;} 3164 @list l2 8:level63240 @list l29:level6 3165 3241 {mso-level-tab-stop:3.0in; 3166 3242 mso-level-number-position:left; 3167 3243 text-indent:-.25in;} 3168 @list l2 8:level73244 @list l29:level7 3169 3245 {mso-level-tab-stop:3.5in; 3170 3246 mso-level-number-position:left; 3171 3247 text-indent:-.25in;} 3172 @list l2 8:level83248 @list l29:level8 3173 3249 {mso-level-tab-stop:4.0in; 3174 3250 mso-level-number-position:left; 3175 3251 text-indent:-.25in;} 3176 @list l2 8:level93252 @list l29:level9 3177 3253 {mso-level-tab-stop:4.5in; 3178 3254 mso-level-number-position:left; 3179 3255 text-indent:-.25in;} 3180 @list l 293256 @list l30 3181 3257 {mso-list-id:1013386966; 3182 3258 mso-list-type:hybrid; 3183 3259 mso-list-template-ids:1819551970 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3184 @list l 29:level13260 @list l30:level1 3185 3261 {mso-level-number-format:bullet; 3186 3262 mso-level-text:; … … 3189 3265 text-indent:-.25in; 3190 3266 font-family:Symbol;} 3191 @list l 29:level23267 @list l30:level2 3192 3268 {mso-level-number-format:bullet; 3193 3269 mso-level-text:o; … … 3196 3272 text-indent:-.25in; 3197 3273 font-family:"Courier New";} 3198 @list l 29:level33199 {mso-level-number-format:bullet; 3200 mso-level-text:; 3201 mso-level-tab-stop:none; 3202 mso-level-number-position:left; 3203 text-indent:-.25in; 3204 font-family:Wingdings;} 3205 @list l 29:level43274 @list l30:level3 3275 {mso-level-number-format:bullet; 3276 mso-level-text:; 3277 mso-level-tab-stop:none; 3278 mso-level-number-position:left; 3279 text-indent:-.25in; 3280 font-family:Wingdings;} 3281 @list l30:level4 3206 3282 {mso-level-number-format:bullet; 3207 3283 mso-level-text:; … … 3210 3286 text-indent:-.25in; 3211 3287 font-family:Symbol;} 3212 @list l 29:level53288 @list l30:level5 3213 3289 {mso-level-number-format:bullet; 3214 3290 mso-level-text:o; … … 3217 3293 text-indent:-.25in; 3218 3294 font-family:"Courier New";} 3219 @list l 29:level63220 {mso-level-number-format:bullet; 3221 mso-level-text:; 3222 mso-level-tab-stop:none; 3223 mso-level-number-position:left; 3224 text-indent:-.25in; 3225 font-family:Wingdings;} 3226 @list l 29:level73295 @list l30:level6 3296 {mso-level-number-format:bullet; 3297 mso-level-text:; 3298 mso-level-tab-stop:none; 3299 mso-level-number-position:left; 3300 text-indent:-.25in; 3301 font-family:Wingdings;} 3302 @list l30:level7 3227 3303 {mso-level-number-format:bullet; 3228 3304 mso-level-text:; … … 3231 3307 text-indent:-.25in; 3232 3308 font-family:Symbol;} 3233 @list l 29:level83309 @list l30:level8 3234 3310 {mso-level-number-format:bullet; 3235 3311 mso-level-text:o; … … 3238 3314 text-indent:-.25in; 3239 3315 font-family:"Courier New";} 3240 @list l 29:level93241 {mso-level-number-format:bullet; 3242 mso-level-text:; 3243 mso-level-tab-stop:none; 3244 mso-level-number-position:left; 3245 text-indent:-.25in; 3246 font-family:Wingdings;} 3247 @list l3 03316 @list l30:level9 3317 {mso-level-number-format:bullet; 3318 mso-level-text:; 3319 mso-level-tab-stop:none; 3320 mso-level-number-position:left; 3321 text-indent:-.25in; 3322 font-family:Wingdings;} 3323 @list l31 3248 3324 {mso-list-id:1040134479; 3249 3325 mso-list-template-ids:1471328814;} 3250 @list l3 0:level13326 @list l31:level1 3251 3327 {mso-level-number-format:bullet; 3252 3328 mso-level-text:; … … 3255 3331 text-indent:-.25in; 3256 3332 font-family:Symbol;} 3257 @list l3 0:level23333 @list l31:level2 3258 3334 {mso-level-number-format:bullet; 3259 3335 mso-level-text:; … … 3265 3341 mso-ansi-font-weight:normal; 3266 3342 mso-ansi-font-style:normal;} 3267 @list l3 0:level33343 @list l31:level3 3268 3344 {mso-level-tab-stop:1.5in; 3269 3345 mso-level-number-position:left; 3270 3346 text-indent:-.25in;} 3271 @list l3 0:level43347 @list l31:level4 3272 3348 {mso-level-tab-stop:2.0in; 3273 3349 mso-level-number-position:left; 3274 3350 text-indent:-.25in;} 3275 @list l3 0:level53351 @list l31:level5 3276 3352 {mso-level-tab-stop:2.5in; 3277 3353 mso-level-number-position:left; 3278 3354 text-indent:-.25in;} 3279 @list l3 0:level63355 @list l31:level6 3280 3356 {mso-level-tab-stop:3.0in; 3281 3357 mso-level-number-position:left; 3282 3358 text-indent:-.25in;} 3283 @list l3 0:level73359 @list l31:level7 3284 3360 {mso-level-tab-stop:3.5in; 3285 3361 mso-level-number-position:left; 3286 3362 text-indent:-.25in;} 3287 @list l3 0:level83363 @list l31:level8 3288 3364 {mso-level-tab-stop:4.0in; 3289 3365 mso-level-number-position:left; 3290 3366 text-indent:-.25in;} 3291 @list l3 0:level93367 @list l31:level9 3292 3368 {mso-level-tab-stop:4.5in; 3293 3369 mso-level-number-position:left; 3294 3370 text-indent:-.25in;} 3295 @list l3 13371 @list l32 3296 3372 {mso-list-id:1068959235; 3297 3373 mso-list-type:hybrid; 3298 3374 mso-list-template-ids:682254666 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3299 @list l3 1:level13375 @list l32:level1 3300 3376 {mso-level-number-format:bullet; 3301 3377 mso-level-text:; … … 3305 3381 text-indent:-.25in; 3306 3382 font-family:Symbol;} 3307 @list l3 1:level23383 @list l32:level2 3308 3384 {mso-level-number-format:bullet; 3309 3385 mso-level-text:o; … … 3313 3389 text-indent:-.25in; 3314 3390 font-family:"Courier New";} 3315 @list l3 1:level33391 @list l32:level3 3316 3392 {mso-level-number-format:bullet; 3317 3393 mso-level-text:; … … 3321 3397 text-indent:-.25in; 3322 3398 font-family:Wingdings;} 3323 @list l3 1:level43399 @list l32:level4 3324 3400 {mso-level-number-format:bullet; 3325 3401 mso-level-text:; … … 3329 3405 text-indent:-.25in; 3330 3406 font-family:Symbol;} 3331 @list l3 1:level53407 @list l32:level5 3332 3408 {mso-level-number-format:bullet; 3333 3409 mso-level-text:o; … … 3337 3413 text-indent:-.25in; 3338 3414 font-family:"Courier New";} 3339 @list l3 1:level63415 @list l32:level6 3340 3416 {mso-level-number-format:bullet; 3341 3417 mso-level-text:; … … 3345 3421 text-indent:-.25in; 3346 3422 font-family:Wingdings;} 3347 @list l3 1:level73423 @list l32:level7 3348 3424 {mso-level-number-format:bullet; 3349 3425 mso-level-text:; … … 3353 3429 text-indent:-.25in; 3354 3430 font-family:Symbol;} 3355 @list l3 1:level83431 @list l32:level8 3356 3432 {mso-level-number-format:bullet; 3357 3433 mso-level-text:o; … … 3361 3437 text-indent:-.25in; 3362 3438 font-family:"Courier New";} 3363 @list l3 1:level93439 @list l32:level9 3364 3440 {mso-level-number-format:bullet; 3365 3441 mso-level-text:; … … 3369 3445 text-indent:-.25in; 3370 3446 font-family:Wingdings;} 3371 @list l3 23447 @list l33 3372 3448 {mso-list-id:1109549855; 3373 3449 mso-list-template-ids:244079786;} 3374 @list l3 2:level13450 @list l33:level1 3375 3451 {mso-level-number-format:bullet; 3376 3452 mso-level-text:; … … 3379 3455 text-indent:-.25in; 3380 3456 font-family:Symbol;} 3381 @list l3 2:level23457 @list l33:level2 3382 3458 {mso-level-number-format:bullet; 3383 3459 mso-level-text:; … … 3389 3465 mso-ansi-font-weight:normal; 3390 3466 mso-ansi-font-style:normal;} 3391 @list l3 2:level33467 @list l33:level3 3392 3468 {mso-level-tab-stop:1.5in; 3393 3469 mso-level-number-position:left; 3394 3470 text-indent:-.25in;} 3395 @list l3 2:level43471 @list l33:level4 3396 3472 {mso-level-tab-stop:2.0in; 3397 3473 mso-level-number-position:left; 3398 3474 text-indent:-.25in;} 3399 @list l3 2:level53475 @list l33:level5 3400 3476 {mso-level-tab-stop:2.5in; 3401 3477 mso-level-number-position:left; 3402 3478 text-indent:-.25in;} 3403 @list l3 2:level63479 @list l33:level6 3404 3480 {mso-level-tab-stop:3.0in; 3405 3481 mso-level-number-position:left; 3406 3482 text-indent:-.25in;} 3407 @list l3 2:level73483 @list l33:level7 3408 3484 {mso-level-tab-stop:3.5in; 3409 3485 mso-level-number-position:left; 3410 3486 text-indent:-.25in;} 3411 @list l3 2:level83487 @list l33:level8 3412 3488 {mso-level-tab-stop:4.0in; 3413 3489 mso-level-number-position:left; 3414 3490 text-indent:-.25in;} 3415 @list l3 2:level93491 @list l33:level9 3416 3492 {mso-level-tab-stop:4.5in; 3417 3493 mso-level-number-position:left; 3418 3494 text-indent:-.25in;} 3419 @list l3 33495 @list l34 3420 3496 {mso-list-id:1231303444; 3421 3497 mso-list-type:hybrid; 3422 3498 mso-list-template-ids:-1999715836 67698689 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 3423 @list l3 3:level13499 @list l34:level1 3424 3500 {mso-level-number-format:bullet; 3425 3501 mso-level-text:; … … 3430 3506 font-family:Symbol; 3431 3507 mso-ansi-font-weight:normal;} 3432 @list l3 3:level23508 @list l34:level2 3433 3509 {mso-level-tab-stop:1.0in; 3434 3510 mso-level-number-position:left; 3435 3511 text-indent:-.25in;} 3436 @list l3 3:level33512 @list l34:level3 3437 3513 {mso-level-tab-stop:112.5pt; 3438 3514 mso-level-number-position:left; 3439 3515 margin-left:112.5pt; 3440 3516 text-indent:-.25in;} 3441 @list l3 3:level43517 @list l34:level4 3442 3518 {mso-level-tab-stop:2.0in; 3443 3519 mso-level-number-position:left; 3444 3520 text-indent:-.25in;} 3445 @list l3 3:level53521 @list l34:level5 3446 3522 {mso-level-tab-stop:2.5in; 3447 3523 mso-level-number-position:left; 3448 3524 text-indent:-.25in;} 3449 @list l3 3:level63525 @list l34:level6 3450 3526 {mso-level-tab-stop:3.0in; 3451 3527 mso-level-number-position:left; 3452 3528 text-indent:-.25in;} 3453 @list l3 3:level73529 @list l34:level7 3454 3530 {mso-level-tab-stop:3.5in; 3455 3531 mso-level-number-position:left; 3456 3532 text-indent:-.25in;} 3457 @list l3 3:level83533 @list l34:level8 3458 3534 {mso-level-tab-stop:4.0in; 3459 3535 mso-level-number-position:left; 3460 3536 text-indent:-.25in;} 3461 @list l3 3:level93537 @list l34:level9 3462 3538 {mso-level-tab-stop:4.5in; 3463 3539 mso-level-number-position:left; 3464 3540 text-indent:-.25in;} 3465 @list l3 43541 @list l35 3466 3542 {mso-list-id:1281499821; 3467 3543 mso-list-template-ids:349610142;} 3468 @list l3 4:level13544 @list l35:level1 3469 3545 {mso-level-number-format:bullet; 3470 3546 mso-level-text:; … … 3473 3549 text-indent:-.25in; 3474 3550 font-family:Symbol;} 3475 @list l3 4:level23551 @list l35:level2 3476 3552 {mso-level-number-format:bullet; 3477 3553 mso-level-text:; … … 3481 3557 mso-ansi-font-size:10.0pt; 3482 3558 font-family:Symbol;} 3483 @list l3 4:level33559 @list l35:level3 3484 3560 {mso-level-tab-stop:1.5in; 3485 3561 mso-level-number-position:left; 3486 3562 text-indent:-.25in;} 3487 @list l3 4:level43563 @list l35:level4 3488 3564 {mso-level-tab-stop:2.0in; 3489 3565 mso-level-number-position:left; 3490 3566 text-indent:-.25in;} 3491 @list l3 4:level53567 @list l35:level5 3492 3568 {mso-level-tab-stop:2.5in; 3493 3569 mso-level-number-position:left; 3494 3570 text-indent:-.25in;} 3495 @list l3 4:level63571 @list l35:level6 3496 3572 {mso-level-tab-stop:3.0in; 3497 3573 mso-level-number-position:left; 3498 3574 text-indent:-.25in;} 3499 @list l3 4:level73575 @list l35:level7 3500 3576 {mso-level-tab-stop:3.5in; 3501 3577 mso-level-number-position:left; 3502 3578 text-indent:-.25in;} 3503 @list l3 4:level83579 @list l35:level8 3504 3580 {mso-level-tab-stop:4.0in; 3505 3581 mso-level-number-position:left; 3506 3582 text-indent:-.25in;} 3507 @list l3 4:level93583 @list l35:level9 3508 3584 {mso-level-tab-stop:4.5in; 3509 3585 mso-level-number-position:left; 3510 3586 text-indent:-.25in;} 3511 @list l3 53587 @list l36 3512 3588 {mso-list-id:1394309879; 3513 3589 mso-list-template-ids:1264741566;} 3514 @list l3 5:level13590 @list l36:level1 3515 3591 {mso-level-start-at:2; 3516 3592 mso-level-tab-stop:none; … … 3518 3594 margin-left:.25in; 3519 3595 text-indent:-.25in;} 3520 @list l3 5:level23596 @list l36:level2 3521 3597 {mso-level-number-format:alpha-lower; 3522 3598 mso-level-tab-stop:.75in; … … 3528 3604 mso-ansi-font-weight:normal; 3529 3605 mso-ansi-font-style:normal;} 3530 @list l3 5:level33606 @list l36:level3 3531 3607 {mso-level-tab-stop:1.25in; 3532 3608 mso-level-number-position:left; 3533 3609 margin-left:1.25in; 3534 3610 text-indent:-.25in;} 3535 @list l3 5:level43611 @list l36:level4 3536 3612 {mso-level-number-format:alpha-lower; 3537 3613 mso-level-tab-stop:1.75in; … … 3539 3615 margin-left:1.75in; 3540 3616 text-indent:-.25in;} 3541 @list l3 5:level53617 @list l36:level5 3542 3618 {mso-level-tab-stop:2.25in; 3543 3619 mso-level-number-position:left; 3544 3620 margin-left:2.25in; 3545 3621 text-indent:-.25in;} 3546 @list l3 5:level63622 @list l36:level6 3547 3623 {mso-level-tab-stop:2.75in; 3548 3624 mso-level-number-position:left; 3549 3625 margin-left:2.75in; 3550 3626 text-indent:-.25in;} 3551 @list l3 5:level73627 @list l36:level7 3552 3628 {mso-level-tab-stop:3.25in; 3553 3629 mso-level-number-position:left; 3554 3630 margin-left:3.25in; 3555 3631 text-indent:-.25in;} 3556 @list l3 5:level83632 @list l36:level8 3557 3633 {mso-level-tab-stop:3.75in; 3558 3634 mso-level-number-position:left; 3559 3635 margin-left:3.75in; 3560 3636 text-indent:-.25in;} 3561 @list l3 5:level93637 @list l36:level9 3562 3638 {mso-level-tab-stop:4.25in; 3563 3639 mso-level-number-position:left; 3564 3640 margin-left:4.25in; 3565 3641 text-indent:-.25in;} 3566 @list l3 63642 @list l37 3567 3643 {mso-list-id:1415325662; 3568 3644 mso-list-type:hybrid; 3569 3645 mso-list-template-ids:-1594983590 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3570 @list l3 6:level13646 @list l37:level1 3571 3647 {mso-level-number-format:bullet; 3572 3648 mso-level-text:; … … 3575 3651 text-indent:-.25in; 3576 3652 font-family:Symbol;} 3577 @list l3 6:level23653 @list l37:level2 3578 3654 {mso-level-number-format:bullet; 3579 3655 mso-level-text:o; … … 3582 3658 text-indent:-.25in; 3583 3659 font-family:"Courier New";} 3584 @list l3 6:level33585 {mso-level-number-format:bullet; 3586 mso-level-text:; 3587 mso-level-tab-stop:none; 3588 mso-level-number-position:left; 3589 text-indent:-.25in; 3590 font-family:Wingdings;} 3591 @list l3 6:level43660 @list l37:level3 3661 {mso-level-number-format:bullet; 3662 mso-level-text:; 3663 mso-level-tab-stop:none; 3664 mso-level-number-position:left; 3665 text-indent:-.25in; 3666 font-family:Wingdings;} 3667 @list l37:level4 3592 3668 {mso-level-number-format:bullet; 3593 3669 mso-level-text:; … … 3596 3672 text-indent:-.25in; 3597 3673 font-family:Symbol;} 3598 @list l3 6:level53674 @list l37:level5 3599 3675 {mso-level-number-format:bullet; 3600 3676 mso-level-text:o; … … 3603 3679 text-indent:-.25in; 3604 3680 font-family:"Courier New";} 3605 @list l3 6:level63606 {mso-level-number-format:bullet; 3607 mso-level-text:; 3608 mso-level-tab-stop:none; 3609 mso-level-number-position:left; 3610 text-indent:-.25in; 3611 font-family:Wingdings;} 3612 @list l3 6:level73681 @list l37:level6 3682 {mso-level-number-format:bullet; 3683 mso-level-text:; 3684 mso-level-tab-stop:none; 3685 mso-level-number-position:left; 3686 text-indent:-.25in; 3687 font-family:Wingdings;} 3688 @list l37:level7 3613 3689 {mso-level-number-format:bullet; 3614 3690 mso-level-text:; … … 3617 3693 text-indent:-.25in; 3618 3694 font-family:Symbol;} 3619 @list l3 6:level83695 @list l37:level8 3620 3696 {mso-level-number-format:bullet; 3621 3697 mso-level-text:o; … … 3624 3700 text-indent:-.25in; 3625 3701 font-family:"Courier New";} 3626 @list l3 6:level93627 {mso-level-number-format:bullet; 3628 mso-level-text:; 3629 mso-level-tab-stop:none; 3630 mso-level-number-position:left; 3631 text-indent:-.25in; 3632 font-family:Wingdings;} 3633 @list l3 73702 @list l37:level9 3703 {mso-level-number-format:bullet; 3704 mso-level-text:; 3705 mso-level-tab-stop:none; 3706 mso-level-number-position:left; 3707 text-indent:-.25in; 3708 font-family:Wingdings;} 3709 @list l38 3634 3710 {mso-list-id:1463232251; 3635 3711 mso-list-type:hybrid; 3636 3712 mso-list-template-ids:-1222108178 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3637 @list l3 7:level13713 @list l38:level1 3638 3714 {mso-level-number-format:bullet; 3639 3715 mso-level-text:; … … 3642 3718 text-indent:-.25in; 3643 3719 font-family:Symbol;} 3644 @list l3 7:level23720 @list l38:level2 3645 3721 {mso-level-number-format:bullet; 3646 3722 mso-level-text:o; … … 3649 3725 text-indent:-.25in; 3650 3726 font-family:"Courier New";} 3651 @list l3 7:level33652 {mso-level-number-format:bullet; 3653 mso-level-text:; 3654 mso-level-tab-stop:none; 3655 mso-level-number-position:left; 3656 text-indent:-.25in; 3657 font-family:Wingdings;} 3658 @list l3 7:level43727 @list l38:level3 3728 {mso-level-number-format:bullet; 3729 mso-level-text:; 3730 mso-level-tab-stop:none; 3731 mso-level-number-position:left; 3732 text-indent:-.25in; 3733 font-family:Wingdings;} 3734 @list l38:level4 3659 3735 {mso-level-number-format:bullet; 3660 3736 mso-level-text:; … … 3663 3739 text-indent:-.25in; 3664 3740 font-family:Symbol;} 3665 @list l3 7:level53741 @list l38:level5 3666 3742 {mso-level-number-format:bullet; 3667 3743 mso-level-text:o; … … 3670 3746 text-indent:-.25in; 3671 3747 font-family:"Courier New";} 3672 @list l3 7:level63673 {mso-level-number-format:bullet; 3674 mso-level-text:; 3675 mso-level-tab-stop:none; 3676 mso-level-number-position:left; 3677 text-indent:-.25in; 3678 font-family:Wingdings;} 3679 @list l3 7:level73748 @list l38:level6 3749 {mso-level-number-format:bullet; 3750 mso-level-text:; 3751 mso-level-tab-stop:none; 3752 mso-level-number-position:left; 3753 text-indent:-.25in; 3754 font-family:Wingdings;} 3755 @list l38:level7 3680 3756 {mso-level-number-format:bullet; 3681 3757 mso-level-text:; … … 3684 3760 text-indent:-.25in; 3685 3761 font-family:Symbol;} 3686 @list l3 7:level83762 @list l38:level8 3687 3763 {mso-level-number-format:bullet; 3688 3764 mso-level-text:o; … … 3691 3767 text-indent:-.25in; 3692 3768 font-family:"Courier New";} 3693 @list l37:level9 3694 {mso-level-number-format:bullet; 3695 mso-level-text:; 3696 mso-level-tab-stop:none; 3697 mso-level-number-position:left; 3698 text-indent:-.25in; 3699 font-family:Wingdings;} 3700 @list l38 3769 @list l38:level9 3770 {mso-level-number-format:bullet; 3771 mso-level-text:; 3772 mso-level-tab-stop:none; 3773 mso-level-number-position:left; 3774 text-indent:-.25in; 3775 font-family:Wingdings;} 3776 @list l39 3777 {mso-list-id:1464540008; 3778 mso-list-type:hybrid; 3779 mso-list-template-ids:469108572 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3780 @list l39:level1 3781 {mso-level-number-format:bullet; 3782 mso-level-text:; 3783 mso-level-tab-stop:none; 3784 mso-level-number-position:left; 3785 text-indent:-.25in; 3786 font-family:Symbol;} 3787 @list l39:level2 3788 {mso-level-number-format:bullet; 3789 mso-level-text:o; 3790 mso-level-tab-stop:none; 3791 mso-level-number-position:left; 3792 text-indent:-.25in; 3793 font-family:"Courier New";} 3794 @list l39:level3 3795 {mso-level-number-format:bullet; 3796 mso-level-text:; 3797 mso-level-tab-stop:none; 3798 mso-level-number-position:left; 3799 text-indent:-.25in; 3800 font-family:Wingdings;} 3801 @list l39:level4 3802 {mso-level-number-format:bullet; 3803 mso-level-text:; 3804 mso-level-tab-stop:none; 3805 mso-level-number-position:left; 3806 text-indent:-.25in; 3807 font-family:Symbol;} 3808 @list l39:level5 3809 {mso-level-number-format:bullet; 3810 mso-level-text:o; 3811 mso-level-tab-stop:none; 3812 mso-level-number-position:left; 3813 text-indent:-.25in; 3814 font-family:"Courier New";} 3815 @list l39:level6 3816 {mso-level-number-format:bullet; 3817 mso-level-text:; 3818 mso-level-tab-stop:none; 3819 mso-level-number-position:left; 3820 text-indent:-.25in; 3821 font-family:Wingdings;} 3822 @list l39:level7 3823 {mso-level-number-format:bullet; 3824 mso-level-text:; 3825 mso-level-tab-stop:none; 3826 mso-level-number-position:left; 3827 text-indent:-.25in; 3828 font-family:Symbol;} 3829 @list l39:level8 3830 {mso-level-number-format:bullet; 3831 mso-level-text:o; 3832 mso-level-tab-stop:none; 3833 mso-level-number-position:left; 3834 text-indent:-.25in; 3835 font-family:"Courier New";} 3836 @list l39:level9 3837 {mso-level-number-format:bullet; 3838 mso-level-text:; 3839 mso-level-tab-stop:none; 3840 mso-level-number-position:left; 3841 text-indent:-.25in; 3842 font-family:Wingdings;} 3843 @list l40 3701 3844 {mso-list-id:1510100798; 3702 3845 mso-list-template-ids:-16363168;} 3703 @list l 38:level13846 @list l40:level1 3704 3847 {mso-level-tab-stop:.25in; 3705 3848 mso-level-number-position:left; 3706 3849 margin-left:.25in; 3707 3850 text-indent:-.25in;} 3708 @list l 38:level23851 @list l40:level2 3709 3852 {mso-level-number-format:bullet; 3710 3853 mso-level-text:; … … 3717 3860 mso-ansi-font-weight:normal; 3718 3861 mso-ansi-font-style:normal;} 3719 @list l 38:level33862 @list l40:level3 3720 3863 {mso-level-tab-stop:1.25in; 3721 3864 mso-level-number-position:left; 3722 3865 margin-left:1.25in; 3723 3866 text-indent:-.25in;} 3724 @list l 38:level43867 @list l40:level4 3725 3868 {mso-level-tab-stop:1.75in; 3726 3869 mso-level-number-position:left; 3727 3870 margin-left:1.75in; 3728 3871 text-indent:-.25in;} 3729 @list l 38:level53872 @list l40:level5 3730 3873 {mso-level-tab-stop:2.25in; 3731 3874 mso-level-number-position:left; 3732 3875 margin-left:2.25in; 3733 3876 text-indent:-.25in;} 3734 @list l 38:level63877 @list l40:level6 3735 3878 {mso-level-tab-stop:2.75in; 3736 3879 mso-level-number-position:left; 3737 3880 margin-left:2.75in; 3738 3881 text-indent:-.25in;} 3739 @list l 38:level73882 @list l40:level7 3740 3883 {mso-level-tab-stop:3.25in; 3741 3884 mso-level-number-position:left; 3742 3885 margin-left:3.25in; 3743 3886 text-indent:-.25in;} 3744 @list l 38:level83887 @list l40:level8 3745 3888 {mso-level-tab-stop:3.75in; 3746 3889 mso-level-number-position:left; 3747 3890 margin-left:3.75in; 3748 3891 text-indent:-.25in;} 3749 @list l 38:level93892 @list l40:level9 3750 3893 {mso-level-tab-stop:4.25in; 3751 3894 mso-level-number-position:left; 3752 3895 margin-left:4.25in; 3753 3896 text-indent:-.25in;} 3754 @list l 393897 @list l41 3755 3898 {mso-list-id:1559706126; 3756 3899 mso-list-template-ids:-582595398;} 3757 @list l 39:level13900 @list l41:level1 3758 3901 {mso-level-number-format:bullet; 3759 3902 mso-level-text:; … … 3762 3905 text-indent:-.25in; 3763 3906 font-family:Symbol;} 3764 @list l 39:level23907 @list l41:level2 3765 3908 {mso-level-tab-stop:1.0in; 3766 3909 mso-level-number-position:left; 3767 3910 text-indent:-.25in;} 3768 @list l 39:level33911 @list l41:level3 3769 3912 {mso-level-tab-stop:1.5in; 3770 3913 mso-level-number-position:left; 3771 3914 text-indent:-.25in;} 3772 @list l 39:level43915 @list l41:level4 3773 3916 {mso-level-tab-stop:2.0in; 3774 3917 mso-level-number-position:left; 3775 3918 text-indent:-.25in;} 3776 @list l 39:level53919 @list l41:level5 3777 3920 {mso-level-tab-stop:2.5in; 3778 3921 mso-level-number-position:left; 3779 3922 text-indent:-.25in;} 3780 @list l 39:level63923 @list l41:level6 3781 3924 {mso-level-tab-stop:3.0in; 3782 3925 mso-level-number-position:left; 3783 3926 text-indent:-.25in;} 3784 @list l 39:level73927 @list l41:level7 3785 3928 {mso-level-tab-stop:3.5in; 3786 3929 mso-level-number-position:left; 3787 3930 text-indent:-.25in;} 3788 @list l 39:level83931 @list l41:level8 3789 3932 {mso-level-tab-stop:4.0in; 3790 3933 mso-level-number-position:left; 3791 3934 text-indent:-.25in;} 3792 @list l 39:level93935 @list l41:level9 3793 3936 {mso-level-tab-stop:4.5in; 3794 3937 mso-level-number-position:left; 3795 3938 text-indent:-.25in;} 3796 @list l40 3797 {mso-list-id:1580553544; 3798 mso-list-template-ids:-615735862;} 3799 @list l40:level1 3800 {mso-level-tab-stop:.5in; 3801 mso-level-number-position:left; 3802 text-indent:-.25in;} 3803 @list l40:level2 3804 {mso-level-tab-stop:1.0in; 3805 mso-level-number-position:left; 3806 text-indent:-.25in;} 3807 @list l40:level3 3808 {mso-level-tab-stop:1.5in; 3809 mso-level-number-position:left; 3810 text-indent:-.25in;} 3811 @list l40:level4 3812 {mso-level-tab-stop:2.0in; 3813 mso-level-number-position:left; 3814 text-indent:-.25in;} 3815 @list l40:level5 3816 {mso-level-tab-stop:2.5in; 3817 mso-level-number-position:left; 3818 text-indent:-.25in;} 3819 @list l40:level6 3820 {mso-level-tab-stop:3.0in; 3821 mso-level-number-position:left; 3822 text-indent:-.25in;} 3823 @list l40:level7 3824 {mso-level-tab-stop:3.5in; 3825 mso-level-number-position:left; 3826 text-indent:-.25in;} 3827 @list l40:level8 3828 {mso-level-tab-stop:4.0in; 3829 mso-level-number-position:left; 3830 text-indent:-.25in;} 3831 @list l40:level9 3832 {mso-level-tab-stop:4.5in; 3833 mso-level-number-position:left; 3834 text-indent:-.25in;} 3835 @list l41 3939 @list l42 3940 {mso-list-id:1565602802; 3941 mso-list-type:hybrid; 3942 mso-list-template-ids:318938194 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3943 @list l42:level1 3944 {mso-level-number-format:bullet; 3945 mso-level-text:; 3946 mso-level-tab-stop:none; 3947 mso-level-number-position:left; 3948 margin-left:.25in; 3949 text-indent:-.25in; 3950 font-family:Symbol;} 3951 @list l42:level2 3952 {mso-level-number-format:bullet; 3953 mso-level-text:o; 3954 mso-level-tab-stop:none; 3955 mso-level-number-position:left; 3956 margin-left:.75in; 3957 text-indent:-.25in; 3958 font-family:"Courier New";} 3959 @list l42:level3 3960 {mso-level-number-format:bullet; 3961 mso-level-text:; 3962 mso-level-tab-stop:none; 3963 mso-level-number-position:left; 3964 margin-left:1.25in; 3965 text-indent:-.25in; 3966 font-family:Wingdings;} 3967 @list l42:level4 3968 {mso-level-number-format:bullet; 3969 mso-level-text:; 3970 mso-level-tab-stop:none; 3971 mso-level-number-position:left; 3972 margin-left:1.75in; 3973 text-indent:-.25in; 3974 font-family:Symbol;} 3975 @list l42:level5 3976 {mso-level-number-format:bullet; 3977 mso-level-text:o; 3978 mso-level-tab-stop:none; 3979 mso-level-number-position:left; 3980 margin-left:2.25in; 3981 text-indent:-.25in; 3982 font-family:"Courier New";} 3983 @list l42:level6 3984 {mso-level-number-format:bullet; 3985 mso-level-text:; 3986 mso-level-tab-stop:none; 3987 mso-level-number-position:left; 3988 margin-left:2.75in; 3989 text-indent:-.25in; 3990 font-family:Wingdings;} 3991 @list l42:level7 3992 {mso-level-number-format:bullet; 3993 mso-level-text:; 3994 mso-level-tab-stop:none; 3995 mso-level-number-position:left; 3996 margin-left:3.25in; 3997 text-indent:-.25in; 3998 font-family:Symbol;} 3999 @list l42:level8 4000 {mso-level-number-format:bullet; 4001 mso-level-text:o; 4002 mso-level-tab-stop:none; 4003 mso-level-number-position:left; 4004 margin-left:3.75in; 4005 text-indent:-.25in; 4006 font-family:"Courier New";} 4007 @list l42:level9 4008 {mso-level-number-format:bullet; 4009 mso-level-text:; 4010 mso-level-tab-stop:none; 4011 mso-level-number-position:left; 4012 margin-left:4.25in; 4013 text-indent:-.25in; 4014 font-family:Wingdings;} 4015 @list l43 3836 4016 {mso-list-id:1602638135; 3837 4017 mso-list-type:hybrid; 3838 4018 mso-list-template-ids:1512494542 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3839 @list l4 1:level14019 @list l43:level1 3840 4020 {mso-level-number-format:bullet; 3841 4021 mso-level-text:; … … 3844 4024 text-indent:-.25in; 3845 4025 font-family:Symbol;} 3846 @list l4 1:level24026 @list l43:level2 3847 4027 {mso-level-number-format:bullet; 3848 4028 mso-level-text:o; … … 3851 4031 text-indent:-.25in; 3852 4032 font-family:"Courier New";} 3853 @list l4 1:level33854 {mso-level-number-format:bullet; 3855 mso-level-text:; 3856 mso-level-tab-stop:none; 3857 mso-level-number-position:left; 3858 text-indent:-.25in; 3859 font-family:Wingdings;} 3860 @list l4 1:level44033 @list l43:level3 4034 {mso-level-number-format:bullet; 4035 mso-level-text:; 4036 mso-level-tab-stop:none; 4037 mso-level-number-position:left; 4038 text-indent:-.25in; 4039 font-family:Wingdings;} 4040 @list l43:level4 3861 4041 {mso-level-number-format:bullet; 3862 4042 mso-level-text:; … … 3865 4045 text-indent:-.25in; 3866 4046 font-family:Symbol;} 3867 @list l4 1:level54047 @list l43:level5 3868 4048 {mso-level-number-format:bullet; 3869 4049 mso-level-text:o; … … 3872 4052 text-indent:-.25in; 3873 4053 font-family:"Courier New";} 3874 @list l4 1:level63875 {mso-level-number-format:bullet; 3876 mso-level-text:; 3877 mso-level-tab-stop:none; 3878 mso-level-number-position:left; 3879 text-indent:-.25in; 3880 font-family:Wingdings;} 3881 @list l4 1:level74054 @list l43:level6 4055 {mso-level-number-format:bullet; 4056 mso-level-text:; 4057 mso-level-tab-stop:none; 4058 mso-level-number-position:left; 4059 text-indent:-.25in; 4060 font-family:Wingdings;} 4061 @list l43:level7 3882 4062 {mso-level-number-format:bullet; 3883 4063 mso-level-text:; … … 3886 4066 text-indent:-.25in; 3887 4067 font-family:Symbol;} 3888 @list l4 1:level84068 @list l43:level8 3889 4069 {mso-level-number-format:bullet; 3890 4070 mso-level-text:o; … … 3893 4073 text-indent:-.25in; 3894 4074 font-family:"Courier New";} 3895 @list l4 1:level93896 {mso-level-number-format:bullet; 3897 mso-level-text:; 3898 mso-level-tab-stop:none; 3899 mso-level-number-position:left; 3900 text-indent:-.25in; 3901 font-family:Wingdings;} 3902 @list l4 24075 @list l43:level9 4076 {mso-level-number-format:bullet; 4077 mso-level-text:; 4078 mso-level-tab-stop:none; 4079 mso-level-number-position:left; 4080 text-indent:-.25in; 4081 font-family:Wingdings;} 4082 @list l44 3903 4083 {mso-list-id:1694066867; 3904 4084 mso-list-type:hybrid; 3905 4085 mso-list-template-ids:-219798034 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3906 @list l4 2:level14086 @list l44:level1 3907 4087 {mso-level-number-format:bullet; 3908 4088 mso-level-text:o; … … 3912 4092 text-indent:-.25in; 3913 4093 font-family:"Courier New";} 3914 @list l4 2:level24094 @list l44:level2 3915 4095 {mso-level-number-format:bullet; 3916 4096 mso-level-text:o; … … 3920 4100 text-indent:-.25in; 3921 4101 font-family:"Courier New";} 3922 @list l4 2:level34102 @list l44:level3 3923 4103 {mso-level-number-format:bullet; 3924 4104 mso-level-text:; … … 3928 4108 text-indent:-.25in; 3929 4109 font-family:Wingdings;} 3930 @list l4 2:level44110 @list l44:level4 3931 4111 {mso-level-number-format:bullet; 3932 4112 mso-level-text:; … … 3936 4116 text-indent:-.25in; 3937 4117 font-family:Symbol;} 3938 @list l4 2:level54118 @list l44:level5 3939 4119 {mso-level-number-format:bullet; 3940 4120 mso-level-text:o; … … 3944 4124 text-indent:-.25in; 3945 4125 font-family:"Courier New";} 3946 @list l4 2:level64126 @list l44:level6 3947 4127 {mso-level-number-format:bullet; 3948 4128 mso-level-text:; … … 3952 4132 text-indent:-.25in; 3953 4133 font-family:Wingdings;} 3954 @list l4 2:level74134 @list l44:level7 3955 4135 {mso-level-number-format:bullet; 3956 4136 mso-level-text:; … … 3960 4140 text-indent:-.25in; 3961 4141 font-family:Symbol;} 3962 @list l4 2:level84142 @list l44:level8 3963 4143 {mso-level-number-format:bullet; 3964 4144 mso-level-text:o; … … 3968 4148 text-indent:-.25in; 3969 4149 font-family:"Courier New";} 3970 @list l4 2:level94150 @list l44:level9 3971 4151 {mso-level-number-format:bullet; 3972 4152 mso-level-text:; … … 3976 4156 text-indent:-.25in; 3977 4157 font-family:Wingdings;} 3978 @list l4 34158 @list l45 3979 4159 {mso-list-id:1695418260; 3980 4160 mso-list-type:hybrid; 3981 4161 mso-list-template-ids:-1367588104 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 3982 @list l4 3:level14162 @list l45:level1 3983 4163 {mso-level-number-format:bullet; 3984 4164 mso-level-text:; … … 3987 4167 text-indent:-.25in; 3988 4168 font-family:Symbol;} 3989 @list l4 3:level24169 @list l45:level2 3990 4170 {mso-level-number-format:bullet; 3991 4171 mso-level-text:o; … … 3994 4174 text-indent:-.25in; 3995 4175 font-family:"Courier New";} 3996 @list l4 3:level33997 {mso-level-number-format:bullet; 3998 mso-level-text:; 3999 mso-level-tab-stop:none; 4000 mso-level-number-position:left; 4001 text-indent:-.25in; 4002 font-family:Wingdings;} 4003 @list l4 3:level44176 @list l45:level3 4177 {mso-level-number-format:bullet; 4178 mso-level-text:; 4179 mso-level-tab-stop:none; 4180 mso-level-number-position:left; 4181 text-indent:-.25in; 4182 font-family:Wingdings;} 4183 @list l45:level4 4004 4184 {mso-level-number-format:bullet; 4005 4185 mso-level-text:; … … 4008 4188 text-indent:-.25in; 4009 4189 font-family:Symbol;} 4010 @list l4 3:level54190 @list l45:level5 4011 4191 {mso-level-number-format:bullet; 4012 4192 mso-level-text:o; … … 4015 4195 text-indent:-.25in; 4016 4196 font-family:"Courier New";} 4017 @list l4 3:level64018 {mso-level-number-format:bullet; 4019 mso-level-text:; 4020 mso-level-tab-stop:none; 4021 mso-level-number-position:left; 4022 text-indent:-.25in; 4023 font-family:Wingdings;} 4024 @list l4 3:level74197 @list l45:level6 4198 {mso-level-number-format:bullet; 4199 mso-level-text:; 4200 mso-level-tab-stop:none; 4201 mso-level-number-position:left; 4202 text-indent:-.25in; 4203 font-family:Wingdings;} 4204 @list l45:level7 4025 4205 {mso-level-number-format:bullet; 4026 4206 mso-level-text:; … … 4029 4209 text-indent:-.25in; 4030 4210 font-family:Symbol;} 4031 @list l4 3:level84211 @list l45:level8 4032 4212 {mso-level-number-format:bullet; 4033 4213 mso-level-text:o; … … 4036 4216 text-indent:-.25in; 4037 4217 font-family:"Courier New";} 4038 @list l4 3:level94039 {mso-level-number-format:bullet; 4040 mso-level-text:; 4041 mso-level-tab-stop:none; 4042 mso-level-number-position:left; 4043 text-indent:-.25in; 4044 font-family:Wingdings;} 4045 @list l4 44218 @list l45:level9 4219 {mso-level-number-format:bullet; 4220 mso-level-text:; 4221 mso-level-tab-stop:none; 4222 mso-level-number-position:left; 4223 text-indent:-.25in; 4224 font-family:Wingdings;} 4225 @list l46 4046 4226 {mso-list-id:1734962708; 4047 4227 mso-list-template-ids:-2097672882;} 4048 @list l4 4:level14228 @list l46:level1 4049 4229 {mso-level-tab-stop:.25in; 4050 4230 mso-level-number-position:left; 4051 4231 margin-left:.25in; 4052 4232 text-indent:-.25in;} 4053 @list l4 4:level24233 @list l46:level2 4054 4234 {mso-level-number-format:bullet; 4055 4235 mso-level-text:o; … … 4061 4241 font-family:"Courier New"; 4062 4242 mso-bidi-font-family:"Times New Roman";} 4063 @list l4 4:level34243 @list l46:level3 4064 4244 {mso-level-tab-stop:1.25in; 4065 4245 mso-level-number-position:left; 4066 4246 margin-left:1.25in; 4067 4247 text-indent:-.25in;} 4068 @list l4 4:level44248 @list l46:level4 4069 4249 {mso-level-tab-stop:1.75in; 4070 4250 mso-level-number-position:left; 4071 4251 margin-left:1.75in; 4072 4252 text-indent:-.25in;} 4073 @list l4 4:level54253 @list l46:level5 4074 4254 {mso-level-tab-stop:2.25in; 4075 4255 mso-level-number-position:left; 4076 4256 margin-left:2.25in; 4077 4257 text-indent:-.25in;} 4078 @list l4 4:level64258 @list l46:level6 4079 4259 {mso-level-tab-stop:2.75in; 4080 4260 mso-level-number-position:left; 4081 4261 margin-left:2.75in; 4082 4262 text-indent:-.25in;} 4083 @list l4 4:level74263 @list l46:level7 4084 4264 {mso-level-tab-stop:3.25in; 4085 4265 mso-level-number-position:left; 4086 4266 margin-left:3.25in; 4087 4267 text-indent:-.25in;} 4088 @list l4 4:level84268 @list l46:level8 4089 4269 {mso-level-tab-stop:3.75in; 4090 4270 mso-level-number-position:left; 4091 4271 margin-left:3.75in; 4092 4272 text-indent:-.25in;} 4093 @list l4 4:level94273 @list l46:level9 4094 4274 {mso-level-tab-stop:4.25in; 4095 4275 mso-level-number-position:left; 4096 4276 margin-left:4.25in; 4097 4277 text-indent:-.25in;} 4098 @list l4 54278 @list l47 4099 4279 {mso-list-id:1740903945; 4100 4280 mso-list-type:hybrid; 4101 4281 mso-list-template-ids:1244542154 67698689 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} 4102 @list l4 5:level14282 @list l47:level1 4103 4283 {mso-level-number-format:bullet; 4104 4284 mso-level-text:; … … 4107 4287 text-indent:-.25in; 4108 4288 font-family:Symbol;} 4109 @list l4 5:level24289 @list l47:level2 4110 4290 {mso-level-number-format:alpha-lower; 4111 4291 mso-level-tab-stop:none; 4112 4292 mso-level-number-position:left; 4113 4293 text-indent:-.25in;} 4114 @list l4 5:level34294 @list l47:level3 4115 4295 {mso-level-number-format:roman-lower; 4116 4296 mso-level-tab-stop:none; 4117 4297 mso-level-number-position:right; 4118 4298 text-indent:-9.0pt;} 4119 @list l4 5:level44299 @list l47:level4 4120 4300 {mso-level-tab-stop:none; 4121 4301 mso-level-number-position:left; 4122 4302 text-indent:-.25in;} 4123 @list l4 5:level54303 @list l47:level5 4124 4304 {mso-level-number-format:alpha-lower; 4125 4305 mso-level-tab-stop:none; 4126 4306 mso-level-number-position:left; 4127 4307 text-indent:-.25in;} 4128 @list l4 5:level64308 @list l47:level6 4129 4309 {mso-level-number-format:roman-lower; 4130 4310 mso-level-tab-stop:none; 4131 4311 mso-level-number-position:right; 4132 4312 text-indent:-9.0pt;} 4133 @list l4 5:level74313 @list l47:level7 4134 4314 {mso-level-tab-stop:none; 4135 4315 mso-level-number-position:left; 4136 4316 text-indent:-.25in;} 4137 @list l4 5:level84317 @list l47:level8 4138 4318 {mso-level-number-format:alpha-lower; 4139 4319 mso-level-tab-stop:none; 4140 4320 mso-level-number-position:left; 4141 4321 text-indent:-.25in;} 4142 @list l4 5:level94322 @list l47:level9 4143 4323 {mso-level-number-format:roman-lower; 4144 4324 mso-level-tab-stop:none; 4145 4325 mso-level-number-position:right; 4146 4326 text-indent:-9.0pt;} 4147 @list l4 64327 @list l48 4148 4328 {mso-list-id:1776049230; 4149 4329 mso-list-type:hybrid; 4150 4330 mso-list-template-ids:1378754006 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 4151 @list l4 6:level14331 @list l48:level1 4152 4332 {mso-level-number-format:bullet; 4153 4333 mso-level-text:; … … 4156 4336 text-indent:-.25in; 4157 4337 font-family:Symbol;} 4158 @list l4 6:level24338 @list l48:level2 4159 4339 {mso-level-number-format:bullet; 4160 4340 mso-level-text:o; … … 4163 4343 text-indent:-.25in; 4164 4344 font-family:"Courier New";} 4165 @list l4 6:level34166 {mso-level-number-format:bullet; 4167 mso-level-text:; 4168 mso-level-tab-stop:none; 4169 mso-level-number-position:left; 4170 text-indent:-.25in; 4171 font-family:Wingdings;} 4172 @list l4 6:level44345 @list l48:level3 4346 {mso-level-number-format:bullet; 4347 mso-level-text:; 4348 mso-level-tab-stop:none; 4349 mso-level-number-position:left; 4350 text-indent:-.25in; 4351 font-family:Wingdings;} 4352 @list l48:level4 4173 4353 {mso-level-number-format:bullet; 4174 4354 mso-level-text:; … … 4177 4357 text-indent:-.25in; 4178 4358 font-family:Symbol;} 4179 @list l4 6:level54359 @list l48:level5 4180 4360 {mso-level-number-format:bullet; 4181 4361 mso-level-text:o; … … 4184 4364 text-indent:-.25in; 4185 4365 font-family:"Courier New";} 4186 @list l4 6:level64187 {mso-level-number-format:bullet; 4188 mso-level-text:; 4189 mso-level-tab-stop:none; 4190 mso-level-number-position:left; 4191 text-indent:-.25in; 4192 font-family:Wingdings;} 4193 @list l4 6:level74366 @list l48:level6 4367 {mso-level-number-format:bullet; 4368 mso-level-text:; 4369 mso-level-tab-stop:none; 4370 mso-level-number-position:left; 4371 text-indent:-.25in; 4372 font-family:Wingdings;} 4373 @list l48:level7 4194 4374 {mso-level-number-format:bullet; 4195 4375 mso-level-text:; … … 4198 4378 text-indent:-.25in; 4199 4379 font-family:Symbol;} 4200 @list l4 6:level84380 @list l48:level8 4201 4381 {mso-level-number-format:bullet; 4202 4382 mso-level-text:o; … … 4205 4385 text-indent:-.25in; 4206 4386 font-family:"Courier New";} 4207 @list l4 6:level94208 {mso-level-number-format:bullet; 4209 mso-level-text:; 4210 mso-level-tab-stop:none; 4211 mso-level-number-position:left; 4212 text-indent:-.25in; 4213 font-family:Wingdings;} 4214 @list l4 74387 @list l48:level9 4388 {mso-level-number-format:bullet; 4389 mso-level-text:; 4390 mso-level-tab-stop:none; 4391 mso-level-number-position:left; 4392 text-indent:-.25in; 4393 font-family:Wingdings;} 4394 @list l49 4215 4395 {mso-list-id:1842507328; 4216 4396 mso-list-template-ids:244079786;} 4217 @list l4 7:level14397 @list l49:level1 4218 4398 {mso-level-number-format:bullet; 4219 4399 mso-level-text:; … … 4222 4402 text-indent:-.25in; 4223 4403 font-family:Symbol;} 4224 @list l4 7:level24404 @list l49:level2 4225 4405 {mso-level-number-format:bullet; 4226 4406 mso-level-text:; … … 4232 4412 mso-ansi-font-weight:normal; 4233 4413 mso-ansi-font-style:normal;} 4234 @list l4 7:level34414 @list l49:level3 4235 4415 {mso-level-tab-stop:1.5in; 4236 4416 mso-level-number-position:left; 4237 4417 text-indent:-.25in;} 4238 @list l4 7:level44418 @list l49:level4 4239 4419 {mso-level-tab-stop:2.0in; 4240 4420 mso-level-number-position:left; 4241 4421 text-indent:-.25in;} 4242 @list l4 7:level54422 @list l49:level5 4243 4423 {mso-level-tab-stop:2.5in; 4244 4424 mso-level-number-position:left; 4245 4425 text-indent:-.25in;} 4246 @list l4 7:level64426 @list l49:level6 4247 4427 {mso-level-tab-stop:3.0in; 4248 4428 mso-level-number-position:left; 4249 4429 text-indent:-.25in;} 4250 @list l4 7:level74430 @list l49:level7 4251 4431 {mso-level-tab-stop:3.5in; 4252 4432 mso-level-number-position:left; 4253 4433 text-indent:-.25in;} 4254 @list l4 7:level84434 @list l49:level8 4255 4435 {mso-level-tab-stop:4.0in; 4256 4436 mso-level-number-position:left; 4257 4437 text-indent:-.25in;} 4258 @list l4 7:level94438 @list l49:level9 4259 4439 {mso-level-tab-stop:4.5in; 4260 4440 mso-level-number-position:left; 4261 4441 text-indent:-.25in;} 4262 @list l 484442 @list l50 4263 4443 {mso-list-id:1858541808; 4264 4444 mso-list-template-ids:244079786;} 4265 @list l 48:level14445 @list l50:level1 4266 4446 {mso-level-number-format:bullet; 4267 4447 mso-level-text:; … … 4270 4450 text-indent:-.25in; 4271 4451 font-family:Symbol;} 4272 @list l 48:level24452 @list l50:level2 4273 4453 {mso-level-number-format:bullet; 4274 4454 mso-level-text:; … … 4280 4460 mso-ansi-font-weight:normal; 4281 4461 mso-ansi-font-style:normal;} 4282 @list l 48:level34462 @list l50:level3 4283 4463 {mso-level-tab-stop:1.5in; 4284 4464 mso-level-number-position:left; 4285 4465 text-indent:-.25in;} 4286 @list l 48:level44466 @list l50:level4 4287 4467 {mso-level-tab-stop:2.0in; 4288 4468 mso-level-number-position:left; 4289 4469 text-indent:-.25in;} 4290 @list l 48:level54470 @list l50:level5 4291 4471 {mso-level-tab-stop:2.5in; 4292 4472 mso-level-number-position:left; 4293 4473 text-indent:-.25in;} 4294 @list l 48:level64474 @list l50:level6 4295 4475 {mso-level-tab-stop:3.0in; 4296 4476 mso-level-number-position:left; 4297 4477 text-indent:-.25in;} 4298 @list l 48:level74478 @list l50:level7 4299 4479 {mso-level-tab-stop:3.5in; 4300 4480 mso-level-number-position:left; 4301 4481 text-indent:-.25in;} 4302 @list l 48:level84482 @list l50:level8 4303 4483 {mso-level-tab-stop:4.0in; 4304 4484 mso-level-number-position:left; 4305 4485 text-indent:-.25in;} 4306 @list l 48:level94486 @list l50:level9 4307 4487 {mso-level-tab-stop:4.5in; 4308 4488 mso-level-number-position:left; 4309 4489 text-indent:-.25in;} 4310 @list l 494490 @list l51 4311 4491 {mso-list-id:1869751984; 4312 4492 mso-list-type:hybrid; 4313 4493 mso-list-template-ids:-1019073478 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 4314 @list l 49:level14494 @list l51:level1 4315 4495 {mso-level-number-format:bullet; 4316 4496 mso-level-text:; … … 4319 4499 text-indent:-.25in; 4320 4500 font-family:Symbol;} 4321 @list l 49:level24501 @list l51:level2 4322 4502 {mso-level-number-format:bullet; 4323 4503 mso-level-text:o; … … 4326 4506 text-indent:-.25in; 4327 4507 font-family:"Courier New";} 4328 @list l 49:level34329 {mso-level-number-format:bullet; 4330 mso-level-text:; 4331 mso-level-tab-stop:none; 4332 mso-level-number-position:left; 4333 text-indent:-.25in; 4334 font-family:Wingdings;} 4335 @list l 49:level44508 @list l51:level3 4509 {mso-level-number-format:bullet; 4510 mso-level-text:; 4511 mso-level-tab-stop:none; 4512 mso-level-number-position:left; 4513 text-indent:-.25in; 4514 font-family:Wingdings;} 4515 @list l51:level4 4336 4516 {mso-level-number-format:bullet; 4337 4517 mso-level-text:; … … 4340 4520 text-indent:-.25in; 4341 4521 font-family:Symbol;} 4342 @list l 49:level54522 @list l51:level5 4343 4523 {mso-level-number-format:bullet; 4344 4524 mso-level-text:o; … … 4347 4527 text-indent:-.25in; 4348 4528 font-family:"Courier New";} 4349 @list l 49:level64350 {mso-level-number-format:bullet; 4351 mso-level-text:; 4352 mso-level-tab-stop:none; 4353 mso-level-number-position:left; 4354 text-indent:-.25in; 4355 font-family:Wingdings;} 4356 @list l 49:level74529 @list l51:level6 4530 {mso-level-number-format:bullet; 4531 mso-level-text:; 4532 mso-level-tab-stop:none; 4533 mso-level-number-position:left; 4534 text-indent:-.25in; 4535 font-family:Wingdings;} 4536 @list l51:level7 4357 4537 {mso-level-number-format:bullet; 4358 4538 mso-level-text:; … … 4361 4541 text-indent:-.25in; 4362 4542 font-family:Symbol;} 4363 @list l 49:level84543 @list l51:level8 4364 4544 {mso-level-number-format:bullet; 4365 4545 mso-level-text:o; … … 4368 4548 text-indent:-.25in; 4369 4549 font-family:"Courier New";} 4370 @list l 49:level94371 {mso-level-number-format:bullet; 4372 mso-level-text:; 4373 mso-level-tab-stop:none; 4374 mso-level-number-position:left; 4375 text-indent:-.25in; 4376 font-family:Wingdings;} 4377 @list l5 04550 @list l51:level9 4551 {mso-level-number-format:bullet; 4552 mso-level-text:; 4553 mso-level-tab-stop:none; 4554 mso-level-number-position:left; 4555 text-indent:-.25in; 4556 font-family:Wingdings;} 4557 @list l52 4378 4558 {mso-list-id:1912042311; 4379 4559 mso-list-type:hybrid; 4380 4560 mso-list-template-ids:1793328576 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 4381 @list l5 0:level14561 @list l52:level1 4382 4562 {mso-level-number-format:bullet; 4383 4563 mso-level-text:; … … 4386 4566 text-indent:-.25in; 4387 4567 font-family:Symbol;} 4388 @list l5 0:level24568 @list l52:level2 4389 4569 {mso-level-number-format:bullet; 4390 4570 mso-level-text:o; … … 4393 4573 text-indent:-.25in; 4394 4574 font-family:"Courier New";} 4395 @list l5 0:level34396 {mso-level-number-format:bullet; 4397 mso-level-text:; 4398 mso-level-tab-stop:none; 4399 mso-level-number-position:left; 4400 text-indent:-.25in; 4401 font-family:Wingdings;} 4402 @list l5 0:level44575 @list l52:level3 4576 {mso-level-number-format:bullet; 4577 mso-level-text:; 4578 mso-level-tab-stop:none; 4579 mso-level-number-position:left; 4580 text-indent:-.25in; 4581 font-family:Wingdings;} 4582 @list l52:level4 4403 4583 {mso-level-number-format:bullet; 4404 4584 mso-level-text:; … … 4407 4587 text-indent:-.25in; 4408 4588 font-family:Symbol;} 4409 @list l5 0:level54589 @list l52:level5 4410 4590 {mso-level-number-format:bullet; 4411 4591 mso-level-text:o; … … 4414 4594 text-indent:-.25in; 4415 4595 font-family:"Courier New";} 4416 @list l5 0:level64417 {mso-level-number-format:bullet; 4418 mso-level-text:; 4419 mso-level-tab-stop:none; 4420 mso-level-number-position:left; 4421 text-indent:-.25in; 4422 font-family:Wingdings;} 4423 @list l5 0:level74596 @list l52:level6 4597 {mso-level-number-format:bullet; 4598 mso-level-text:; 4599 mso-level-tab-stop:none; 4600 mso-level-number-position:left; 4601 text-indent:-.25in; 4602 font-family:Wingdings;} 4603 @list l52:level7 4424 4604 {mso-level-number-format:bullet; 4425 4605 mso-level-text:; … … 4428 4608 text-indent:-.25in; 4429 4609 font-family:Symbol;} 4430 @list l5 0:level84610 @list l52:level8 4431 4611 {mso-level-number-format:bullet; 4432 4612 mso-level-text:o; … … 4435 4615 text-indent:-.25in; 4436 4616 font-family:"Courier New";} 4437 @list l5 0:level94438 {mso-level-number-format:bullet; 4439 mso-level-text:; 4440 mso-level-tab-stop:none; 4441 mso-level-number-position:left; 4442 text-indent:-.25in; 4443 font-family:Wingdings;} 4444 @list l5 14617 @list l52:level9 4618 {mso-level-number-format:bullet; 4619 mso-level-text:; 4620 mso-level-tab-stop:none; 4621 mso-level-number-position:left; 4622 text-indent:-.25in; 4623 font-family:Wingdings;} 4624 @list l53 4445 4625 {mso-list-id:2021002967; 4446 4626 mso-list-template-ids:349610142;} 4447 @list l5 1:level14627 @list l53:level1 4448 4628 {mso-level-number-format:bullet; 4449 4629 mso-level-text:; … … 4452 4632 text-indent:-.25in; 4453 4633 font-family:Symbol;} 4454 @list l5 1:level24634 @list l53:level2 4455 4635 {mso-level-number-format:bullet; 4456 4636 mso-level-text:; … … 4460 4640 mso-ansi-font-size:10.0pt; 4461 4641 font-family:Symbol;} 4462 @list l5 1:level34642 @list l53:level3 4463 4643 {mso-level-tab-stop:1.5in; 4464 4644 mso-level-number-position:left; 4465 4645 text-indent:-.25in;} 4466 @list l5 1:level44646 @list l53:level4 4467 4647 {mso-level-tab-stop:2.0in; 4468 4648 mso-level-number-position:left; 4469 4649 text-indent:-.25in;} 4470 @list l5 1:level54650 @list l53:level5 4471 4651 {mso-level-tab-stop:2.5in; 4472 4652 mso-level-number-position:left; 4473 4653 text-indent:-.25in;} 4474 @list l5 1:level64654 @list l53:level6 4475 4655 {mso-level-tab-stop:3.0in; 4476 4656 mso-level-number-position:left; 4477 4657 text-indent:-.25in;} 4478 @list l5 1:level74658 @list l53:level7 4479 4659 {mso-level-tab-stop:3.5in; 4480 4660 mso-level-number-position:left; 4481 4661 text-indent:-.25in;} 4482 @list l5 1:level84662 @list l53:level8 4483 4663 {mso-level-tab-stop:4.0in; 4484 4664 mso-level-number-position:left; 4485 4665 text-indent:-.25in;} 4486 @list l5 1:level94666 @list l53:level9 4487 4667 {mso-level-tab-stop:4.5in; 4488 4668 mso-level-number-position:left; 4489 4669 text-indent:-.25in;} 4490 @list l5 24670 @list l54 4491 4671 {mso-list-id:2052536215; 4492 4672 mso-list-template-ids:-16363168;} 4493 @list l5 2:level14673 @list l54:level1 4494 4674 {mso-level-tab-stop:.25in; 4495 4675 mso-level-number-position:left; 4496 4676 margin-left:.25in; 4497 4677 text-indent:-.25in;} 4498 @list l5 2:level24678 @list l54:level2 4499 4679 {mso-level-number-format:bullet; 4500 4680 mso-level-text:; … … 4507 4687 mso-ansi-font-weight:normal; 4508 4688 mso-ansi-font-style:normal;} 4509 @list l5 2:level34689 @list l54:level3 4510 4690 {mso-level-tab-stop:1.25in; 4511 4691 mso-level-number-position:left; 4512 4692 margin-left:1.25in; 4513 4693 text-indent:-.25in;} 4514 @list l5 2:level44694 @list l54:level4 4515 4695 {mso-level-tab-stop:1.75in; 4516 4696 mso-level-number-position:left; 4517 4697 margin-left:1.75in; 4518 4698 text-indent:-.25in;} 4519 @list l5 2:level54699 @list l54:level5 4520 4700 {mso-level-tab-stop:2.25in; 4521 4701 mso-level-number-position:left; 4522 4702 margin-left:2.25in; 4523 4703 text-indent:-.25in;} 4524 @list l5 2:level64704 @list l54:level6 4525 4705 {mso-level-tab-stop:2.75in; 4526 4706 mso-level-number-position:left; 4527 4707 margin-left:2.75in; 4528 4708 text-indent:-.25in;} 4529 @list l5 2:level74709 @list l54:level7 4530 4710 {mso-level-tab-stop:3.25in; 4531 4711 mso-level-number-position:left; 4532 4712 margin-left:3.25in; 4533 4713 text-indent:-.25in;} 4534 @list l5 2:level84714 @list l54:level8 4535 4715 {mso-level-tab-stop:3.75in; 4536 4716 mso-level-number-position:left; 4537 4717 margin-left:3.75in; 4538 4718 text-indent:-.25in;} 4539 @list l5 2:level94719 @list l54:level9 4540 4720 {mso-level-tab-stop:4.25in; 4541 4721 mso-level-number-position:left; 4542 4722 margin-left:4.25in; 4543 4723 text-indent:-.25in;} 4544 @list l5 34724 @list l55 4545 4725 {mso-list-id:2054160433; 4546 4726 mso-list-type:hybrid; 4547 4727 mso-list-template-ids:-618123054 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 4548 @list l5 3:level14728 @list l55:level1 4549 4729 {mso-level-number-format:bullet; 4550 4730 mso-level-text:o; … … 4554 4734 text-indent:-.25in; 4555 4735 font-family:"Courier New";} 4556 @list l5 3:level24736 @list l55:level2 4557 4737 {mso-level-number-format:bullet; 4558 4738 mso-level-text:o; … … 4562 4742 text-indent:-.25in; 4563 4743 font-family:"Courier New";} 4564 @list l5 3:level34744 @list l55:level3 4565 4745 {mso-level-number-format:bullet; 4566 4746 mso-level-text:; … … 4570 4750 text-indent:-.25in; 4571 4751 font-family:Wingdings;} 4572 @list l5 3:level44752 @list l55:level4 4573 4753 {mso-level-number-format:bullet; 4574 4754 mso-level-text:; … … 4578 4758 text-indent:-.25in; 4579 4759 font-family:Symbol;} 4580 @list l5 3:level54760 @list l55:level5 4581 4761 {mso-level-number-format:bullet; 4582 4762 mso-level-text:o; … … 4586 4766 text-indent:-.25in; 4587 4767 font-family:"Courier New";} 4588 @list l5 3:level64768 @list l55:level6 4589 4769 {mso-level-number-format:bullet; 4590 4770 mso-level-text:; … … 4594 4774 text-indent:-.25in; 4595 4775 font-family:Wingdings;} 4596 @list l5 3:level74776 @list l55:level7 4597 4777 {mso-level-number-format:bullet; 4598 4778 mso-level-text:; … … 4602 4782 text-indent:-.25in; 4603 4783 font-family:Symbol;} 4604 @list l5 3:level84784 @list l55:level8 4605 4785 {mso-level-number-format:bullet; 4606 4786 mso-level-text:o; … … 4610 4790 text-indent:-.25in; 4611 4791 font-family:"Courier New";} 4612 @list l5 3:level94792 @list l55:level9 4613 4793 {mso-level-number-format:bullet; 4614 4794 mso-level-text:; … … 4618 4798 text-indent:-.25in; 4619 4799 font-family:Wingdings;} 4620 @list l5 44800 @list l56 4621 4801 {mso-list-id:2081706164; 4622 4802 mso-list-type:hybrid; 4623 4803 mso-list-template-ids:43661158 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 4624 @list l5 4:level14804 @list l56:level1 4625 4805 {mso-level-number-format:bullet; 4626 4806 mso-level-text:o; … … 4630 4810 text-indent:-.25in; 4631 4811 font-family:"Courier New";} 4632 @list l5 4:level24812 @list l56:level2 4633 4813 {mso-level-number-format:bullet; 4634 4814 mso-level-text:o; … … 4638 4818 text-indent:-.25in; 4639 4819 font-family:"Courier New";} 4640 @list l5 4:level34820 @list l56:level3 4641 4821 {mso-level-number-format:bullet; 4642 4822 mso-level-text:; … … 4646 4826 text-indent:-.25in; 4647 4827 font-family:Wingdings;} 4648 @list l5 4:level44828 @list l56:level4 4649 4829 {mso-level-number-format:bullet; 4650 4830 mso-level-text:; … … 4654 4834 text-indent:-.25in; 4655 4835 font-family:Symbol;} 4656 @list l5 4:level54836 @list l56:level5 4657 4837 {mso-level-number-format:bullet; 4658 4838 mso-level-text:o; … … 4662 4842 text-indent:-.25in; 4663 4843 font-family:"Courier New";} 4664 @list l5 4:level64844 @list l56:level6 4665 4845 {mso-level-number-format:bullet; 4666 4846 mso-level-text:; … … 4670 4850 text-indent:-.25in; 4671 4851 font-family:Wingdings;} 4672 @list l5 4:level74852 @list l56:level7 4673 4853 {mso-level-number-format:bullet; 4674 4854 mso-level-text:; … … 4678 4858 text-indent:-.25in; 4679 4859 font-family:Symbol;} 4680 @list l5 4:level84860 @list l56:level8 4681 4861 {mso-level-number-format:bullet; 4682 4862 mso-level-text:o; … … 4686 4866 text-indent:-.25in; 4687 4867 font-family:"Courier New";} 4688 @list l5 4:level94868 @list l56:level9 4689 4869 {mso-level-number-format:bullet; 4690 4870 mso-level-text:; … … 4694 4874 text-indent:-.25in; 4695 4875 font-family:Wingdings;} 4696 @list l5 54876 @list l57 4697 4877 {mso-list-id:2090813036; 4698 4878 mso-list-template-ids:713564194;} 4699 @list l5 5:level14879 @list l57:level1 4700 4880 {mso-level-number-format:bullet; 4701 4881 mso-level-text:; … … 4705 4885 mso-ansi-font-size:10.0pt; 4706 4886 font-family:Symbol;} 4707 @list l5 5:level24887 @list l57:level2 4708 4888 {mso-level-number-format:bullet; 4709 4889 mso-level-text:o; … … 4714 4894 font-family:"Courier New"; 4715 4895 mso-bidi-font-family:"Times New Roman";} 4716 @list l5 5:level34896 @list l57:level3 4717 4897 {mso-level-number-format:bullet; 4718 4898 mso-level-text:; … … 4722 4902 mso-ansi-font-size:10.0pt; 4723 4903 font-family:Wingdings;} 4724 @list l5 5:level44904 @list l57:level4 4725 4905 {mso-level-number-format:bullet; 4726 4906 mso-level-text:; … … 4730 4910 mso-ansi-font-size:10.0pt; 4731 4911 font-family:Wingdings;} 4732 @list l5 5:level54912 @list l57:level5 4733 4913 {mso-level-number-format:bullet; 4734 4914 mso-level-text:; … … 4738 4918 mso-ansi-font-size:10.0pt; 4739 4919 font-family:Wingdings;} 4740 @list l5 5:level64920 @list l57:level6 4741 4921 {mso-level-number-format:bullet; 4742 4922 mso-level-text:; … … 4746 4926 mso-ansi-font-size:10.0pt; 4747 4927 font-family:Wingdings;} 4748 @list l5 5:level74928 @list l57:level7 4749 4929 {mso-level-number-format:bullet; 4750 4930 mso-level-text:; … … 4754 4934 mso-ansi-font-size:10.0pt; 4755 4935 font-family:Wingdings;} 4756 @list l5 5:level84936 @list l57:level8 4757 4937 {mso-level-number-format:bullet; 4758 4938 mso-level-text:; … … 4762 4942 mso-ansi-font-size:10.0pt; 4763 4943 font-family:Wingdings;} 4764 @list l5 5:level94944 @list l57:level9 4765 4945 {mso-level-number-format:bullet; 4766 4946 mso-level-text:; … … 4770 4950 mso-ansi-font-size:10.0pt; 4771 4951 font-family:Wingdings;} 4772 @list l5 64952 @list l58 4773 4953 {mso-list-id:2093620619; 4774 4954 mso-list-template-ids:349610142;} 4775 @list l5 6:level14955 @list l58:level1 4776 4956 {mso-level-number-format:bullet; 4777 4957 mso-level-text:; … … 4780 4960 text-indent:-.25in; 4781 4961 font-family:Symbol;} 4782 @list l5 6:level24962 @list l58:level2 4783 4963 {mso-level-number-format:bullet; 4784 4964 mso-level-text:; … … 4788 4968 mso-ansi-font-size:10.0pt; 4789 4969 font-family:Symbol;} 4790 @list l5 6:level34970 @list l58:level3 4791 4971 {mso-level-tab-stop:1.5in; 4792 4972 mso-level-number-position:left; 4793 4973 text-indent:-.25in;} 4794 @list l5 6:level44974 @list l58:level4 4795 4975 {mso-level-tab-stop:2.0in; 4796 4976 mso-level-number-position:left; 4797 4977 text-indent:-.25in;} 4798 @list l5 6:level54978 @list l58:level5 4799 4979 {mso-level-tab-stop:2.5in; 4800 4980 mso-level-number-position:left; 4801 4981 text-indent:-.25in;} 4802 @list l5 6:level64982 @list l58:level6 4803 4983 {mso-level-tab-stop:3.0in; 4804 4984 mso-level-number-position:left; 4805 4985 text-indent:-.25in;} 4806 @list l5 6:level74986 @list l58:level7 4807 4987 {mso-level-tab-stop:3.5in; 4808 4988 mso-level-number-position:left; 4809 4989 text-indent:-.25in;} 4810 @list l5 6:level84990 @list l58:level8 4811 4991 {mso-level-tab-stop:4.0in; 4812 4992 mso-level-number-position:left; 4813 4993 text-indent:-.25in;} 4814 @list l5 6:level94994 @list l58:level9 4815 4995 {mso-level-tab-stop:4.5in; 4816 4996 mso-level-number-position:left; 4817 4997 text-indent:-.25in;} 4818 @list l5 74998 @list l59 4819 4999 {mso-list-id:2113865118; 4820 5000 mso-list-type:hybrid; 4821 5001 mso-list-template-ids:2109247846 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;} 4822 @list l5 7:level15002 @list l59:level1 4823 5003 {mso-level-number-format:bullet; 4824 5004 mso-level-text:; … … 4827 5007 text-indent:-.25in; 4828 5008 font-family:Symbol;} 4829 @list l5 7:level25009 @list l59:level2 4830 5010 {mso-level-number-format:bullet; 4831 5011 mso-level-text:o; … … 4834 5014 text-indent:-.25in; 4835 5015 font-family:"Courier New";} 4836 @list l5 7:level34837 {mso-level-number-format:bullet; 4838 mso-level-text:; 4839 mso-level-tab-stop:none; 4840 mso-level-number-position:left; 4841 text-indent:-.25in; 4842 font-family:Wingdings;} 4843 @list l5 7:level45016 @list l59:level3 5017 {mso-level-number-format:bullet; 5018 mso-level-text:; 5019 mso-level-tab-stop:none; 5020 mso-level-number-position:left; 5021 text-indent:-.25in; 5022 font-family:Wingdings;} 5023 @list l59:level4 4844 5024 {mso-level-number-format:bullet; 4845 5025 mso-level-text:; … … 4848 5028 text-indent:-.25in; 4849 5029 font-family:Symbol;} 4850 @list l5 7:level55030 @list l59:level5 4851 5031 {mso-level-number-format:bullet; 4852 5032 mso-level-text:o; … … 4855 5035 text-indent:-.25in; 4856 5036 font-family:"Courier New";} 4857 @list l5 7:level64858 {mso-level-number-format:bullet; 4859 mso-level-text:; 4860 mso-level-tab-stop:none; 4861 mso-level-number-position:left; 4862 text-indent:-.25in; 4863 font-family:Wingdings;} 4864 @list l5 7:level75037 @list l59:level6 5038 {mso-level-number-format:bullet; 5039 mso-level-text:; 5040 mso-level-tab-stop:none; 5041 mso-level-number-position:left; 5042 text-indent:-.25in; 5043 font-family:Wingdings;} 5044 @list l59:level7 4865 5045 {mso-level-number-format:bullet; 4866 5046 mso-level-text:; … … 4869 5049 text-indent:-.25in; 4870 5050 font-family:Symbol;} 4871 @list l5 7:level85051 @list l59:level8 4872 5052 {mso-level-number-format:bullet; 4873 5053 mso-level-text:o; … … 4876 5056 text-indent:-.25in; 4877 5057 font-family:"Courier New";} 4878 @list l5 7:level95058 @list l59:level9 4879 5059 {mso-level-number-format:bullet; 4880 5060 mso-level-text:; … … 5002 5182 5003 5183 <p class=MsoNormal>The data tree shows contents of a GSAS-II project (which can 5004 be read or saved as a .<span class=SpellE>gpx</span> file) in a hierarchical 5005 view. Clicking on any item in the tree opens that information on the right side 5006 of the window in the "Data Editing" section, where information in 5007 that item can be viewed or edited. For example, the <a 5008 href="gsasII-pwdr.html#PWDR_Sample_Parameters">"Sample Parameters"</a> 5009 item under a ‘PWDR’ entry contains information about how data were collected, 5010 such as the sample temperature <a href="gsasII-pwdr.html#PWDR_Sample_Parameters">(see 5011 below)</a>. The arrow keys (up & down) move the selection to successive 5012 entries in the data tree; both the data window and the associated plot (if any) 5013 will change.</p> 5184 be read or saved as a .gpx file) in a hierarchical view. Clicking on any item 5185 in the tree opens that information on the right side of the window in the 5186 "Data Editing" section, where information in that item can be viewed 5187 or edited. For example, the <a href="gsasII-pwdr.html#PWDR_Sample_Parameters">"Sample 5188 Parameters"</a> item under a ‘PWDR’ entry contains information about how 5189 data were collected, such as the sample temperature <a 5190 href="gsasII-pwdr.html#PWDR_Sample_Parameters">(see below)</a>. The arrow keys 5191 (up & down) move the selection to successive entries in the data tree; both 5192 the data window and the associated plot (if any) will change.</p> 5014 5193 5015 5194 <h4><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h4> … … 5064 5243 5065 5244 <p class=MsoNormal>This window presents all the graphical material as a multipage 5066 tabbed set of plots utilizing the matplotlib python package. Each page containing5067 a graph or plot has a tool bar with the controls</p>5245 tabbed set of plots utilizing the matplotlib python package. Each page 5246 containing a graph or plot has a tool bar with the controls</p> 5068 5247 5069 5248 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5070 id="Picture_x0020_1" o:spid="_x0000_i10 52" type="#_x0000_t75" alt="GSAS-II plots: NiTi-C.gpx"5249 id="Picture_x0020_1" o:spid="_x0000_i1060" type="#_x0000_t75" alt="GSAS-II plots: NiTi-C.gpx" 5071 5250 style='width:5in;height:18pt;visibility:visible;mso-wrap-style:square'> 5072 5251 <v:imagedata src="gsasII_files/image001.png" o:title=" NiTi-C" croptop="60814f" 5073 5252 cropbottom="2353f" cropleft="535f" cropright="28388f"/> 5074 5253 </v:shape><![endif]--><![if !vml]><img border=0 width=480 height=24 5075 src="gsasII_files/image0 02.png" alt="GSAS-II plots: NiTi-C.gpx" v:shapes="Picture_x0020_1"><![endif]></span><span5254 src="gsasII_files/image019.png" alt="GSAS-II plots: NiTi-C.gpx" v:shapes="Picture_x0020_1"><![endif]></span><span 5076 5255 class=MsoHyperlink><span style='mso-fareast-font-family:"Times New Roman"; 5077 5256 mso-fareast-theme-font:minor-fareast;color:windowtext;text-decoration:none; … … 5146 5325 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5147 5326 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5148 id="Picture_x0020_3" o:spid="_x0000_i105 1" type="#_x0000_t75" style='width:10.5pt;5327 id="Picture_x0020_3" o:spid="_x0000_i1059" type="#_x0000_t75" style='width:10.5pt; 5149 5328 height:10.5pt;visibility:visible;mso-wrap-style:square'> 5150 <v:imagedata src="gsasII_files/image00 4.png" o:title=""/>5329 <v:imagedata src="gsasII_files/image003.png" o:title=""/> 5151 5330 </v:shape><![endif]--><![if !vml]><img border=0 width=14 height=14 5152 5331 src="gsasII_files/image020.png" v:shapes="Picture_x0020_3"><![endif]></span><span … … 5158 5337 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5159 5338 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5160 id="Picture_x0020_4" o:spid="_x0000_i105 0" type="#_x0000_t75" style='width:10.5pt;5339 id="Picture_x0020_4" o:spid="_x0000_i1058" type="#_x0000_t75" style='width:10.5pt; 5161 5340 height:9pt;rotation:180;flip:x;visibility:visible;mso-wrap-style:square'> 5162 <v:imagedata src="gsasII_files/image00 6.png" o:title=""/>5341 <v:imagedata src="gsasII_files/image005.png" o:title=""/> 5163 5342 </v:shape><![endif]--><![if !vml]><img border=0 width=14 height=12 5164 5343 src="gsasII_files/image021.png" v:shapes="Picture_x0020_4"><![endif]></span><span … … 5170 5349 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5171 5350 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5172 id="Picture_x0020_6" o:spid="_x0000_i10 49" type="#_x0000_t75" style='width:9.75pt;5351 id="Picture_x0020_6" o:spid="_x0000_i1057" type="#_x0000_t75" style='width:9.75pt; 5173 5352 height:9.75pt;visibility:visible;mso-wrap-style:square'> 5174 <v:imagedata src="gsasII_files/image00 8.png" o:title=""/>5353 <v:imagedata src="gsasII_files/image007.png" o:title=""/> 5175 5354 </v:shape><![endif]--><![if !vml]><img border=0 width=13 height=13 5176 5355 src="gsasII_files/image022.png" v:shapes="Picture_x0020_6"><![endif]></span><span … … 5181 5360 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5182 5361 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5183 id="Picture_x0020_8" o:spid="_x0000_i10 48" type="#_x0000_t75" style='width:9.75pt;5362 id="Picture_x0020_8" o:spid="_x0000_i1056" type="#_x0000_t75" style='width:9.75pt; 5184 5363 height:9.75pt;visibility:visible;mso-wrap-style:square'> 5185 <v:imagedata src="gsasII_files/image0 10.png" o:title=""/>5364 <v:imagedata src="gsasII_files/image009.png" o:title=""/> 5186 5365 </v:shape><![endif]--><![if !vml]><img border=0 width=13 height=13 5187 5366 src="gsasII_files/image023.png" v:shapes="Picture_x0020_8"><![endif]></span><span … … 5192 5371 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5193 5372 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5194 id="Picture_x0020_9" o:spid="_x0000_i10 47" type="#_x0000_t75" style='width:12pt;5373 id="Picture_x0020_9" o:spid="_x0000_i1055" type="#_x0000_t75" style='width:12pt; 5195 5374 height:12pt;visibility:visible;mso-wrap-style:square'> 5196 <v:imagedata src="gsasII_files/image01 2.png" o:title=""/>5375 <v:imagedata src="gsasII_files/image011.png" o:title=""/> 5197 5376 </v:shape><![endif]--><![if !vml]><img border=0 width=16 height=16 5198 5377 src="gsasII_files/image024.png" v:shapes="Picture_x0020_9"><![endif]></span><span … … 5204 5383 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5205 5384 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5206 id="Picture_x0020_11" o:spid="_x0000_i10 46" type="#_x0000_t75" style='width:11.25pt;5385 id="Picture_x0020_11" o:spid="_x0000_i1054" type="#_x0000_t75" style='width:11.25pt; 5207 5386 height:11.25pt;visibility:visible;mso-wrap-style:square'> 5208 <v:imagedata src="gsasII_files/image01 4.png" o:title=""/>5387 <v:imagedata src="gsasII_files/image013.png" o:title=""/> 5209 5388 </v:shape><![endif]--><![if !vml]><img border=0 width=15 height=15 5210 5389 src="gsasII_files/image025.png" v:shapes="Picture_x0020_11"><![endif]></span><span … … 5216 5395 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5217 5396 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5218 id="Picture_x0020_12" o:spid="_x0000_i10 45" type="#_x0000_t75" style='width:12.75pt;5397 id="Picture_x0020_12" o:spid="_x0000_i1053" type="#_x0000_t75" style='width:12.75pt; 5219 5398 height:12.75pt;visibility:visible;mso-wrap-style:square'> 5220 <v:imagedata src="gsasII_files/image01 6.png" o:title=""/>5399 <v:imagedata src="gsasII_files/image015.png" o:title=""/> 5221 5400 </v:shape><![endif]--><![if !vml]><img border=0 width=17 height=17 5222 5401 src="gsasII_files/image026.png" v:shapes="Picture_x0020_12"><![endif]></span><span … … 5228 5407 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5229 5408 </span></span></span><![endif]><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 5230 id="Picture_x0020_13" o:spid="_x0000_i10 44" type="#_x0000_t75" style='width:12.75pt;5409 id="Picture_x0020_13" o:spid="_x0000_i1052" type="#_x0000_t75" style='width:12.75pt; 5231 5410 height:12.75pt;visibility:visible;mso-wrap-style:square'> 5232 <v:imagedata src="gsasII_files/image01 8.png" o:title=""/>5411 <v:imagedata src="gsasII_files/image017.png" o:title=""/> 5233 5412 </v:shape><![endif]--><![if !vml]><img border=0 width=17 height=17 5234 5413 src="gsasII_files/image027.png" v:shapes="Picture_x0020_13"><![endif]></span><span … … 5245 5424 3-dimensional structure drawings there will be below the toolbar may be a 5246 5425 status bar that on the left may show either an instruction for a keyed input or 5247 a <span class=GramE>pull down</span> selection of keyed input; on the right may5248 be displayed position dependent information that is updated as the mouse is 5249 moved over the plot region.<span style='mso-fareast-font-family:"Times New Roman"; 5250 m so-fareast-theme-font:minor-fareast'><o:p></o:p></span></p>5426 a pull down selection of keyed input; on the right may be displayed position 5427 dependent information that is updated as the mouse is moved over the plot 5428 region.<span style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font: 5429 minor-fareast'><o:p></o:p></span></p> 5251 5430 5252 5431 <p class=MsoListParagraphCxSpLast><span style='mso-fareast-font-family:"Times New Roman"; … … 5275 5454 </span></span><![endif]><b>File</b> Menu</p> 5276 5455 5277 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 6level1 lfo3'><![if !supportLists]><span5456 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5278 5457 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5279 5458 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5280 5459 </span></span></span><![endif]><b>Open project…</b> - Open a previously saved 5281 GSAS-II project file ({project}. <span class=SpellE>gpx</span>). If you5282 currently have a project file open, you are asked if it is OK to overwrite it; 5283 Cancel will cancel the readprocess. </p>5460 GSAS-II project file ({project}.gpx). If you currently have a project file 5461 open, you are asked if it is OK to overwrite it; Cancel will cancel the read 5462 process. </p> 5284 5463 5285 5464 <p class=MsoListParagraphCxSpMiddle>Note that as files are saved during a 5286 5465 structure refinement, copies of the previous version are saved as backup files, 5287 named as {project}.<span class=SpellE>bak</span>{<span class=SpellE><i>i</i></span>}.<span 5288 class=SpellE>gpx</span>, where <span class=SpellE><i>i</i></span> starts as 0 5289 and is increased after each save operation. NB: you may open a backup .<span 5290 class=SpellE>gpx</span> file (<span class=GramE>e.g.</span> name.bak3.gpx) to 5291 return to a previous version of your project, but if you do so, it is best to 5292 immediately use the <b'>Save As... menu command (you may wish to use <span 5293 class=SpellE>name.gpx</span> to overwrite the current version or select a new 5294 name.) If you forget <span class=GramE>specify</span> a project name, then 5295 name.bak3 will be considered the project name and backups will then be named 5296 name.bak3.bak0.gpx, etc.</p> 5297 5298 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5299 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5300 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5301 </span></span></span><![endif]><b>Save <span class=GramE>project<span 5302 style='mso-spacerun:yes'> </span>-</span> </b>Save the current project. If 5303 this is a new project that has not yet been saved, you will be prompted for a 5304 new name in a file dialog (you may optionally change the directory in that dialog). 5305 If the file exists, you will be asked if it is OK to overwrite it. Once a file 5306 name has been used to read or save a project, the name is shown after ‘Loaded 5307 Data:’ in the first item in the data tree. </p> 5308 5309 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5466 named as {project}.bak{<i>i</i>}.gpx, where <i>i</i> starts as 0 and is increased 5467 after each save operation. NB: you may open a backup .gpx file (e.g. 5468 name.bak3.gpx) to return to a previous version of your project, but if you do 5469 so, it is best to immediately use the <b'>Save As... menu command (you may wish 5470 to use name.gpx to overwrite the current version or select a new name.) If you 5471 forget specify a project name, then name.bak3 will be considered the project 5472 name and backups will then be named name.bak3.bak0.gpx, etc.</p> 5473 5474 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5475 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5476 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5477 </span></span></span><![endif]><b>Save project<span style='mso-spacerun:yes'> 5478 </span>- </b>Save the current project. If this is a new project that has not 5479 yet been saved, you will be prompted for a new name in a file dialog (you may 5480 optionally change the directory in that dialog). If the file exists, you will 5481 be asked if it is OK to overwrite it. Once a file name has been used to read or 5482 save a project, the name is shown after ‘Loaded Data:’ in the first item in the 5483 data tree. </p> 5484 5485 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5310 5486 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5311 5487 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5317 5493 the saved project name.</p> 5318 5494 5319 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5320 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5321 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5322 </span></span></span><![endif]><b>New <span class=GramE>Project<span 5323 style='mso-spacerun:yes'> </span>-</span> </b>Discards any changes made to the 5324 current project since the last save and creates a new empty project. </p> 5325 5326 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5327 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5328 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5329 </span></span></span><![endif]><span class=GramE><b>Preferences<span 5330 style='mso-spacerun:yes'> </span>-</b></span><b> </b>Provides access to 5331 GSAS-II configuration settings, as described in the <a href="#Preferences">Configuration 5332 Variables</a> section. </p> 5333 5334 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5495 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5496 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5497 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5498 </span></span></span><![endif]><b>New Project<span style='mso-spacerun:yes'> 5499 </span>- </b>Discards any changes made to the current project since the last 5500 save and creates a new empty project. </p> 5501 5502 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5503 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5504 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5505 </span></span></span><![endif]><b>Preferences<span style='mso-spacerun:yes'> 5506 </span>- </b>Provides access to GSAS-II configuration settings, as described in 5507 the <a href="#Preferences">Configuration Variables</a> section. </p> 5508 5509 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5335 5510 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5336 5511 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5339 5514 administration if needed).</p> 5340 5515 5341 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5342 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5343 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5344 </span></span></span><![endif]><span class=SpellE><b>Ipython</b></span><b> 5345 console - </b>Debugging tool.</p> 5346 5347 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5348 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5349 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5350 </span></span></span><![endif]><span class=SpellE><span class=GramE><b>wx.inspection</b></span></span><b> 5351 tool - </b>Debugging tool.</p> 5352 5353 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l36 level1 lfo3'><![if !supportLists]><span 5354 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5355 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5356 </span></span></span><![endif]><span class=GramE><b>Quit<span 5357 style='mso-spacerun:yes'> </span>-</b></span><b> </b>Exit the GSAS-II program. 5358 You will be asked if the project should be saved or not (Cancel aborts the 5359 quit). You can also exit GSAS-II by pressing the red X in the upper right 5360 (Windows) or left (Mac). Pressing the red X on the console will kill the 5361 GSAS-II run without any save.</p> 5516 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5517 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5518 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5519 </span></span></span><![endif]><b>Ipython console - </b>Debugging tool.</p> 5520 5521 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5522 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5523 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5524 </span></span></span><![endif]><b>wx.inspection tool - </b>Debugging tool.</p> 5525 5526 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo3'><![if !supportLists]><span 5527 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5528 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5529 </span></span></span><![endif]><b>Quit<span style='mso-spacerun:yes'> </span>- 5530 </b>Exit the GSAS-II program. You will be asked if the project should be saved 5531 or not (Cancel aborts the quit). You can also exit GSAS-II by pressing the red 5532 X in the upper right (Windows) or left (Mac). Pressing the red X on the console 5533 will kill the GSAS-II run without any save.</p> 5362 5534 5363 5535 <p class=MsoListParagraphCxSpMiddle style='margin-left:.25in;mso-add-space: … … 5366 5538 </span></span><![endif]><b>Data</b> Menu</p> 5367 5539 5368 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5540 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5369 5541 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5370 5542 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5381 5553 first in table).</p> 5382 5554 5383 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5555 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5384 5556 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5385 5557 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5386 5558 </span></span></span><![endif]><b>Sum or average powder data - </b>Form the sum 5387 5559 of previously read powder patterns; each with a multiplier. Can be used to 5388 accumulate data, subtract <span class=GramE>background</span> or empty5389 container patterns, etc. Patterns used to form the sum must be of identical 5390 range and step size. Result is a newPWDR entry in the GSAS-II data tree. </p>5391 5392 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5560 accumulate data, subtract background or empty container patterns, etc. Patterns 5561 used to form the sum must be of identical range and step size. Result is a new 5562 PWDR entry in the GSAS-II data tree. </p> 5563 5564 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5393 5565 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5394 5566 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5395 5567 </span></span></span><![endif]><b>Sum image data - </b>Form the sum of 5396 5568 previously read 2-D images; each with a multiplier. Can be used to accumulate 5397 data, subtract <span class=GramE>background</span> or empty container patterns,5398 etc. Images used to form the sum must be of identical size and source. Result 5399 is a new IMG entry in the GSAS-II data tree, and a GSAS-II image file is 5400 written for future use as apython pickle file. </p>5401 5402 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5569 data, subtract background or empty container patterns, etc. Images used to form 5570 the sum must be of identical size and source. Result is a new IMG entry in the 5571 GSAS-II data tree, and a GSAS-II image file is written for future use as a 5572 python pickle file. </p> 5573 5574 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5403 5575 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5404 5576 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5411 5583 5412 5584 <p class=MsoListParagraphCxSpMiddle>Note that nonstandard space group symbols 5413 are permitted; space group names must have spaces between the axial fields (<span5414 class=GramE>e.g.</span>use ‘P n a 21’ not ‘Pna21’). </p>5415 5416 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5585 are permitted; space group names must have spaces between the axial fields 5586 (e.g. use ‘P n a 21’ not ‘Pna21’). </p> 5587 5588 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5417 5589 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5418 5590 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5421 5593 one (or more) to delete. </p> 5422 5594 5423 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5595 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5424 5596 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5425 5597 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5426 5598 </span></span></span><![endif]><b>Rename tree entry - </b>Rename a histogram 5427 entry. This should only be done before the histogram is used in any phases: <span5428 class=GramE>e.g.</span>only rename data immediately after reading. </p>5429 5430 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5599 entry. This should only be done before the histogram is used in any phases: 5600 e.g. only rename data immediately after reading. </p> 5601 5602 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5431 5603 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5432 5604 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5433 5605 </span></span></span><![endif]><b>Delete data entries - </b>This will remove a 5434 data (<span class=GramE>e.g.</span> PWDR) item from the data tree. A dialog box 5435 with a list of choices for histograms is presented; it has filter capability to 5436 ease this process. Be sure to remove histograms from all phases before deleting 5437 them from the tree. </p> 5438 5439 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l37 level1 lfo4'><![if !supportLists]><span 5606 data (e.g. PWDR) item from the data tree. A dialog box with a list of choices 5607 for histograms is presented; it has filter capability to ease this process. Be 5608 sure to remove histograms from all phases before deleting them from the tree. </p> 5609 5610 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5440 5611 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5441 5612 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5444 5615 presented.</p> 5445 5616 5446 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5617 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5447 5618 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5448 5619 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5451 5622 choices for entries is presented.</p> 5452 5623 5453 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5624 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5454 5625 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5455 5626 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5457 5628 entries for specified type of items (IMG, PWDR, etc.)</p> 5458 5629 5459 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 7level1 lfo4'><![if !supportLists]><span5630 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l38 level1 lfo4'><![if !supportLists]><span 5460 5631 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5461 5632 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5482 5653 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5483 5654 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5484 </span></span></span><![endif]><b>View LS <span class=SpellE>parms</span> - </b>This 5485 shows a dialog box with all the parameters for your project; those to be refined 5486 are flagged ‘True’, otherwise ‘False’. Blanks indicate parameters that are not 5487 refinable. The total number of refined parameters is also shown at the top of 5488 the list. The value of each parameter is also given. The parameter names are of 5489 the form ‘<span class=SpellE>p:h:name:id</span>’ where ‘p’ is the phase index, 5490 ‘h’ is the histogram index and ‘id’ is the item index (if needed). Indexes all 5491 begin with ‘0’ (zero). <span style='mso-fareast-font-family:"Times New Roman"; 5492 mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 5655 </span></span></span><![endif]><b>View LS parms - </b>This shows a dialog box 5656 with all the parameters for your project; those to be refined are flagged 5657 ‘True’, otherwise ‘False’. Blanks indicate parameters that are not refinable. 5658 The total number of refined parameters is also shown at the top of the list. 5659 The value of each parameter is also given. The parameter names are of the form 5660 ‘p:h:name:id’ where ‘p’ is the phase index, ‘h’ is the histogram index and ‘id’ 5661 is the item index (if needed). Indexes all begin with ‘0’ (zero). <span 5662 style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 5493 5663 5494 5664 <p class=MsoListParagraphCxSpMiddle>Note that for atom positions, the 5495 coordinate values (named as ‘<span class=GramE>p::</span><span class=SpellE>A<i>w</i>:n</span>’, 5496 where p is the phase number, n is the atom number and <i>w</i> is x, y or z) is 5497 not a refinable parameter, but the shift in the value is. The refined 5498 parameters are ‘<span class=GramE>p::</span><span class=SpellE>A<i>w</i>:n</span>’. 5499 The reason this is done is that by treating an atom position as <span 5500 class=SpellE>x+<span class=GramE>dx,y</span>+dy,z+dz</span> where the “d” 5501 values indicate shifts from the starting position and the shifts are refined 5502 rather than the <span class=SpellE>x,y</span>, or z values is that this 5503 simplifies symmetry constraints. As an example, suppose we have an atom on a 5504 symmetry constrained site, x,1/2-<span class=GramE>x,z.</span> The process 5505 needed to define this constraint, so that if x moves positively y <span 5506 class=GramE>has to</span> move negatively by the same amount would be messy. 5507 With refinement of shifts, all we need to do is constrain <span class=SpellE>dy</span> 5508 (‘<span class=GramE>0::</span><span class=SpellE>dAy:n</span>’) to be equal to 5509 -dx (-1*‘0::<span class=SpellE>dAx:n</span>’). </p> 5665 coordinate values (named as ‘p::A<i>w</i>:n’, where p is the phase number, n is 5666 the atom number and <i>w</i> is x, y or z) is not a refinable parameter, but 5667 the shift in the value is. The refined parameters are ‘p::A<i>w</i>:n’. The 5668 reason this is done is that by treating an atom position as x+dx,y+dy,z+dz 5669 where the “d” values indicate shifts from the starting position and the shifts 5670 are refined rather than the x,y, or z values is that this simplifies symmetry 5671 constraints. As an example, suppose we have an atom on a symmetry constrained 5672 site, x,1/2-x,z. The process needed to define this constraint, so that if x 5673 moves positively y has to move negatively by the same amount would be messy. 5674 With refinement of shifts, all we need to do is constrain dy (‘0::dAy:n’) to be 5675 equal to -dx (-1*‘0::dAx:n’). </p> 5510 5676 5511 5677 <p class=MsoListParagraphCxSpMiddle>Press the window exit button to exit this … … 5525 5691 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5526 5692 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5527 </span></span></span><![endif]><b>Compute partials - </b>This runs a 5528 zero-cycle refinement where the contributions from each phase (phase 5529 partial intensities) are written for each histogram 5530 and each phase in that histogram into a single file named 5531 <tt><I>project</I>.partials</tt> where 5532 <tt><I>project</I></tt> is the GSAS-II project (.gpx)5533 name. This file is intended for internal use in GSAS-II and will be 5534 deleted if additional refinements are performed (making the 5535 information in them obsolete; use this menu 5536 command to recreate them if needed.) 5537 When the <tt>.partials</tt> file is created, the user can optionally choose to 5538 export the intensity information in a series of ASCII files named 5539 <tt><I>prefix</I>_part_</tt><I>N</I><tt>.csv</tt>, which can be read by 5540 spreadsheets and most scientific software. 5541 </P>5693 </span></span></span><![endif]><b>Compute partials - </b>This runs a zero-cycle 5694 refinement where the contributions from each phase (phase partial intensities) 5695 are written for each histogram and each phase in that histogram into a single 5696 file named <tt><i><span style='font-size:10.0pt'>project</span></i></tt><tt><span 5697 style='font-size:10.0pt'>.partials</span></tt> where <tt><i><span 5698 style='font-size:10.0pt'>project</span></i></tt> is the GSAS-II project (.gpx) 5699 name. This file is intended for internal use in GSAS-II and will be deleted if 5700 additional refinements are performed (making the information in them obsolete; 5701 use this menu command to recreate them if needed.) When the <tt><span 5702 style='font-size:10.0pt'>.partials</span></tt> file is created, the user can 5703 optionally choose to export the intensity information in a series of ASCII 5704 files named <tt><i><span style='font-size:10.0pt'>prefix</span></i></tt><tt><span 5705 style='font-size:10.0pt'>_part_</span></tt><i>N</i><tt><span style='font-size: 5706 10.0pt'>.csv</span></tt>, which can be read by spreadsheets and most scientific 5707 software. </p> 5542 5708 5543 5709 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l2 level1 lfo5'><![if !supportLists]><span 5544 5710 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5545 5711 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5546 </span></span></span><![endif]><b>Run <span class=SpellE>Fprime</span> - </b>This 5547 run the utility routine <span class=SpellE>Fprime</span> that displays real and 5548 imaginary components of the x-ray form factors for user selected elements as a 5549 function of wavelength/energy. Allows an informed choice of wavelength for 5550 resonant x-ray scattering experiments</p> 5712 </span></span></span><![endif]><b>Run Fprime - </b>This run the utility routine 5713 Fprime that displays real and imaginary components of the x-ray form factors 5714 for user selected elements as a function of wavelength/energy. Allows an 5715 informed choice of wavelength for resonant x-ray scattering experiments</p> 5551 5716 5552 5717 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l2 level1 lfo5'><![if !supportLists]><span … … 5560 5725 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5561 5726 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 5562 </span></span></span><![endif]><b>Run <span class=SpellE>PlotXNFF</span> - </b>This 5563 runs the utility routine <span class=SpellE>PlotXNFF</span> which displays 5564 resonant (if any) neutron scattering lengths for all isotopes of a selected 5565 element. It also displays the x-ray and magnetic neutron form factors for all 5566 valences (if any) for this element.</p> 5727 </span></span></span><![endif]><b>Run PlotXNFF - </b>This runs the utility 5728 routine PlotXNFF which displays resonant (if any) neutron scattering lengths 5729 for all isotopes of a selected element. It also displays the x-ray and magnetic 5730 neutron form factors for all valences (if any) for this element.</p> 5567 5731 5568 5732 <p class=MsoListParagraphCxSpMiddle style='margin-left:.25in;mso-add-space: … … 5576 5740 that can be created and customized easily. See the <a 5577 5741 href="https://gsas-ii.readthedocs.io/en/latest/imports.html">GSAS-II Import 5578 Modules section</a> of the <a href="#Programmers"><s pan class=GramE><strong>Programmers</strong></span><strong>5742 Modules section</a> of the <a href="#Programmers"><strong>Programmers 5579 5743 documentation</strong></a> for more information on this. Since it is easy to 5580 5744 support new formats, the documentation below may not list all supported … … 5590 5754 with specific imports that are available. Any of these files can be accessed 5591 5755 from a zip file. GSAS-II can read many different image file formats including 5592 MAR345 files, Quantum ADSC files, and tiff files from <span class=GramE>Perkin-Elmer</span>,5593 Pilatus, and GE. Although many of these formats have data fields that should 5594 contain relevant information for the exposure (<span class=GramE>e.g.</span> 5595 wavelength), these are rarely filled in correctly by the data acquisition 5596 s oftware. Thus, you should have separately noted this information as it will be5597 needed. In some cases, this information may be in a separate “metadata” file; 5598 GSAS-II will look for thisand attempt to open it as well as the image file. <br>5756 MAR345 files, Quantum ADSC files, and tiff files from Perkin-Elmer, Pilatus, 5757 and GE. Although many of these formats have data fields that should contain 5758 relevant information for the exposure (e.g. wavelength), these are rarely 5759 filled in correctly by the data acquisition software. Thus, you should have 5760 separately noted this information as it will be needed. In some cases, this 5761 information may be in a separate “metadata” file; GSAS-II will look for this 5762 and attempt to open it as well as the image file. <br> 5599 5763 NB: gain maps can be imported but they must be 1000*the gain value (typically 5600 5764 ~1) as integers; if used, GSAS-II will rescale the gain map by 1/1000 and apply … … 5612 5776 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5613 5777 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5614 </span></span></span><![endif]><span class=GramE><b>GSAS .EXP</b></span> - This 5615 reads one phase from a (old) <span class=SpellE>gsas</span> experiment file (<span 5616 class=SpellE>name.EXP</span>). The file name is found in a directory dialog; 5617 you can change directories as needed. <span class=GramE>Only .EXP</span> (or 5618 .exp) file names are shown. If the selected file has more than one phase, a 5619 dialog is shown with the <span class=GramE>choices;</span> only one can be 5620 chosen. If you want more than one, redo this command. After selecting a phase, 5621 a dialog box is shown with the proposed phase name. You can change it if 5622 desired. </p> 5778 </span></span></span><![endif]><b>GSAS .EXP</b> - This reads one phase from a 5779 (old) gsas experiment file (name.EXP). The file name is found in a directory 5780 dialog; you can change directories as needed. Only .EXP (or .exp) file names 5781 are shown. If the selected file has more than one phase, a dialog is shown with 5782 the choices; only one can be chosen. If you want more than one, redo this 5783 command. After selecting a phase, a dialog box is shown with the proposed phase 5784 name. You can change it if desired. </p> 5623 5785 5624 5786 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 5625 auto;text-indent:-.25in;mso-list:l4 2level1 lfo7'><![if !supportLists]><span5787 auto;text-indent:-.25in;mso-list:l44 level1 lfo7'><![if !supportLists]><span 5626 5788 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5627 5789 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5628 5790 </span></span></span><![endif]><b>PDB file - </b>This reads the macromolecular 5629 phase information from a Protein Data Base file (name.PDB or <span 5630 class=SpellE>name.ENT</span>). The file name is found in a directory dialog; 5631 you can change directories as needed. Only .PDB (or .<span class=SpellE>pdb</span>) 5632 <span class=GramE>or .ENT</span> (or .<span class=SpellE>ent</span>) file names 5633 are shown. Be careful that the space group symbol on the ‘CRYST1’ record in the 5634 PDB file follows the GSAS-II conventions (<span class=GramE>e.g.</span> with 5635 spaces between axial fields). A dialog box is shown with the proposed phase 5636 name. You can change it if desired. </p> 5791 phase information from a Protein Data Base file (name.PDB or name.ENT). The 5792 file name is found in a directory dialog; you can change directories as needed. 5793 Only .PDB (or .pdb) or .ENT (or .ent) file names are shown. Be careful that the 5794 space group symbol on the ‘CRYST1’ record in the PDB file follows the GSAS-II 5795 conventions (e.g. with spaces between axial fields). A dialog box is shown with 5796 the proposed phase name. You can change it if desired. </p> 5637 5797 5638 5798 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 5639 auto;text-indent:-.25in;mso-list:l4 2level1 lfo7'><![if !supportLists]><span5799 auto;text-indent:-.25in;mso-list:l44 level1 lfo7'><![if !supportLists]><span 5640 5800 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5641 5801 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5642 5802 </span></span></span><![endif]><b>CIF file</b> - This reads one phase from a 5643 Crystallographic Information File ({name<span class=GramE>}.CIF</span> (or .<span 5644 class=SpellE>cif</span>). The file name is found in a directory dialog; you can 5645 change directories as needed. If the selected file has more than one phase, a 5646 dialog is shown with the <span class=GramE>choices;</span> only one can be 5647 chosen. If you want more than one, redo this command. After selecting a phase, 5648 a dialog box is shown with the proposed phase name. You can change it if 5803 Crystallographic Information File ({name}.CIF (or .cif). The file name is found 5804 in a directory dialog; you can change directories as needed. If the selected 5805 file has more than one phase, a dialog is shown with the choices; only one can 5806 be chosen. If you want more than one, redo this command. After selecting a 5807 phase, a dialog box is shown with the proposed phase name. You can change it if 5649 5808 desired. </p> 5650 5809 5651 5810 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 5652 auto;text-indent:-.25in;mso-list:l4 2level1 lfo7'><![if !supportLists]><span5811 auto;text-indent:-.25in;mso-list:l44 level1 lfo7'><![if !supportLists]><span 5653 5812 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5654 5813 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5655 </span></span></span><![endif]><b>GSAS-II .<span class=SpellE>gpx</span> file</b> 5656 - This reads one phase from a GSAS-II project file ({name}.<span class=SpellE>gpx</span>). 5657 The file name is found in a directory dialog; you can change directories as 5658 needed. If the selected file has more than one phase, a dialog is shown with 5659 the choices; If you want more than one, redo this command. After selecting a 5660 phase, a dialog box is shown with the proposed phase name. You can change it if 5661 desired. </p> 5814 </span></span></span><![endif]><b>GSAS-II .gpx file</b> - This reads one phase 5815 from a GSAS-II project file ({name}.gpx). The file name is found in a directory 5816 dialog; you can change directories as needed. If the selected file has more 5817 than one phase, a dialog is shown with the choices; If you want more than one, 5818 redo this command. After selecting a phase, a dialog box is shown with the 5819 proposed phase name. You can change it if desired. </p> 5662 5820 5663 5821 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 5664 text-indent:-.25in;mso-list:l4 2level1 lfo7'><![if !supportLists]><span5822 text-indent:-.25in;mso-list:l44 level1 lfo7'><![if !supportLists]><span 5665 5823 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5666 5824 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 5675 5833 RMCProfile rmc6f files.</p> 5676 5834 5677 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 3level1 lfo8'><![if !supportLists]><span5835 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l45 level1 lfo8'><![if !supportLists]><span 5678 5836 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 5679 5837 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 5683 5841 data set, such as data type, calibration constants (such as wavelength) and 5684 5842 default profile parameters are read from a separate file, either a (old) GSAS 5685 instrument parameter file (<span class=GramE>usually .<span class=SpellE>prm</span></span>, 5686 .ins or .<span class=SpellE>inst</span> extension) or a new GSAS-II .<span 5687 class=SpellE>instparm</span> file. <span style='mso-fareast-font-family:"Times New Roman"; 5843 instrument parameter file (usually .prm, .ins or .inst extension) or a new 5844 GSAS-II .instparm file. <span style='mso-fareast-font-family:"Times New Roman"; 5688 5845 mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 5689 5846 5690 5847 <p class=MsoListParagraphCxSpMiddle>Note that it is possible to apply 5691 5848 corrections to the 2-theta, intensity or weight values by adding a Python 5692 command(s) to the instrument <span class=GramE>(.<span class=SpellE>instprm</span></span>) 5693 parameter with a variable named <span class=SpellE>CorrectionCode</span>. See 5694 the <span class=SpellE><tt><span style='font-size:10.0pt'>CorrectionCode.instprm.sample</span></tt></span> 5849 command(s) to the instrument (.instprm) parameter with a variable named 5850 CorrectionCode. See the <tt><span style='font-size:10.0pt'>CorrectionCode.instprm.sample</span></tt> 5695 5851 file provided in the GSAS-II source directory for an example of how this is 5696 5852 done. <span style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font: … … 5698 5854 5699 5855 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5700 auto;text-indent:-.25in;mso-list:l5 3level1 lfo9'><![if !supportLists]><span5856 auto;text-indent:-.25in;mso-list:l55 level1 lfo9'><![if !supportLists]><span 5701 5857 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5702 5858 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5703 5859 </span></span></span><![endif]><b>CIF file</b> - This reads one powder pattern 5704 (histogram) from a Crystallographic Information File ({name<span class=GramE>}.CIF</span>). 5705 The file name is found in a directory dialog; you can change directories as 5706 needed. Only <span class=GramE>one .<span class=SpellE>cif</span></span> can be 5707 chosen. If you want more than one, redo this command. </p> 5860 (histogram) from a Crystallographic Information File ({name}.CIF). The file 5861 name is found in a directory dialog; you can change directories as needed. Only 5862 one .cif can be chosen. If you want more than one, redo this command. </p> 5708 5863 5709 5864 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5710 auto;text-indent:-.25in;mso-list:l5 3level1 lfo9'><![if !supportLists]><span5865 auto;text-indent:-.25in;mso-list:l55 level1 lfo9'><![if !supportLists]><span 5711 5866 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5712 5867 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5713 </span></span></span><![endif]><b>GSAS-II .<span class=SpellE>gpx</span> file</b> 5714 - This reads powder patterns from a previously created GSAS-II <span 5715 class=SpellE>gpx</span> project file. If the selected file has more than one 5716 powder pattern, a dialog is shown with the choices; one or more can be 5717 selected. It will ask for an appropriate instrument parameter file to go with 5718 the selected powder data sets. </p> 5868 </span></span></span><![endif]><b>GSAS-II .gpx file</b> - This reads powder 5869 patterns from a previously created GSAS-II gpx project file. If the selected 5870 file has more than one powder pattern, a dialog is shown with the choices; one 5871 or more can be selected. It will ask for an appropriate instrument parameter 5872 file to go with the selected powder data sets. </p> 5719 5873 5720 5874 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5721 auto;text-indent:-.25in;mso-list:l5 3level1 lfo9'><![if !supportLists]><span5875 auto;text-indent:-.25in;mso-list:l55 level1 lfo9'><![if !supportLists]><span 5722 5876 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5723 5877 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5724 </span></span></span><![endif]><b>GSAS .<span class=SpellE>fxye</span> files</b> 5725 - This reads powder patterns (histograms) from the defined GSAS format powder 5726 data files. GSAS file <span class=GramE>types</span> STD, ESD, FXY and FXYE are 5727 recognized. Neutron TOF data with a ‘TIME-MAP’ are also recognized. The file 5728 names are found in a directory dialog; you can change directories as needed. If 5729 the selected files have more than one powder pattern, a dialog is shown with 5730 the choice(s). </p> 5878 </span></span></span><![endif]><b>GSAS .fxye files</b> - This reads powder 5879 patterns (histograms) from the defined GSAS format powder data files. GSAS file 5880 types STD, ESD, FXY and FXYE are recognized. Neutron TOF data with a ‘TIME-MAP’ 5881 are also recognized. The file names are found in a directory dialog; you can 5882 change directories as needed. If the selected files have more than one powder 5883 pattern, a dialog is shown with the choice(s). </p> 5731 5884 5732 5885 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5733 auto;text-indent:-.25in;mso-list:l5 3level1 lfo9'><![if !supportLists]><span5886 auto;text-indent:-.25in;mso-list:l55 level1 lfo9'><![if !supportLists]><span 5734 5887 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5735 5888 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5736 </span></span></span><![endif]><b>TOPAS .<span class=SpellE>xye</span> files</b> 5737 - This format is a simple 3-column (2-theta, intensity & sig) text file. 5738 The file names are found in a directory dialog; you can change directories as 5739 needed. </p> 5889 </span></span></span><![endif]><b>TOPAS .xye files</b> - This format is a 5890 simple 3-column (2-theta, intensity & sig) text file. The file names are 5891 found in a directory dialog; you can change directories as needed. </p> 5740 5892 5741 5893 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5742 auto;text-indent:-.25in;mso-list:l5 3level1 lfo9'><![if !supportLists]><span5894 auto;text-indent:-.25in;mso-list:l55 level1 lfo9'><![if !supportLists]><span 5743 5895 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5744 5896 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 5749 5901 5750 5902 <p class=MsoListParagraphCxSpLast style='margin-left:.75in;mso-add-space:auto; 5751 text-indent:-.25in;mso-list:l5 3level1 lfo9'><![if !supportLists]><span5903 text-indent:-.25in;mso-list:l55 level1 lfo9'><![if !supportLists]><span 5752 5904 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5753 5905 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5754 </span></span></span><![endif]><i>other supported formats</i> – <span 5755 class=GramE>Bruker .RAW</span>; <span class=SpellE>FullProf</span> .<span 5756 class=SpellE>dat</span>; <span class=SpellE>Panalytical</span> .<span 5757 class=SpellE>xrdml</span>; Comma-separated .csv; Rigaku .<span class=SpellE>ras</span> 5758 & .txt </p> 5906 </span></span></span><![endif]><i>other supported formats</i> – Bruker .RAW; 5907 FullProf .dat; Panalytical .xrdml; Comma-separated .csv; Rigaku .ras & .txt 5908 </p> 5759 5909 5760 5910 <p class=MsoNormal style='text-indent:.5in'>Other formats that are supported, … … 5768 5918 5769 5919 <p class=MsoListParagraphCxSpFirst style='margin-left:.75in;mso-add-space:auto; 5770 text-indent:-.25in;mso-list:l5 4level1 lfo10'><![if !supportLists]><span5920 text-indent:-.25in;mso-list:l56 level1 lfo10'><![if !supportLists]><span 5771 5921 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5772 5922 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 5774 5924 histogram with all zero intensity values in it using a set of instrument 5775 5925 parameters that are read in from a file or one of the default sets provided 5776 when Cancel is pressed at the prompt to select a file. The user <span 5777 class=GramE>is able to</span> specify the data range and step size. One or more 5778 crystalline phases must also be provided to perform a crystallographic 5779 simulation. When the "Refine" menu command is initially used, the 5780 intensities are computed from these phases and the "observed" 5781 intensity values are set from these computed values, with superimposed 5782 "random" noise added based on the calculated values as σ=sqrt(I) 5783 (increase the histogram scale factor to change this, if desired). Further 5784 refinements can then be used to fit to these simulated data. To reset the 5785 "observed" intensity values back to zero, to recompute them, use the 5786 "Edit range" button on the "PWDR" tree item that is created 5787 by this option. </p> 5926 when Cancel is pressed at the prompt to select a file. The user is able to 5927 specify the data range and step size. One or more crystalline phases must also 5928 be provided to perform a crystallographic simulation. When the 5929 "Refine" menu command is initially used, the intensities are computed 5930 from these phases and the "observed" intensity values are set from 5931 these computed values, with superimposed "random" noise added based 5932 on the calculated values as σ=sqrt(I) (increase the histogram scale factor to 5933 change this, if desired). Further refinements can then be used to fit to these 5934 simulated data. To reset the "observed" intensity values back to 5935 zero, to recompute them, use the "Edit range" button on the 5936 "PWDR" tree item that is created by this option. </p> 5788 5937 5789 5938 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5790 auto;text-indent:-.25in;mso-list:l5 4level1 lfo10'><![if !supportLists]><span5939 auto;text-indent:-.25in;mso-list:l56 level1 lfo10'><![if !supportLists]><span 5791 5940 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5792 5941 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 5795 5944 file extension must determine the importer that will be used and a filter 5796 5945 pattern is specified to determine which files will be read (e.g. use "<tt><span 5797 style='font-size:10.0pt'>*June23 <span class=GramE>*.<span class=SpellE>fxye</span></span></span></tt>"5798 so that only filesthat contain the string "June23" will be read. </p>5946 style='font-size:10.0pt'>*June23*.fxye</span></tt>" so that only files 5947 that contain the string "June23" will be read. </p> 5799 5948 5800 5949 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: 5801 auto;text-indent:-.25in;mso-list:l5 4level1 lfo10'><a name=FPA><![if !supportLists]><span5950 auto;text-indent:-.25in;mso-list:l56 level1 lfo10'><a name=FPA><![if !supportLists]><span 5802 5951 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 5803 5952 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 5804 </span></span></span><![endif]><b>Fit Instr. profile from fundamental </b></a><span 5805 class=SpellE><span style='mso-bookmark:FPA'><b>parms</b></span></span><span 5806 style='mso-bookmark:FPA'><b>...</b> - </span>This option is used to compute 5807 instrument parameters from a set of fundamental parameters that describe a 5808 constant wavelength (most likely Bragg-Brentano) powder diffraction instrument. 5809 The user must first specify the data range to be used and then a set of FP 5810 (fundamental parameter) values. The FP values and a source spectrum can be 5811 supplied using a nomenclature <span class=GramE>similar to</span> <span 5812 class=SpellE>Topas</span> (described further below). They will then be 5813 converted to the SI units and parameter names used in the NIST FPA code. 5814 Alternately a file can be supplied with the parameter values used directly in 5815 that program. With this input, a series of peaks are computed across the 5816 specified data range and the <a 5953 </span></span></span><![endif]><b>Fit Instr. profile from fundamental parms...</b> 5954 - </a>This option is used to compute instrument parameters from a set of 5955 fundamental parameters that describe a constant wavelength (most likely 5956 Bragg-Brentano) powder diffraction instrument. The user must first specify the 5957 data range to be used and then a set of FP (fundamental parameter) values. The 5958 FP values and a source spectrum can be supplied using a nomenclature similar to 5959 Topas (described further below). They will then be converted to the SI units 5960 and parameter names used in the NIST FPA code. Alternately a file can be 5961 supplied with the parameter values used directly in that program. With this 5962 input, a series of peaks are computed across the specified data range and the <a 5817 5963 href="gsasII-pwdr.html#PWDR_Instrument_Parameters">Instrumental Parameters</a> 5818 5964 that determine the instrumental profile (U, V, W, X, Y and SH/L) are determined … … 5825 5971 5826 5972 <p class=MsoListParagraphCxSpLast style='margin-left:.75in;mso-add-space:auto'><span 5827 style='mso-bookmark:FPAinput'>Description of the <span class=SpellE>Topas</span>-style5828 fundamentalparameters used as FPA input for GSAS-II</span> </p>5973 style='mso-bookmark:FPAinput'>Description of the Topas-style fundamental 5974 parameters used as FPA input for GSAS-II</span> </p> 5829 5975 5830 5976 <div align=center> … … 5881 6027 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 5882 6028 padding:0in 5.4pt 0in 5.4pt'> 5883 <p class=MsoNormal> <span class=SpellE>soller_angle</span></p>6029 <p class=MsoNormal>soller_angle</p> 5884 6030 </td> 5885 6031 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 5894 6040 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 5895 6041 <p class=MsoNormal>Angular limit for divergence in equatorial plane as 5896 limited by <span class=SpellE>Soller</span>collimator(s)</p>6042 limited by Soller collimator(s)</p> 5897 6043 </td> 5898 6044 </tr> … … 5921 6067 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 5922 6068 padding:0in 5.4pt 0in 5.4pt'> 5923 <p class=MsoNormal> <span class=SpellE>filament_length</span></p>6069 <p class=MsoNormal>filament_length</p> 5924 6070 </td> 5925 6071 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 5941 6087 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 5942 6088 padding:0in 5.4pt 0in 5.4pt'> 5943 <p class=MsoNormal> <span class=SpellE>sample_length</span></p>6089 <p class=MsoNormal>sample_length</p> 5944 6090 </td> 5945 6091 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 5953 6099 mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; 5954 6100 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 5955 <p class=MsoNormal>Illuminated sample length in axial direction. <span5956 class=GramE>Typically</span> the same as <span class=SpellE>filament_length</span>.</p>6101 <p class=MsoNormal>Illuminated sample length in axial direction. Typically 6102 the same as filament_length.</p> 5957 6103 </td> 5958 6104 </tr> … … 5961 6107 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 5962 6108 padding:0in 5.4pt 0in 5.4pt'> 5963 <p class=MsoNormal> <span class=SpellE>receiving_slit_length</span></p>6109 <p class=MsoNormal>receiving_slit_length</p> 5964 6110 </td> 5965 6111 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 5973 6119 mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; 5974 6120 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 5975 <p class=MsoNormal>Length of the receiving slit in axial direction. <span5976 class=GramE>Typically</span> the same as <span class=SpellE>filament_length</span>.</p>6121 <p class=MsoNormal>Length of the receiving slit in axial direction. Typically 6122 the same as filament_length.</p> 5977 6123 </td> 5978 6124 </tr> … … 5981 6127 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 5982 6128 padding:0in 5.4pt 0in 5.4pt'> 5983 <p class=MsoNormal> <span class=SpellE>LAC_cm</span></p>6129 <p class=MsoNormal>LAC_cm</p> 5984 6130 </td> 5985 6131 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 5987 6133 mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; 5988 6134 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 5989 <p class=MsoNormal> <span class=GramE>cm<sup>-1</sup></span></p>6135 <p class=MsoNormal>cm<sup>-1</sup></p> 5990 6136 </td> 5991 6137 <td width=354 valign=top style='width:265.6pt;border-top:none;border-left: … … 6001 6147 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6002 6148 padding:0in 5.4pt 0in 5.4pt'> 6003 <p class=MsoNormal> <span class=SpellE>sample_thickness</span></p>6149 <p class=MsoNormal>sample_thickness</p> 6004 6150 </td> 6005 6151 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6021 6167 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6022 6168 padding:0in 5.4pt 0in 5.4pt'> 6023 <p class=MsoNormal> <span class=SpellE>convolution_steps</span></p>6169 <p class=MsoNormal>convolution_steps</p> 6024 6170 </td> 6025 6171 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6042 6188 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6043 6189 padding:0in 5.4pt 0in 5.4pt'> 6044 <p class=MsoNormal> <span class=SpellE>source_width</span></p>6190 <p class=MsoNormal>source_width</p> 6045 6191 </td> 6046 6192 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6062 6208 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6063 6209 padding:0in 5.4pt 0in 5.4pt'> 6064 <p class=MsoNormal>tube- <span class=SpellE>tails_L</span>-tail</p>6210 <p class=MsoNormal>tube-tails_L-tail</p> 6065 6211 </td> 6066 6212 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6074 6220 mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; 6075 6221 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 6076 <p class=MsoNormal>Width for x-ray intensity occurring beyond the <span6077 class=SpellE>Wehnelt</span> shadow as a projection in the axial direction and6078 measured in the positivetwo-theta direction.</p>6222 <p class=MsoNormal>Width for x-ray intensity occurring beyond the Wehnelt 6223 shadow as a projection in the axial direction and measured in the positive 6224 two-theta direction.</p> 6079 6225 </td> 6080 6226 </tr> … … 6083 6229 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6084 6230 padding:0in 5.4pt 0in 5.4pt'> 6085 <p class=MsoNormal>tube- <span class=SpellE>tails_R</span>-tail</p>6231 <p class=MsoNormal>tube-tails_R-tail</p> 6086 6232 </td> 6087 6233 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6095 6241 mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; 6096 6242 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 6097 <p class=MsoNormal>Width for x-ray intensity occurring beyond the <span6098 class=SpellE>Wehnelt</span> shadow as a projection in the axial direction and6099 measured in the negativetwo-theta direction. </p>6243 <p class=MsoNormal>Width for x-ray intensity occurring beyond the Wehnelt 6244 shadow as a projection in the axial direction and measured in the negative 6245 two-theta direction. </p> 6100 6246 </td> 6101 6247 </tr> … … 6104 6250 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6105 6251 padding:0in 5.4pt 0in 5.4pt'> 6106 <p class=MsoNormal>tube- <span class=SpellE>tails_rel</span>-I</p>6252 <p class=MsoNormal>tube-tails_rel-I</p> 6107 6253 </td> 6108 6254 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6131 6277 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6132 6278 padding:0in 5.4pt 0in 5.4pt'> 6133 <p class=MsoNormal> <span class=SpellE>receiving_slit_width</span></p>6279 <p class=MsoNormal>receiving_slit_width</p> 6134 6280 </td> 6135 6281 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6174 6320 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 6175 6321 <p class=MsoNormal>Angular (two-theta) range in equatorial plane that the 6176 entire Si PSD subtends (<i>not implemented in <span class=SpellE>Topas</span></i>)</p>6322 entire Si PSD subtends (<i>not implemented in Topas</i>)</p> 6177 6323 </td> 6178 6324 </tr> … … 6188 6334 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6189 6335 padding:0in 5.4pt 0in 5.4pt'> 6190 <p class=MsoNormal> <span class=SpellE>src_mono_mm</span></p>6336 <p class=MsoNormal>src_mono_mm</p> 6191 6337 </td> 6192 6338 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6209 6355 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6210 6356 padding:0in 5.4pt 0in 5.4pt'> 6211 <p class=MsoNormal> <span class=SpellE>focus_mono_mm</span></p>6357 <p class=MsoNormal>focus_mono_mm</p> 6212 6358 </td> 6213 6359 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6230 6376 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6231 6377 padding:0in 5.4pt 0in 5.4pt'> 6232 <p class=MsoNormal> <span class=SpellE>passband_mistune</span></p>6378 <p class=MsoNormal>passband_mistune</p> 6233 6379 </td> 6234 6380 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6251 6397 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6252 6398 padding:0in 5.4pt 0in 5.4pt'> 6253 <p class=MsoNormal> <span class=SpellE>mono_src_proj_mn</span></p>6399 <p class=MsoNormal>mono_src_proj_mn</p> 6254 6400 </td> 6255 6401 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6257 6403 mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; 6258 6404 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 6259 <p class=MsoNormal> <span class=SpellE>μm</span> (micron)<span6260 style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p>6405 <p class=MsoNormal>μm (micron)<span style='mso-fareast-font-family:"Times New Roman"; 6406 mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 6261 6407 </td> 6262 6408 <td width=354 valign=top style='width:265.6pt;border-top:none;border-left: … … 6265 6411 mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'> 6266 6412 <p class=MsoNormal>Bandwidth setting for the monochromator as set by the 6267 projection width of the <span class=SpellE>xray</span> source on the6268 monochromator along beam directionand in the equatorial plane</p>6413 projection width of the xray source on the monochromator along beam direction 6414 and in the equatorial plane</p> 6269 6415 </td> 6270 6416 </tr> … … 6273 6419 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6274 6420 padding:0in 5.4pt 0in 5.4pt'> 6275 <p class=MsoNormal> <span class=SpellE>passband_shoulder</span></p>6421 <p class=MsoNormal>passband_shoulder</p> 6276 6422 </td> 6277 6423 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6294 6440 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6295 6441 padding:0in 5.4pt 0in 5.4pt'> 6296 <p class=MsoNormal> <span class=SpellE>two_theta_mono</span></p>6442 <p class=MsoNormal>two_theta_mono</p> 6297 6443 </td> 6298 6444 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6315 6461 border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; 6316 6462 padding:0in 5.4pt 0in 5.4pt'> 6317 <p class=MsoNormal> <span class=SpellE>mono_slit_attenuation</span></p>6463 <p class=MsoNormal>mono_slit_attenuation</p> 6318 6464 </td> 6319 6465 <td width=71 valign=top style='width:53.05pt;border-top:none;border-left: … … 6341 6487 p223. DOI: 10.6028/jres.120.014. If the incident beam monochromator model is 6342 6488 used, please also cite: M.H. Mendenhall, D. Black & J.P. Cline (2019), <i>J. 6343 Appl. <span class=SpellE>Cryst</span>.</i>, <b>52</b>, p1087. DOI: 6344 10.1107/S1600576719010951. </p> 6489 Appl. Cryst.</i>, <b>52</b>, p1087. DOI: 10.1107/S1600576719010951. </p> 6345 6490 6346 6491 <p class=MsoNormal style='margin-left:.75in'><span style='mso-fareast-font-family: 6347 6492 "Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p> </o:p></span></p> 6348 6493 6349 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l 49level1 lfo11'><![if !supportLists]><span6494 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l51 level1 lfo11'><![if !supportLists]><span 6350 6495 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6351 6496 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6359 6504 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 6360 6505 </span></span></span><![endif]><b>F**2 HKL file</b> - This reads squared 6361 structure factors (as F**2) and sig(F**2) from a SHELX format . <span6362 class=SpellE>hkl</span> file. The file names are found in a directory dialog; 6363 you can change directories as needed. You must know the file contains structure6364 factors (as F**2) as the fileitself has no internal indication of this. </p>6506 structure factors (as F**2) and sig(F**2) from a SHELX format .hkl file. The 6507 file names are found in a directory dialog; you can change directories as 6508 needed. You must know the file contains structure factors (as F**2) as the file 6509 itself has no internal indication of this. </p> 6365 6510 6366 6511 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: … … 6369 6514 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 6370 6515 </span></span></span><![endif]><b>F HKL file</b> - This reads structure factors 6371 (as F) and sig(F) from a SHELX format . <span class=SpellE>hkl</span> file. The6372 file names are found in a directory dialog; you can change directories as 6373 needed. You must know the file contains structure factors (as F values) as the 6374 file itself has no internalindication of this. </p>6516 (as F) and sig(F) from a SHELX format .hkl file. The file names are found in a 6517 directory dialog; you can change directories as needed. You must know the file 6518 contains structure factors (as F values) as the file itself has no internal 6519 indication of this. </p> 6375 6520 6376 6521 <p class=MsoListParagraphCxSpMiddle style='margin-left:.75in;mso-add-space: … … 6379 6524 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 6380 6525 </span></span></span><![endif]><b>CIF file</b> - This reads structure factors 6381 (as F**2 or F) and <span class=GramE>sig(</span>F**2 or F) from a .CIF (or .<span 6382 class=SpellE>cif</span>) or .FCF (or .<span class=SpellE>fcf</span>) format 6383 file. The file names are found in a directory dialog; you can change 6526 (as F**2 or F) and sig(F**2 or F) from a .CIF (or .cif) or .FCF (or .fcf) 6527 format file. The file names are found in a directory dialog; you can change 6384 6528 directories as needed. The internal structure of this file indicates in which 6385 6529 form the structure factors are used. </p> … … 6391 6535 </span></span></span><![endif]><b>guess format from file</b> - This attempts to 6392 6536 read one data set from a file trying the formats as described above. However, 6393 since it cannot be determined if SHELX <span class=GramE>format .<span 6394 class=SpellE>hkl</span></span> contains F or F**2 values, do not use this command 6395 for those files. On occasion, this command may not succeed in correctly 6396 determining a file format. If it fails, retry by selecting the correct format 6397 from the list.</p> 6537 since it cannot be determined if SHELX format .hkl contains F or F**2 values, 6538 do not use this command for those files. On occasion, this command may not 6539 succeed in correctly determining a file format. If it fails, retry by selecting 6540 the correct format from the list.</p> 6398 6541 6399 6542 <p class=MsoNormal style='margin-left:.25in;text-indent:.25in'>There are … … 6401 6544 data from specific neutron diffractometers.</p> 6402 6545 6403 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 6level1 lfo13'><![if !supportLists]><span6546 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l48 level1 lfo13'><![if !supportLists]><span 6404 6547 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6405 6548 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6413 6556 The data type is either ‘LXC’ or ‘LNC’</p> 6414 6557 6415 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 6level1 lfo13'><![if !supportLists]><span6558 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l48 level1 lfo13'><![if !supportLists]><span 6416 6559 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6417 6560 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6422 6565 comment records. The data type is either ‘RXC’ or ‘RNC’.</p> 6423 6566 6424 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 6level1 lfo13'><![if !supportLists]><span6567 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l48 level1 lfo13'><![if !supportLists]><span 6425 6568 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6426 6569 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6438 6581 A second column of intensities is optional.</p> 6439 6582 6440 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 6level1 lfo13'><![if !supportLists]><span6583 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l48 level1 lfo13'><![if !supportLists]><span 6441 6584 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6442 6585 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6443 6586 </span></span></span><![endif]><b>PDF G(R) Data</b> - Reads pair distribution 6444 data for possible analysis by <span class=SpellE>PDFfit</span> from within 6445 GSAS-II.</p> 6587 data for possible analysis by PDFfit from within GSAS-II.</p> 6446 6588 6447 6589 <p class=MsoListParagraphCxSpMiddle style='margin-left:.25in;mso-add-space: … … 6455 6597 GSAS-II. These routines can be created and customized easily. See the <a 6456 6598 href="https://gsas-ii.readthedocs.io/en/latest/exports.html">GSAS-II Export 6457 Modules section</a> of the <a href="#Programmers"><s pan class=GramE><strong>Programmers</strong></span><strong>6599 Modules section</a> of the <a href="#Programmers"><strong>Programmers 6458 6600 documentation</strong></a> for more information on this. Since it is easy to 6459 6601 support new formats, the documentation below may not list all supported … … 6461 6603 minor-fareast'><o:p></o:p></span></p> 6462 6604 6463 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6605 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6464 6606 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6465 6607 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6467 6609 two supported formats for a project. One is a Full CIF file, which brings up a 6468 6610 separate window where information such as ranges for bond distances and angles 6469 can be selected. The other is a 2-column text file of parameter name and value(<span6470 class=SpellE>esd</span>), suitable for cutting/pasting into manuscripts.</p>6471 6472 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6611 can be selected. The other is a 2-column text file of parameter name and 6612 value(esd), suitable for cutting/pasting into manuscripts.</p> 6613 6614 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6473 6615 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6474 6616 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6475 6617 </span></span></span><![endif]><b>Phase as</b> - Phases can be exported in a 6476 6618 variety of formats including a simplified CIF file that contains only the unit 6477 cell, <span class=GramE>symmetry</span>and coordinates. </p>6478 6479 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6619 cell, symmetry and coordinates. </p> 6620 6621 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6480 6622 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6481 6623 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6484 6626 reflection lists from Rietveld and Pawley fits. </p> 6485 6627 6486 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6628 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6487 6629 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6488 6630 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6490 6632 as a csv text file.</p> 6491 6633 6492 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6634 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6493 6635 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6494 6636 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6496 6638 only as a csv text file.</p> 6497 6639 6498 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6640 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6499 6641 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6500 6642 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6503 6645 contains only structure factors. </p> 6504 6646 6505 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6647 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6506 6648 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6507 6649 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6512 6654 spreadsheet (.csv file). </p> 6513 6655 6514 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6656 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6515 6657 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6516 6658 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6518 6660 here. </p> 6519 6661 6520 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l 29level1 lfo14'><![if !supportLists]><span6662 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l30 level1 lfo14'><![if !supportLists]><span 6521 6663 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6522 6664 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6524 6666 peak lists from selected powder histograms to be written to a simple text file. 6525 6667 There will be a heading for each PWDR GSAS-II tree item and columns of values 6526 for position, intensity, <span class=GramE>sigma</span>and gamma follow. </p>6527 6528 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 5level1 lfo15'><![if !supportLists]><span6668 for position, intensity, sigma and gamma follow. </p> 6669 6670 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l47 level1 lfo15'><![if !supportLists]><span 6529 6671 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6530 6672 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6532 6674 reflection lists from selected histograms to be written to a file. </p> 6533 6675 6534 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 5level1 lfo15'><![if !supportLists]><span6676 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l47 level1 lfo15'><![if !supportLists]><span 6535 6677 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6536 6678 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6539 6681 to other macromolecular packages.</p> 6540 6682 6541 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 5level1 lfo15'><![if !supportLists]><span6683 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l47 level1 lfo15'><![if !supportLists]><span 6542 6684 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6543 6685 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6544 6686 </span></span></span><![endif]><b>Export PDF...</b> - This allows computed PDFs 6545 6687 peak lists from selected histograms to be written as two simple text files, 6546 {name}.gr and {name<span class=GramE>}.sq</span>, containing g(r) and s(q), 6547 respectively as 2 columns of data; a header on each indicated the source file 6548 name and the column headings. The file name comes from the PDF entry in the 6549 GSAS-II data tree. </p> 6688 {name}.gr and {name}.sq, containing g(r) and s(q), respectively as 2 columns of 6689 data; a header on each indicated the source file name and the column headings. 6690 The file name comes from the PDF entry in the GSAS-II data tree. </p> 6550 6691 6551 6692 <div class=MsoNormal align=center style='text-align:center'><span … … 6570 6711 <p class=MsoNormal>This window provides a place for you to enter whatever text 6571 6712 commentary you wish. Each time you enter this window, a date/time entry is 6572 provided for you. A possibly useful technique is to select a portion of the <span6573 class=SpellE>project.lst</span> file after a refinement completes (it will 6574 contain refinement results with residuals, new values & <span class=SpellE>esds</span>) 6575 and paste it into this Notebook window so it becomes a part of your project 6576 file. Some GSAS-II operations (e.g., structure refinement & <span 6577 class=SpellE>fourier</span> map calculation) will add entries tothe notebook.</p>6713 provided for you. A possibly useful technique is to select a portion of the 6714 project.lst file after a refinement completes (it will contain refinement 6715 results with residuals, new values & esds) and paste it into this Notebook 6716 window so it becomes a part of your project file. Some GSAS-II operations 6717 (e.g., structure refinement & fourier map calculation) will add entries to 6718 the notebook.</p> 6578 6719 6579 6720 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> … … 6586 6727 6587 6728 <p class=MsoNormal>This window provides access to the controls that determine 6588 how GSAS-II performs minimizations as well as few global parameters for GSAS-II. 6589 Note that many other customization settings are set as <a href="#Preferences">configuration 6590 variables</a> in the Preferences menu. (See the <a 6729 how GSAS-II performs minimizations as well as few global parameters for 6730 GSAS-II. Note that many other customization settings are set as <a 6731 href="#Preferences">configuration variables</a> in the Preferences menu. (See 6732 the <a 6591 6733 href="https://gsas-ii.readthedocs.io/en/latest/GSASIIutil.html#module-config_example">Programmer's 6592 6734 documentation</a> for a description of those.) </p> … … 6622 6764 mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span 6623 6765 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>analytic 6624 Jacobian: This uses a <span class=SpellE>numpy</span>-provided <span 6625 class=SpellE><i>leastsq</i></span> minimizer, which not applicable for problem 6626 with <span class=GramE>a large number of</span> histograms as it requires much 6766 Jacobian: This uses a numpy-provided <i>leastsq</i> minimizer, which not 6767 applicable for problem with a large number of histograms as it requires much 6627 6768 more memory than the Hessian routines. This because it creates a Jacobian 6628 6769 matrix (J) that is shaped N x M (N parameters x M observations) while the … … 6636 6777 mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span 6637 6778 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>numeric: 6638 This also uses the <span class=SpellE>numpy</span> <span class=SpellE><i>leastsq</i></span>6639 minimizer and is also not applicable for larger problems. Unlike, the 6640 "analytic Jacobian", numerical derivatives are computed rather than 6641 use the analytical derivatives that are coded directly into GSAS-II. This will6642 be slower than the analytical derivatives and will is often less accurate which 6643 results in slower convergence. <i>It is typically used for code development to 6644 check the accuracyof the analytical derivative formulations. </i></p>6779 This also uses the numpy <i>leastsq</i> minimizer and is also not applicable 6780 for larger problems. Unlike, the "analytic Jacobian", numerical 6781 derivatives are computed rather than use the analytical derivatives that are 6782 coded directly into GSAS-II. This will be slower than the analytical 6783 derivatives and will is often less accurate which results in slower 6784 convergence. <i>It is typically used for code development to check the accuracy 6785 of the analytical derivative formulations. </i></p> 6645 6786 6646 6787 <p class=MsoListParagraphCxSpLast style='margin-left:.75in;mso-add-space:auto; … … 6655 6796 6656 6797 <p class=MsoNormal style='margin-left:.5in'>Note that the Jacobian refinement 6657 tools are the Fortran MINPACK <span class=SpellE><i>lmdif</i></span> and <span 6658 class=SpellE><i>lmder</i></span> algorithms wrapped in python as provided in 6659 the <span class=SpellE>numpy</span>/<span class=SpellE>Scipy</span> package. 6660 The Hessian routines were developed for GSAS-II based on routines in <span 6661 class=SpellE>numpy</span> and <span class=SpellE>scipy</span> and used material 6662 from Numerical Recipes (Press, Flannery, <span class=SpellE>Teulosky</span> 6663 & <span class=SpellE>Vetterling</span>) for the Levenberg-Marquardt 6664 algorithm. The <span class=SpellE>lmdif</span> and <span class=SpellE>lmder</span> 6665 routines were written by Burton S. <span class=SpellE>Garbow</span>, Kenneth E. 6666 <span class=SpellE>Hillstrom</span>, Jorge J. More (Argonne National 6667 Laboratory, 1980). </p> 6798 tools are the Fortran MINPACK <i>lmdif</i> and <i>lmder</i> algorithms wrapped 6799 in python as provided in the numpy/Scipy package. The Hessian routines were 6800 developed for GSAS-II based on routines in numpy and scipy and used material 6801 from Numerical Recipes (Press, Flannery, Teulosky & Vetterling) for the 6802 Levenberg-Marquardt algorithm. The lmdif and lmder routines were written by 6803 Burton S. Garbow, Kenneth E. Hillstrom, Jorge J. More (Argonne National Laboratory, 6804 1980). </p> 6668 6805 6669 6806 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l18 level1 lfo17'><![if !supportLists]><span … … 6671 6808 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6672 6809 </span></span></span><![endif]><b>Min delta-M/M </b>- A refinement will stop 6673 when the change in the minimization function (M=Σ[w(Io- <span class=SpellE>Ic</span>)<sup>2</sup>])6674 isless than this value. The allowed range is 10<sup>-9</sup> to 1.0, with a6810 when the change in the minimization function (M=Σ[w(Io-Ic)<sup>2</sup>]) is 6811 less than this value. The allowed range is 10<sup>-9</sup> to 1.0, with a 6675 6812 default of 0.001. A value of 1.0 stops the refinement after a single cycle. 6676 6813 Values less than 10<sup>-4</sup> cause refinements to continue even if there is … … 6691 6828 elements of the Hessian. When λ is large, this down-weights the significance of 6692 6829 the off-diagonal terms in the Hessian. Thus, when λ is large, the refinement is 6693 effectively one of <span class=GramE>steepest-descents</span>, where 6694 correlation between variables is ignored. Note that steepest-descents 6695 minimization is typically slow and may not always find the local minimum. This 6696 is only used when with the "analytical Hessian" minimizer is 6697 selected. </p> 6830 effectively one of steepest-descents, where correlation between variables is 6831 ignored. Note that steepest-descents minimization is typically slow and may not 6832 always find the local minimum. This is only used when with the "analytical 6833 Hessian" minimizer is selected. </p> 6698 6834 6699 6835 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><![if !supportLists]><span … … 6729 6865 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6730 6866 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6731 </span></span></span><![endif]><b>Min <span class=SpellE>obs</span>/sig</b> -6732 Conventional cutoff for single crystal refinements as to what reflections 6733 should be consideredobserved, typical values are 2.0 (2σ) or 3.0 (3σ). </p>6867 </span></span></span><![endif]><b>Min obs/sig</b> - Conventional cutoff for 6868 single crystal refinements as to what reflections should be considered 6869 observed, typical values are 2.0 (2σ) or 3.0 (3σ). </p> 6734 6870 6735 6871 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l27 level1 lfo19'><![if !supportLists]><span 6736 6872 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6737 6873 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6738 </span></span></span><![endif]><b>Min extinct.</b> – Reflections with 6739 extinctioncorrections larger than this value are ignored.</p>6874 </span></span></span><![endif]><b>Min extinct.</b> – Reflections with extinction 6875 corrections larger than this value are ignored.</p> 6740 6876 6741 6877 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l27 level1 lfo19'><![if !supportLists]><span … … 6743 6879 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6744 6880 </span></span></span><![endif]><b>Max delt-F/sig</b> - Removes reflections that 6745 are very poorly fit. Should be used only with extreme care, since <span 6746 class=GramE>poorly-fit</span> reflections could be an indication that the 6747 structure is wrong. </p> 6881 are very poorly fit. Should be used only with extreme care, since poorly-fit 6882 reflections could be an indication that the structure is wrong. </p> 6748 6883 6749 6884 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l27 level1 lfo19'><![if !supportLists]><span … … 6763 6898 style='font:7.0pt "Times New Roman"'> </span></span><![endif]><b><u>Sequential 6764 6899 Settings</u></b><u>:</u> A set of controls is for sequential refinement. 6765 Settings here determine if a "normal" or "sequential" refinement6766 is performed. If no datasets are selected here, then all histograms linked to 6767 phases in the project and that are flagged as "used" are included in 6768 one potentially large (combined) refinement. However, if any number of 6769 histograms are selected here, then a sequential refinement is performed, where 6770 a fit is made to the structural model(s) fitting each selected histogram in 6771 turn. Only the first item below is shown in "normal" mode. <span6900 Settings here determine if a "normal" or "sequential" 6901 refinement is performed. If no datasets are selected here, then all histograms 6902 linked to phases in the project and that are flagged as "used" are 6903 included in one potentially large (combined) refinement. However, if any number 6904 of histograms are selected here, then a sequential refinement is performed, 6905 where a fit is made to the structural model(s) fitting each selected histogram 6906 in turn. Only the first item below is shown in "normal" mode. <span 6772 6907 style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 6773 6908 … … 6779 6914 between a normal and a sequential refinement. If one or more histograms are 6780 6915 selected, a sequential refinement is used. If none are selected, then the 6781 refinement be set as "normal". The button is labeled "Select"6782 when in normal refinement mode and "Reselect" in sequential 6783 refinement mode. </p>6916 refinement be set as "normal". The button is labeled 6917 "Select" when in normal refinement mode and "Reselect" in 6918 sequential refinement mode. </p> 6784 6919 6785 6920 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo20'><![if !supportLists]><span … … 6799 6934 the results from fitting the previous. This works well for parametric 6800 6935 experiments where parameters such as the lattice parameters change gradually 6801 over the course of successive measurements. This option is usually used only for6802 the initial refinement after a sequential fit is started and the setting is6936 over the course of successive measurements. This option is usually used only 6937 for the initial refinement after a sequential fit is started and the setting is 6803 6938 cleared once that refinement is completed. For subsequent refinements, it is 6804 6939 usually better to start with the results from the previous fit. </p> … … 6814 6949 style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'> 6815 6950 </span></span><![endif]><b><u>Global Settings</u></b><u>:</u> This is a 6816 location for parameters that apply to an entire project. At present there is 6817 on ly one. <span style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font:6951 location for parameters that apply to an entire project. At present there is only 6952 one. <span style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font: 6818 6953 minor-fareast'><o:p></o:p></span></p> 6819 6954 … … 6854 6989 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6855 6990 </span></span></span><![endif]>Move the mouse cursor across the plot. If on a 6856 diagonal cell, the parameter name, value and <span class=SpellE>esd</span> is6857 shown both as a tool tip and in the right-hand portion of the status bar. If 6858 the cursor is off the diagonal, the two parameter names and their covariance 6859 are shown in the tooltip and the status bar. </p>6991 diagonal cell, the parameter name, value and esd is shown both as a tool tip 6992 and in the right-hand portion of the status bar. If the cursor is off the 6993 diagonal, the two parameter names and their covariance are shown in the tool 6994 tip and the status bar. </p> 6860 6995 6861 6996 <p style='margin-left:.5in;text-indent:-.25in;mso-list:l22 level1 lfo21'><![if !supportLists]><span … … 6870 7005 </span></span></span><![endif]>Press ‘s’ – A color scheme selection dialog is 6871 7006 shown. Select a color scheme and press OK, the new color scheme will be 6872 plotted. The default is ‘ <span class=SpellE>RdYlGn</span>’. </p>7007 plotted. The default is ‘RdYlGn’. </p> 6873 7008 6874 7009 <p style='margin-left:.5in;text-indent:-.25in;mso-list:l22 level1 lfo21'><![if !supportLists]><span … … 6883 7018 6884 7019 <p class=MsoNormal>This window shows the constraints to be used in a 6885 refinement. Constraints are divided with a tab for each type: Phase, Histogram/Phase,6886 Histogram , Global and <span class=SpellE>Sym</span>-Generated. Note that the6887 standard parameters in GSAS-II are divided into three classes and appear 6888 respectively on the Phase, Histogram and Histogram/Phase tabs: <span 6889 style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p>6890 6891 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l26 level1 lfo 45;7020 refinement. Constraints are divided with a tab for each type: Phase, 7021 Histogram/Phase, Histogram, Global and Sym-Generated. Note that the standard 7022 parameters in GSAS-II are divided into three classes and appear respectively on 7023 the Phase, Histogram and Histogram/Phase tabs: <span style='mso-fareast-font-family: 7024 "Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 7025 7026 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l26 level1 lfo22; 6892 7027 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 6893 7028 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 6895 7030 style='font:7.0pt "Times New Roman"'> 6896 7031 </span></span></span><![endif]>those pertaining to quantities in each phase 6897 (naming pattern "<span class=GramE><tt><i><span style='font-size:10.0pt'>p</span></i></tt><tt><span 6898 style='font-size:10.0pt'>::</span></tt></span><tt><i><span style='font-size: 6899 10.0pt'>name</span></i></tt>"); examples include atom coordinates, thermal 6900 motion and site fraction parameters; </p> 6901 6902 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l26 level1 lfo45; 7032 (naming pattern "<tt><i><span style='font-size:10.0pt'>p</span></i></tt><tt><span 7033 style='font-size:10.0pt'>::<i>name</i></span></tt>"); examples include 7034 atom coordinates, thermal motion and site fraction parameters; </p> 7035 7036 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l26 level1 lfo22; 6903 7037 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 6904 7038 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 6906 7040 style='font:7.0pt "Times New Roman"'> 6907 7041 </span></span></span><![endif]>those pertaining to quantities in each histogram 6908 (naming pattern ":< span class=SpellE><tt><i><span style='font-size:10.0pt'>h</span></i></tt><tt><span6909 style='font-size:10.0pt'>:<i>name</i></span></tt> </span>"); such6910 parameters are those that depend only on the data set: the scale factor and 6911 profile coefficients (<span class=GramE>e.g.</span>U, V, W, X and Y); </p>6912 6913 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l26 level1 lfo 45;7042 (naming pattern ":<tt><i><span style='font-size:10.0pt'>h</span></i></tt><tt><span 7043 style='font-size:10.0pt'>:<i>name</i></span></tt>"); such parameters are 7044 those that depend only on the data set: the scale factor and profile coefficients 7045 (e.g. U, V, W, X and Y); </p> 7046 7047 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l26 level1 lfo22; 6914 7048 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 6915 7049 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 6921 7055 these parameters are quantities that can be dependent on both the phase 6922 7056 properties and the sample or dataset used for the measurement. Examples include 6923 phase fractions and sample-broadening coefficients such as <span class=SpellE>microstrain</span>6924 andcrystallite size; they are found in the Data tab for each phase.</p>7057 phase fractions and sample-broadening coefficients such as microstrain and 7058 crystallite size; they are found in the Data tab for each phase.</p> 6925 7059 6926 7060 <p class=MsoNormal>The following types of constraints may be specified by … … 6928 7062 minor-fareast'><o:p></o:p></span></p> 6929 7063 6930 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 1 level1 lfo22'><![if !supportLists]><span7064 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l43 level1 lfo23'><![if !supportLists]><span 6931 7065 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6932 7066 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6940 7074 the structure from drifting up or down the y-axis during refinement. </p> 6941 7075 6942 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 1 level1 lfo22'><![if !supportLists]><span7076 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l43 level1 lfo23'><![if !supportLists]><span 6943 7077 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6944 7078 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6948 7082 the actual coordinate values) Examples for typical use are sets of atoms that 6949 7083 should be constrained to have the same displacement parameters (aka thermal 6950 motion, <span class=SpellE>Uiso</span>, etc.) or sets of profile coefficients <span 6951 class=GramE>U,V</span>,W across multiple data sets. Note that the first 6952 selected parameter is treated as independent, and the remainder are 6953 "slaved" to that parameter as "dependent parameters." All 6954 parameters in an equivalence must be varied. If any parameter is not varied or 6955 is given a "hold," a warning is displayed and none of the parameters 6956 are refined. </p> 6957 6958 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l41 level1 lfo22'><![if !supportLists]><span 7084 motion, Uiso, etc.) or sets of profile coefficients U,V,W across multiple data 7085 sets. Note that the first selected parameter is treated as independent, and the 7086 remainder are "slaved" to that parameter as "dependent 7087 parameters." All parameters in an equivalence must be varied. If any parameter 7088 is not varied or is given a "hold," a warning is displayed and none 7089 of the parameters are refined. </p> 7090 7091 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l43 level1 lfo23'><![if !supportLists]><span 6959 7092 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6960 7093 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 6970 7103 the equation is ignored. </p> 6971 7104 6972 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 1 level1 lfo22'><![if !supportLists]><span6973 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 6974 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 6975 </span></span></span><![endif]><b>New Var assignment</b> - These are <span6976 c lass=GramE>similar to</span> constraint equations in that they define a set of6977 parameters and multipliers, but rather than specifying a value for the 6978 expression, a new parameter is assigned to that sum and these constraints have 6979 a very different function. This replaces a degree of freedom from the original 6980 variables with a new one that modifies the parameters where the shift is 6981 applied according to the ratio specified in the expression. This can be used to 6982 create new parameters that redefine the relationships between items such as 6983 coordinates or magnetic moments. The new parameter may optionally be named by 6984 the user. The new var expression creates a new global parameter, where that new 6985 parameter is independent, while all the parameters in the expression are 6986 considered as dependent. The setting of the refine flags for the dependent 6987 parameters is not used. Only if the new var parameter is marked as refine then 6988 it will be refined. However, if any dependent variable is set as 6989 "hold," the new var parameter will notbe refined. </p>7105 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l43 level1 lfo23'><![if !supportLists]><span 7106 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7107 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7108 </span></span></span><![endif]><b>New Var assignment</b> - These are similar to 7109 constraint equations in that they define a set of parameters and multipliers, 7110 but rather than specifying a value for the expression, a new parameter is 7111 assigned to that sum and these constraints have a very different function. This 7112 replaces a degree of freedom from the original variables with a new one that 7113 modifies the parameters where the shift is applied according to the ratio 7114 specified in the expression. This can be used to create new parameters that redefine 7115 the relationships between items such as coordinates or magnetic moments. The 7116 new parameter may optionally be named by the user. The new var expression 7117 creates a new global parameter, where that new parameter is independent, while 7118 all the parameters in the expression are considered as dependent. The setting 7119 of the refine flags for the dependent parameters is not used. Only if the new 7120 var parameter is marked as refine then it will be refined. However, if any 7121 dependent variable is set as "hold," the new var parameter will not 7122 be refined. </p> 6990 7123 6991 7124 <p class=MsoNormal>Note that when new var and constraint equation constraints 6992 7125 are defined, they create new global parameters. Constraints on these will be 6993 rare, but can be managed on the <span class=SpellE>Globals</span> tab. Finally, 6994 some constraints are defined automatically based on restrictions determined by 6995 space group symmetry. These constraints can be seen, but not changed, using the 6996 <span class=SpellE>Sym</span>-Generated tab. Other constraints (holds) will be 6997 created when rigid bodies are specified. <span style='mso-fareast-font-family: 6998 "Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 7126 rare, but can be managed on the Globals tab. Finally, some constraints are 7127 defined automatically based on restrictions determined by space group symmetry. 7128 These constraints can be seen, but not changed, using the Sym-Generated tab. 7129 Other constraints (holds) will be created when rigid bodies are specified. <span 7130 style='mso-fareast-font-family:"Times New Roman";mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 6999 7131 7000 7132 <p class=MsoNormal>New Var constraints are generated when <a 7001 7133 href="https://iso.byu.edu/iso/isodistort.php">ISODISTORT</a> is used to develop 7002 mode distortions from a comparison of a high symmetry parent structure ( <span7003 c lass=GramE>e.g.</span> cubic perovskite) with a distorted child substructure.7004 They are developed for the phase imported from the special <span class=SpellE>cif</span> 7005 file produced by ISODISTORT from a modedistortion analysis. </p>7134 mode distortions from a comparison of a high symmetry parent structure (e.g. 7135 cubic perovskite) with a distorted child substructure. They are developed for 7136 the phase imported from the special cif file produced by ISODISTORT from a mode 7137 distortion analysis. </p> 7006 7138 7007 7139 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> … … 7011 7143 commands:</p> 7012 7144 7013 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l3 level1 lfo2 3'><![if !supportLists]><span7145 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l3 level1 lfo24'><![if !supportLists]><span 7014 7146 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7015 7147 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7020 7152 with the keyword ‘FIXED’. </p> 7021 7153 7022 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo2 3'><![if !supportLists]><span7154 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo24'><![if !supportLists]><span 7023 7155 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7024 7156 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7029 7161 parameters will show as an equation of the form M<sub>1</sub>*P<sub>1</sub>+M<sub>2</sub>*P<sub>2</sub>=0; 7030 7162 usually M1=1.0 and M2=-1.0 but can be changed via the ‘Edit’ button. The 7031 equation(s) are shown in the window tagged by ‘EQUIV’ to mark it as an 7032 equivalenceassignment. </p>7033 7034 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo2 3'><![if !supportLists]><span7163 equation(s) are shown in the window tagged by ‘EQUIV’ to mark it as an equivalence 7164 assignment. </p> 7165 7166 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo24'><![if !supportLists]><span 7035 7167 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7036 7168 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7041 7173 dialog will cancel the operation. The equivalenced parameters will show as an 7042 7174 equation of the form M<sub>1</sub>*P<sub>1</sub>+M<sub>2</sub>*P<sub>2</sub>+…=C; 7043 the multipliers M1, M2, … and C can be changed via the ‘Edit’ button. The equation7044 is shown in the window tagged by ‘CONSTR’ to mark it as a constraint equation 7045 assignment. </p>7046 7047 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo2 3'><![if !supportLists]><span7175 the multipliers M1, M2, … and C can be changed via the ‘Edit’ button. The 7176 equation is shown in the window tagged by ‘CONSTR’ to mark it as a constraint 7177 equation assignment. </p> 7178 7179 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo24'><![if !supportLists]><span 7048 7180 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7049 7181 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7055 7187 constraint. </p> 7056 7188 7057 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo2 3'><![if !supportLists]><span7189 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo24'><![if !supportLists]><span 7058 7190 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7059 7191 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7060 7192 </span></span></span><![endif]><b>Make atoms equivalent</b> - This provides a 7061 7193 shortcut for establishing constraints when two share a single site. Coordinates 7062 and <span class=SpellE>Uiso</span> values are constrained to be the same and7063 site fractions areconstrained to add to 1. </p>7064 7065 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l3 level1 lfo2 3'><![if !supportLists]><span7194 and Uiso values are constrained to be the same and site fractions are 7195 constrained to add to 1. </p> 7196 7197 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l3 level1 lfo24'><![if !supportLists]><span 7066 7198 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7067 7199 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7074 7206 mso-fareast-theme-font:minor-fareast'><o:p></o:p></span></p> 7075 7207 7076 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo2 4;7208 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo25; 7077 7209 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7078 7210 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7083 7215 are encountered processing the constraints. </p> 7084 7216 7085 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 level1 lfo2 4;7217 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 level1 lfo25; 7086 7218 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7087 7219 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7094 7226 what was planned. </p> 7095 7227 7096 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 level1 lfo2 4;7228 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 level1 lfo25; 7097 7229 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7098 7230 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7106 7238 "Hold" variables. </p> 7107 7239 7108 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo2 4;7240 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo25; 7109 7241 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7110 7242 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7123 7255 a particular constraint number. When sequential refinement is selected (via the 7124 7256 <a href="#Controls">Controls tree item</a>), it becomes possible to define 7125 constraints of form "< span class=GramE><tt><i><span style='font-size:10.0pt'>p</span></i></tt>:*</span>:<tt><i><span7257 constraints of form "<tt><i><span style='font-size:10.0pt'>p</span></i></tt>:*:<tt><i><span 7126 7258 style='font-size:10.0pt'>name</span></i></tt>" and ":*:<tt><i><span 7127 7259 style='font-size:10.0pt'>name</span></i></tt>" (where "<tt><i><span … … 7139 7271 modes: </p> 7140 7272 7141 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l12 level1 lfo2 5'><![if !supportLists]><span7273 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l12 level1 lfo26'><![if !supportLists]><span 7142 7274 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7143 7275 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7146 7278 to all histograms. This is the default for new projects. </p> 7147 7279 7148 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l12 level1 lfo2 5'><![if !supportLists]><span7280 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l12 level1 lfo26'><![if !supportLists]><span 7149 7281 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7150 7282 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7152 7284 previously specified with a specific histogram number will be ignored and 7153 7285 constraints with a "*" where for a histogram number will be used. 7154 Note that constraints on phase parameters (of form "<span class=GramE><tt><i><span 7155 style='font-size:10.0pt'>p</span></i></tt>::</span><tt><i><span 7156 style='font-size:10.0pt'>name</span></i></tt>" -- without a histogram 7157 number specified) will be used normally. Note that this was the normal 7158 operating mode for GSAS-II in earlier versions. </p> 7159 7160 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l12 level1 lfo25'><![if !supportLists]><span 7286 Note that constraints on phase parameters (of form "<tt><i><span 7287 style='font-size:10.0pt'>p</span></i></tt>::<tt><i><span style='font-size:10.0pt'>name</span></i></tt>" 7288 -- without a histogram number specified) will be used normally. Note that this 7289 was the normal operating mode for GSAS-II in earlier versions. </p> 7290 7291 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l12 level1 lfo26'><![if !supportLists]><span 7161 7292 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7162 7293 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7186 7317 style='mso-tab-count:1'> </span><o:p></o:p></span></h5> 7187 7318 7188 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 0 level1 lfo26'><![if !supportLists]><span7189 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7190 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7191 </span></span></span><![endif]>Select the tab for the restraint type you wish 7192 touse. Each will have the same possibilities in the ‘<b style='mso-bidi-font-weight:7319 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l52 level1 lfo27'><![if !supportLists]><span 7320 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7321 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7322 </span></span></span><![endif]>Select the tab for the restraint type you wish to 7323 use. Each will have the same possibilities in the ‘<b style='mso-bidi-font-weight: 7193 7324 normal'>Edit’</b> menu.</p> 7194 7325 7195 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 0 level1 lfo26'><![if !supportLists]><span7326 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l52 level1 lfo27'><![if !supportLists]><span 7196 7327 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7197 7328 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7201 7332 1.0.</p> 7202 7333 7203 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 0 level1 lfo26'><![if !supportLists]><span7334 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l52 level1 lfo27'><![if !supportLists]><span 7204 7335 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7205 7336 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7207 7338 in subsequent refinements. Default is to use the restraints.</p> 7208 7339 7209 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 0 level1 lfo26'><![if !supportLists]><span7340 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l52 level1 lfo27'><![if !supportLists]><span 7210 7341 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7211 7342 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7213 7344 bonds/angles that meet your criteria for restraint.</p> 7214 7345 7215 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 0 level1 lfo26'><![if !supportLists]><span7346 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l52 level1 lfo27'><![if !supportLists]><span 7216 7347 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7217 7348 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7218 7349 </span></span></span><![endif]>You can examine the table of restraints and 7219 7350 change individual values; grayed out regions cannot be changed. The ‘calc’ 7220 values are determined from the atom positions in your structure, ‘<span 7221 class=SpellE>obs</span>’ values are the target values for the restraint and ‘<span 7222 class=SpellE>esd</span>’ is the uncertainty used to weight the restraint in the 7223 refinement (multiplied by the weight factor).</p> 7224 7225 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l50 level1 lfo26'><![if !supportLists]><span 7351 values are determined from the atom positions in your structure, ‘obs’ values 7352 are the target values for the restraint and ‘esd’ is the uncertainty used to 7353 weight the restraint in the refinement (multiplied by the weight factor).</p> 7354 7355 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l52 level1 lfo27'><![if !supportLists]><span 7226 7356 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7227 7357 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7231 7361 7232 7362 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7233 auto;text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7363 auto;text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7234 7364 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7235 7365 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7236 7366 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Add 7237 restraints</b> – this takes you through a sequence of dialog boxes which ask for7238 the identities of the atoms involved in the restraint and the value to be7239 assigned to the restraint. The <span class=SpellE>esd</span> is given a default7240 value which can bechanged after the restraints are created.</p>7367 restraints</b> – this takes you through a sequence of dialog boxes which ask 7368 for the identities of the atoms involved in the restraint and the value to be 7369 assigned to the restraint. The esd is given a default value which can be 7370 changed after the restraints are created.</p> 7241 7371 7242 7372 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7243 auto;text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7373 auto;text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7244 7374 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7245 7375 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7247 7377 residue restraints</b> – if the phase is a ‘macromolecule’ then develop the 7248 7378 restraints from a selected ‘macro’ file based on those used in GSAS for this 7249 purpose. A file dialog box is shown directed to / <span class=SpellE>GSASIImacros</span>;7250 be sure toselect the correct file.</p>7379 purpose. A file dialog box is shown directed to /GSASIImacros; be sure to 7380 select the correct file.</p> 7251 7381 7252 7382 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7253 auto;text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7383 auto;text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7254 7384 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7255 7385 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7258 7388 7259 7389 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7260 auto;text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7390 auto;text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7261 7391 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7262 7392 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7275 7405 7276 7406 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7277 auto;text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7407 auto;text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7278 7408 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7279 7409 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7280 7410 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Change 7281 value</b> – this changes the ‘ <span class=SpellE>obsd</span>’ value for7282 selected restraints; a dialog boxwill appear asking for the new value. </p>7411 value</b> – this changes the ‘obsd’ value for selected restraints; a dialog box 7412 will appear asking for the new value. </p> 7283 7413 7284 7414 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7285 auto;text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7415 auto;text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7286 7416 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7287 7417 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7288 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Change <span 7289 class=SpellE>esd</span></b> – this changes the ‘<span class=SpellE>esd</span>’ 7290 value for selected restraints; a dialog box will appear asking for the new 7291 value.</p> 7418 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Change 7419 esd</b> – this changes the ‘esd’ value for selected restraints; a dialog box 7420 will appear asking for the new value.</p> 7292 7421 7293 7422 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 7294 text-indent:-.25in;mso-list:l5 0 level2 lfo26'><![if !supportLists]><span7423 text-indent:-.25in;mso-list:l52 level2 lfo27'><![if !supportLists]><span 7295 7424 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7296 7425 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7315 7444 style='mso-tab-count:1'> </span><o:p></o:p></span></h5> 7316 7445 7317 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo2 7'><![if !supportLists]><span7446 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo28'><![if !supportLists]><span 7318 7447 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7319 7448 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7322 7451 normal'>Edit’</b> menu depending on whether a rigid body has been defined.</p> 7323 7452 7324 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo2 7'><![if !supportLists]><span7453 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo28'><![if !supportLists]><span 7325 7454 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7326 7455 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7330 7459 7331 7460 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7332 auto;text-indent:-.25in;mso-list:l7 level2 lfo2 7'><![if !supportLists]><span7461 auto;text-indent:-.25in;mso-list:l7 level2 lfo28'><![if !supportLists]><span 7333 7462 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7334 7463 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7335 7464 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Add rigid 7336 7465 body</b> – (Vector rigid bodies) this creates a vector description of a rigid 7337 body. A dialog box asks the number of atoms (>2) and the number of vectors 7338 required to create the rigid body. An entry will be created showing a magnitude7339 with the vector set to be applied for each vector needed to develop the rigid 7340 body.<bstyle='mso-bidi-font-weight:normal'><o:p></o:p></b></p>7466 body. A dialog box asks the number of atoms (>2) and the number of vectors required 7467 to create the rigid body. An entry will be created showing a magnitude with the 7468 vector set to be applied for each vector needed to develop the rigid body.<b 7469 style='mso-bidi-font-weight:normal'><o:p></o:p></b></p> 7341 7470 7342 7471 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7343 auto;text-indent:-.25in;mso-list:l7 level2 lfo2 7'><![if !supportLists]><span7472 auto;text-indent:-.25in;mso-list:l7 level2 lfo28'><![if !supportLists]><span 7344 7473 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7345 7474 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7346 7475 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Import 7347 7476 XYZ</b> – (Residue rigid bodies) this reads a text file containing a set of 7348 Cartesian coordinates describing a rigid body model. Each line has atom type (<span7349 class=GramE>e.g.</span>C, Na, etc.) and Cartesian X, Y and Z.</p>7477 Cartesian coordinates describing a rigid body model. Each line has atom type 7478 (e.g. C, Na, etc.) and Cartesian X, Y and Z.</p> 7350 7479 7351 7480 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7352 auto;text-indent:-.25in;mso-list:l7 level2 lfo2 7'><![if !supportLists]><span7481 auto;text-indent:-.25in;mso-list:l7 level2 lfo28'><![if !supportLists]><span 7353 7482 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7354 7483 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7361 7490 7362 7491 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7363 auto;text-indent:-.25in;mso-list:l7 level2 lfo2 7'><![if !supportLists]><span7492 auto;text-indent:-.25in;mso-list:l7 level2 lfo28'><![if !supportLists]><span 7364 7493 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7365 7494 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7366 7495 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Import 7367 7496 residues</b> – (Residue rigid bodies) this reads a predetermined macro file 7368 that contains standard ( <span class=SpellE>Engh</span> & Huber) coordinates7369 for the amino acids found in natural proteins along with predetermined variable7370 torsion angledefinitions.</p>7371 7372 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo2 7'><![if !supportLists]><span7497 that contains standard (Engh & Huber) coordinates for the amino acids found 7498 in natural proteins along with predetermined variable torsion angle 7499 definitions.</p> 7500 7501 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo28'><![if !supportLists]><span 7373 7502 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7374 7503 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7375 7504 </span></span></span><![endif]>Once a rigid body is defined you can plot it, 7376 change its <span class=GramE>name</span> or manipulate any torsion angle to see 7377 the effect on the plot.</p> 7378 7379 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l7 level1 lfo27'><![if !supportLists]><span 7505 change its name or manipulate any torsion angle to see the effect on the plot.</p> 7506 7507 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l7 level1 lfo28'><![if !supportLists]><span 7380 7508 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7381 7509 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7389 7517 has been run. (See the <a href="#Controls">Controls tree item</a> to set the 7390 7518 histograms to be used in a sequential refinement and use the 7391 Calculate/Sequential refine menu command to run the refinement.) <span 7392 class=GramE>A number of</span> other fitting processes within GSAS-II can be 7393 done sequentially, each will have its own differently named set of sequential 7394 results When any one is selected, the window tabulates the sequential 7395 refinement results. The columns are the parameter names; the naming convention 7396 is generally ‘<span class=SpellE>p:h:<span class=GramE>name:n</span></span>’ 7397 where ‘p’ is the phase number,’ h’ is the histogram number, ‘name’ is the 7398 parameter name, and ‘n’ (if needed) is the item number (e.g. atom number). The 7399 rows are the data sets used in the sequential refinement.</p> 7519 Calculate/Sequential refine menu command to run the refinement.) A number of 7520 other fitting processes within GSAS-II can be done sequentially, each will have 7521 its own differently named set of sequential results When any one is selected, 7522 the window tabulates the sequential refinement results. The columns are the 7523 parameter names; the naming convention is generally ‘p:h:name:n’ where ‘p’ is 7524 the phase number,’ h’ is the histogram number, ‘name’ is the parameter name, 7525 and ‘n’ (if needed) is the item number (e.g. atom number). The rows are the 7526 data sets used in the sequential refinement.</p> 7400 7527 7401 7528 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> 7402 7529 7403 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 7 level1 lfo28'><![if !supportLists]><span7530 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l59 level1 lfo29'><![if !supportLists]><span 7404 7531 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7405 7532 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7408 7535 left mouse button will display its powder data fit.</p> 7409 7536 7410 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 7 level1 lfo28'><![if !supportLists]><span7537 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l59 level1 lfo29'><![if !supportLists]><span 7411 7538 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7412 7539 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7416 7543 subsequent picks) will plot all as individual curves.</p> 7417 7544 7418 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 7 level1 lfo28'><![if !supportLists]><span7545 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l59 level1 lfo29'><![if !supportLists]><span 7419 7546 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7420 7547 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7422 7549 7423 7550 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7424 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7551 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7425 7552 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7426 7553 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7430 7557 7431 7558 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7432 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7559 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7433 7560 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7434 7561 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7439 7566 7440 7567 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7441 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7568 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7442 7569 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7443 7570 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7444 </span></span></span><![endif]><b>Set phase <span class=SpellE>vals</span></b>7445 – same as previous exceptyou can pick which parameters to update.</p>7571 </span></span></span><![endif]><b>Set phase vals</b> – same as previous except 7572 you can pick which parameters to update.</p> 7446 7573 7447 7574 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7448 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7575 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7449 7576 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7450 7577 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7453 7580 7454 7581 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7455 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7582 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7456 7583 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7457 7584 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7460 7587 7461 7588 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7462 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7589 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7463 7590 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7464 7591 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7467 7594 7468 7595 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7469 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7596 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7470 7597 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7471 7598 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7474 7601 7475 7602 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7476 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7603 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7477 7604 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7478 7605 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7479 </span></span></span><![endif]><b>Compute average</b> – gives average( <span7480 class=SpellE>esd</span>) forselected column values.</p>7606 </span></span></span><![endif]><b>Compute average</b> – gives average(esd) for 7607 selected column values.</p> 7481 7608 7482 7609 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7483 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7610 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7484 7611 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7485 7612 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7489 7616 7490 7617 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7491 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7618 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7492 7619 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7493 7620 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7495 7622 all table entries.</p> 7496 7623 7497 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 7 level1 lfo28'><![if !supportLists]><span7624 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l59 level1 lfo29'><![if !supportLists]><span 7498 7625 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7499 7626 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7504 7631 7505 7632 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7506 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7633 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7507 7634 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7508 7635 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7511 7638 7512 7639 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7513 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7640 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7514 7641 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7515 7642 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7518 7645 7519 7646 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7520 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7647 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7521 7648 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7522 7649 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7525 7652 7526 7653 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7527 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7654 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7528 7655 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7529 7656 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7532 7659 7533 7660 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7534 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7661 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7535 7662 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7536 7663 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7538 7665 – to change a selected formula.</p> 7539 7666 7540 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 7 level1 lfo28'><![if !supportLists]><span7667 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l59 level1 lfo29'><![if !supportLists]><span 7541 7668 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7542 7669 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7547 7674 7548 7675 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7549 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7676 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7550 7677 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7551 7678 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7552 7679 </span></span></span><![endif]><b>Add equation</b><span style='mso-bidi-font-weight: 7553 7680 bold'> – add a parametric fitting equation. At the end of this step, it will be 7554 used to give refined values of the coefficients with <span class=SpellE>esds</span>7555 based of a full error propagation from the variance-covariance matrices from 7556 the individualrefinements.</span></p>7681 used to give refined values of the coefficients with esds based of a full error 7682 propagation from the variance-covariance matrices from the individual 7683 refinements.</span></p> 7557 7684 7558 7685 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7559 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7686 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7560 7687 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7561 7688 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7564 7691 7565 7692 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7566 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7693 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7567 7694 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7568 7695 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7571 7698 7572 7699 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7573 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7700 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7574 7701 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7575 7702 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7578 7705 7579 7706 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7580 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7707 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7581 7708 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7582 7709 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7584 7711 bold'> – do the fitting of the parametric equations to the data.</span></p> 7585 7712 7586 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 7 level1 lfo28'><![if !supportLists]><span7713 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l59 level1 lfo29'><![if !supportLists]><span 7587 7714 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7588 7715 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> … … 7591 7718 7592 7719 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7593 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7720 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7594 7721 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7595 7722 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7596 7723 </span></span></span><![endif]><b>Project as</b> – <span style='mso-bidi-font-weight: 7597 bold'>only choice is as a full <span class=SpellE>cif</span>file.</span></p>7724 bold'>only choice is as a full cif file.</span></p> 7598 7725 7599 7726 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7600 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7727 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7601 7728 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7602 7729 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7603 </span></span></span><![endif]><b>Phase as</b> – either a “quick’ <span7604 class=SpellE>cif</span> or a CSVfile</p>7730 </span></span></span><![endif]><b>Phase as</b> – either a “quick’ cif or a CSV 7731 file</p> 7605 7732 7606 7733 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7607 auto;text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7734 auto;text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7608 7735 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7609 7736 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7610 </span></span></span><![endif]><b>Powder as</b> – either a powder pattern <span7611 class=SpellE>cif</span>,a histogram CSV file or a reflection list CSV file.</p>7737 </span></span></span><![endif]><b>Powder as</b> – either a powder pattern cif, 7738 a histogram CSV file or a reflection list CSV file.</p> 7612 7739 7613 7740 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto; 7614 text-indent:-.25in;mso-list:l5 7 level2 lfo28'><![if !supportLists]><span7741 text-indent:-.25in;mso-list:l59 level2 lfo29'><![if !supportLists]><span 7615 7742 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span 7616 7743 style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> … … 7626 7753 error from the fit for that value. There are some key commands:</p> 7627 7754 7628 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l1 level1 lfo 46;7755 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l1 level1 lfo30; 7629 7756 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7630 7757 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7634 7761 lines between the data points</p> 7635 7762 7636 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l1 level1 lfo 46;7763 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l1 level1 lfo30; 7637 7764 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7638 7765 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7641 7768 </span></span></span><![endif]>Press ‘s’ – this presents a choice of parameters 7642 7769 from the table columns to be used for the x-axis. Typically, this is used to 7643 show parameter variation with <span class=GramE>e.g.</span>temperature.</p>7644 7645 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l1 level1 lfo 46;7770 show parameter variation with e.g. temperature.</p> 7771 7772 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l1 level1 lfo30; 7646 7773 tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt; 7647 7774 mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol; … … 7651 7778 titles of the plot.</p> 7652 7779 7780 <p class=MsoNormal><o:p> </o:p></p> 7781 7782 <h4><a name=Programmers></a><a name="Cluster_Analysis"><span style='mso-bookmark: 7783 Programmers'>Cluster Analysis</span></a></h4> 7784 7785 <span style='mso-bookmark:Programmers'></span><span style='mso-bookmark:Cluster_Analysis'></span> 7786 7787 <p class=MsoNormal>Cluster analysis is a suite of data survey techniques where 7788 data are grouped by some measure of their similarity. Thus, it can be used as a 7789 preliminary survey of a large number of data sets in e.g. preparation of 7790 detailed examination of representative members. In the case of powder 7791 diffraction pattern (PWDR) data or pair distribution (PDF) data, their 7792 similarity is determined by considering each pattern as a hyper-dimensional 7793 vector with one dimension for each data point and then computing some measure 7794 of how parallel pairs of these vectors are. Consequently, it can be used to 7795 survey PWDR data entries that have identical scan characteristics (e.g. 7796 instrument type, step size, radiation type, wavelength) or multiple PDF G(R) 7797 entries created with the same step sizes and using the same radiation from data 7798 collected with identical instrument configurations. Cluster analysis is 7799 available in GSAS-II after it is initiated by the main menu command <b><span 7800 style='font-family:"Calibri",sans-serif;mso-ascii-theme-font:minor-latin; 7801 mso-hansi-theme-font:minor-latin;mso-bidi-theme-font:minor-latin'>Calculate/Setup 7802 Cluster Analysis. </span></b>The cluster analysis routines used here are from 7803 the scipy library and (if available) the scikit-learn library.<span 7804 style='mso-spacerun:yes'> </span>If scikit-learn is absent, an attempt is 7805 automatically made to install the latter via the conda system from Anaconda. 7806 The scipy library provides some cluster analysis tools while the scikit-learn 7807 package provides others. If you use results from scikit-learn, please cite the 7808 following in any publication that uses it:</p> 7809 7810 <p class=MsoNormal><o:p> </o:p></p> 7811 7812 <p class=MsoNormal>“Scikit-learn: Machine Learning in Python”, Pedregosa, F., 7813 Varoquaux, G., Gramfort, A., Michel, V., Thirion, B., Grisel, O., Blondel, M., 7814 Prettenhofer, P., Weiss, R., Dubourg, V., Vanderplas, J., Passos, A., 7815 Cournapeau, D., Brucher, M., Perrot, M. and Duchesnay, E., (2011).</p> 7816 7817 <p class=MsoNormal><span style='mso-spacerun:yes'> </span>Journal of Machine 7818 Learning Research 12, 2825-2830.</p> 7819 7820 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5> 7821 7822 <p class=MsoNormal>Doing cluster analysis in GSAS-II requires several steps; 7823 new steps will become visible in the GUI as previous ones are completed. Redoing 7824 earlier steps may clear subsequent ones. In order of their appearance, the 7825 following GUI commands are:</p> 7826 7827 <p class=MsoNormal><o:p> </o:p></p> 7828 7829 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l39 level1 lfo31'><![if !supportLists]><span 7830 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7831 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7832 </span></span></span><![endif]><b>Select datasets</b> – this brings up a 7833 selection tool for PWDR (& PDF, if present) entries in the GSAS-II data tree. 7834 Your selection must be either PWDR or PDF data; otherwise there is no check on 7835 data similarity so be careful with your selections. Multi-bank TOF data should 7836 not be mixed for cluster analysis nor should laboratory and synchrotron data. 7837 Cluster analysis on fewer than 5-10 data sets is probably not useful but should 7838 be used when you have dozens or even hundreds of data sets.</p> 7839 7840 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l39 level1 lfo31'><![if !supportLists]><span 7841 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7842 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7843 </span></span></span><![endif]><b>Data limits </b>– selection of data is 7844 followed by entries for the minimum and maximum data limits; the defaults are 7845 taken from the data Limits imposed on the original PWDR data or the r-range for 7846 the PDF G(R) data. The units are degrees 2<span style='font-family:Symbol; 7847 mso-ascii-font-family:"Times New Roman";mso-hansi-font-family:"Times New Roman"; 7848 mso-char-type:symbol;mso-symbol-font-family:Symbol'><span style='mso-char-type: 7849 symbol;mso-symbol-font-family:Symbol'>Q</span></span>, TOF in μs, or <span 7850 style='font-family:"Calibri",sans-serif'>Å, </span>as appropriate. Refer to any 7851 PWDR (or PDF) plot to select these values; leading background should be 7852 skipped, and the upper limit chosen from a relatively clear point where there 7853 are still significant peaks. Values will be used to give the cluster analysis 7854 input data matrix size.</p> 7855 7856 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l39 level1 lfo31'><![if !supportLists]><span 7857 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7858 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7859 </span></span></span><![endif]><b>Make Cluster Analysis data array </b>– this 7860 button forms the data matrix for cluster analysis; it is number of data sets 7861 times number of data points between the limits in size. the next item will 7862 appear in the GUI.</p> 7863 7864 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l39 level1 lfo31'><![if !supportLists]><span 7865 style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: 7866 Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'> 7867 </span></span></span><![endif]><b>Select cluster analysis distance method </b>– 7868 there are several choices as what is meant by “distance” between all pairwise 7869 selection of data vectors (u & v). They are (as taken from scipy):</p> 7870 7871 <p style='margin-top:0in;margin-right:0in;margin-bottom:5.0pt;margin-left:1.0in; 7872 text-indent:-.25in;mso-list:l39 level2 lfo31;background:white'><![if !supportLists]><span 7873 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"; 7874 color:#4A4A4A;mso-color-alt:windowtext'><span style='mso-list:Ignore'>o<span 7875 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]><b><span 7876 style='color:black;mso-color-alt:windowtext'>braycurtis – </span></b><span 7877 style='color:#4A4A4A'>Computes the Bray-Curtis distance between the data 7878 vectors as<o:p></o:p></span></p> 7879 7880 <p style='margin-top:0in;margin-right:0in;margin-bottom:5.0pt;margin-left:1.0in; 7881 background:white'><!--[if gte msEquation 12]><m:oMathPara><m:oMathParaPr><m:jc 7882 m:val="left"/></m:oMathParaPr><m:oMath><i style='mso-bidi-font-style:normal'><span 7883 style='font-family:"Cambria Math",serif;color:#4A4A4A'><svg xmlns:xlink="http://www.w3.org/1999/xlink" width="22.282ex" height="6.305ex" viewBox="0 -1606.2 9593.7 2714.6" role="img" focusable="false" style="vertical-align: -2.574ex;" aria-hidden="true"><g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)"><use xlink:href="#MJMATHI-64" x="0" y="0"></use><use xlink:href="#MJMAIN-28" x="523" y="0"></use><use xlink:href="#MJMATHI-75" x="913" y="0"></use><use xlink:href="#MJMAIN-2C" x="1485" y="0"></use><use xlink:href="#MJMATHI-76" x="1930" y="0"></use><use xlink:href="#MJMAIN-29" x="2416" y="0"></use><use xlink:href="#MJMAIN-3D" x="3083" y="0"></use><g transform="translate(3861,0)"><g transform="translate(397,0)"><rect stroke="none" width="5214" height="60" x="0" y="220"></rect><g transform="translate(60,773)"><use xlink:href="#MJSZ1-2211" x="0" y="0"></use><use transform="scale(0.707)" xlink:href="#MJMATHI-69" x="1494" y="-405"></use><g transform="translate(1567,0)"><use xlink:href="#MJMAIN-7C" x="0" y="0"></use><g transform="translate(278,0)"><use xlink:href="#MJMATHI-75" x="0" y="0"></use><use transform="scale(0.707)" xlink:href="#MJMATHI-69" x="809" y="-213"></use></g><use xlink:href="#MJMAIN-2212" x="1417" y="0"></use><g transform="translate(2418,0)"><use xlink:href="#MJMATHI-76" x="0" y="0"></use><use transform="scale(0.707)" xlink:href="#MJMATHI-69" x="686" y="-213"></use></g><use xlink:href="#MJMAIN-7C" x="3248" y="0"></use></g></g><g transform="translate(60,-730)"><use xlink:href="#MJSZ1-2211" x="0" y="0"></use><use transform="scale(0.707)" xlink:href="#MJMATHI-69" x="1494" y="-405"></use><g transform="translate(1567,0)"><use xlink:href="#MJMAIN-7C" x="0" y="0"></use><g transform="translate(278,0)"><use xlink:href="#MJMATHI-75" x="0" y="0"></use><use transform="scale(0.707)" xlink:href="#MJMATHI-69" x="809" y="-213"></use></g><use xlink:href="#MJMAIN-2B" x="1417" y="0"></use><g transform="translate(2418,0)"><use xlink:href="#MJMATHI-76" x="0" y="0"></use><use transform="scale(0.707)" xlink:href="#MJMATHI-69" x="686" y="-213"></use></g><use xlink:href="#MJMAIN-7C" x="3248" y="0"></use></g></g></g></g></g></svg><span 7884 role=presentation style='box-sizing: border-box;user-select: none;transition: none 0s ease 0s; 7885 clip:rect(1px, 1px, 1px, 1px);overflow:hidden'><m:r><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><mi><span 7886 tabindex=0 data-mathml="<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><mi>d</mi><mo stretchy="false">(</mo><mi>u</mi><mo>,</mo><mi>v</mi><mo stretchy="false">)</mo><mo>=</mo><mfrac><mrow><munder><mo>&#x2211;</mo><mi>i</mi></munder><mrow class="MJX-TeXAtom-ORD"><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow><msub><mi>u</mi><mi>i</mi></msub><mo>&#x2212;</mo><msub><mi>v</mi><mi>i</mi></msub><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow></mrow></mrow><mrow><munder><mo>&#x2211;</mo><mi>i</mi></munder><mrow class="MJX-TeXAtom-ORD"><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow><msub><mi>u</mi><mi>i</mi></msub><mo>+</mo><msub><mi>v</mi><mi>i</mi></msub><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow></mrow></mrow></mfrac></math>" 7887 role=presentation style='box-sizing: border-box;display:inline-block; 7888 overflow-wrap: normal;max-width:none;max-height: none;min-width: 0px; 7889 min-height: 0px;float:none;word-spacing:normal' id=MathJax-Element-27-Frame>d</span></m:r></span></span></i><m:d><m:dPr><span 7890 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7891 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7892 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><i 7893 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7894 color:#4A4A4A'><m:r>u</m:r><m:r>,</m:r><m:r>v</m:r></span></i></m:e></m:d><i 7895 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7896 color:#4A4A4A'><m:r>= </m:r></span></i><m:f><m:fPr><span style='font-family: 7897 "Cambria Math",serif;mso-ascii-font-family:"Cambria Math";mso-hansi-font-family: 7898 "Cambria Math";color:#4A4A4A;font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:fPr><m:num><m:nary><m:naryPr><m:chr 7899 m:val="∑"/><m:limLoc m:val="subSup"/><m:supHide m:val="on"/><span 7900 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7901 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7902 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:naryPr><m:sub><i 7903 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7904 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub><m:sup></m:sup><m:e><m:d><m:dPr><m:begChr 7905 m:val="|"/><m:endChr m:val="|"/><span style='font-family:"Cambria Math",serif; 7906 mso-ascii-font-family:"Cambria Math";mso-hansi-font-family:"Cambria Math"; 7907 color:#4A4A4A;font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><m:sSub><m:sSubPr><span 7908 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7909 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7910 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i 7911 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7912 color:#4A4A4A'><m:r>u</m:r></span></i></m:e><m:sub><i 7913 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7914 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub></m:sSub><i 7915 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7916 color:#4A4A4A'><m:r>-</m:r></span></i><m:sSub><m:sSubPr><span 7917 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7918 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7919 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i 7920 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7921 color:#4A4A4A'><m:r>v</m:r></span></i></m:e><m:sub><i 7922 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7923 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub></m:sSub></m:e></m:d></m:e></m:nary></m:num><m:den><m:nary><m:naryPr><m:chr 7924 m:val="∑"/><m:limLoc m:val="subSup"/><m:supHide m:val="on"/><span 7925 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7926 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7927 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:naryPr><m:sub><i 7928 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7929 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub><m:sup></m:sup><m:e><m:d><m:dPr><m:begChr 7930 m:val="|"/><m:endChr m:val="|"/><span style='font-family:"Cambria Math",serif; 7931 mso-ascii-font-family:"Cambria Math";mso-hansi-font-family:"Cambria Math"; 7932 color:#4A4A4A;font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><m:sSub><m:sSubPr><span 7933 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7934 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7935 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i 7936 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7937 color:#4A4A4A'><m:r>u</m:r></span></i></m:e><m:sub><i 7938 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7939 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub></m:sSub><i 7940 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7941 color:#4A4A4A'><m:r>+</m:r></span></i><m:sSub><m:sSubPr><span 7942 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7943 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7944 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i 7945 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7946 color:#4A4A4A'><m:r>v</m:r></span></i></m:e><m:sub><i 7947 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7948 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub></m:sSub></m:e></m:d></m:e></m:nary></m:den></m:f></m:oMath></m:oMathPara><![endif]--><![if !msEquation]><span 7949 style='font-size:11.0pt;line-height:107%;font-family:"Calibri",sans-serif; 7950 mso-ascii-theme-font:minor-latin;mso-fareast-font-family:"Times New Roman"; 7951 mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin; 7952 mso-bidi-font-family:"Times New Roman";mso-bidi-theme-font:minor-bidi; 7953 mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA'><!--[if gte vml 1]><v:shape 7954 id="_x0000_i1025" type="#_x0000_t75" style='width:108.75pt;height:44.25pt'> 7955 <v:imagedata src="gsasII_files/image028.png" o:title="" chromakey="white"/> 7956 </v:shape><![endif]--><![if !vml]><img width=145 height=59 7957 src="gsasII_files/image029.png" v:shapes="_x0000_i1025"><![endif]></span><![endif]><span 7958 style='font-family:"Cambria Math",serif;color:#4A4A4A'><o:p></o:p></span></p> 7959 7960 <p class=MsoListParagraphCxSpFirst style='margin-left:1.0in;mso-add-space:auto; 7961 text-indent:-.25in;mso-list:l39 level2 lfo31'><![if !supportLists]><span 7962 style='font-family:"Courier New";mso-fareast-font-family:"Courier New"; 7963 color:#4A4A4A'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'> 7964 </span></span></span><![endif]><b><span tabindex=0 data-mathml="<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><mi>d</mi><mo stretchy="false">(</mo><mi>u</mi><mo>,</mo><mi>v</mi><mo stretchy="false">)</mo><mo>=</mo><mfrac><mrow><munder><mo>&#x2211;</mo><mi>i</mi></munder><mrow class="MJX-TeXAtom-ORD"><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow><msub><mi>u</mi><mi>i</mi></msub><mo>&#x2212;</mo><msub><mi>v</mi><mi>i</mi></msub><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow></mrow></mrow><mrow><munder><mo>&#x2211;</mo><mi>i</mi></munder><mrow class="MJX-TeXAtom-ORD"><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow><msub><mi>u</mi><mi>i</mi></msub><mo>+</mo><msub><mi>v</mi><mi>i</mi></msub><mrow class="MJX-TeXAtom-ORD"><mo stretchy="false">|</mo></mrow></mrow></mrow></mfrac></math>" 7965 role=presentation style='box-sizing: border-box;display:inline-block; 7966 overflow-wrap: normal;max-width:none;max-height: none;min-width: 0px; 7967 min-height: 0px;float:none;word-spacing:normal' id=MathJax-Element-27-Frame><span 7968 style='color:#4A4A4A'>canberra</span> – </span></b><span style='color:#4A4A4A'>Computes 7969 the Canberra distance between data vectors as:<o:p></o:p></span></p> 7970 7971 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space: 7972 auto'><!--[if gte msEquation 12]><m:oMathPara><m:oMathParaPr><m:jc m:val="left"/></m:oMathParaPr><m:oMath><i 7973 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7974 color:#4A4A4A'><m:r>d</m:r></span></i><m:d><m:dPr><span style='font-family: 7975 "Cambria Math",serif;mso-ascii-font-family:"Cambria Math";mso-hansi-font-family: 7976 "Cambria Math";color:#4A4A4A;font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><i 7977 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7978 color:#4A4A4A'><m:r>u</m:r><m:r>,</m:r><m:r>v</m:r></span></i></m:e></m:d><i 7979 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7980 color:#4A4A4A'><m:r>= </m:r></span></i><m:nary><m:naryPr><m:chr m:val="∑"/><m:limLoc 7981 m:val="undOvr"/><m:supHide m:val="on"/><span style='font-family:"Cambria Math",serif; 7982 mso-ascii-font-family:"Cambria Math";mso-hansi-font-family:"Cambria Math"; 7983 color:#4A4A4A;font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:naryPr><m:sub><i 7984 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7985 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub><m:sup></m:sup><m:e><m:f><m:fPr><span 7986 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7987 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7988 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:fPr><m:num><m:d><m:dPr><m:begChr 7989 m:val="|"/><m:endChr m:val="|"/><span style='font-family:"Cambria Math",serif; 7990 mso-ascii-font-family:"Cambria Math";mso-hansi-font-family:"Cambria Math"; 7991 color:#4A4A4A;font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><m:sSub><m:sSubPr><span 7992 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 7993 mso-hansi-font-family:"Cambria Math";color:#4A4A4A;font-style:italic; 7994 mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i 7995 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7996 color:#4A4A4A'><m:r>u</m:r></span></i></m:e><m:sub><i 7997 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 7998 color:#4A4A4A'><m:r>i</m:r></span></i></m:sub></m:sSub><i 7999 style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math",serif; 8000 color:#4A4A4A'><m:r>-</m:r></span></i><m:sSub><m:sSubPr><span 8001 style='font-family:"Cambria Math",serif;mso-ascii-font-family:"Cambria Math"; 8002 mso-hansi-font-family:"Cambria Math";color:#4A