Changeset 3318
- Timestamp:
- Mar 18, 2018 12:21:17 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIImath.py
r3287 r3318 647 647 for iA,result in enumerate(results): 648 648 if iA != Orig: 649 for [Txyz,Top,Tunit ] in result:649 for [Txyz,Top,Tunit,Spn] in result: 650 650 Dx = np.array([Txyz-Oxyz+unit for unit in Units]) 651 651 dx = np.inner(Dx,Amat) -
trunk/GSASIIrestrGUI.py
r3243 r3318 231 231 else: 232 232 result = G2spc.GenAtom(Tcoord,SGData,False,Move=False) 233 for Txyz,Top,Tunit in result:233 for Txyz,Top,Tunit,Spn in result: 234 234 Dx = (Txyz-np.array(Ocoord))+Units 235 235 dx = np.inner(Amat,Dx) … … 393 393 BsumR = (Radii[Otype][0]+Radii[Ttype][0])*Factor 394 394 AsumR = (Radii[Otype][1]+Radii[Ttype][1])*Factor 395 for Txyz,Top,Tunit in result:395 for Txyz,Top,Tunit,Spn in result: 396 396 Dx = (Txyz-Ocoord)+Units 397 397 dx = np.inner(Amat,Dx) -
trunk/GSASIIstrMain.py
r3136 r3318 576 576 BsumR = (Radii[Oatom[2]][0]+Radii[Tatom[2]][0])*Factor[0] 577 577 AsumR = (Radii[Oatom[2]][1]+Radii[Tatom[2]][1])*Factor[1] 578 for Txyz,Top,Tunitin result:578 for [Txyz,Top,Tunit,Spn] in result: 579 579 Dx = (Txyz-np.array(Oatom[3:6]))+Units 580 580 dx = np.inner(Amat,Dx)
Note: See TracChangeset
for help on using the changeset viewer.