Changeset 859567e in sasmodels
- Timestamp:
- Apr 17, 2017 9:31:41 AM (8 years ago)
- Branches:
- master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- cb038a2
- Parents:
- e755d8a
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/special.py
r597878a r859567e 286 286 retvalue = 3*sas_j1(x)/x 287 287 retvalue[x==0] = 1. 288 288 289 289 def sas_2J1x_x(x): 290 290 retvalue = 2*sas_J1(x)/x … … 294 294 # Gaussians 295 295 296 Gauss20Wt = [296 Gauss20Wt = np.array([ 297 297 .0176140071391521, 298 298 .0406014298003869, … … 315 315 .0406014298003869, 316 316 .0176140071391521 317 ] 318 319 Gauss20Z = [317 ]) 318 319 Gauss20Z = np.array([ 320 320 -.993128599185095, 321 321 -.963971927277914, … … 338 338 .963971927277914, 339 339 .993128599185095 340 ] 341 342 Gauss76Wt = [340 ]) 341 342 Gauss76Wt = np.array([ 343 343 .00126779163408536, #0 344 344 .00294910295364247, … … 417 417 .00294910295364247, 418 418 .00126779163408536 #75 (indexed from 0) 419 ] 420 421 Gauss76Z = [419 ]) 420 421 Gauss76Z = np.array([ 422 422 -.999505948362153, #0 423 423 -.997397786355355, … … 496 496 .997397786355355, 497 497 .999505948362153 #75 498 ] 499 500 Gauss150Z = [498 ]) 499 500 Gauss150Z = np.array([ 501 501 -0.9998723404457334, 502 502 -0.9993274305065947, … … 649 649 0.9993274305065947, 650 650 0.9998723404457334 651 ] 652 653 Gauss150Wt = [651 ]) 652 653 Gauss150Wt = np.array([ 654 654 0.0003276086705538, 655 655 0.0007624720924706, … … 802 802 0.0007624720924706, 803 803 0.0003276086705538 804 ] 805 804 ])
Note: See TracChangeset
for help on using the changeset viewer.