Changeset 658795d in sasview


Ignore:
Timestamp:
Oct 4, 2018 5:52:28 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
3ab2105
Parents:
8ac8717
Message:

Remove e-06 from default magnetic values

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    r8ac8717 r658795d  
    29762976        self._magnet_model.clear() 
    29772977        # default initial value 
    2978         m0 = 0.5e-06 
     2978        m0 = 0.5 
    29792979        for param in self.model_parameters.call_parameters: 
    29802980            if param.type != 'magnetic': continue 
    29812981            if "M0" in param.name: 
    2982                 m0 += 0.5e-06 
     2982                m0 += 0.5 
    29832983                value = m0 
    29842984            else: 
Note: See TracChangeset for help on using the changeset viewer.