source: sasmodels/sasmodels/models/lib/gauss76.c @ 66d119f

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 66d119f was 66d119f, checked in by piotr, 8 years ago

Converted StackedDisks?

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*
2 *  GaussWeights.c
3 *  SANSAnalysis
4 *
5 *  Created by Andrew Jackson on 4/23/07.
6 *  Copyright 2007 __MyCompanyName__. All rights reserved.
7 *
8 */
9#define N_POINTS_76 76
10
11// Gaussians
12constant double Gauss76Wt[N_POINTS_76]={
13        .00126779163408536,             //0
14        .00294910295364247,
15        .00462793522803742,
16        .00629918049732845,
17        .00795984747723973,
18        .00960710541471375,
19        .0112381685696677,
20        .0128502838475101,
21        .0144407317482767,
22        .0160068299122486,
23        .0175459372914742,              //10
24        .0190554584671906,
25        .020532847967908,
26        .0219756145344162,
27        .0233813253070112,
28        .0247476099206597,
29        .026072164497986,
30        .0273527555318275,
31        .028587223650054,
32        .029773487255905,
33        .0309095460374916,              //20
34        .0319934843404216,
35        .0330234743977917,
36        .0339977794120564,
37        .0349147564835508,
38        .0357728593807139,
39        .0365706411473296,
40        .0373067565423816,
41        .0379799643084053,
42        .0385891292645067,
43        .0391332242205184,              //30
44        .0396113317090621,
45        .0400226455325968,
46        .040366472122844,
47        .0406422317102947,
48        .0408494593018285,
49        .040987805464794,
50        .0410570369162294,
51        .0410570369162294,
52        .040987805464794,
53        .0408494593018285,              //40
54        .0406422317102947,
55        .040366472122844,
56        .0400226455325968,
57        .0396113317090621,
58        .0391332242205184,
59        .0385891292645067,
60        .0379799643084053,
61        .0373067565423816,
62        .0365706411473296,
63        .0357728593807139,              //50
64        .0349147564835508,
65        .0339977794120564,
66        .0330234743977917,
67        .0319934843404216,
68        .0309095460374916,
69        .029773487255905,
70        .028587223650054,
71        .0273527555318275,
72        .026072164497986,
73        .0247476099206597,              //60
74        .0233813253070112,
75        .0219756145344162,
76        .020532847967908,
77        .0190554584671906,
78        .0175459372914742,
79        .0160068299122486,
80        .0144407317482767,
81        .0128502838475101,
82        .0112381685696677,
83        .00960710541471375,             //70
84        .00795984747723973,
85        .00629918049732845,
86        .00462793522803742,
87        .00294910295364247,
88        .00126779163408536              //75 (indexed from 0)
89};
90
91constant double Gauss76Z[N_POINTS_76]={
92        -.999505948362153,              //0
93        -.997397786355355,
94        -.993608772723527,
95        -.988144453359837,
96        -.981013938975656,
97        -.972229228520377,
98        -.961805126758768,
99        -.949759207710896,
100        -.936111781934811,
101        -.92088586125215,
102        -.904107119545567,              //10
103        -.885803849292083,
104        -.866006913771982,
105        -.844749694983342,
106        -.822068037328975,
107        -.7980001871612,
108        -.77258672828181,
109        -.74587051350361,
110        -.717896592387704,
111        -.688712135277641,
112        -.658366353758143,              //20
113        -.626910417672267,
114        -.594397368836793,
115        -.560882031601237,
116        -.526420920401243,
117        -.491072144462194,
118        -.454895309813726,
119        -.417951418780327,
120        -.380302767117504,
121        -.342012838966962,
122        -.303146199807908,              //30
123        -.263768387584994,
124        -.223945802196474,
125        -.183745593528914,
126        -.143235548227268,
127        -.102483975391227,
128        -.0615595913906112,
129        -.0205314039939986,
130        .0205314039939986,
131        .0615595913906112,
132        .102483975391227,                       //40
133        .143235548227268,
134        .183745593528914,
135        .223945802196474,
136        .263768387584994,
137        .303146199807908,
138        .342012838966962,
139        .380302767117504,
140        .417951418780327,
141        .454895309813726,
142        .491072144462194,               //50
143        .526420920401243,
144        .560882031601237,
145        .594397368836793,
146        .626910417672267,
147        .658366353758143,
148        .688712135277641,
149        .717896592387704,
150        .74587051350361,
151        .77258672828181,
152        .7980001871612, //60
153        .822068037328975,
154        .844749694983342,
155        .866006913771982,
156        .885803849292083,
157        .904107119545567,
158        .92088586125215,
159        .936111781934811,
160        .949759207710896,
161        .961805126758768,
162        .972229228520377,               //70
163        .981013938975656,
164        .988144453359837,
165        .993608772723527,
166        .997397786355355,
167        .999505948362153                //75
168};
Note: See TracBrowser for help on using the repository browser.