Changeset 1478
- Timestamp:
- Aug 25, 2014 4:47:28 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIddataGUI.py
r1455 r1478 420 420 except ValueError: 421 421 pass 422 Obj.SetValue("%. 5f"%(UseList[hist]['HStrain'][0][pid])) #reset in case of error422 Obj.SetValue("%.3g"%(UseList[hist]['HStrain'][0][pid])) #reset in case of error 423 423 424 424 def OnPOVal(event): … … 690 690 hstrainRef.Bind(wx.EVT_CHECKBOX, OnHstrainRef) 691 691 hstrainSizer.Add(hstrainRef,0,WACV) 692 hstrainVal = wx.TextCtrl(DData,wx.ID_ANY,'%. 5f'%(val),style=wx.TE_PROCESS_ENTER)692 hstrainVal = wx.TextCtrl(DData,wx.ID_ANY,'%.3g'%(val),style=wx.TE_PROCESS_ENTER) 693 693 Indx[hstrainVal.GetId()] = [item,id] 694 694 hstrainVal.Bind(wx.EVT_TEXT_ENTER,OnHstrainVal) -
trunk/GSASIIstrIO.py
r1475 r1478 1661 1661 for i,name in enumerate(Hsnames): 1662 1662 ptlbls += '%12s' % (name) 1663 ptstr += '%12. 6f' % (hapData[0][i])1663 ptstr += '%12.4g' % (hapData[0][i]) 1664 1664 varstr += '%12s' % (str(hapData[1][i])) 1665 1665 print >>pFile,ptlbls … … 1971 1971 for i,name in enumerate(Hsnames): 1972 1972 ptlbls += '%12s' % (name) 1973 ptstr += '%12. 6g' % (hapData[0][i])1973 ptstr += '%12.4g' % (hapData[0][i]) 1974 1974 if name in strainSig: 1975 1975 refine = True 1976 sigstr += '%12. 6g' % (strainSig[name])1976 sigstr += '%12.4g' % (strainSig[name]) 1977 1977 else: 1978 1978 sigstr += 12*' ' -
trunk/GSASIIstrMath.py
r1475 r1478 1200 1200 cosP,sinP = G2lat.CosSinAngle(H,P,G) 1201 1201 Sgam = 1.e-4*parmDict[hfx+'difC']*(parmDict[phfx+'Size;i']*parmDict[phfx+'Size;a']) 1202 Sgam *= np.sqrt((sinP*parmDict[phfx+'Size;a'])**2+(cosP*parmDict[phfx+'Size;i'])**2)1202 Sgam /= np.sqrt((sinP*parmDict[phfx+'Size;a'])**2+(cosP*parmDict[phfx+'Size;i'])**2) 1203 1203 else: #ellipsoidal crystallites 1204 1204 Sij =[parmDict[phfx+'Size:%d'%(i)] for i in range(6)] … … 1208 1208 #microstrain 1209 1209 if calcControls[phfx+'MustrainType'] == 'isotropic': 1210 Mgam = 1.e-6*parmDict[hfx+'difC']* parmDict[phfx+'Mustrain;i']1210 Mgam = 1.e-6*parmDict[hfx+'difC']*refl[4]*parmDict[phfx+'Mustrain;i'] 1211 1211 elif calcControls[phfx+'MustrainType'] == 'uniaxial': 1212 1212 H = np.array(refl[:3]) … … 1215 1215 Si = parmDict[phfx+'Mustrain;i'] 1216 1216 Sa = parmDict[phfx+'Mustrain;a'] 1217 Mgam = 1.e-6*parmDict[hfx+'difC']* Si*Sa/np.sqrt((Si*cosP)**2+(Sa*sinP)**2)1217 Mgam = 1.e-6*parmDict[hfx+'difC']*refl[4]*Si*Sa/np.sqrt((Si*cosP)**2+(Sa*sinP)**2) 1218 1218 else: #generalized - P.W. Stephens model 1219 1219 pwrs = calcControls[phfx+'MuPwrs'] … … 1305 1305 else: #'T'OF 1306 1306 if calcControls[phfx+'SizeType'] == 'isotropic': 1307 Sgam = 1.e-4*parmDict[hfx+'difC']* parmDict[phfx+'Size;i']1308 gamDict[phfx+'Size;i'] = 1.e-4*parmDict[hfx+'difC']* parmDict[phfx+'Size;mx']1309 sigDict[phfx+'Size;i'] = 1.e-4*parmDict[hfx+'difC']*Sgam*(1.-parmDict[phfx+'Size;mx'])**2/ateln21307 Sgam = 1.e-4*parmDict[hfx+'difC']*refl[4]*parmDict[phfx+'Size;i'] 1308 gamDict[phfx+'Size;i'] = 1.e-4*parmDict[hfx+'difC']*refl[4]*parmDict[phfx+'Size;mx'] 1309 sigDict[phfx+'Size;i'] = 2.e-4*parmDict[hfx+'difC']*refl[4]*Sgam*(1.-parmDict[phfx+'Size;mx'])**2/ateln2 1310 1310 elif calcControls[phfx+'SizeType'] == 'uniaxial': 1311 const = 1.e-4*parmDict[hfx+'difC'] 1311 const = 1.e-4*parmDict[hfx+'difC']*refl[4] 1312 1312 H = np.array(refl[:3]) 1313 1313 P = np.array(calcControls[phfx+'SizeAxis']) … … 1338 1338 #microstrain derivatives 1339 1339 if calcControls[phfx+'MustrainType'] == 'isotropic': 1340 Mgam = 1.e-6*parmDict[hfx+'difC']* parmDict[phfx+'Mustrain;i']1340 Mgam = 1.e-6*parmDict[hfx+'difC']*refl[4]*parmDict[phfx+'Mustrain;i'] 1341 1341 gamDict[phfx+'Mustrain;i'] = 1.e-6*parmDict[hfx+'difC']*parmDict[phfx+'Mustrain;mx'] 1342 1342 sigDict[phfx+'Mustrain;i'] = 2.e-6*parmDict[hfx+'difC']*Mgam*(1.-parmDict[phfx+'Mustrain;mx'])**2/ateln2 … … 1425 1425 return dpdA,dpdZ,dpdDC,dpdDA,dpdDB 1426 1426 1427 def GetHStrainShift(refl,SGData,phfx, parmDict):1427 def GetHStrainShift(refl,SGData,phfx,hfx,calcControls,parmDict): 1428 1428 'Needs a doc string' 1429 1429 laue = SGData['SGLaue'] … … 1452 1452 Dij = parmDict[phfx+'D11']*h**2+parmDict[phfx+'D22']*k**2+parmDict[phfx+'D33']*l**2+ \ 1453 1453 parmDict[phfx+'D12']*h*k+parmDict[phfx+'D13']*h*l+parmDict[phfx+'D23']*k*l 1454 return -Dij*refl[4]**2*tand(refl[5]/2.0) 1454 if 'C' in calcControls[hfx+'histType']: 1455 return -180.*Dij*refl[4]**2*tand(refl[5]/2.0)/np.pi 1456 else: 1457 return -Dij*parmDict[hfx+'difC']*refl[4]**2/2. 1455 1458 1456 def GetHStrainShiftDerv(refl,SGData,phfx ):1459 def GetHStrainShiftDerv(refl,SGData,phfx,hfx,calcControls,parmDict): 1457 1460 'Needs a doc string' 1458 1461 laue = SGData['SGLaue'] … … 1482 1485 dDijDict = {phfx+'D11':h**2,phfx+'D22':k**2,phfx+'D33':l**2, 1483 1486 phfx+'D12':h*k,phfx+'D13':h*l,phfx+'D23':k*l} 1484 for item in dDijDict: 1485 dDijDict[item] *= -refl[4]**2*tand(refl[5]/2.0) 1487 if 'C' in calcControls[hfx+'histType']: 1488 for item in dDijDict: 1489 dDijDict[item] *= -180.0*refl[4]**2*tand(refl[5]/2.0)/np.pi 1490 else: 1491 for item in dDijDict: 1492 dDijDict[item] *= -parmDict[hfx+'difC']*refl[4]**2/2. 1486 1493 return dDijDict 1487 1494 … … 1583 1590 gam = parmDict[hfx+'X']*refl[4]+parmDict[hfx+'Y']*refl[4]**2 1584 1591 Ssig,Sgam = GetSampleSigGam(refl,0.0,G,GB,hfx,phfx,calcControls,parmDict) 1585 sig += Ssig #save peak sigma1592 sig += Ssig 1586 1593 sig = max(0.001,sig) 1587 gam += Sgam #save peak gamma1594 gam += Sgam 1588 1595 gam = max(0.001,gam) 1589 1596 return sig,gam … … 1636 1643 refl[5] = GetReflPos(refl,wave,G,hfx,calcControls,parmDict) #corrected reflection position 1637 1644 Lorenz = 1./(2.*sind(refl[5]/2.)**2*cosd(refl[5]/2.)) #Lorentz correction 1638 refl[5] += GetHStrainShift(refl,SGData,phfx, parmDict) #apply hydrostatic strain shift1645 refl[5] += GetHStrainShift(refl,SGData,phfx,hfx,calcControls,parmDict) #apply hydrostatic strain shift 1639 1646 refl[6:8] = GetReflSigGamCW(refl,wave,G,GB,phfx,calcControls,parmDict) #peak sig & gam 1640 1647 refl[11:15] = GetIntensityCorr(refl,Uniq,G,g,pfx,phfx,hfx,SGData,calcControls,parmDict) … … 1671 1678 refl[5] = GetReflPos(refl,0.0,G,hfx,calcControls,parmDict) #corrected reflection position 1672 1679 Lorenz = sind(parmDict[hfx+'2-theta']/2)*refl[4]**4 #TOF Lorentz correction 1673 refl[5] += GetHStrainShift(refl,SGData,phfx, parmDict) #apply hydrostatic strain shift1680 refl[5] += GetHStrainShift(refl,SGData,phfx,hfx,calcControls,parmDict) #apply hydrostatic strain shift 1674 1681 refl[6:8] = GetReflSigGamTOF(refl,G,GB,phfx,calcControls,parmDict) #peak sig & gam 1675 1682 refl[12:14] = GetReflAlpBet(refl,hfx,parmDict) … … 1904 1911 if Ka2: 1905 1912 depDerivDict[name][iBeg2:iFin2] += dpdA*dervDict2['pos'] 1906 dDijDict = GetHStrainShiftDerv(refl,SGData,phfx )1913 dDijDict = GetHStrainShiftDerv(refl,SGData,phfx,hfx,calcControls,parmDict) 1907 1914 for name in dDijDict: 1908 1915 if name in varylist: -
trunk/help/MCSA in GSAS.htm
r1475 r1478 23 23 <o:Author>vondreele</o:Author> 24 24 <o:LastAuthor>Von Dreele</o:LastAuthor> 25 <o:Revision>1 4</o:Revision>26 <o:TotalTime>5 79</o:TotalTime>25 <o:Revision>15</o:Revision> 26 <o:TotalTime>580</o:TotalTime> 27 27 <o:Created>2014-08-19T14:01:00Z</o:Created> 28 <o:LastSaved>2014-08-2 2T13:42:00Z</o:LastSaved>28 <o:LastSaved>2014-08-25T14:05:00Z</o:LastSaved> 29 29 <o:Pages>9</o:Pages> 30 30 <o:Words>2418</o:Words> … … 955 955 <p class=MsoNormal>In these exercises you will use GSAS-II to solve the 956 956 structures of 3-aminoquinoline and α-d-lactose monohydrate from powder 957 diffraction data via Monte Carlo/Simulated Annealing (MC/SA). The data sets were958 kindly provided by Peter Stephens (SUNY <span class=SpellE>StonyBrook</span>)959 and were originally collected on NSLS beam line X 17b. The MC/SA technique is957 diffraction data via Monte Carlo/Simulated Annealing (MC/SA). The data sets 958 were kindly provided by Peter Stephens (SUNY <span class=SpellE>StonyBrook</span>) 959 and were originally collected on NSLS beam line X3b1. The MC/SA technique is 960 960 needed in these cases because as you will see the data does not extend very far 961 961 in 2Θ so one cannot use charge flipping to solve them. The steps for each … … 1051 1051 <v:imagedata src="MCSA%20in%20GSAS_files/image001.png" o:title=""/> 1052 1052 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1053 src="MCSA%20in%20GSAS_files/image0 02.gif" v:shapes="_x0000_i1051"><![endif]></span></p>1053 src="MCSA%20in%20GSAS_files/image031.gif" v:shapes="_x0000_i1051"><![endif]></span></p> 1054 1054 1055 1055 <p class=MsoListParagraph><o:p> </o:p></p> … … 1172 1172 style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Select 1173 1173 <b style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1174 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>Sample 1175 Parameters</span></b> and uncheck refinement of <b style='mso-bidi-font-weight: 1176 normal'><span style='font-family:"Calibri","sans-serif";mso-ascii-theme-font: 1177 m inor-latin;mso-hansi-theme-font:minor-latin'>Histogram scale factor</span></b>.</p>1174 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>Sample Parameters</span></b> 1175 and uncheck refinement of <b style='mso-bidi-font-weight:normal'><span 1176 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1177 mso-hansi-theme-font:minor-latin'>Histogram scale factor</span></b>.</p> 1178 1178 1179 1179 <p class=MsoListParagraph style='text-indent:-.25in;mso-list:l1 level1 lfo4'><![if !supportLists]><span … … 1201 1201 <v:imagedata src="MCSA%20in%20GSAS_files/image003.png" o:title=""/> 1202 1202 </v:shape><![endif]--><![if !vml]><img border=0 width=621 height=500 1203 src="MCSA%20in%20GSAS_files/image0 04.gif" v:shapes="Picture_x0020_2"><![endif]></span></p>1203 src="MCSA%20in%20GSAS_files/image032.gif" v:shapes="Picture_x0020_2"><![endif]></span></p> 1204 1204 1205 1205 <p class=MsoNormal><o:p> </o:p></p> … … 1218 1218 <v:imagedata src="MCSA%20in%20GSAS_files/image005.png" o:title=""/> 1219 1219 </v:shape><![endif]--><![if !vml]><img border=0 width=346 height=336 1220 src="MCSA%20in%20GSAS_files/image0 06.gif" v:shapes="Picture_x0020_3"><![endif]></span></p>1220 src="MCSA%20in%20GSAS_files/image033.gif" v:shapes="Picture_x0020_3"><![endif]></span></p> 1221 1221 1222 1222 <p class=MsoNormal><o:p> </o:p></p> … … 1233 1233 <v:imagedata src="MCSA%20in%20GSAS_files/image007.png" o:title=""/> 1234 1234 </v:shape><![endif]--><![if !vml]><img border=0 width=479 height=500 1235 src="MCSA%20in%20GSAS_files/image0 08.gif" v:shapes="Picture_x0020_28"><![endif]></span></p>1235 src="MCSA%20in%20GSAS_files/image034.gif" v:shapes="Picture_x0020_28"><![endif]></span></p> 1236 1236 1237 1237 <p class=MsoNormal><o:p> </o:p></p> … … 1265 1265 <v:imagedata src="MCSA%20in%20GSAS_files/image009.png" o:title=""/> 1266 1266 </v:shape><![endif]--><![if !vml]><img border=0 width=450 height=300 1267 src="MCSA%20in%20GSAS_files/image0 10.gif" v:shapes="Picture_x0020_5"><![endif]></span></p>1267 src="MCSA%20in%20GSAS_files/image035.gif" v:shapes="Picture_x0020_5"><![endif]></span></p> 1268 1268 1269 1269 <p class=MsoNormal><o:p> </o:p></p> … … 1294 1294 <v:imagedata src="MCSA%20in%20GSAS_files/image011.png" o:title=""/> 1295 1295 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1296 src="MCSA%20in%20GSAS_files/image0 12.gif" v:shapes="Picture_x0020_6"><![endif]></span></p>1296 src="MCSA%20in%20GSAS_files/image036.gif" v:shapes="Picture_x0020_6"><![endif]></span></p> 1297 1297 1298 1298 <p class=MsoNormal><o:p> </o:p></p> … … 1337 1337 <v:imagedata src="MCSA%20in%20GSAS_files/image013.png" o:title=""/> 1338 1338 </v:shape><![endif]--><![if !vml]><img border=0 width=536 height=263 1339 src="MCSA%20in%20GSAS_files/image0 14.gif" v:shapes="Picture_x0020_7"><![endif]></span></p>1339 src="MCSA%20in%20GSAS_files/image037.gif" v:shapes="Picture_x0020_7"><![endif]></span></p> 1340 1340 1341 1341 <p class=MsoNormal><o:p> </o:p></p> … … 1371 1371 <v:imagedata src="MCSA%20in%20GSAS_files/image015.png" o:title=""/> 1372 1372 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1373 src="MCSA%20in%20GSAS_files/image0 16.gif" v:shapes="Picture_x0020_33"><![endif]></span></p>1373 src="MCSA%20in%20GSAS_files/image038.gif" v:shapes="Picture_x0020_33"><![endif]></span></p> 1374 1374 1375 1375 <p class=MsoNormal><o:p> </o:p></p> … … 1380 1380 <h2><span class=GramE>Step 6.</span> Setup for Monte Carlo/Simulated Annealing</h2> 1381 1381 1382 <p class=MsoNormal>The molecular structure of 3-aminoquinoline is two aromatic 1383 ringswith one N-substituted position and an amino side group</p>1382 <p class=MsoNormal>The molecular structure of 3-aminoquinoline is two aromatic rings 1383 with one N-substituted position and an amino side group</p> 1384 1384 1385 1385 <p class=MsoNormal><span style='mso-no-proof:yes'><!--[if gte vml 1]><v:shape … … 1389 1389 cropbottom="17428f" cropleft="9893f" cropright="13874f"/> 1390 1390 </v:shape><![endif]--><![if !vml]><img border=0 width=190 height=125 1391 src="MCSA%20in%20GSAS_files/image0 18.jpg" v:shapes="Picture_x0020_34"><![endif]></span></p>1391 src="MCSA%20in%20GSAS_files/image039.jpg" v:shapes="Picture_x0020_34"><![endif]></span></p> 1392 1392 1393 1393 <p class=MsoNormal>MC/SA structure solution consists of optimizing the position … … 1423 1423 <v:imagedata src="MCSA%20in%20GSAS_files/image019.png" o:title=""/> 1424 1424 </v:shape><![endif]--><![if !vml]><img border=0 width=400 height=427 1425 src="MCSA%20in%20GSAS_files/image0 20.gif" v:shapes="Picture_x0020_35"><![endif]></span></p>1425 src="MCSA%20in%20GSAS_files/image040.gif" v:shapes="Picture_x0020_35"><![endif]></span></p> 1426 1426 1427 1427 <p class=MsoNormal><o:p> </o:p></p> … … 1438 1438 cropbottom="15961f" cropleft="36898f" cropright="13504f"/> 1439 1439 </v:shape><![endif]--><![if !vml]><img border=0 width=382 height=312 1440 src="MCSA%20in%20GSAS_files/image0 22.jpg" v:shapes="Picture_x0020_1"><![endif]></span></p>1440 src="MCSA%20in%20GSAS_files/image041.jpg" v:shapes="Picture_x0020_1"><![endif]></span></p> 1441 1441 1442 1442 <p class=MsoNormal><o:p> </o:p></p> … … 1454 1454 cropbottom="16027f" cropleft="37724f" cropright="12673f"/> 1455 1455 </v:shape><![endif]--><![if !vml]><img border=0 width=384 height=313 1456 src="MCSA%20in%20GSAS_files/image0 24.jpg" v:shapes="Picture_x0020_36"><![endif]></span></p>1456 src="MCSA%20in%20GSAS_files/image042.jpg" v:shapes="Picture_x0020_36"><![endif]></span></p> 1457 1457 1458 1458 <p class=MsoNormal><o:p> </o:p></p> … … 1462 1462 necessary. You should change the <b style='mso-bidi-font-weight:normal'><span 1463 1463 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1464 mso-hansi-theme-font:minor-latin'>Residue name</span></b> to something 1465 meaningful, I used <b style='mso-bidi-font-weight:normal'><span 1466 style='font-family:"Calibri","sans-serif";mso-ascii-theme-font:minor-latin; 1467 mso-hansi-theme-font:minor-latin'>amino</span></b>.</p> 1464 mso-hansi-theme-font:minor-latin'>Residue name</span></b> to something meaningful, 1465 I used <b style='mso-bidi-font-weight:normal'><span style='font-family:"Calibri","sans-serif"; 1466 mso-ascii-theme-font:minor-latin;mso-hansi-theme-font:minor-latin'>amino</span></b>.</p> 1468 1467 1469 1468 <p class=MsoNormal>Next go to <b style='mso-bidi-font-weight:normal'><span … … 1484 1483 <v:imagedata src="MCSA%20in%20GSAS_files/image025.png" o:title=""/> 1485 1484 </v:shape><![endif]--><![if !vml]><img border=0 width=598 height=335 1486 src="MCSA%20in%20GSAS_files/image0 26.gif" v:shapes="Picture_x0020_37"><![endif]></span></p>1485 src="MCSA%20in%20GSAS_files/image043.gif" v:shapes="Picture_x0020_37"><![endif]></span></p> 1487 1486 1488 1487 <p class=MsoNormal><o:p> </o:p></p> … … 1496 1495 cropbottom="12829f" cropleft="38911f" cropright="11642f"/> 1497 1496 </v:shape><![endif]--><![if !vml]><img border=0 width=384 height=310 1498 src="MCSA%20in%20GSAS_files/image0 27.jpg" v:shapes="Picture_x0020_14"><![endif]></span></p>1497 src="MCSA%20in%20GSAS_files/image045.jpg" v:shapes="Picture_x0020_14"><![endif]></span></p> 1499 1498 1500 1499 <p class=MsoNormal><o:p> </o:p></p> … … 1544 1543 <v:imagedata src="MCSA%20in%20GSAS_files/image029.png" o:title=""/> 1545 1544 </v:shape><![endif]--><![if !vml]><img border=0 width=598 height=258 1546 src="MCSA%20in%20GSAS_files/image0 28.gif" v:shapes="Picture_x0020_39"><![endif]></span><span1545 src="MCSA%20in%20GSAS_files/image046.gif" v:shapes="Picture_x0020_39"><![endif]></span><span 1547 1546 style='mso-spacerun:yes'> </span></p> 1548 1547 … … 1618 1617 <v:imagedata src="MCSA%20in%20GSAS_files/image030.png" o:title=""/> 1619 1618 </v:shape><![endif]--><![if !vml]><img border=0 width=672 height=500 1620 src="MCSA%20in%20GSAS_files/image0 47.gif" v:shapes="Picture_x0020_16"><![endif]></span></p>1619 src="MCSA%20in%20GSAS_files/image058.gif" v:shapes="Picture_x0020_16"><![endif]></span></p> 1621 1620 1622 1621 <p class=MsoNormal><o:p> </o:p></p> … … 1640 1639 <v:imagedata src="MCSA%20in%20GSAS_files/image048.png" o:title=""/> 1641 1640 </v:shape><![endif]--><![if !vml]><img border=0 width=747 height=365 1642 src="MCSA%20in%20GSAS_files/image0 49.gif" v:shapes="Picture_x0020_19"><![endif]></span></p>1641 src="MCSA%20in%20GSAS_files/image059.gif" v:shapes="Picture_x0020_19"><![endif]></span></p> 1643 1642 1644 1643 <p class=MsoNormal><o:p> </o:p></p> … … 1653 1652 cropbottom="16530f" cropleft="37715f" cropright="13079f"/> 1654 1653 </v:shape><![endif]--><![if !vml]><img border=0 width=373 height=325 1655 src="MCSA%20in%20GSAS_files/image0 51.jpg" v:shapes="Picture_x0020_20"><![endif]></span></p>1654 src="MCSA%20in%20GSAS_files/image060.jpg" v:shapes="Picture_x0020_20"><![endif]></span></p> 1656 1655 1657 1656 <p class=MsoNormal><o:p> </o:p></p> … … 1691 1690 <v:imagedata src="MCSA%20in%20GSAS_files/image052.png" o:title=""/> 1692 1691 </v:shape><![endif]--><![if !vml]><img border=0 width=759 height=380 1693 src="MCSA%20in%20GSAS_files/image0 53.gif" v:shapes="Picture_x0020_22"><![endif]></span></p>1692 src="MCSA%20in%20GSAS_files/image061.gif" v:shapes="Picture_x0020_22"><![endif]></span></p> 1694 1693 1695 1694 <p class=MsoNormal><o:p> </o:p></p> … … 1704 1703 cropbottom="16469f" cropleft="37988f" cropright="12498f"/> 1705 1704 </v:shape><![endif]--><![if !vml]><img border=0 width=385 height=331 1706 src="MCSA%20in%20GSAS_files/image0 55.jpg" v:shapes="Picture_x0020_23"><![endif]></span></p>1705 src="MCSA%20in%20GSAS_files/image062.jpg" v:shapes="Picture_x0020_23"><![endif]></span></p> 1707 1706 1708 1707 <p class=MsoNormal><o:p> </o:p></p> … … 1716 1715 cropbottom="21852f" cropleft="3509f" cropright="49103f"/> 1717 1716 </v:shape><![endif]--><![if !vml]><img border=0 width=385 height=301 1718 src="MCSA%20in%20GSAS_files/image0 57.jpg" v:shapes="Picture_x0020_24"><![endif]></span></p>1717 src="MCSA%20in%20GSAS_files/image063.jpg" v:shapes="Picture_x0020_24"><![endif]></span></p> 1719 1718 1720 1719 <p class=MsoNormal><span class=GramE>as</span> drawn by the Mercury program </p> … … 1735 1734 cropbottom="15938f" cropleft="37111f" cropright="13377f"/> 1736 1735 </v:shape><![endif]--><![if !vml]><img border=0 width=384 height=325 1737 src="MCSA%20in%20GSAS_files/image0 72.jpg" v:shapes="Picture_x0020_25"><![endif]></span></p>1736 src="MCSA%20in%20GSAS_files/image065.jpg" v:shapes="Picture_x0020_25"><![endif]></span></p> 1738 1737 1739 1738 <p class=MsoNormal>And they will be listed in the Atoms table.</p> … … 1744 1743 <v:imagedata src="MCSA%20in%20GSAS_files/image066.png" o:title=""/> 1745 1744 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=300 1746 src="MCSA%20in%20GSAS_files/image0 76.gif" v:shapes="Picture_x0020_26"><![endif]></span></p>1745 src="MCSA%20in%20GSAS_files/image067.gif" v:shapes="Picture_x0020_26"><![endif]></span></p> 1747 1746 1748 1747 <p class=MsoNormal>It is now ready for <span class=SpellE>Rietveld</span> … … 1837 1836 <v:imagedata src="MCSA%20in%20GSAS_files/image068.png" o:title=""/> 1838 1837 </v:shape><![endif]--><![if !vml]><img border=0 width=450 height=291 1839 src="MCSA%20in%20GSAS_files/image0 77.gif" v:shapes="Picture_x0020_27"><![endif]></span></p>1838 src="MCSA%20in%20GSAS_files/image069.gif" v:shapes="Picture_x0020_27"><![endif]></span></p> 1840 1839 1841 1840 <p class=MsoNormal><o:p> </o:p></p> … … 1859 1858 <v:imagedata src="MCSA%20in%20GSAS_files/image070.png" o:title=""/> 1860 1859 </v:shape><![endif]--><![if !vml]><img border=0 width=633 height=280 1861 src="MCSA%20in%20GSAS_files/image07 8.gif" v:shapes="Picture_x0020_29"><![endif]></span></p>1860 src="MCSA%20in%20GSAS_files/image071.gif" v:shapes="Picture_x0020_29"><![endif]></span></p> 1862 1861 1863 1862 <p class=MsoNormal>To refine the rigid body parameters check the <b … … 1886 1885 <v:imagedata src="MCSA%20in%20GSAS_files/image073.png" o:title=""/> 1887 1886 </v:shape><![endif]--><![if !vml]><img border=0 width=633 height=301 1888 src="MCSA%20in%20GSAS_files/image07 9.gif" v:shapes="Picture_x0020_32"><![endif]></span></p>1887 src="MCSA%20in%20GSAS_files/image075.gif" v:shapes="Picture_x0020_32"><![endif]></span></p> 1889 1888 1890 1889 <p class=MsoNormal><span class=GramE>and</span> the profile shows the fit</p> … … 1895 1894 <v:imagedata src="MCSA%20in%20GSAS_files/image074.png" o:title=""/> 1896 1895 </v:shape><![endif]--><![if !vml]><img border=0 width=700 height=600 1897 src="MCSA%20in%20GSAS_files/image08 0.gif" v:shapes="Picture_x0020_31"><![endif]></span></p>1896 src="MCSA%20in%20GSAS_files/image081.gif" v:shapes="Picture_x0020_31"><![endif]></span></p> 1898 1897 1899 1898 <p class=MsoNormal>This completes the structure analysis for 3-aminoquinoline. -
trunk/help/MCSA in GSAS_files/filelist.xml
r1475 r1478 6 6 <o:File HRef="colorschememapping.xml"/> 7 7 <o:File HRef="image001.png"/> 8 <o:File HRef="image0 02.gif"/>8 <o:File HRef="image031.gif"/> 9 9 <o:File HRef="image003.png"/> 10 <o:File HRef="image0 04.gif"/>10 <o:File HRef="image032.gif"/> 11 11 <o:File HRef="image005.png"/> 12 <o:File HRef="image0 06.gif"/>12 <o:File HRef="image033.gif"/> 13 13 <o:File HRef="image007.png"/> 14 <o:File HRef="image0 08.gif"/>14 <o:File HRef="image034.gif"/> 15 15 <o:File HRef="image009.png"/> 16 <o:File HRef="image0 10.gif"/>16 <o:File HRef="image035.gif"/> 17 17 <o:File HRef="image011.png"/> 18 <o:File HRef="image0 12.gif"/>18 <o:File HRef="image036.gif"/> 19 19 <o:File HRef="image013.png"/> 20 <o:File HRef="image0 14.gif"/>20 <o:File HRef="image037.gif"/> 21 21 <o:File HRef="image015.png"/> 22 <o:File HRef="image0 16.gif"/>22 <o:File HRef="image038.gif"/> 23 23 <o:File HRef="image017.png"/> 24 <o:File HRef="image0 18.jpg"/>24 <o:File HRef="image039.jpg"/> 25 25 <o:File HRef="image019.png"/> 26 <o:File HRef="image0 20.gif"/>26 <o:File HRef="image040.gif"/> 27 27 <o:File HRef="image021.png"/> 28 <o:File HRef="image0 22.jpg"/>28 <o:File HRef="image041.jpg"/> 29 29 <o:File HRef="image023.png"/> 30 <o:File HRef="image0 24.jpg"/>30 <o:File HRef="image042.jpg"/> 31 31 <o:File HRef="image025.png"/> 32 <o:File HRef="image0 26.gif"/>32 <o:File HRef="image043.gif"/> 33 33 <o:File HRef="image044.png"/> 34 <o:File HRef="image0 27.jpg"/>34 <o:File HRef="image045.jpg"/> 35 35 <o:File HRef="image029.png"/> 36 <o:File HRef="image0 28.gif"/>36 <o:File HRef="image046.gif"/> 37 37 <o:File HRef="image030.png"/> 38 <o:File HRef="image0 47.gif"/>38 <o:File HRef="image058.gif"/> 39 39 <o:File HRef="image048.png"/> 40 <o:File HRef="image0 49.gif"/>40 <o:File HRef="image059.gif"/> 41 41 <o:File HRef="image050.png"/> 42 <o:File HRef="image0 51.jpg"/>42 <o:File HRef="image060.jpg"/> 43 43 <o:File HRef="image052.png"/> 44 <o:File HRef="image0 53.gif"/>44 <o:File HRef="image061.gif"/> 45 45 <o:File HRef="image054.png"/> 46 <o:File HRef="image0 55.jpg"/>46 <o:File HRef="image062.jpg"/> 47 47 <o:File HRef="image056.png"/> 48 <o:File HRef="image0 57.jpg"/>48 <o:File HRef="image063.jpg"/> 49 49 <o:File HRef="image064.png"/> 50 <o:File HRef="image0 72.jpg"/>50 <o:File HRef="image065.jpg"/> 51 51 <o:File HRef="image066.png"/> 52 <o:File HRef="image0 76.gif"/>52 <o:File HRef="image067.gif"/> 53 53 <o:File HRef="image068.png"/> 54 <o:File HRef="image0 77.gif"/>54 <o:File HRef="image069.gif"/> 55 55 <o:File HRef="image070.png"/> 56 <o:File HRef="image07 8.gif"/>56 <o:File HRef="image071.gif"/> 57 57 <o:File HRef="image073.png"/> 58 <o:File HRef="image07 9.gif"/>58 <o:File HRef="image075.gif"/> 59 59 <o:File HRef="image074.png"/> 60 <o:File HRef="image08 0.gif"/>60 <o:File HRef="image081.gif"/> 61 61 <o:File HRef="filelist.xml"/> 62 62 </xml> -
trunk/help/MCSA in GSAS_files/props061.xml
r1475 r1478 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <ds:datastoreItem ds:itemID="{ 79E00A83-53B5-4915-9D04-0FD6C141C6DA}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/></ds:schemaRefs></ds:datastoreItem>2 <ds:datastoreItem ds:itemID="{D16078EE-2E6A-4236-9DC4-007493B60ADB}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/></ds:schemaRefs></ds:datastoreItem>
Note: See TracChangeset
for help on using the changeset viewer.