| 18 |
|
#include <string.h> |
| 19 |
|
#include <math.h> |
| 20 |
|
#include "bsdfrep.h" |
| 21 |
+ |
|
| 22 |
+ |
#ifndef NEIGH_FACT2 |
| 23 |
+ |
#define NEIGH_FACT2 0.1 /* empirical neighborhood distance weight */ |
| 24 |
+ |
#endif |
| 25 |
|
/* number of processes to run */ |
| 26 |
|
int nprocs = 1; |
| 27 |
|
/* number of children (-1 in child) */ |
| 31 |
|
int nrows, ncols; /* array size (matches migration) */ |
| 32 |
|
float *price; /* migration prices */ |
| 33 |
|
short *sord; /* sort for each row, low to high */ |
| 34 |
+ |
float *prow; /* current price row */ |
| 35 |
|
} PRICEMAT; /* sorted pricing matrix */ |
| 36 |
|
|
| 37 |
|
#define pricerow(p,i) ((p)->price + (i)*(p)->ncols) |
| 124 |
|
if (pid < 0) { |
| 125 |
|
fprintf(stderr, "%s: cannot fork subprocess\n", |
| 126 |
|
progname); |
| 127 |
+ |
await_children(nchild); |
| 128 |
|
exit(1); |
| 129 |
|
} |
| 130 |
|
++nchild; /* subprocess started */ |
| 139 |
|
|
| 140 |
|
#endif /* ! _WIN32 */ |
| 141 |
|
|
| 142 |
+ |
/* Compute normalized distribution scattering functions for comparison */ |
| 143 |
+ |
static void |
| 144 |
+ |
compute_nDSFs(const RBFNODE *rbf0, const RBFNODE *rbf1) |
| 145 |
+ |
{ |
| 146 |
+ |
const double nf0 = (GRIDRES*GRIDRES) / rbf0->vtotal; |
| 147 |
+ |
const double nf1 = (GRIDRES*GRIDRES) / rbf1->vtotal; |
| 148 |
+ |
int x, y; |
| 149 |
+ |
FVECT dv; |
| 150 |
+ |
|
| 151 |
+ |
for (x = GRIDRES; x--; ) |
| 152 |
+ |
for (y = GRIDRES; y--; ) { |
| 153 |
+ |
ovec_from_pos(dv, x, y); /* cube root (brightness) */ |
| 154 |
+ |
dsf_grid[x][y].val[0] = pow(nf0*eval_rbfrep(rbf0, dv), .3333); |
| 155 |
+ |
dsf_grid[x][y].val[1] = pow(nf1*eval_rbfrep(rbf1, dv), .3333); |
| 156 |
+ |
} |
| 157 |
+ |
} |
| 158 |
+ |
|
| 159 |
+ |
/* Compute neighborhood distance-squared (dissimilarity) */ |
| 160 |
+ |
static double |
| 161 |
+ |
neighborhood_dist2(int x0, int y0, int x1, int y1) |
| 162 |
+ |
{ |
| 163 |
+ |
int rad = GRIDRES>>5; |
| 164 |
+ |
double sum2 = 0.; |
| 165 |
+ |
double d; |
| 166 |
+ |
int p[4]; |
| 167 |
+ |
int i, j; |
| 168 |
+ |
/* check radius */ |
| 169 |
+ |
p[0] = x0; p[1] = y0; p[2] = x1; p[3] = y1; |
| 170 |
+ |
for (i = 4; i--; ) { |
| 171 |
+ |
if (p[i] < rad) rad = p[i]; |
| 172 |
+ |
if (GRIDRES-1-p[i] < rad) rad = GRIDRES-1-p[i]; |
| 173 |
+ |
} |
| 174 |
+ |
for (i = -rad; i <= rad; i++) |
| 175 |
+ |
for (j = -rad; j <= rad; j++) { |
| 176 |
+ |
d = dsf_grid[x0+i][y0+j].val[0] - |
| 177 |
+ |
dsf_grid[x1+i][y1+j].val[1]; |
| 178 |
+ |
sum2 += d*d; |
| 179 |
+ |
} |
| 180 |
+ |
return(sum2 / (4*rad*(rad+1) + 1)); |
| 181 |
+ |
} |
| 182 |
+ |
|
| 183 |
|
/* Comparison routine needed for sorting price row */ |
| 184 |
|
static int |
| 185 |
|
msrt_cmp(void *b, const void *p1, const void *p2) |
| 186 |
|
{ |
| 187 |
|
PRICEMAT *pm = (PRICEMAT *)b; |
| 188 |
< |
int ri = ((const short *)p1 - pm->sord) / pm->ncols; |
| 189 |
< |
float c1 = pricerow(pm,ri)[*(const short *)p1]; |
| 143 |
< |
float c2 = pricerow(pm,ri)[*(const short *)p2]; |
| 188 |
> |
float c1 = pm->prow[*(const short *)p1]; |
| 189 |
> |
float c2 = pm->prow[*(const short *)p2]; |
| 190 |
|
|
| 191 |
|
if (c1 > c2) return(1); |
| 192 |
|
if (c1 < c2) return(-1); |
| 200 |
|
FVECT *vto = (FVECT *)malloc(sizeof(FVECT) * to_rbf->nrbf); |
| 201 |
|
int i, j; |
| 202 |
|
|
| 203 |
+ |
compute_nDSFs(from_rbf, to_rbf); |
| 204 |
|
pm->nrows = from_rbf->nrbf; |
| 205 |
|
pm->ncols = to_rbf->nrbf; |
| 206 |
|
pm->price = (float *)malloc(sizeof(float) * pm->nrows*pm->ncols); |
| 217 |
|
for (i = from_rbf->nrbf; i--; ) { |
| 218 |
|
const double from_ang = R2ANG(from_rbf->rbfa[i].crad); |
| 219 |
|
FVECT vfrom; |
| 220 |
+ |
short *srow; |
| 221 |
|
ovec_from_pos(vfrom, from_rbf->rbfa[i].gx, from_rbf->rbfa[i].gy); |
| 222 |
+ |
pm->prow = pricerow(pm,i); |
| 223 |
+ |
srow = psortrow(pm,i); |
| 224 |
|
for (j = to_rbf->nrbf; j--; ) { |
| 225 |
< |
pricerow(pm,i)[j] = acos(DOT(vfrom, vto[j])) + |
| 226 |
< |
fabs(R2ANG(to_rbf->rbfa[j].crad) - from_ang); |
| 227 |
< |
psortrow(pm,i)[j] = j; |
| 225 |
> |
double d; /* quadratic cost function */ |
| 226 |
> |
d = Acos(DOT(vfrom, vto[j])); |
| 227 |
> |
pm->prow[j] = d*d; |
| 228 |
> |
d = R2ANG(to_rbf->rbfa[j].crad) - from_ang; |
| 229 |
> |
pm->prow[j] += d*d; |
| 230 |
> |
/* neighborhood difference */ |
| 231 |
> |
pm->prow[j] += NEIGH_FACT2 * neighborhood_dist2( |
| 232 |
> |
from_rbf->rbfa[i].gx, from_rbf->rbfa[i].gy, |
| 233 |
> |
to_rbf->rbfa[j].gx, to_rbf->rbfa[j].gy ); |
| 234 |
> |
srow[j] = j; |
| 235 |
|
} |
| 236 |
< |
qsort_r(psortrow(pm,i), pm->ncols, sizeof(short), pm, &msrt_cmp); |
| 236 |
> |
qsort_r(srow, pm->ncols, sizeof(short), pm, &msrt_cmp); |
| 237 |
|
} |
| 238 |
|
free(vto); |
| 239 |
|
} |
| 250 |
|
static double |
| 251 |
|
min_cost(double amt2move, const double *avail, const PRICEMAT *pm, int s) |
| 252 |
|
{ |
| 253 |
+ |
const short *srow = psortrow(pm,s); |
| 254 |
+ |
const float *prow = pricerow(pm,s); |
| 255 |
|
double total_cost = 0; |
| 256 |
|
int j; |
| 198 |
– |
|
| 199 |
– |
if (amt2move <= FTINY) /* pre-emptive check */ |
| 200 |
– |
return(0.); |
| 257 |
|
/* move cheapest first */ |
| 258 |
< |
for (j = 0; j < pm->ncols && amt2move > FTINY; j++) { |
| 259 |
< |
int d = psortrow(pm,s)[j]; |
| 258 |
> |
for (j = 0; (j < pm->ncols) & (amt2move > FTINY); j++) { |
| 259 |
> |
int d = srow[j]; |
| 260 |
|
double amt = (amt2move < avail[d]) ? amt2move : avail[d]; |
| 261 |
|
|
| 262 |
< |
total_cost += amt * pricerow(pm,s)[d]; |
| 262 |
> |
total_cost += amt * prow[d]; |
| 263 |
|
amt2move -= amt; |
| 264 |
|
} |
| 265 |
|
return(total_cost); |
| 266 |
|
} |
| 267 |
|
|
| 268 |
< |
/* Take a step in migration by choosing optimal bucket to transfer */ |
| 268 |
> |
typedef struct { |
| 269 |
> |
short s, d; /* source and destination */ |
| 270 |
> |
float dc; /* discount to push inventory */ |
| 271 |
> |
} ROWSENT; /* row sort entry */ |
| 272 |
> |
|
| 273 |
> |
/* Compare entries by discounted moving price */ |
| 274 |
> |
static int |
| 275 |
> |
rmovcmp(void *b, const void *p1, const void *p2) |
| 276 |
> |
{ |
| 277 |
> |
PRICEMAT *pm = (PRICEMAT *)b; |
| 278 |
> |
const ROWSENT *re1 = (const ROWSENT *)p1; |
| 279 |
> |
const ROWSENT *re2 = (const ROWSENT *)p2; |
| 280 |
> |
double price_diff; |
| 281 |
> |
|
| 282 |
> |
if (re1->d < 0) return(re2->d >= 0); |
| 283 |
> |
if (re2->d < 0) return(-1); |
| 284 |
> |
price_diff = re1->dc*pricerow(pm,re1->s)[re1->d] - |
| 285 |
> |
re2->dc*pricerow(pm,re2->s)[re2->d]; |
| 286 |
> |
if (price_diff > 0) return(1); |
| 287 |
> |
if (price_diff < 0) return(-1); |
| 288 |
> |
return(0); |
| 289 |
> |
} |
| 290 |
> |
|
| 291 |
> |
/* Take a step in migration by choosing reasonable bucket to transfer */ |
| 292 |
|
static double |
| 293 |
< |
migration_step(MIGRATION *mig, double *src_rem, double *dst_rem, const PRICEMAT *pm) |
| 293 |
> |
migration_step(MIGRATION *mig, double *src_rem, double *dst_rem, PRICEMAT *pm) |
| 294 |
|
{ |
| 295 |
+ |
const int max2check = 100; |
| 296 |
|
const double maxamt = 1./(double)pm->ncols; |
| 297 |
< |
const double minamt = maxamt*5e-6; |
| 298 |
< |
static double *src_cost = NULL; |
| 299 |
< |
static int n_alloc = 0; |
| 297 |
> |
const double minamt = maxamt*1e-4; |
| 298 |
> |
double *src_cost; |
| 299 |
> |
ROWSENT *rord; |
| 300 |
|
struct { |
| 301 |
|
int s, d; /* source and destination */ |
| 302 |
< |
double price; /* price estimate per amount moved */ |
| 302 |
> |
double price; /* cost per amount moved */ |
| 303 |
|
double amt; /* amount we can move */ |
| 304 |
|
} cur, best; |
| 305 |
< |
int i; |
| 306 |
< |
|
| 307 |
< |
if (pm->nrows > n_alloc) { /* allocate cost array */ |
| 308 |
< |
if (n_alloc) |
| 309 |
< |
free(src_cost); |
| 310 |
< |
src_cost = (double *)malloc(sizeof(double)*pm->nrows); |
| 311 |
< |
if (src_cost == NULL) { |
| 312 |
< |
fprintf(stderr, "%s: Out of memory in migration_step()\n", |
| 313 |
< |
progname); |
| 314 |
< |
exit(1); |
| 315 |
< |
} |
| 316 |
< |
n_alloc = pm->nrows; |
| 305 |
> |
int r2check, i, ri; |
| 306 |
> |
/* |
| 307 |
> |
* Check cheapest available routes only -- a higher adjusted |
| 308 |
> |
* destination price implies that another source is closer, so |
| 309 |
> |
* we can hold off considering more expensive options until |
| 310 |
> |
* some other (hopefully better) moves have been made. |
| 311 |
> |
* A discount based on source remaining is supposed to prioritize |
| 312 |
> |
* movement from large lobes, but it doesn't seem to do much, |
| 313 |
> |
* so we have it set to 1.0 at the moment. |
| 314 |
> |
*/ |
| 315 |
> |
#define discount(qr) 1.0 |
| 316 |
> |
/* most promising row order */ |
| 317 |
> |
rord = (ROWSENT *)malloc(sizeof(ROWSENT)*pm->nrows); |
| 318 |
> |
if (rord == NULL) |
| 319 |
> |
goto memerr; |
| 320 |
> |
for (ri = pm->nrows; ri--; ) { |
| 321 |
> |
rord[ri].s = ri; |
| 322 |
> |
rord[ri].d = -1; |
| 323 |
> |
rord[ri].dc = 1.f; |
| 324 |
> |
if (src_rem[ri] <= minamt) /* enough source material? */ |
| 325 |
> |
continue; |
| 326 |
> |
for (i = 0; i < pm->ncols; i++) |
| 327 |
> |
if (dst_rem[ rord[ri].d = psortrow(pm,ri)[i] ] > minamt) |
| 328 |
> |
break; |
| 329 |
> |
if (i >= pm->ncols) { /* moved all we can? */ |
| 330 |
> |
free(rord); |
| 331 |
> |
return(.0); |
| 332 |
> |
} |
| 333 |
> |
rord[ri].dc = discount(src_rem[ri]); |
| 334 |
|
} |
| 335 |
+ |
if (pm->nrows > max2check) /* sort if too many sources */ |
| 336 |
+ |
qsort_r(rord, pm->nrows, sizeof(ROWSENT), pm, &rmovcmp); |
| 337 |
+ |
/* allocate cost array */ |
| 338 |
+ |
src_cost = (double *)malloc(sizeof(double)*pm->nrows); |
| 339 |
+ |
if (src_cost == NULL) |
| 340 |
+ |
goto memerr; |
| 341 |
|
for (i = pm->nrows; i--; ) /* starting costs for diff. */ |
| 342 |
|
src_cost[i] = min_cost(src_rem[i], dst_rem, pm, i); |
| 240 |
– |
|
| 343 |
|
/* find best source & dest. */ |
| 344 |
|
best.s = best.d = -1; best.price = FHUGE; best.amt = 0; |
| 345 |
< |
for (cur.s = pm->nrows; cur.s--; ) { |
| 345 |
> |
if ((r2check = pm->nrows) > max2check) |
| 346 |
> |
r2check = max2check; /* put a limit on search */ |
| 347 |
> |
for (ri = 0; ri < r2check; ri++) { /* check each source row */ |
| 348 |
|
double cost_others = 0; |
| 349 |
< |
if (src_rem[cur.s] <= minamt) |
| 350 |
< |
continue; |
| 351 |
< |
/* examine cheapest dest. */ |
| 352 |
< |
for (i = 0; i < pm->ncols; i++) |
| 353 |
< |
if (dst_rem[cur.d = psortrow(pm,cur.s)[i]] > minamt) |
| 354 |
< |
break; |
| 251 |
< |
if (i >= pm->ncols) |
| 252 |
< |
return(.0); |
| 253 |
< |
if ((cur.price = pricerow(pm,cur.s)[cur.d]) >= best.price) |
| 254 |
< |
continue; /* no point checking further */ |
| 349 |
> |
cur.s = rord[ri].s; |
| 350 |
> |
if ((cur.d = rord[ri].d) < 0 || |
| 351 |
> |
rord[ri].dc*pricerow(pm,cur.s)[cur.d] >= best.price) { |
| 352 |
> |
if (pm->nrows > max2check) break; /* sorted end */ |
| 353 |
> |
continue; /* else skip this one */ |
| 354 |
> |
} |
| 355 |
|
cur.amt = (src_rem[cur.s] < dst_rem[cur.d]) ? |
| 356 |
|
src_rem[cur.s] : dst_rem[cur.d]; |
| 357 |
< |
if (cur.amt > maxamt) cur.amt = maxamt; |
| 358 |
< |
dst_rem[cur.d] -= cur.amt; /* add up differential costs */ |
| 357 |
> |
/* don't just leave smidgen */ |
| 358 |
> |
if (cur.amt > maxamt*1.02) cur.amt = maxamt; |
| 359 |
> |
dst_rem[cur.d] -= cur.amt; /* add up opportunity costs */ |
| 360 |
|
for (i = pm->nrows; i--; ) |
| 361 |
|
if (i != cur.s) |
| 362 |
< |
cost_others += min_cost(src_rem[i], dst_rem, pm, i) |
| 362 |
> |
cost_others += min_cost(src_rem[i], dst_rem, pm, i) |
| 363 |
|
- src_cost[i]; |
| 364 |
|
dst_rem[cur.d] += cur.amt; /* undo trial move */ |
| 365 |
< |
cur.price += cost_others/cur.amt; /* adjust effective price */ |
| 365 |
> |
/* discount effective price */ |
| 366 |
> |
cur.price = ( pricerow(pm,cur.s)[cur.d] + cost_others/cur.amt ) * |
| 367 |
> |
rord[ri].dc; |
| 368 |
|
if (cur.price < best.price) /* are we better than best? */ |
| 369 |
< |
best = cur; |
| 369 |
> |
best = cur; |
| 370 |
|
} |
| 371 |
< |
if ((best.s < 0) | (best.d < 0)) |
| 371 |
> |
free(src_cost); /* clean up */ |
| 372 |
> |
free(rord); |
| 373 |
> |
if ((best.s < 0) | (best.d < 0)) /* nothing left to move? */ |
| 374 |
|
return(.0); |
| 375 |
< |
/* make the actual move */ |
| 375 |
> |
/* else make the actual move */ |
| 376 |
|
mtx_coef(mig,best.s,best.d) += best.amt; |
| 377 |
|
src_rem[best.s] -= best.amt; |
| 378 |
|
dst_rem[best.d] -= best.amt; |
| 379 |
|
return(best.amt); |
| 380 |
+ |
memerr: |
| 381 |
+ |
fprintf(stderr, "%s: Out of memory in migration_step()\n", progname); |
| 382 |
+ |
exit(1); |
| 383 |
+ |
#undef discount |
| 384 |
|
} |
| 385 |
|
|
| 277 |
– |
#ifdef DEBUG |
| 278 |
– |
static char * |
| 279 |
– |
thetaphi(const FVECT v) |
| 280 |
– |
{ |
| 281 |
– |
static char buf[128]; |
| 282 |
– |
double theta, phi; |
| 283 |
– |
|
| 284 |
– |
theta = 180./M_PI*acos(v[2]); |
| 285 |
– |
phi = 180./M_PI*atan2(v[1],v[0]); |
| 286 |
– |
sprintf(buf, "(%.0f,%.0f)", theta, phi); |
| 287 |
– |
|
| 288 |
– |
return(buf); |
| 289 |
– |
} |
| 290 |
– |
#endif |
| 291 |
– |
|
| 386 |
|
/* Compute and insert migration along directed edge (may fork child) */ |
| 387 |
|
static MIGRATION * |
| 388 |
|
create_migration(RBFNODE *from_rbf, RBFNODE *to_rbf) |
| 392 |
|
MIGRATION *newmig; |
| 393 |
|
double *src_rem, *dst_rem; |
| 394 |
|
double total_rem = 1., move_amt; |
| 395 |
< |
int i; |
| 395 |
> |
int i, j; |
| 396 |
|
/* check if exists already */ |
| 397 |
|
for (newmig = from_rbf->ejl; newmig != NULL; |
| 398 |
|
newmig = nextedge(from_rbf,newmig)) |
| 399 |
|
if (newmig->rbfv[1] == to_rbf) |
| 400 |
|
return(NULL); |
| 401 |
|
/* else allocate */ |
| 402 |
+ |
#ifdef DEBUG |
| 403 |
+ |
fprintf(stderr, "Building path from (theta,phi) (%.1f,%.1f) ", |
| 404 |
+ |
get_theta180(from_rbf->invec), |
| 405 |
+ |
get_phi360(from_rbf->invec)); |
| 406 |
+ |
fprintf(stderr, "to (%.1f,%.1f) with %d x %d matrix\n", |
| 407 |
+ |
get_theta180(to_rbf->invec), |
| 408 |
+ |
get_phi360(to_rbf->invec), |
| 409 |
+ |
from_rbf->nrbf, to_rbf->nrbf); |
| 410 |
+ |
#endif |
| 411 |
|
newmig = new_migration(from_rbf, to_rbf); |
| 412 |
|
if (run_subprocess()) |
| 413 |
|
return(newmig); /* child continues */ |
| 419 |
|
progname); |
| 420 |
|
exit(1); |
| 421 |
|
} |
| 319 |
– |
#ifdef DEBUG |
| 320 |
– |
fprintf(stderr, "Building path from (theta,phi) %s ", |
| 321 |
– |
thetaphi(from_rbf->invec)); |
| 322 |
– |
fprintf(stderr, "to %s with %d x %d matrix\n", |
| 323 |
– |
thetaphi(to_rbf->invec), |
| 324 |
– |
from_rbf->nrbf, to_rbf->nrbf); |
| 325 |
– |
#endif |
| 422 |
|
/* starting quantities */ |
| 423 |
|
memset(newmig->mtx, 0, sizeof(float)*from_rbf->nrbf*to_rbf->nrbf); |
| 424 |
|
for (i = from_rbf->nrbf; i--; ) |
| 425 |
|
src_rem[i] = rbf_volume(&from_rbf->rbfa[i]) / from_rbf->vtotal; |
| 426 |
< |
for (i = to_rbf->nrbf; i--; ) |
| 427 |
< |
dst_rem[i] = rbf_volume(&to_rbf->rbfa[i]) / to_rbf->vtotal; |
| 426 |
> |
for (j = to_rbf->nrbf; j--; ) |
| 427 |
> |
dst_rem[j] = rbf_volume(&to_rbf->rbfa[j]) / to_rbf->vtotal; |
| 428 |
> |
|
| 429 |
|
do { /* move a bit at a time */ |
| 430 |
|
move_amt = migration_step(newmig, src_rem, dst_rem, &pmtx); |
| 431 |
|
total_rem -= move_amt; |
| 335 |
– |
#ifdef DEBUG |
| 336 |
– |
if (!nchild) |
| 337 |
– |
fprintf(stderr, "\r%.9f remaining...", total_rem); |
| 338 |
– |
#endif |
| 432 |
|
} while ((total_rem > end_thresh) & (move_amt > 0)); |
| 433 |
< |
#ifdef DEBUG |
| 341 |
< |
if (!nchild) fputs("done.\n", stderr); |
| 342 |
< |
else fprintf(stderr, "finished with %.9f remaining\n", total_rem); |
| 343 |
< |
#endif |
| 433 |
> |
|
| 434 |
|
for (i = from_rbf->nrbf; i--; ) { /* normalize final matrix */ |
| 435 |
< |
float nf = rbf_volume(&from_rbf->rbfa[i]); |
| 346 |
< |
int j; |
| 435 |
> |
double nf = rbf_volume(&from_rbf->rbfa[i]); |
| 436 |
|
if (nf <= FTINY) continue; |
| 437 |
|
nf = from_rbf->vtotal / nf; |
| 438 |
|
for (j = to_rbf->nrbf; j--; ) |
| 439 |
< |
mtx_coef(newmig,i,j) *= nf; |
| 439 |
> |
mtx_coef(newmig,i,j) *= nf; /* row now sums to 1.0 */ |
| 440 |
|
} |
| 441 |
|
end_subprocess(); /* exit here if subprocess */ |
| 442 |
|
free_routes(&pmtx); /* free working arrays */ |
| 471 |
|
return(vother[im_rev] != NULL); |
| 472 |
|
} |
| 473 |
|
|
| 474 |
< |
/* Find context hull vertex to complete triangle (oriented call) */ |
| 474 |
> |
/* Find convex hull vertex to complete triangle (oriented call) */ |
| 475 |
|
static RBFNODE * |
| 476 |
|
find_chull_vert(const RBFNODE *rbf0, const RBFNODE *rbf1) |
| 477 |
|
{ |
| 492 |
|
if (DOT(vp, vmid) <= FTINY) |
| 493 |
|
continue; /* wrong orientation */ |
| 494 |
|
area2 = .25*DOT(vp,vp); |
| 495 |
< |
VSUB(vp, rbf->invec, rbf0->invec); |
| 495 |
> |
VSUB(vp, rbf->invec, vmid); |
| 496 |
|
dprod = -DOT(vp, vejn); |
| 497 |
|
VSUM(vp, vp, vejn, dprod); /* above guarantees non-zero */ |
| 498 |
|
dprod = DOT(vp, vmid) / VLEN(vp); |
| 548 |
|
} |
| 549 |
|
} |
| 550 |
|
} |
| 551 |
+ |
|
| 552 |
+ |
/* Add normal direction if missing */ |
| 553 |
+ |
static void |
| 554 |
+ |
check_normal_incidence(void) |
| 555 |
+ |
{ |
| 556 |
+ |
static FVECT norm_vec = {.0, .0, 1.}; |
| 557 |
+ |
const int saved_nprocs = nprocs; |
| 558 |
+ |
RBFNODE *near_rbf, *mir_rbf, *rbf; |
| 559 |
+ |
double bestd; |
| 560 |
+ |
int n; |
| 561 |
+ |
|
| 562 |
+ |
if (dsf_list == NULL) |
| 563 |
+ |
return; /* XXX should be error? */ |
| 564 |
+ |
near_rbf = dsf_list; |
| 565 |
+ |
bestd = input_orient*near_rbf->invec[2]; |
| 566 |
+ |
if (single_plane_incident) { /* ordered plane incidence? */ |
| 567 |
+ |
if (bestd >= 1.-2.*FTINY) |
| 568 |
+ |
return; /* already have normal */ |
| 569 |
+ |
} else { |
| 570 |
+ |
switch (inp_coverage) { |
| 571 |
+ |
case INP_QUAD1: |
| 572 |
+ |
case INP_QUAD2: |
| 573 |
+ |
case INP_QUAD3: |
| 574 |
+ |
case INP_QUAD4: |
| 575 |
+ |
break; /* quadrilateral symmetry? */ |
| 576 |
+ |
default: |
| 577 |
+ |
return; /* else we can interpolate */ |
| 578 |
+ |
} |
| 579 |
+ |
for (rbf = near_rbf->next; rbf != NULL; rbf = rbf->next) { |
| 580 |
+ |
const double d = input_orient*rbf->invec[2]; |
| 581 |
+ |
if (d >= 1.-2.*FTINY) |
| 582 |
+ |
return; /* seems we have normal */ |
| 583 |
+ |
if (d > bestd) { |
| 584 |
+ |
near_rbf = rbf; |
| 585 |
+ |
bestd = d; |
| 586 |
+ |
} |
| 587 |
+ |
} |
| 588 |
+ |
} |
| 589 |
+ |
if (mig_list != NULL) { /* need to be called first */ |
| 590 |
+ |
fprintf(stderr, "%s: Late call to check_normal_incidence()\n", |
| 591 |
+ |
progname); |
| 592 |
+ |
exit(1); |
| 593 |
+ |
} |
| 594 |
+ |
#ifdef DEBUG |
| 595 |
+ |
fprintf(stderr, "Interpolating normal incidence by mirroring (%.1f,%.1f)\n", |
| 596 |
+ |
get_theta180(near_rbf->invec), get_phi360(near_rbf->invec)); |
| 597 |
+ |
#endif |
| 598 |
+ |
/* mirror nearest incidence */ |
| 599 |
+ |
n = sizeof(RBFNODE) + sizeof(RBFVAL)*(near_rbf->nrbf-1); |
| 600 |
+ |
mir_rbf = (RBFNODE *)malloc(n); |
| 601 |
+ |
if (mir_rbf == NULL) |
| 602 |
+ |
goto memerr; |
| 603 |
+ |
memcpy(mir_rbf, near_rbf, n); |
| 604 |
+ |
mir_rbf->ord = near_rbf->ord - 1; /* not used, I think */ |
| 605 |
+ |
mir_rbf->next = NULL; |
| 606 |
+ |
mir_rbf->ejl = NULL; |
| 607 |
+ |
rev_rbf_symmetry(mir_rbf, MIRROR_X|MIRROR_Y); |
| 608 |
+ |
nprocs = 1; /* compute migration matrix */ |
| 609 |
+ |
if (create_migration(mir_rbf, near_rbf) == NULL) |
| 610 |
+ |
exit(1); /* XXX should never happen! */ |
| 611 |
+ |
norm_vec[2] = input_orient; /* interpolate normal dist. */ |
| 612 |
+ |
rbf = e_advect_rbf(mig_list, norm_vec, 2*near_rbf->nrbf); |
| 613 |
+ |
nprocs = saved_nprocs; /* final clean-up */ |
| 614 |
+ |
free(mir_rbf); |
| 615 |
+ |
free(mig_list); |
| 616 |
+ |
mig_list = near_rbf->ejl = NULL; |
| 617 |
+ |
insert_dsf(rbf); /* insert interpolated normal */ |
| 618 |
+ |
return; |
| 619 |
+ |
memerr: |
| 620 |
+ |
fprintf(stderr, "%s: Out of memory in check_normal_incidence()\n", |
| 621 |
+ |
progname); |
| 622 |
+ |
exit(1); |
| 623 |
+ |
} |
| 624 |
|
|
| 625 |
|
/* Build our triangle mesh from recorded RBFs */ |
| 626 |
|
void |
| 629 |
|
double best2 = M_PI*M_PI; |
| 630 |
|
RBFNODE *shrt_edj[2]; |
| 631 |
|
RBFNODE *rbf0, *rbf1; |
| 632 |
+ |
/* add normal if needed */ |
| 633 |
+ |
check_normal_incidence(); |
| 634 |
|
/* check if isotropic */ |
| 635 |
|
if (single_plane_incident) { |
| 636 |
|
for (rbf0 = dsf_list; rbf0 != NULL; rbf0 = rbf0->next) |