Changeset 87bc707 in sasmodels for sasmodels/models/hollow_rectangular_prism_thin_walls.c
- Timestamp:
- Oct 14, 2016 4:12:22 PM (8 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 6831fa0
- Parents:
- 9068f4c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/hollow_rectangular_prism_thin_walls.c
ra807206 r87bc707 2 2 double Iq(double q, double sld, double solvent_sld, double length_a, 3 3 double b2a_ratio, double c2a_ratio); 4 double Iqxy(double qx, double qy, double sld, double solvent_sld,5 double length_a, double b2a_ratio, double c2a_ratio);6 4 7 5 double form_volume(double length_a, double b2a_ratio, double c2a_ratio) … … 84 82 85 83 } 86 87 double Iqxy(double qx, double qy,88 double sld,89 double solvent_sld,90 double length_a,91 double b2a_ratio,92 double c2a_ratio)93 {94 double q = sqrt(qx*qx + qy*qy);95 double intensity = Iq(q, sld, solvent_sld, length_a, b2a_ratio, c2a_ratio);96 return intensity;97 }
Note: See TracChangeset
for help on using the changeset viewer.