Changeset cb4ef58 in sasview for src/sas/sascalc/calculator/sas_gen.py
- Timestamp:
- Apr 13, 2016 9:23:07 AM (9 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 16b769b
- Parents:
- fa4ea80
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sascalc/calculator/sas_gen.py
r9e531f2 rcb4ef58 80 80 ## Parameter details [units, min, max] 81 81 self.details = {} 82 self.details['scale'] = ['', None, None]83 self.details['background'] = ['[1/cm]', None, None]84 self.details['solvent_SLD'] = ['1/A^(2)', None, None]85 self.details['total_volume'] = ['A^(3)', None, None]86 self.details['Up_frac_in'] = ['[u/(u+d)]', None, None]87 self.details['Up_frac_out'] = ['[u/(u+d)]', None, None]88 self.details['Up_theta'] = ['[deg]', None, None]82 self.details['scale'] = ['', 0.0, numpy.inf] 83 self.details['background'] = ['[1/cm]', 0.0, numpy.inf] 84 self.details['solvent_SLD'] = ['1/A^(2)', -numpy.inf, numpy.inf] 85 self.details['total_volume'] = ['A^(3)', 0.0, numpy.inf] 86 self.details['Up_frac_in'] = ['[u/(u+d)]', 0.0, 1.0] 87 self.details['Up_frac_out'] = ['[u/(u+d)]', 0.0, 1.0] 88 self.details['Up_theta'] = ['[deg]', -numpy.inf, numpy.inf] 89 89 # fixed parameters 90 90 self.fixed = []
Note: See TracChangeset
for help on using the changeset viewer.