- Timestamp:
- Mar 12, 2021 12:35:11 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r4844 r4852 4104 4104 refChoices = ['All','Refined'] 4105 4105 txt = ('"R" indicates a refined variable\n'+ 4106 '"C" indicates generated from a constraint')4106 '"C" indicates generated from a user entered constraint') 4107 4107 if fcount: 4108 4108 refChoices += ['Frozen'] -
trunk/GSASIIdataGUI.py
r4850 r4852 5515 5515 if parent is None: 5516 5516 dlg = wx.MessageDialog(self, message, title, wtype) 5517 dlg.Raise() 5517 5518 else: 5518 5519 dlg = wx.MessageDialog(parent, message, title, wtype) -
trunk/GSASIImapvars.py
r4851 r4852 699 699 for var in constrDict[rel]: 700 700 if var.startswith('_'): continue 701 if not re.match('[0-9]*:[0-9\ *]*:',var):701 if not re.match('[0-9]*:[0-9\\*]*:',var): 702 702 warnmsg += "\nParameter "+str(var)+" does not begin with a ':'" 703 703 if var in varyList: … … 1580 1580 if not symFlag: continue 1581 1581 if multarr is None: 1582 #s1 = str(mv) + ' = '1583 1582 s1 = '' 1584 1583 s2 = ' = ' + str(mv) -
trunk/GSASIIstrIO.py
r4849 r4852 175 175 If the constraint cannot be used due to too many dropped variables, 176 176 it is counted as ignored. 177 NB: this processing does not include symmetry imposed constraints 177 178 178 179 :param list constList: a list of lists where each item in the outer list -
trunk/GSASIIstrMath.py
r4840 r4852 749 749 ast = np.sqrt(np.diag(G)) 750 750 Mast = twopisq*np.multiply.outer(ast,ast) 751 SGMT = np.array([ops[0].T for ops in SGData['SGOps']]) 751 SGMT = np.array([ops[0].T for ops in SGData['SGOps']]) #### ops[0].T 752 752 SGT = np.array([ops[1] for ops in SGData['SGOps']]) 753 753 FFtables = calcControls['FFtables'] … … 875 875 ast = np.sqrt(np.diag(G)) 876 876 Mast = twopisq*np.multiply.outer(ast,ast) 877 SGMT = np.array([ops[0].T for ops in SGData['SGOps']]) 877 SGMT = np.array([ops[0].T for ops in SGData['SGOps']]) #### ops[0].T? 878 878 SGT = np.array([ops[1] for ops in SGData['SGOps']]) 879 879 FFtables = calcControls['FFtables'] … … 3457 3457 for j in dependentVars: 3458 3458 depDerivDict[j] = np.zeros(shape=(len(x))) 3459 # print 'dependent vars',dependentVars3459 # print ('dependent vars',dependentVars) 3460 3460 hId = Histogram['hId'] 3461 3461 hfx = ':%d:'%(hId)
Note: See TracChangeset
for help on using the changeset viewer.