- Timestamp:
- Mar 8, 2021 1:02:40 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/help/Tutorials.html
r4654 r4845 38 38 <blockquote><I>This shows how to get an initial estimate of background parameters from a suite of fixed points 39 39 before beginning Rietveld refinement.</I></blockquote> 40 <LI><A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/LeBail/LeBailSucrose.htm">Le Bail Intensity Extraction in GSAS-II - Sucrose</A> 41 [link: <A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/LeBail/data">Exercise files</A>]. 42 <blockquote><I>Shows the process of setting up a Le Bail fit, where reflection 43 intensities are treated as arbitrary, and how to converge the Le Bail 44 intensities before a combined Le Bail/Least-Squares fit that 45 optimizes lattice, peak shape and background parameters.</I></blockquote> 40 46 <LI><A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/RietPlot/PublicationPlot.htm">Create a Publication-Ready Rietveld Plot</A> 41 47 [link: <A href="https://subversion.xray.aps.anl.gov/pyGSAS/Tutorials/RietPlot/data">Exercise files</A>]. -
trunk/makeTutorial.py
r4654 r4845 86 86 along with naration. Links are provided below where videos are available. 87 87 </p>''',file=out) 88 88 novideo = '' 89 videocount = 0 90 tutorialcount = 0 89 91 videolist = '<UL>' 90 92 for l in tutorialIndex: … … 92 94 print("</UL><h4>{}</H4><UL>".format(l[0]),file=out) 93 95 else: 96 tutorialcount += 1 94 97 pageURL = tutURL+'/'+l[0]+'/'+l[1] 95 98 dataURL = tutURL+'/'+l[0]+'/data' … … 108 111 #if requests.get(vname).status_code == 200: 109 112 if vname in onlineVideos: 113 videocount += 1 110 114 video = '<A href="{}">video</A>'.format(vname) 111 115 #print(' [link: <A href="{}">video</A>]'.format(vname),file=out) … … 114 118 else: 115 119 video ='' 116 print('No video for {:45s}{}'.format(videoName,l[2]))120 novideo += '\n{:45s}{}'.format(videoName,l[2]) 117 121 # check for data 118 122 if GSASIIpath.svnList(dataURL,False): … … 144 148 file=out) 145 149 out.close() 150 print("Tutorials without videos",novideo) 151 152 print("\nStatistics: {} total tutorials, {} with videos" 153 .format(tutorialcount,videocount))
Note: See TracChangeset
for help on using the changeset viewer.