Changeset 1195
- Timestamp:
- Jan 13, 2014 1:38:24 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 19 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r1189 r1195 101 101 102 102 [ wxID_STRSTACOPY, wxID_STRSTAFIT, wxID_STRSTASAVE, wxID_STRSTALOAD,wxID_APPENDDZERO, 103 wxID_STRSTAALLFIT, 104 ] = [wx.NewId() for item in range( 6)]103 wxID_STRSTAALLFIT,wxID_UPDATEDZERO, 104 ] = [wx.NewId() for item in range(7)] 105 105 106 106 [ wxID_BACKCOPY,wxID_LIMITCOPY,wxID_SAMPLECOPY, wxID_BACKFLAGCOPY, wxID_SAMPLEFLAGCOPY, … … 2424 2424 self.StrStaEdit.Append(help='Fit stress/strain data', 2425 2425 id=wxID_STRSTAFIT, kind=wx.ITEM_NORMAL,text='Fit stress/strain') 2426 self.StrStaEdit.Append(help='Update d-zero from ave d-zero', 2427 id=wxID_UPDATEDZERO, kind=wx.ITEM_NORMAL,text='Update d-zero') 2426 2428 self.StrStaEdit.Append(help='Fit stress/strain data for all images', 2427 2429 id=wxID_STRSTAALLFIT, kind=wx.ITEM_NORMAL,text='All image fit') -
trunk/GSASIIimgGUI.py
r1192 r1195 1326 1326 'ImxyObs':[[],[]],'ImtaObs':[[],[]],'ImtaCalc':[[],[]],'Emat':[1.0,1.0,1.0]}) 1327 1327 UpdateStressStrain(G2frame,data) 1328 1329 def OnUpdateDzero(event): 1330 for item in data['d-zero']: 1331 if item['Dcalc']: #skip unrefined ones 1332 item['Dset'] = item['Dcalc'] 1333 UpdateStressStrain(G2frame,data) 1328 1334 1329 1335 def OnCopyStrSta(event): … … 1356 1362 ifcopy,name,id = item 1357 1363 if ifcopy: 1358 oldData = copy.deepcopy(G2frame.PatternTree.GetItemPyData(G2gd.GetPatternTreeItemId(G2frame,id, 'Stress/Strain')))1359 1364 G2frame.PatternTree.SetItemPyData(G2gd.GetPatternTreeItemId(G2frame,id, 'Stress/Strain'),copy.deepcopy(Data)) 1360 1365 finally: … … 1399 1404 UpdateStressStrain(G2frame,data) 1400 1405 G2plt.PlotExposedImage(G2frame,event=event) 1401 G2plt.PlotStrain(G2frame,data,newPlot= False)1406 G2plt.PlotStrain(G2frame,data,newPlot=True) 1402 1407 1403 1408 def OnAllFitStrSta(event): … … 1496 1501 G2frame.ErrorDialog('Strain peak selection','WARNING - No points found for this ring selection') 1497 1502 1498 #sort them on d-spacing?1499 1503 UpdateStressStrain(G2frame,data) 1500 G2plt.PlotExposedImage(G2frame,event=event )1501 G2plt.PlotStrain(G2frame,data,newPlot= False)1504 G2plt.PlotExposedImage(G2frame,event=event,newPlot=False) 1505 G2plt.PlotStrain(G2frame,data,newPlot=True) 1502 1506 1503 1507 def OnDeleteDzero(event): … … 1505 1509 del(data['d-zero'][delIndx.index(Obj)]) 1506 1510 UpdateStressStrain(G2frame,data) 1507 G2plt.PlotExposedImage(G2frame,event=event )1508 G2plt.PlotStrain(G2frame,data,newPlot= False)1511 G2plt.PlotExposedImage(G2frame,event=event,newPlot=True) 1512 G2plt.PlotStrain(G2frame,data,newPlot=True) 1509 1513 1510 1514 def OnCutOff(event): … … 1516 1520 Obj.SetValue("%.1f"%(value)) 1517 1521 data['d-zero'][Indx[Obj.GetId()]]['cutoff'] = value 1522 Ring,R = G2img.MakeStrStaRing(data['d-zero'][Indx[Obj.GetId()]],G2frame.ImageZ,Controls) 1518 1523 G2plt.PlotExposedImage(G2frame,event=event) 1519 G2plt.PlotStrain(G2frame,data,newPlot= False)1524 G2plt.PlotStrain(G2frame,data,newPlot=True) 1520 1525 1521 1526 def OnPixLimit(event): 1522 1527 Obj = event.GetEventObject() 1523 1528 data['d-zero'][Indx[Obj.GetId()]]['pixLimit'] = int(Obj.GetValue()) 1529 Ring,R = G2img.MakeStrStaRing(data['d-zero'][Indx[Obj.GetId()]],G2frame.ImageZ,Controls) 1524 1530 G2plt.PlotExposedImage(G2frame,event=event) 1525 G2plt.PlotStrain(G2frame,data,newPlot= False)1531 G2plt.PlotStrain(G2frame,data,newPlot=True) 1526 1532 1527 1533 Indx = {} … … 1579 1585 G2gd.SetDataMenuBar(G2frame,G2frame.dataFrame.StrStaMenu) 1580 1586 G2frame.dataFrame.Bind(wx.EVT_MENU, OnAppendDzero, id=G2gd.wxID_APPENDDZERO) 1587 G2frame.dataFrame.Bind(wx.EVT_MENU, OnUpdateDzero, id=G2gd.wxID_UPDATEDZERO) 1581 1588 G2frame.dataFrame.Bind(wx.EVT_MENU, OnFitStrSta, id=G2gd.wxID_STRSTAFIT) 1582 1589 G2frame.dataFrame.Bind(wx.EVT_MENU, OnAllFitStrSta, id=G2gd.wxID_STRSTAALLFIT) -
trunk/help/Calibration of an area detector in GSAS.htm
r1114 r1195 25 25 <o:Author>Von Dreele</o:Author> 26 26 <o:LastAuthor>Von Dreele</o:LastAuthor> 27 <o:Revision>1 4</o:Revision>28 <o:TotalTime>1 37</o:TotalTime>27 <o:Revision>16</o:Revision> 28 <o:TotalTime>160</o:TotalTime> 29 29 <o:Created>2012-05-04T19:00:00Z</o:Created> 30 <o:LastSaved>201 3-04-30T17:13:00Z</o:LastSaved>30 <o:LastSaved>2014-01-13T15:33:00Z</o:LastSaved> 31 31 <o:Pages>4</o:Pages> 32 <o:Words> 695</o:Words>33 <o:Characters> 3966</o:Characters>32 <o:Words>832</o:Words> 33 <o:Characters>4745</o:Characters> 34 34 <o:Company>Argonne National Laboratory</o:Company> 35 <o:Lines>3 3</o:Lines>36 <o:Paragraphs> 9</o:Paragraphs>37 <o:CharactersWithSpaces> 4652</o:CharactersWithSpaces>35 <o:Lines>39</o:Lines> 36 <o:Paragraphs>11</o:Paragraphs> 37 <o:CharactersWithSpaces>5566</o:CharactersWithSpaces> 38 38 <o:Version>14.00</o:Version> 39 39 </o:DocumentProperties> … … 348 348 /* Font Definitions */ 349 349 @font-face 350 {font-family:"Cambria Math";351 panose-1:2 4 5 3 5 4 6 3 2 4;352 mso-font-charset:0;353 mso-generic-font-family:roman;354 mso-font-pitch:variable;355 mso-font-signature:-536870145 1107305727 0 0 415 0;}356 @font-face357 350 {font-family:Calibri; 358 351 panose-1:2 15 5 2 2 2 4 3 2 4; … … 880 873 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/> 881 874 <o:lock v:ext="edit" aspectratio="t"/> 882 </v:shapetype><v:shape id=" _x0000_i1032" type="#_x0000_t75" style='width:300pt;883 height:187.5pt;visibility:visible;mso-wrap-style:square'>875 </v:shapetype><v:shape id="Picture_x0020_1" o:spid="_x0000_i1032" type="#_x0000_t75" 876 style='width:300pt;height:187.5pt;visibility:visible;mso-wrap-style:square'> 884 877 <v:imagedata src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image001.png" 885 878 o:title=""/> 886 879 </v:shape><![endif]--><![if !vml]><img border=0 width=400 height=250 887 880 src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image001.png" 888 v:shapes=" _x0000_i1032"><![endif]></span></p>881 v:shapes="Picture_x0020_1"><![endif]></span></p> 889 882 890 883 <p class=MsoNormal>At this point the data tree window will have several … … 895 888 896 889 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 897 id="Picture_x0020_10" o:spid="_x0000_i1031" type="#_x0000_t75" style='width:47 2.5pt;898 height:34 2pt;visibility:visible;mso-wrap-style:square'>890 id="Picture_x0020_10" o:spid="_x0000_i1031" type="#_x0000_t75" style='width:471.75pt; 891 height:349.5pt;visibility:visible;mso-wrap-style:square'> 899 892 <v:imagedata src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image002.png" 900 893 o:title=""/> 901 </v:shape><![endif]--><![if !vml]><img border=0 width=6 30 height=456894 </v:shape><![endif]--><![if !vml]><img border=0 width=629 height=466 902 895 src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image002.png" 903 896 v:shapes="Picture_x0020_10"><![endif]></span></p> 904 897 905 898 <p class=MsoNormal><span style='mso-spacerun:yes'> </span>The plot window shows 906 the image; notice the elliptical shape of the powder diffraction rings 907 due to the 45 degree detector tilt. The 908 blue <b style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif";909 mso- ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:910 Calibri;mso-bidi-theme-font:minor-latin;color:#4F81BD;mso-themecolor:accent1'>X</span></b> 911 marks the beam location (which defaults to the image center); the 912 calibration you will perform here will find the correct 913 placement for it. Also note that as the mouse is moved across the plot 914 the plot window status bar (at bottom of plot window) shows the 915 cursor position, as computed from the default (incorrect) 916 calibration values. These constants will be correctly determined after you finish the calibration.</p>899 the image; notice the elliptical shape of the powder diffraction rings due to 900 the 45 degree detector tilt. The blue <b style='mso-bidi-font-weight:normal'><span 901 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 902 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 903 minor-latin;color:#4F81BD;mso-themecolor:accent1'>X</span></b> marks the beam 904 location (which defaults to the image center); the calibration you will perform 905 here will find the correct placement for it. Also note that as the mouse is 906 moved across the plot the plot window status bar (at bottom of plot window) 907 shows the cursor position, as computed from the default (incorrect) calibration 908 values. These constants will be correctly determined after you finish the 909 calibration.</p> 917 910 918 911 <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span 919 style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Picture_x0020_ 11"912 style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape id="Picture_x0020_3" 920 913 o:spid="_x0000_i1030" type="#_x0000_t75" style='width:525pt;height:450pt; 921 914 visibility:visible;mso-wrap-style:square'> … … 924 917 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 925 918 src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image003.png" 926 v:shapes="Picture_x0020_ 11"><![endif]></span></p>919 v:shapes="Picture_x0020_3"><![endif]></span></p> 927 920 928 921 <h1><span style='mso-spacerun:yes'> </span>Step 2: Edit image parameters</h1> … … 965 958 Calibri;mso-bidi-theme-font:minor-latin'>LaB6 SRM660a</span></b></p> 966 959 967 <h3> <span style='mso-spacerun:yes'> </span>Second: </h3>960 <h3>Second: </h3> 968 961 969 962 <p class=MsoNormal><span style='mso-spacerun:yes'> </span>Use the <b … … 994 987 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 995 988 minor-latin;color:red'>+</span></b>" is added to the plot. You need not 996 hit the ring exactly as the code will search for the locally highest 997 point. (On the Mac with a two or three button mouse, also use the left 998 mouse button, or with a standard Mac single-button mouse, use the 999 regular mouse button.)</p> 989 hit the ring exactly as the code will search for the locally highest point. (On 990 the Mac with a two or three button mouse, also use the left mouse button, or 991 with a standard Mac single-button mouse, use the regular mouse button.)</p> 1000 992 1001 993 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape … … 1009 1001 1010 1002 <p class=MsoNormal><span style='mso-spacerun:yes'> </span>To remove a point 1011 added in error click on that point with the right mouse button 1012 (on the Mac, if you have a single-button mouse, hold the control key 1013 down and click). 1014 </p> 1003 added in error click on that point with the right mouse button (on the Mac, if 1004 you have a single-button mouse, hold the control key down and click). </p> 1015 1005 1016 1006 <h3><span style='mso-spacerun:yes'> </span>Fourth:</h3> 1017 1007 1018 1008 <p class=MsoNormal><span style='mso-spacerun:yes'> </span>When done, press the 1019 right mouse button well away from any points that have been added 1020 (on the Mac, if you have a single-button mouse, hold the control key 1021 down and click). 1022 </p> 1009 right mouse button well away from any points that have been added (on the Mac, 1010 if you have a single-button mouse, hold the control key down and click). </p> 1023 1011 1024 1012 <p class=MsoNormal>The calibration is then performed. First the rings are … … 1051 1039 1052 1040 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1053 id="Picture_x0020_1 3" o:spid="_x0000_i1027" type="#_x0000_t75" style='width:472.5pt;1054 height:34 2pt;visibility:visible;mso-wrap-style:square'>1041 id="Picture_x0020_11" o:spid="_x0000_i1027" type="#_x0000_t75" style='width:471.75pt; 1042 height:349.5pt;visibility:visible;mso-wrap-style:square'> 1055 1043 <v:imagedata src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image006.png" 1056 1044 o:title=""/> 1057 </v:shape><![endif]--><![if !vml]><img border=0 width=6 30 height=4561045 </v:shape><![endif]--><![if !vml]><img border=0 width=629 height=466 1058 1046 src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image006.png" 1059 v:shapes="Picture_x0020_1 3"><![endif]></span><span1047 v:shapes="Picture_x0020_11"><![endif]></span><span 1060 1048 style='mso-spacerun:yes'> </span></p> 1061 1049 … … 1064 1052 1065 1053 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1066 id="Picture_x0020_1 4" o:spid="_x0000_i1026" type="#_x0000_t75" style='width:396.75pt;1067 height:1 34.25pt;visibility:visible;mso-wrap-style:square'>1054 id="Picture_x0020_13" o:spid="_x0000_i1026" type="#_x0000_t75" style='width:453.75pt; 1055 height:107.25pt;visibility:visible;mso-wrap-style:square'> 1068 1056 <v:imagedata src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image007.png" 1069 1057 o:title=""/> 1070 </v:shape><![endif]--><![if !vml]><img border=0 width= 529 height=1791058 </v:shape><![endif]--><![if !vml]><img border=0 width=605 height=143 1071 1059 src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image007.png" 1072 v:shapes="Picture_x0020_14"><![endif]></span></p> 1073 1074 <p class=MsoNormal><span style='mso-spacerun:yes'> </span>To see the actual 1075 points selected by the program, click on the <b style='mso-bidi-font-weight: 1060 v:shapes="Picture_x0020_13"><![endif]></span></p> 1061 1062 <p class=MsoNormal>The <b style='mso-bidi-font-weight:normal'><span 1063 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1064 mso-hansi-theme-font:minor-latin'>distance</span></b> is from the sample to the 1065 plane containing the detector, <span class=SpellE><b style='mso-bidi-font-weight: 1076 1066 normal'><span style='font-family:"Calibri","sans-serif";mso-ascii-theme-font: 1077 minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri; 1078 mso-bidi-theme-font:minor-latin'>show ring picks?</span></b> <span class=GramE>check</span> 1079 box </p> 1067 minor-latin;mso-hansi-theme-font:minor-latin'>det</span></b></span><b 1068 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1069 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>-x</span></b> 1070 & <span class=SpellE><b style='mso-bidi-font-weight:normal'><span 1071 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1072 mso-hansi-theme-font:minor-latin'>det</span></b></span><b style='mso-bidi-font-weight: 1073 normal'><span style='font-family:"Calibri","sans-serif";mso-ascii-theme-font: 1074 minor-latin;mso-hansi-theme-font:minor-latin'>-y</span></b> is the incident 1075 beam location on the image, <b style='mso-bidi-font-weight:normal'><span 1076 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1077 mso-hansi-theme-font:minor-latin'>tilt</span></b> is the angle of detector 1078 rotation from being normal to the incident beam and <b style='mso-bidi-font-weight: 1079 normal'><span style='font-family:"Calibri","sans-serif";mso-ascii-theme-font: 1080 minor-latin;mso-hansi-theme-font:minor-latin'>phi</span></b> is the rotation of 1081 the detector tilt axis from the x-axis. <span 1082 style='mso-spacerun:yes'> </span>To see the actual points selected by the 1083 program, click on the <b style='mso-bidi-font-weight:normal'><span 1084 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1085 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 1086 minor-latin'>show ring picks?</span></b> <span class=GramE>check</span> box </p> 1080 1087 1081 1088 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1082 id="Picture_x0020_1 5" o:spid="_x0000_i1025" type="#_x0000_t75" style='width:525pt;1089 id="Picture_x0020_14" o:spid="_x0000_i1025" type="#_x0000_t75" style='width:525pt; 1083 1090 height:450pt;visibility:visible;mso-wrap-style:square'> 1084 1091 <v:imagedata src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image008.png" … … 1086 1093 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1087 1094 src="Calibration%20of%20an%20area%20detector%20in%20GSAS_files/image008.png" 1088 v:shapes="Picture_x0020_1 5"><![endif]></span><span1095 v:shapes="Picture_x0020_14"><![endif]></span><span 1089 1096 style='mso-spacerun:yes'> </span><span style='color:#1F497D;mso-themecolor: 1090 1097 text2'><o:p></o:p></span></p> … … 1096 1103 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: 1097 1104 Calibri;mso-bidi-theme-font:minor-latin'>Operations/Recalibrate</span></b> menu 1098 item.</p> 1099 1100 <p class=MsoNormal>Assuming that these calibration results will be applied to 1101 other images in the same GSAS-II project, click on <b style='mso-bidi-font-weight: 1105 item. In cases where particular types of detectors are used close to the sample 1106 and the diffraction pattern extends to near the edges of the detector, the <b 1107 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1108 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>Penetration</span></b> 1109 correction may need to be refined. Just select the check box and do <b 1110 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1111 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: 1112 Calibri;mso-bidi-theme-font:minor-latin'>Operations/Recalibrate</span></b>, the 1113 result should be >0 for a reasonable correction. Close examination of the 1114 outer rings will show a small shift in the calculated rings to better match the 1115 observed ones. Assuming that these calibration results will be applied to other 1116 images in the same GSAS-II project, click on <b style='mso-bidi-font-weight: 1102 1117 normal'><span style='font-family:"Calibri","sans-serif";mso-ascii-theme-font: 1103 1118 minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri; … … 1111 1126 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: 1112 1127 Calibri;mso-bidi-theme-font:minor-latin'>Operations/Save Controls</span></b> 1113 menu item. To save the project, including the now-derived calibration information, 1114 use the <b style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1128 menu item. To save the project, including the now-derived calibration 1129 information, use the <b style='mso-bidi-font-weight:normal'><span 1130 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1131 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 1132 minor-latin'>File/Save</span> </b><b style='mso-bidi-font-weight:normal'><span 1133 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1134 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 1135 minor-latin'>Project</span></b><span style='font-family:"Calibri","sans-serif"; 1115 1136 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: 1116 Calibri;mso-bidi-theme-font:minor-latin'>File/Save</span> </b><b 1137 Calibri;mso-bidi-theme-font:minor-latin'> </span>menu item associated with the 1138 data tree window; as this project has not been saved before the file save 1139 dialog will need a file name. Dont enter the extension; it will be set to <b 1117 1140 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1118 1141 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: 1119 Calibri;mso-bidi-theme-font:minor-latin'>Project</span></b><span 1120 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1121 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 1122 minor-latin'> </span>menu item associated with the data tree window; as this 1123 project has not been saved before the file save dialog will need a file name. 1124 Dont enter the extension; it will be set to <b style='mso-bidi-font-weight: 1125 normal'><span style='font-family:"Calibri","sans-serif";mso-ascii-theme-font: 1126 minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri; 1127 mso-bidi-theme-font:minor-latin'>.<span class=SpellE>gpx</span></span></b>.</p> 1142 Calibri;mso-bidi-theme-font:minor-latin'>.<span class=SpellE>gpx</span></span></b>.</p> 1128 1143 1129 1144 <h2>Next step: <span class=MsoHyperlink><span style='color:#0070C0'><a -
trunk/help/Integration of area detector data in GSAS.htm
r895 r1195 25 25 <o:Author>Von Dreele</o:Author> 26 26 <o:LastAuthor>Von Dreele</o:LastAuthor> 27 <o:Revision>1 2</o:Revision>28 <o:TotalTime>1 18</o:TotalTime>27 <o:Revision>13</o:Revision> 28 <o:TotalTime>137</o:TotalTime> 29 29 <o:Created>2012-05-04T20:46:00Z</o:Created> 30 <o:LastSaved>201 3-04-30T17:23:00Z</o:LastSaved>31 <o:Pages> 3</o:Pages>32 <o:Words>8 08</o:Words>33 <o:Characters>46 10</o:Characters>30 <o:LastSaved>2014-01-13T15:37:00Z</o:LastSaved> 31 <o:Pages>2</o:Pages> 32 <o:Words>821</o:Words> 33 <o:Characters>4685</o:Characters> 34 34 <o:Company>Argonne National Laboratory</o:Company> 35 <o:Lines>3 8</o:Lines>35 <o:Lines>39</o:Lines> 36 36 <o:Paragraphs>10</o:Paragraphs> 37 <o:CharactersWithSpaces>54 08</o:CharactersWithSpaces>37 <o:CharactersWithSpaces>5496</o:CharactersWithSpaces> 38 38 <o:Version>14.00</o:Version> 39 39 </o:DocumentProperties> … … 1028 1028 box. Note that inner limit is shown as a green ellipse at 2deg and the outer is 1029 1029 shown as a red ellipse at 5deg by default. These limits may also be dragged to 1030 the desired values; a small popup window shows the value. < o:p></o:p></p>1030 the desired values; a small popup window shows the value. </p> 1031 1031 1032 1032 <p class=MsoNormal>Change the limits to <b style='mso-bidi-font-weight:normal'><span … … 1060 1060 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/> 1061 1061 <o:lock v:ext="edit" aspectratio="t"/> 1062 </v:shapetype><v:shape id="Picture_x0020_6" o:spid="_x0000_i102 9" type="#_x0000_t75"1063 style='width:472.5pt;height:34 2pt;visibility:visible;mso-wrap-style:square'>1062 </v:shapetype><v:shape id="Picture_x0020_6" o:spid="_x0000_i1028" type="#_x0000_t75" 1063 style='width:472.5pt;height:349.5pt;visibility:visible;mso-wrap-style:square'> 1064 1064 <v:imagedata src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image001.png" 1065 1065 o:title=""/> 1066 </v:shape><![endif]--><![if !vml]><img border=0 width=630 height=4 561066 </v:shape><![endif]--><![if !vml]><img border=0 width=630 height=466 1067 1067 src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image001.png" 1068 1068 v:shapes="Picture_x0020_6"><![endif]></span></p> … … 1073 1073 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1074 1074 mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri;mso-bidi-theme-font: 1075 minor-latin'>Azimuth offset</span></b>: The image vertical axis (from the beam1076 center, going down) is labeled with the azimuth value placed in the <b1075 minor-latin'>Azimuth offset</span></b>: The image horizontal axis (from the 1076 beam center, going right) is labeled with the azimuth value placed in the <b 1077 1077 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1078 1078 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: … … 1088 1088 minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:Calibri; 1089 1089 mso-bidi-theme-font:minor-latin'>Do full integration?</span></b> <span 1090 class=GramE>check box</span> is not checked, the integration will be run only to1091 t he maximum value specified. When the range is less than 360 degrees, the1090 class=GramE>check</span> box is not checked, the integration will be run only 1091 to the maximum value specified. When the range is less than 360 degrees, the 1092 1092 integration range will be shown (if selected) with the high and low limits 1093 1093 plotted and only segments of the max and min ellipses drawn. These limits may 1094 also be dragged on the plot to desired locations.</p> 1094 also be dragged on the plot to desired locations. In this case <b 1095 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1096 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>45</span></b> 1097 is a better choice than the default.</p> 1095 1098 1096 1099 <p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span … … 1104 1107 needed, but there should more than 6 points across each peak 1105 1108 full-width-at-half-maximum (FWHM) in the final pattern to be useful for further 1106 analysis. In this case<b style='mso-bidi-font-weight:normal'><span1109 analysis. For this reason <b style='mso-bidi-font-weight:normal'><span 1107 1110 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1108 1111 mso-hansi-theme-font:minor-latin'>5000</span></b> is a better choice than the … … 1119 1122 with distance from the beam-center, with a shape like a slice of cake or pie. 1120 1123 When more than one azimuthal bin is used, the regions are shown in the plot 1121 with dashed lines, when the Show integration limits?" check box is 1122 checked. </p> 1124 with dashed lines, when the <b style='mso-bidi-font-weight:normal'><span 1125 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1126 mso-hansi-theme-font:minor-latin'>Show integration limits?</span></b> <span 1127 class=GramE>check</span> box is checked. </p> 1128 1129 <p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span 1130 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1131 mso-hansi-theme-font:minor-latin'>Appl. Sample absorption</span></b> and <b 1132 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1133 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>value</span></b>: 1134 An absorption correction for a horizontal cylinder is applied to the results of 1135 the integration. The range in <span class=SpellE><span style='font-family:Symbol'>m</span>R</span> 1136 is limited because the correction is unreliable for <span class=SpellE><span 1137 style='font-family:Symbol'>m</span>R</span> > 2.</p> 1123 1138 1124 1139 <p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span … … 1151 1166 1152 1167 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1153 id=" Picture_x0020_7" o:spid="_x0000_i1028" type="#_x0000_t75" style='width:525pt;1154 height:450pt;visibility:visible;mso-wrap-style:square'>1168 id="_x0000_i1027" type="#_x0000_t75" style='width:525pt;height:450pt; 1169 visibility:visible;mso-wrap-style:square'> 1155 1170 <v:imagedata src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image002.png" 1156 1171 o:title=""/> 1157 1172 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1158 1173 src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image002.png" 1159 v:shapes=" Picture_x0020_7"><![endif]></span></p>1174 v:shapes="_x0000_i1027"><![endif]></span></p> 1160 1175 1161 1176 <h2>Step 3: Perform integration </h2> … … 1180 1195 1181 1196 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1182 id="Picture_x0020_8" o:spid="_x0000_i102 7" type="#_x0000_t75" style='width:300pt;1197 id="Picture_x0020_8" o:spid="_x0000_i1026" type="#_x0000_t75" style='width:300pt; 1183 1198 height:187.5pt;visibility:visible;mso-wrap-style:square'> 1184 1199 <v:imagedata src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image003.png" … … 1189 1204 style='mso-spacerun:yes'> </span></p> 1190 1205 1191 <p class=MsoNormal>Two plots are added to the plot window: One (with tab <b 1192 style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1193 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family: 1194 Calibri;mso-bidi-theme-font:minor-latin'>2D Integration</span></b>) shows the 1195 diffraction intensity as a function of both 2-theta and (when there is more 1196 than one azimuthal integration region) azimuthal angle.</p> 1206 <p class=MsoNormal>A plot is added to the plot window with a conventional 1-D 1207 powder pattern(s) for each "slice"</p> 1197 1208 1198 1209 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1199 id="Picture_x0020_ 9" o:spid="_x0000_i1026" type="#_x0000_t75" style='width:525pt;1210 id="Picture_x0020_7" o:spid="_x0000_i1025" type="#_x0000_t75" style='width:525pt; 1200 1211 height:450pt;visibility:visible;mso-wrap-style:square'> 1201 1212 <v:imagedata src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image004.png" … … 1203 1214 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1204 1215 src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image004.png" 1205 v:shapes="Picture_x0020_9"><![endif]></span><span 1206 style='mso-spacerun:yes'> </span></p> 1207 1208 <p class=MsoNormal><span class=GramE>and</span> a conventional 1-D powder 1209 pattern(s) for each "slice"</p> 1210 1211 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape 1212 id="Picture_x0020_10" o:spid="_x0000_i1025" type="#_x0000_t75" style='width:525pt; 1213 height:450pt;visibility:visible;mso-wrap-style:square'> 1214 <v:imagedata src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image005.png" 1215 o:title=""/> 1216 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1217 src="Integration%20of%20area%20detector%20data%20in%20GSAS_files/image005.png" 1218 v:shapes="Picture_x0020_10"><![endif]></span></p> 1216 v:shapes="Picture_x0020_7"><![endif]></span></p> 1219 1217 1220 1218 <p class=MsoNormal>Again you could save the project with <b style='mso-bidi-font-weight: -
trunk/help/Integration of area detector data in GSAS_files/filelist.xml
r895 r1195 7 7 <o:File HRef="image003.png"/> 8 8 <o:File HRef="image004.png"/> 9 <o:File HRef="image005.png"/>10 9 <o:File HRef="filelist.xml"/> 11 10 </xml>
Note: See TracChangeset
for help on using the changeset viewer.