1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
#include <stdio.h>
#include "path.h"
#include <stddef.h> /* for size_t */
#include "mt19937ar.h"
#include <math.h> /* for sin(), cos(), etc. */
#include "vector.h"
#include <errno.h> /* for errno */
#include <string.h> /* for strerror() */
#include "random.h"
typedef struct sim {
double *pos;
path *p;
} sim;
static double getKineticEnergy(double x, void *params)
{
return 1.0;
}
sim *simulate_path(double *pos0, double *dir0, double range, double theta0, size_t N, size_t n)
{
size_t i;
double *s, *theta1, *theta2, *x, *y, *z, *z1, *z2, tmp1[3], tmp2[3], k[3], normal[3];
double dx, dy, dz, theta, phi;
sim *simvalue = malloc(sizeof(sim));
s = calloc(N,sizeof(double));
theta1 = calloc(N,sizeof(double));
theta2 = calloc(N,sizeof(double));
x = calloc(N,sizeof(double));
y = calloc(N,sizeof(double));
z = calloc(N,sizeof(double));
simvalue->pos = calloc(N*3,sizeof(double));
z1 = calloc(n,sizeof(double));
z2 = calloc(n,sizeof(double));
init_genrand(0);
simvalue->pos[0] = pos0[0];
simvalue->pos[1] = pos0[1];
simvalue->pos[2] = pos0[2];
for (i = 1; i < N; i++) {
s[i] = range*i/(N-1);
theta1[i] = theta1[i-1] + randn()*theta0*sqrt(s[i]-s[i-1]);
theta2[i] = theta2[i-1] + randn()*theta0*sqrt(s[i]-s[i-1]);
theta = sqrt(theta1[i]*theta1[i] + theta2[i]*theta2[i]);
phi = atan2(theta2[i],theta1[i]);
dx = (s[i]-s[i-1])*sin(theta)*cos(phi);
dy = (s[i]-s[i-1])*sin(theta)*sin(phi);
dz = (s[i]-s[i-1])*cos(theta);
x[i] = x[i-1] + dx;
y[i] = y[i-1] + dy;
z[i] = z[i-1] + dz;
tmp1[0] = x[i];
tmp1[1] = y[i];
tmp1[2] = z[i];
k[0] = 0.0;
k[1] = 0.0;
k[2] = 1.0;
CROSS(normal,k,dir0);
normalize(normal);
phi = acos(DOT(k,dir0));
rotate(tmp2,tmp1,normal,phi);
simvalue->pos[i*3] = pos0[0] + tmp2[0];
simvalue->pos[i*3+1] = pos0[1] + tmp2[1];
simvalue->pos[i*3+2] = pos0[2] + tmp2[2];
}
for (i = 0; i < n; i++) {
z1[i] = path_get_coefficient(i+1,s,theta1,theta0,N);
z2[i] = path_get_coefficient(i+1,s,theta2,theta0,N);
}
simvalue->p = path_init(pos0,dir0,1.0,range,theta0,getKineticEnergy,NULL,z1,z2,n,1.0);
free(s);
free(theta1);
free(theta2);
free(x);
free(y);
free(z);
free(z1);
free(z2);
return simvalue;
}
void usage(void)
{
fprintf(stderr,"Usage: ./test-path [options]\n");
fprintf(stderr," -N number of points along track\n");
fprintf(stderr," -n number of terms in KL expansion\n");
fprintf(stderr," -t standard deviation of angular distribution\n");
fprintf(stderr," --range range of track\n");
fprintf(stderr," -h display this help message\n");
exit(1);
}
int main(int argc, char **argv)
{
size_t i, n, N;
double pos0[3], dir0[3], theta0, range, pos2[3], dir[3], T, t;
n = 2;
N = 1000;
theta0 = 0.1;
range = 100.0;
for (i = 1; i < argc; i++) {
if (!strncmp(argv[i], "--", 2)) {
if (!strcmp(argv[i]+2,"range")) {
range = strtod(argv[++i],NULL);
continue;
}
} else if (argv[i][0] == '-') {
switch (argv[i][1]) {
case 'N':
N = atoi(argv[++i]);
break;
case 'n':
n = atoi(argv[++i]);
break;
case 't':
theta0 = strtod(argv[++i],NULL);
break;
case 'h':
usage();
default:
fprintf(stderr, "unrecognized option '%s'\n", argv[i]);
exit(1);
}
}
}
pos0[0] = 0.0;
pos0[1] = 0.0;
pos0[2] = 0.0;
dir0[0] = 1.0;
dir0[1] = 0.0;
dir0[2] = 0.0;
sim *simvalue = simulate_path(pos0,dir0,range,theta0,N,n);
FILE *pipe = popen("graph -T X --bitmap-size 2000x2000 -X X -Y Y", "w");
if (!pipe) {
fprintf(stderr, "error running graph command: %s\n", strerror(errno));
exit(1);
}
for (i = 0; i < N; i++) {
fprintf(pipe,"%.10g %.10g\n", simvalue->pos[i*3], simvalue->pos[i*3+1]);
}
fprintf(pipe,"\n\n");
for (i = 0; i < N; i++) {
path_eval(simvalue->p,i*range/(N-1),pos2,dir,&T,&t,&theta0);
fprintf(pipe,"%.10g %.10g\n", pos2[0], pos2[1]);
}
fprintf(pipe,"\n\n");
if (pclose(pipe)) {
fprintf(stderr, "error closing graph command: %s\n", strerror(errno));
exit(1);
}
return 0;
}
|