Changeset 2352350 in sasmodels
- Timestamp:
- Mar 17, 2016 10:07:29 AM (9 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 3bcd03d
- Parents:
- bdb653c (diff), f10bc52 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/adsorbed_layer.py
r54954e1 rf10bc52 89 89 background = 'background') 90 90 91 # these unit test values taken from SasView 3.1.2 91 92 tests = [ 92 93 [{'scale': 1.0, 'second_moment': 23.0, 'adsorbed_amount': 1.9, -
sasmodels/models/mono_gauss_coil.py
r15bd6e7 rf10bc52 86 86 background = 'background') 87 87 88 # these unit test values taken from SasView 3.1.2 88 89 tests = [ 89 [{'scale': 70.0, 'radius_gyration': 75.0, 'background': 0.0},90 [{'scale': 1.0, 'i_zero': 70.0, 'radius_gyration': 75.0, 'background': 0.0}, 90 91 [0.0106939, 0.469418], [57.1241, 0.112859]], 91 92 ] -
example/fit_sesans.py
r84db7a5 rbdb653c 1 1 import shlex, subprocess, sys 2 import platform 2 3 args = shlex.split("sesansfit.sh blah --edit") 3 4 args[1] = sys.argv[1] 4 subprocess.Popen(args, shell="True") 5 if platform.system() != "Windows": 6 args = ["sh"] + args 7 shellFlag = False 8 else: 9 shellFlag = True 10 subprocess.Popen(args, shell=shellFlag) -
example/sesansfit.sh
r15bd6e7 rbdb653c 8 8 set -x 9 9 10 python w-m bumps.cli $*10 python -m bumps.cli $*
Note: See TracChangeset
for help on using the changeset viewer.