Changeset 3135
- Timestamp:
- Oct 15, 2017 7:50:23 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r3075 r3135 4482 4482 ################################################################################ 4483 4483 G2BaseURL = "https://subversion.xray.aps.anl.gov/pyGSAS" 4484 # N.B. tutorialCatalog is generated by routine catalog.py, which also generates the appropriate 4485 # empty directories (.../MT/* .../trunk/GSASII/* *=[help,Exercises]) 4486 tutorialCatalog = ( 4484 tutorialIndex = ( 4487 4485 # tutorial dir, web page file name, title for page 4488 4486 ['Getting started'], 4489 4487 ['StartingGSASII', 'Starting GSAS.htm', 'Starting GSAS-II'], 4488 4489 ['Rietveld fitting'], 4490 4490 4491 4491 ['LabData', 'Laboratory X.htm', 'Fitting laboratory X-ray powder data for fluoroapatite'], 4492 4492 ['CWNeutron', 'Neutron CW Powder Data.htm', 'CW Neutron Powder fit for Yttrium-Iron Garnet'], 4493 4493 ['CWCombined', 'Combined refinement.htm', 'Combined X-ray/CW-neutron refinement of PbSO4'], 4494 ['TOF-CW Joint Refinement', 'TOF combined XN Rietveld refinement in GSAS.htm', 'Combined X-ray/TOF-neutron Rietveld refinement'], 4495 ['BkgFit', 'FitBkgTut.htm', 'Fitting the Starting Background using Fixed Points'], 4496 4497 ['Parametric Rietveld fitting'], 4498 ['SeqRefine', 'SequentialTutorial.htm', 'Sequential refinement of multiple datasets'], 4499 ['SeqParametric', 'ParametricFitting.htm', ' Parametric Fitting and Pseudo Variables for Sequential Fits'], 4500 4501 ['Structure solution'], 4494 4502 ['FitPeaks', 'Fit Peaks.htm', 'Fitting individual peaks & autoindexing'], 4495 4503 ['CFjadarite', 'Charge Flipping in GSAS.htm', ' Charge Flipping structure solution for jadarite'], 4496 4504 ['CFsucrose', 'Charge Flipping - sucrose.htm',' Charge Flipping structure solution for sucrose'], 4497 ['BkgFit', 'FitBkgTut.htm', 'Fitting the Starting Background using Fixed Points'], 4498 4499 ['CWCombined', 'Combined refinement.htm', 'Combined X-ray/CW-neutron refinement of PbSO4'], 4500 ['TOF-CW Joint Refinement', 'TOF combined XN Rietveld refinement in GSAS.htm', 'Combined X-ray/TOF-neutron Rietveld refinement'], 4501 ['SeqRefine', 'SequentialTutorial.htm', 'Sequential refinement of multiple datasets'], 4502 ['SeqParametric', 'ParametricFitting.htm', ' Parametric Fitting and Pseudo Variables for Sequential Fits'], 4503 4505 ['CFXraySingleCrystal', 'CFSingleCrystal.htm', 'Charge Flipping structure solution with Xray single crystal data'], 4506 ['TOF Charge Flipping', 'Charge Flipping with TOF single crystal data in GSASII.htm', 'Charge flipping with neutron TOF single crystal data'], 4507 ['MCsimanneal', 'MCSA in GSAS.htm', 'Monte-Carlo simulated annealing structure determination'], 4508 4509 ['Stacking Fault Modeling'], 4504 4510 ['StackingFaults-I', 'Stacking Faults-I.htm', 'Stacking fault simulations for diamond'], 4505 4511 ['StackingFaults-II', 'Stacking Faults II.htm', 'Stacking fault simulations for Keokuk kaolinite'], 4506 4512 ['StackingFaults-III', 'Stacking Faults-III.htm', 'Stacking fault simulations for Georgia kaolinite'], 4507 4508 ['CFXraySingleCrystal', 'CFSingleCrystal.htm', 'Charge Flipping structure solution with Xray single crystal data'], 4509 ['TOF Charge Flipping', 'Charge Flipping with TOF single crystal data in GSASII.htm', 'Charge flipping with neutron TOF single crystal data'], 4510 ['MCsimanneal', 'MCSA in GSAS.htm', 'Monte-Carlo simulated annealing structure determination'], 4511 4512 ['MerohedralTwins', 'Merohedral twin refinement in GSAS.htm', 'Merohedral twin refinements'], 4513 4513 4514 ['Image Calibration/Integration'], 4514 4515 ['2DCalibration', 'Calibration of an area detector in GSAS.htm', 'Calibration of an area detector'], 4515 4516 ['2DIntegration', 'Integration of area detector data in GSAS.htm', ' Integration of area detector data'], 4516 4517 ['TOF Calibration', 'Calibration of a TOF powder diffractometer.htm', 'Calibration of a Neutron TOF diffractometer'], 4517 ['TOF Single Crystal Refinement', 'TOF single crystal refinement in GSAS.htm', 'Single crystal refinement from TOF data'], 4518 4518 4519 ['Small-Angle Scattering'], 4519 4520 ['2DStrain', 'Strain fitting of 2D data in GSAS-II.htm', 'Strain fitting of 2D data'], 4520 4521 ['2DTexture', 'Texture analysis of 2D data in GSAS-II.htm', 'Texture analysis of 2D data'], … … 4524 4525 ['SAimages', 'Small Angle Image Processing.htm', 'Image Processing of small angle x-ray data'], 4525 4526 ['SAseqref', 'Sequential Refinement of Small Angle Scattering Data.htm', 'Sequential refinement with small angle scattering data'], 4527 4528 ['Other'], 4529 ['MerohedralTwins', 'Merohedral twin refinement in GSAS.htm', 'Merohedral twin refinements'], 4530 ['TOF Single Crystal Refinement', 'TOF single crystal refinement in GSAS.htm', 'Single crystal refinement from TOF data'], 4531 ['PythonScript','Scripting.htm','Scripting a GSAS-II Refinement from Python'] 4526 4532 4527 4533 #['ExampleDir', 'ExamplePage.html', 'Example Tutorial Title'], 4528 4534 ) 4535 tutorialCatalog = [l for l in tutorialIndex if len(l) == 3] 4529 4536 4530 4537 class OpenTutorial(wx.Dialog): -
trunk/GSASIIpath.py
r3129 r3135 484 484 items = [prefix,bits,pyver] 485 485 return '_'.join(items) 486 487 def svnList(URL,verbose=True): 488 '''Get a list of subdirectories from and svn repository 489 ''' 490 svn = whichsvn() 491 if not svn: 492 print('**** unable to load files: svn not found ****') 493 return '' 494 # get binaries matching the required type -- other than for the numpy version 495 cmd = [svn, 'list', URL,'--non-interactive', '--trust-server-cert'] 496 if proxycmds: cmd += proxycmds 497 if verbose: 498 s = 'Running svn command:\n ' 499 for i in cmd: s += i + ' ' 500 print(s) 501 p = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 502 res,err = p.communicate() 503 return res 486 504 487 505 def DownloadG2Binaries(g2home,verbose=True): -
trunk/help/gsasII.html
r3128 r3135 3160 3160 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This 3161 3161 is where to find help on various GSAS-II windows and plots. Note that GSAS-II 3162 operates with four windows: the main <a href="#Data_tree">GSAS-II data tree</a> 3163 window, which provides a hierarchical view of the current project; the <a 3164 href="#Data_Frame">GSAS-II data editing</a> window, which shows the contents of 3162 operates with three windows: the main <a href="#Data_tree">GSAS-II data tree</a> 3163 section, which provides a hierarchical view of the current project on 3164 the left and the <a 3165 href="#Data_Frame">GSAS-II data editing</a> section, which shows the contents of 3165 3166 a particular section of the project, where values can be examined and changed; 3166 the <a href="#Plots">GSAS-II Plots</a> window, which shows graphical3167 representations of the results ; and the consolewhich has printout information3167 The second is the <a href="#Plots">GSAS-II Plots</a> window, which shows graphical 3168 representations of the results. The third is a console window, which has printout information 3168 3169 that can be selected, cut & pasted into a document. <o:p></o:p></span></p> 3169 3170 … … 3193 3194 3194 3195 3195 <h2><a name="Tutorials"><strong>GSAS-II tutorials</strong></a><strong>:<o:p></o:p></strong></h2> 3196 3197 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>The 3198 best way to learn about GSAS-II is to work through tutorials, which shows how 3199 to use different sections of the program. A list appears below. These tutorials 3200 can be viewed as web pages using the links below, but to actually perform the 3201 tutorial exercises, the sample data needs to be downloaded, which can be done 3202 most easily using the </span><b style='mso-bidi-font-weight:normal'><span 3203 style='font-family:"Calibri",sans-serif;mso-ascii-theme-font:minor-latin; 3204 mso-fareast-font-family:"Times New Roman";mso-hansi-theme-font:minor-latin; 3205 mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin'>Help/Download 3206 tutorial </span></b><span style='mso-fareast-font-family:"Times New Roman"'>menu 3207 entry. When this menu entry is used from inside GSAS-II (unless browse on web 3208 -- data not loaded is selected), data files (and optionally the web pages for 3209 off-line use) are downloaded. <o:p></o:p></span></p> 3210 3211 <p><i>Getting started</i></p> 3212 3213 <ul type=disc> 3214 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3215 mso-list:l4 level1 lfo1;tab-stops:list .5in'><strong><span 3216 style='mso-fareast-font-family:"Times New Roman"'><a 3217 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StartingGSASII/Starting%20GSAS.htm"><span 3218 style='font-weight:normal'>Starting GSAS-II </span></a></span></strong><span 3219 style='mso-fareast-font-family:"Times New Roman"'>(no exercise files)<o:p></o:p></span></li> 3220 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3221 mso-list:l4 level1 lfo1;tab-stops:list .5in'><strong><span 3222 style='mso-fareast-font-family:"Times New Roman"'><a 3223 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/FitPeaks/Fit%20Peaks.htm"><span 3224 style='font-weight:normal'>Fitting individual peaks & autoindexing </span></a></span></strong><span 3225 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3226 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/FitPeaks/data">exercise 3227 files</a>)<o:p></o:p></span></li> 3228 </ul> 3229 3230 <p><i>Rietveld fitting</i></p> 3231 3232 <ul type=disc> 3233 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3234 mso-list:l25 level1 lfo2;tab-stops:list .5in'><strong><span 3235 style='mso-fareast-font-family:"Times New Roman"'><a 3236 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CWNeutron/Neutron%20CW%20Powder%20Data.htm"><span 3237 style='font-weight:normal'>CW Neutron Powder fit for Yttrium-Iron Garnet </span></a></span></strong><span 3238 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3239 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CWNeutron/data">exercise 3240 files</a>)<o:p></o:p></span></li> 3241 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3242 mso-list:l25 level1 lfo2;tab-stops:list .5in'><strong><span 3243 style='mso-fareast-font-family:"Times New Roman"'><a 3244 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/LabData/Laboratory%20X.htm"><span 3245 style='font-weight:normal'>Fitting laboratory X-ray powder data for 3246 fluoroapatite </span></a></span></strong><span style='mso-fareast-font-family: 3247 "Times New Roman"'>(Link to <a 3248 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/LabData/data">exercise 3249 files</a>)<o:p></o:p></span></li> 3250 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3251 mso-list:l25 level1 lfo2;tab-stops:list .5in'><strong><span 3252 style='mso-fareast-font-family:"Times New Roman"'><a 3253 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CWCombined/Combined%20refinement.htm"><span 3254 style='font-weight:normal'>Combined X-ray/CW-neutron refinement of PbSO4 </span></a></span></strong><span 3255 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3256 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CWCombined/data">exercise 3257 files</a>)<o:p></o:p></span></li> 3258 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3259 mso-list:l25 level1 lfo2;tab-stops:list .5in'><strong><span 3260 style='mso-fareast-font-family:"Times New Roman"'><a 3261 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF-CW%20Joint%20Refinement/TOF%20combined%20XN%20Rietveld%20refinement%20in%20GSAS.htm"><span 3262 style='font-weight:normal'>Combined X-ray/TOF-neutron Rietveld refinement </span></a></span></strong><span 3263 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3264 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF-CW%20Joint%20Refinement/data">exercise 3265 files</a>)<o:p></o:p></span></li> 3266 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3267 mso-list:l4 level1 lfo1;tab-stops:list .5in'><strong><span 3268 style='mso-fareast-font-family:"Times New Roman"'><a 3269 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/BkgFit/FitBkgTut.htm"><span 3270 style='font-weight:normal'>Fitting the Starting Background using Fixed 3271 Points </span></a></span></strong><span style='mso-fareast-font-family: 3272 "Times New Roman"'>(Link to <a 3273 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/BkgFit//data">exercise 3274 files</a>)<o:p></o:p></span></li> 3275 </ul> 3276 3277 <p><i>Large-scale Rietveld fitting</i></p> 3278 3279 <ul type=disc> 3280 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3281 mso-list:l25 level1 lfo2;tab-stops:list .5in'><strong><span 3282 style='mso-fareast-font-family:"Times New Roman"'><a 3283 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SeqRefine/SequentialTutorial.htm"><span 3284 style='font-weight:normal'>Sequential refinement of multiple datasets </span></a></span></strong><span 3285 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3286 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SeqRefine/data">exercise 3287 files</a>)<o:p></o:p></span></li> 3288 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3289 mso-list:l25 level1 lfo2;tab-stops:list .5in'><strong><span 3290 style='mso-fareast-font-family:"Times New Roman"'><a 3291 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SeqParametric/ParametricFitting.htm"><span 3292 style='font-weight:normal'>Parametric Fitting and Pseudo Variables for 3293 Sequential Fits </span></a></span></strong><span style='mso-fareast-font-family: 3294 "Times New Roman"'>(no exercise files)<o:p></o:p></span></li> 3295 </ul> 3296 <p><i>Stacking Fault Modeling</i></p> 3297 3298 <ul type=disc> 3299 3300 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3301 mso-list:l4 level1 lfo1;tab-stops:list .5in'><strong><span 3302 style='mso-fareast-font-family:"Times New Roman"'><a 3303 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StackingFaults-I/Stacking Faults-I.htm"><span 3304 style='font-weight:normal'> 3305 Stacking fault simulations for diamond 3306 </span></a></span></strong><span style='mso-fareast-font-family: 3307 "Times New Roman"'> 3308 <o:p></o:p></span></li> 3309 3310 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3311 mso-list:l4 level1 lfo1;tab-stops:list .5in'><strong><span 3312 style='mso-fareast-font-family:"Times New Roman"'><a 3313 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StackingFaults-II/Stacking Faults II.htm"><span style='font-weight:normal'> 3314 Stacking fault simulations for Keokuk kaolinite 3315 </span></a></span></strong><span style='mso-fareast-font-family: 3316 "Times New Roman"'> 3317 (Link to <a href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StackingFaults-II/data">exercise files</a>)<o:p></o:p></span></li> 3318 3319 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3320 mso-list:l4 level1 lfo1;tab-stops:list .5in'><strong><span 3321 style='mso-fareast-font-family:"Times New Roman"'><a 3322 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StackingFaults-III/Stacking Faults-III.htm"><span style='font-weight:normal'> 3323 Stacking fault simulations for Georgia kaolinite 3324 </span></a></span></strong><span style='mso-fareast-font-family: 3325 "Times New Roman"'>(Link to <a 3326 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/StackingFaults-III/data">exercise 3327 files</a>)<o:p></o:p></span></li> 3328 </ul> 3329 3330 <p><i>Structure solution</i></p> 3331 3332 <ul type=disc> 3333 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3334 mso-list:l15 level1 lfo3;tab-stops:list .5in'><strong><span 3335 style='mso-fareast-font-family:"Times New Roman"'><a 3336 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CFjadarite/Charge%20Flipping%20in%20GSAS.htm"><span 3337 style='font-weight:normal'>Charge Flipping structure solution for jadarite 3338 </span></a></span></strong><span style='mso-fareast-font-family:"Times New Roman"'>(no 3339 exercise files)<o:p></o:p></span></li> 3340 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3341 mso-list:l15 level1 lfo3;tab-stops:list .5in'><strong><span 3342 style='mso-fareast-font-family:"Times New Roman"'><a 3343 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CFsucrose/Charge%20Flipping%20-%20sucrose.htm"><span 3344 style='font-weight:normal'>Charge Flipping structure solution for sucrose </span></a></span></strong><span 3345 style='mso-fareast-font-family:"Times New Roman"'>(no exercise files)<o:p></o:p></span></li> 3346 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3347 mso-list:l15 level1 lfo3;tab-stops:list .5in'><strong><span 3348 style='mso-fareast-font-family:"Times New Roman"'><a 3349 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF%20Charge%20Flipping/Charge%20Flipping%20with%20TOF%20single%20crystal%20data%20in%20GSASII.htm"><span 3350 style='font-weight:normal'>Charge flipping with neutron TOF single crystal 3351 data </span></a></span></strong><span style='mso-fareast-font-family:"Times New Roman"'>(Link 3352 to <a 3353 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF%20Charge%20Flipping/data">exercise 3354 files</a>)<o:p></o:p></span></li> 3355 3356 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3357 mso-list:l15 level1 lfo3;tab-stops:list .5in'><strong><span 3358 style='mso-fareast-font-family:"Times New Roman"'><a 3359 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CFXraySingleCrystal/CFSingleCrystal.htm"><span 3360 style='font-weight:normal'>Charge flipping with X-ray single crystal 3361 data </span></a></span></strong><span style='mso-fareast-font-family:"Times New Roman"'>(Link 3362 to <a 3363 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/CFXraySingleCrystal/data/">exercise 3364 files</a>)<o:p></o:p></span></li> 3365 3366 3367 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3368 mso-list:l15 level1 lfo3;tab-stops:list .5in'><strong><span 3369 style='mso-fareast-font-family:"Times New Roman"'><a 3370 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/MCsimanneal/MCSA%20in%20GSAS.htm"><span 3371 style='font-weight:normal'>Monte-Carlo simulated annealing structure </span></a></span></strong><span 3372 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3373 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/MCsimanneal/data">exercise 3374 files</a>)<o:p></o:p></span></li> 3375 </ul> 3376 3377 <p><i>Calibration/Image Processing</i></p> 3378 3379 <ul type=disc> 3380 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3381 mso-list:l32 level1 lfo4;tab-stops:list .5in'><strong><span 3382 style='mso-fareast-font-family:"Times New Roman"'><a 3383 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DCalibration/Calibration%20of%20an%20area%20detector%20in%20GSAS.htm"><span 3384 style='font-weight:normal'>Calibration of an area detector </span></a></span></strong><span 3385 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3386 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DCalibration/data">exercise 3387 files</a>)<o:p></o:p></span></li> 3388 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3389 mso-list:l32 level1 lfo4;tab-stops:list .5in'><strong><span 3390 style='mso-fareast-font-family:"Times New Roman"'><a 3391 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DIntegration/Integration%20of%20area%20detector%20data%20in%20GSAS.htm"><span 3392 style='font-weight:normal'>Integration of area detector data </span></a></span></strong><span 3393 style='mso-fareast-font-family:"Times New Roman"'>(no exercise files)<o:p></o:p></span></li> 3394 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3395 mso-list:l32 level1 lfo4;tab-stops:list .5in'><strong><span 3396 style='mso-fareast-font-family:"Times New Roman"'><a 3397 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF%20Calibration/Calibration%20of%20a%20TOF%20powder%20diffractometer.htm"><span 3398 style='font-weight:normal'>Calibration of a Neutron TOF diffractometer </span></a></span></strong><span 3399 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3400 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF%20Calibration/data">exercise 3401 files</a>)<o:p></o:p></span></li> 3402 </ul> 3403 3404 <p><i>Strain/Texture</i></p> 3405 3406 <ul type=disc> 3407 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3408 mso-list:l17 level1 lfo5;tab-stops:list .5in'><strong><span 3409 style='mso-fareast-font-family:"Times New Roman"'><a 3410 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DStrain/Strain%20fitting%20of%202D%20data%20in%20GSAS-II.htm"><span 3411 style='font-weight:normal'>Strain fitting of 2D data </span></a></span></strong><span 3412 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3413 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DStrain/data">exercise 3414 files</a>)<o:p></o:p></span></li> 3415 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3416 mso-list:l17 level1 lfo5;tab-stops:list .5in'><strong><span 3417 style='mso-fareast-font-family:"Times New Roman"'><a 3418 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DTexture/Texture%20analysis%20of%202D%20data%20in%20GSAS-II.htm"><span 3419 style='font-weight:normal'>Texture analysis of 2D data </span></a></span></strong><span 3420 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3421 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/2DTexture/data">exercise 3422 files</a>)<o:p></o:p></span></li> 3423 </ul> 3424 3425 <p><i>Small-Angle scattering</i></p> 3426 3427 <ul type=disc> 3428 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3429 mso-list:l0 level1 lfo6;tab-stops:list .5in'><strong><span 3430 style='mso-fareast-font-family:"Times New Roman"'><a 3431 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAimages/Small%20Angle%20Image%20Processing.htm"><span 3432 style='font-weight:normal'>Image Processing of small angle x-ray data </span></a></span></strong><span 3433 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3434 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAimages/data">exercise 3435 files</a>)<o:p></o:p></span></li> 3436 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3437 mso-list:l0 level1 lfo6;tab-stops:list .5in'><strong><span 3438 style='mso-fareast-font-family:"Times New Roman"'><a 3439 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAfit/Fitting%20Small%20Angle%20Scattering%20Data.htm"><span 3440 style='font-weight:normal'>Fitting small angle x-ray data (alumina powder) 3441 </span></a></span></strong><span style='mso-fareast-font-family:"Times New Roman"'>(Link 3442 to <a href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAfit/data">exercise 3443 files</a>)<o:p></o:p></span></li> 3444 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3445 mso-list:l0 level1 lfo6;tab-stops:list .5in'><strong><span 3446 style='mso-fareast-font-family:"Times New Roman"'><a 3447 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAsize/Small%20Angle%20Size%20Distribution.htm"><span 3448 style='font-weight:normal'>Small angle x-ray data size distribution 3449 (alumina powder) </span></a></span></strong><span style='mso-fareast-font-family: 3450 "Times New Roman"'>(Link to <a 3451 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAsize/data">exercise 3452 files</a>)<o:p></o:p></span></li> 3453 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3454 mso-list:l0 level1 lfo6;tab-stops:list .5in'><strong><span 3455 style='mso-fareast-font-family:"Times New Roman"'><a 3456 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAseqref/Sequential%20Refinement%20of%20Small%20Angle%20Scattering%20Data.htm"><span 3457 style='font-weight:normal'>Sequential refinement with small angle 3458 scattering data </span></a></span></strong><span style='mso-fareast-font-family: 3459 "Times New Roman"'>(Link to <a 3460 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/SAseqref/data">exercise 3461 files</a>)<o:p></o:p></span></li> 3462 </ul> 3463 3464 <p><i>Other</i></p> 3465 3466 <ul type=disc> 3467 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3468 mso-list:l33 level1 lfo7;tab-stops:list .5in'><strong><span 3469 style='mso-fareast-font-family:"Times New Roman"'><a 3470 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/MerohedralTwins/Merohedral twin refinement in GSAS.htm"><span 3471 style='font-weight:normal'>Merohedral twin refinements</span></a></span></strong><span 3472 style='mso-fareast-font-family:"Times New Roman"'> (Link to <a 3473 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/MerohedralTwins/data">exercise 3474 files</a>)<o:p></o:p></span></li> 3475 3476 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; 3477 mso-list:l33 level1 lfo7;tab-stops:list .5in'><strong><span 3478 style='mso-fareast-font-family:"Times New Roman"'><a 3479 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF Single Crystal Refinement/TOF single crystal refinement in GSAS.htm"><span 3480 style='font-weight:normal'>Single crystal refinement from TOF data 3481 </span></a></span></strong><span 3482 style='mso-fareast-font-family:"Times New Roman"'>(Link to <a 3483 href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/TOF Single Crystal Refinement/data">exercise 3484 files</a>)<o:p></o:p></span></li> 3485 </ul> 3196 <h2><a name="Tutorials"><strong>Learning GSAS-II: Tutorials</strong></a></h2> 3197 3198 <p class=MsoNormal style='margin-left:.5in'><span style='mso-fareast-font-family:"Times New Roman"'>The 3199 best way to learn about how different sections of GSAS-II is used is 3200 to work through tutorials. A list of available tutorial topics appears on a 3201 <A href="Tutorials.html">separate web page</A>. 3202 3486 3203 <P> 3487 3204 … … 3490 3207 3491 3208 <h2><a name="Data_tree"> 3492 1. Main GSAS-II data tree items</a></h2>3209 1. GSAS-II Data Tree</a></h2> 3493 3210 <p class=MsoNormal style='margin-left:.5in'><span style='mso-fareast-font-family: 3494 3211 "Times New Roman"'>The data tree shows contents of a GSAS-II project 3495 3212 (which can be read or saved as a .gpx file) in a hierarchical view. 3496 Clicking on any item in the tree opens a window 3213 Clicking on any item in the tree opens that information on the right 3214 side of the window in the "Data Editing" section, 3497 3215 where information in that item can be viewed or edited. For example, the <a 3498 3216 href="#Sample_Parameters">"Sample Parameters"</a> item under a ‘PWDR’ … … 3506 3224 3507 3225 <p class=MsoNormal style='margin-left:.5in'> 3508 The menus associated with this window provide access to many 3509 features of GSAS-II. They do not change and are described below as the 3226 The leftmost entries in the GSAS-II menu provide access to many 3227 features of GSAS-II. Other menu items will change depending on what 3228 type of entry is selected in the data tree. The menu commands that are 3229 always 3510 3230 <A href="#main_menu">main menu commands</a> section.</p> 3231 . Depending on They do not change and are described below as the 3511 3232 3512 3233 <hr size=2 width="100%" align=center> … … 7395 7116 <hr size=2 width="100%" align=center> 7396 7117 7397 <!-- hhmts start -->Last modified: Fri Oct 6 21:11:21 CDT 2017 <!-- hhmts end -->7118 <!-- hhmts start -->Last modified: Sun Oct 15 18:58:51 CDT 2017 <!-- hhmts end --> 7398 7119 7399 7120 </div>
Note: See TracChangeset
for help on using the changeset viewer.