Changeset 38d8774 in sasmodels
- Timestamp:
- Nov 25, 2015 1:09:28 PM (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:
- 319ab14
- Parents:
- 82d239a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/lamellar.py
r3e428ec r38d8774 81 81 const double sub = sld - solvent_sld; 82 82 const double qsq = q*q; 83 return 4.0e-4*M_PI*sub*sub/qsq * (1.0-cos(q*thickness)) 84 / (thickness*qsq); 83 // Original expression 84 //return 4.0e-4*M_PI*sub*sub/qsq * (1.0-cos(q*thickness)) / (thickness*qsq); 85 // const double alpha = fmod(q*thickness+0.1, 2.0*M_PI)-0.1; 86 // Use small angle fix 1-cos(theta) = 2 sin^2(theta/2) 87 const double sinq2 = sin(0.5*q*thickness); 88 return 4.0e-4*M_PI*sub*sub/qsq * 2.0*sinq2*sinq2 / (thickness*qsq); 85 89 """ 86 90
Note: See TracChangeset
for help on using the changeset viewer.