Changeset 4834 for trunk


Ignore:
Timestamp:
Mar 1, 2021 9:49:38 AM (2 years ago)
Author:
vondreele
Message:

change 'RBf' to 'RBVf' & 'RBRf' as appropriate.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIobj.py

    r4824 r4834  
    19271927        'DebyeU' : 'Debye model Uiso',
    19281928        'RBV.*' : 'Vector rigid body parameter',
     1929        'RBVO([aijk])' : 'Vector rigid body orientation parameter \\1',
     1930        'RBVP([xyz])' : 'Vector rigid body \\1 position parameter',
     1931        'RBVf' : 'Vector rigid body site fraction',
     1932        'RBV([TLS])([123AB][123AB])' : 'Residue rigid body group disp. param.',
     1933        'RBVU' : 'Residue rigid body group Uiso param.',
    19291934        'RBRO([aijk])' : 'Residue rigid body orientation parameter \\1',
    19301935        'RBRP([xyz])' : 'Residue rigid body \\1 position parameter',
    19311936        'RBRTr;.*' : 'Residue rigid body torsion parameter',
     1937        'RBRf' : 'Residue rigid body site fraction',
    19321938        'RBR([TLS])([123AB][123AB])' : 'Residue rigid body group disp. param.',
    19331939        'RBRU' : 'Residue rigid body group Uiso param.',
  • trunk/GSASIIstrIO.py

    r4829 r4834  
    13871387            elif RB['Orient'][1] == 'V' and i not in fixAxis:
    13881388                phaseVary += [name,]
    1389         name = pfx+'RB'+'f:'+str(iRB)+':'+rbid
     1389        name = pfx+'RB'+rbKey+'f:'+str(iRB)+':'+rbid
    13901390        phaseDict[name] = RB['AtomFrac'][0]
    13911391        if RB['AtomFrac'][1]:
     
    36563656        else:
    36573657            sigstr += 12*' '
    3658     name = pfx+'RBf:'+rbsx
     3658    name = pfx+rbfx+'f:'+rbsx
    36593659    namstr += '%12s'%('Frac')
    36603660    valstr += '%12.5f'%(parmDict[name])
  • trunk/GSASIIstrMath.py

    r4824 r4834  
    9292                RBObj['Orient'][0][i] = parmDict[pfx+po+rbsx]
    9393            RBObj['Orient'][0] = G2mth.normQ(RBObj['Orient'][0])
    94             RBObj['AtomFrac'][0] = parmDict[pfx+'RBf:'+rbsx]
     94            RBObj['AtomFrac'][0] = parmDict[pfx+'RBVf:'+rbsx]
    9595            TLS = RBObj['ThermalMotion']
    9696            if 'T' in TLS[0]:
     
    127127                RBObj['Orient'][0][i] = parmDict[pfx+po+rbsx]               
    128128            RBObj['Orient'][0] = G2mth.normQ(RBObj['Orient'][0])
    129             RBObj['AtomFrac'][0] = parmDict[pfx+'RBf:'+rbsx]
     129            RBObj['AtomFrac'][0] = parmDict[pfx+'RBRf:'+rbsx]
    130130            TLS = RBObj['ThermalMotion']
    131131            if 'T' in TLS[0]:
     
    199199            atNum = AtLookup[atId]
    200200            if parmDict[pfx+'Afrac:'+str(AtLookup[atId])]:
    201                 dFdvDict[pfx+'RBf:'+rbsx] += dFdvDict[pfx+'Afrac:'+str(atNum)]
     201                dFdvDict[pfx+'RBVf:'+rbsx] += dFdvDict[pfx+'Afrac:'+str(atNum)]
    202202            dx = 0.00001
    203203            for iv in range(len(VModel['VectMag'])):
     
    269269            atNum = AtLookup[atId]
    270270            if parmDict[pfx+'Afrac:'+str(AtLookup[atId])]:
    271                 dFdvDict[pfx+'RBf:'+rbsx] += dFdvDict[pfx+'Afrac:'+str(atNum)]
     271                dFdvDict[pfx+'RBRf:'+rbsx] += dFdvDict[pfx+'Afrac:'+str(atNum)]
    272272            dx = 0.00001
    273273            for i,name in enumerate(['RBRPx:','RBRPy:','RBRPz:']):
Note: See TracChangeset for help on using the changeset viewer.