Changeset 443 for trunk/GSASIIphsGUI.py


Ignore:
Timestamp:
Dec 16, 2011 1:15:09 PM (11 years ago)
Author:
vondreele
Message:

make sum powder profiles numpy arrays
change name UpdateBackgroundGrid? to UpdateBackground?
min size is 1 nanometer = 10A
implement diffuse scattering model for background
iso/aniso Size & Mustrain are now Size:i/a instead of 0/1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r440 r443  
    22072207                try:
    22082208                    size = float(Obj.GetValue())
    2209                     if pid < 3 and size <= 0.01:            #10A lower limit!
     2209                    if pid < 3 and size <= 0.001:            #10A lower limit!
    22102210                        raise ValueError
    22112211                    UseList[hist]['Size'][4][pid] = size                   
     
    22162216                try:
    22172217                    size = float(Obj.GetValue())
    2218                     if size <= 0.01:            #10A lower limit!
     2218                    if size <= 0.001:            #10A lower limit!
    22192219                        raise ValueError
    22202220                    UseList[hist]['Size'][1][pid] = size
Note: See TracChangeset for help on using the changeset viewer.