Changeset 4950
- Timestamp:
- Jun 11, 2021 7:49:24 AM (20 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r4904 r4950 6406 6406 else: 6407 6407 x,y = np.tan(Beta/2.)*np.cos(Phi),np.tan(Beta/2.)*np.sin(Phi) 6408 npts = 2016408 npts = 101 6409 6409 X,Y = np.meshgrid(np.linspace(1.,-1.,npts),np.linspace(-1.,1.,npts)) 6410 6410 R,P = np.sqrt(X**2+Y**2).flatten(),npatan2d(Y,X).flatten() … … 6557 6557 Z = np.reshape(Z,(npts,npts)) 6558 6558 try: 6559 CS = Plot.contour(Y,X,Z ,aspect='equal')6559 CS = Plot.contour(Y,X,Z) 6560 6560 Plot.clabel(CS,fontsize=9,inline=1) 6561 6561 except ValueError: -
trunk/GSASIIstrIO.py
r4917 r4950 3075 3075 wtFrSum[hId] = 0. 3076 3076 if 'PWDR' in histogram: 3077 parmDict[pfx+'Scale'] = max(1.e-4,parmDict[pfx+'Scale']) 3077 3078 for item in ['Scale','Extinction']: 3078 3079 hapData[item][0] = parmDict[pfx+item] -
trunk/GSASIIstrMath.py
r4919 r4950 2599 2599 def GetIntensityCorr(refl,im,uniq,G,g,pfx,phfx,hfx,SGData,calcControls,parmDict): 2600 2600 'Needs a doc string' #need powder extinction! 2601 parmDict[hfx+'Scale'] = max(1.e-4,parmDict[hfx+'Scale']) #put floor on phase fraction scale 2601 2602 Icorr = parmDict[phfx+'Scale']*parmDict[hfx+'Scale']*refl[3+im] #scale*multiplicity 2602 2603 if 'X' in parmDict[hfx+'Type']:
Note: See TracChangeset
for help on using the changeset viewer.