2008-04-20 11:35:10 +00:00
|
|
|
#include "solvespace.h"
|
|
|
|
|
|
|
|
void System::WriteJacobian(int eqTag, int paramTag) {
|
|
|
|
int a, i, j;
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
for(a = 0; a < param.n; a++) {
|
|
|
|
Param *p = &(param.elem[a]);
|
|
|
|
if(p->tag != paramTag) continue;
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.param[j] = p->h;
|
2008-04-20 11:35:10 +00:00
|
|
|
j++;
|
|
|
|
}
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.n = j;
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
i = 0;
|
|
|
|
for(a = 0; a < eq.n; a++) {
|
|
|
|
Equation *e = &(eq.elem[a]);
|
|
|
|
if(e->tag != eqTag) continue;
|
|
|
|
|
2008-04-21 08:16:38 +00:00
|
|
|
mat.eq[i] = e->h;
|
2008-04-30 04:52:34 +00:00
|
|
|
Expr *f = e->e->DeepCopyWithParamsAsPointers(¶m, &(SS.param));
|
|
|
|
f = f->FoldConstants();
|
|
|
|
|
|
|
|
// Hash table (31 bits) to accelerate generation of zero partials.
|
|
|
|
DWORD scoreboard = f->ParamsUsed();
|
2008-04-21 01:26:36 +00:00
|
|
|
for(j = 0; j < mat.n; j++) {
|
2008-04-30 04:52:34 +00:00
|
|
|
Expr *pd;
|
|
|
|
if(scoreboard & (1 << (mat.param[j].v % 31))) {
|
|
|
|
pd = f->PartialWrt(mat.param[j]);
|
|
|
|
pd = pd->FoldConstants();
|
|
|
|
} else {
|
|
|
|
pd = Expr::FromConstant(0);
|
|
|
|
}
|
|
|
|
mat.A.sym[i][j] = pd;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-30 04:52:34 +00:00
|
|
|
mat.B.sym[i] = f;
|
2008-04-20 11:35:10 +00:00
|
|
|
i++;
|
|
|
|
}
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.m = i;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void System::EvalJacobian(void) {
|
|
|
|
int i, j;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
mat.A.num[i][j] = (mat.A.sym[i][j])->Eval();
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-01 06:25:38 +00:00
|
|
|
void System::MarkAsDragged(hParam p) {
|
|
|
|
int j;
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
if(mat.param[j].v == p.v) {
|
|
|
|
mat.dragged[j] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int BySensitivity(const void *va, const void *vb) {
|
|
|
|
const int *a = (const int *)va, *b = (const int *)vb;
|
|
|
|
|
|
|
|
if(SS.sys.mat.dragged[*a] && !SS.sys.mat.dragged[*b]) return 1;
|
|
|
|
if(SS.sys.mat.dragged[*b] && !SS.sys.mat.dragged[*a]) return -1;
|
|
|
|
|
|
|
|
double as = SS.sys.mat.sens[*a];
|
|
|
|
double bs = SS.sys.mat.sens[*b];
|
|
|
|
|
|
|
|
if(as < bs) return 1;
|
|
|
|
if(as > bs) return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
void System::SortBySensitivity(void) {
|
|
|
|
// For each unknown, sum up the sensitivities in that column of the
|
|
|
|
// Jacobian
|
|
|
|
int i, j;
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
double s = 0;
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
s += fabs(mat.A.num[i][j]);
|
|
|
|
}
|
|
|
|
mat.sens[j] = s;
|
|
|
|
}
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
mat.dragged[j] = false;
|
|
|
|
mat.permutation[j] = j;
|
|
|
|
}
|
2008-05-05 06:18:01 +00:00
|
|
|
if(SS.GW.pending.point.v) {
|
|
|
|
Entity *p = SS.entity.FindByIdNoOops(SS.GW.pending.point);
|
2008-05-01 06:38:00 +00:00
|
|
|
// If we're solving an earlier group, then the pending point might
|
|
|
|
// not exist in the entity tables yet.
|
|
|
|
if(p) {
|
|
|
|
switch(p->type) {
|
|
|
|
case Entity::POINT_XFRMD:
|
|
|
|
case Entity::POINT_IN_3D:
|
|
|
|
MarkAsDragged(p->param[0]);
|
|
|
|
MarkAsDragged(p->param[1]);
|
|
|
|
MarkAsDragged(p->param[2]);
|
|
|
|
break;
|
|
|
|
case Entity::POINT_IN_2D:
|
|
|
|
MarkAsDragged(p->param[0]);
|
|
|
|
MarkAsDragged(p->param[1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-05-01 06:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
qsort(mat.permutation, mat.n, sizeof(mat.permutation[0]), BySensitivity);
|
|
|
|
|
|
|
|
int origPos[MAX_UNKNOWNS];
|
|
|
|
int entryWithOrigPos[MAX_UNKNOWNS];
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
origPos[j] = j;
|
|
|
|
entryWithOrigPos[j] = j;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SWAP(T, a, b) do { T temp = (a); (a) = (b); (b) = temp; } while(0)
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
int dest = j; // we are writing to position j
|
|
|
|
// And the source is whichever position ahead of us can be swapped
|
|
|
|
// in to make the permutation vectors line up.
|
|
|
|
int src = entryWithOrigPos[mat.permutation[j]];
|
|
|
|
|
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
SWAP(double, mat.A.num[i][src], mat.A.num[i][dest]);
|
|
|
|
SWAP(Expr *, mat.A.sym[i][src], mat.A.sym[i][dest]);
|
|
|
|
}
|
|
|
|
SWAP(hParam, mat.param[src], mat.param[dest]);
|
|
|
|
|
|
|
|
SWAP(int, origPos[src], origPos[dest]);
|
|
|
|
if(mat.permutation[dest] != origPos[dest]) oops();
|
|
|
|
|
|
|
|
// Update the table; only necessary to do this for src, since dest
|
|
|
|
// is already done.
|
|
|
|
entryWithOrigPos[origPos[src]] = src;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-20 11:35:10 +00:00
|
|
|
bool System::Tol(double v) {
|
2008-04-28 09:40:02 +00:00
|
|
|
return (fabs(v) < 0.001);
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void System::GaussJordan(void) {
|
|
|
|
int i, j;
|
|
|
|
|
2008-04-21 01:26:36 +00:00
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
mat.bound[j] = false;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now eliminate.
|
|
|
|
i = 0;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(j = 0; j < mat.n; j++) {
|
2008-04-20 11:35:10 +00:00
|
|
|
// First, seek a pivot in our column.
|
|
|
|
int ip, imax;
|
|
|
|
double max = 0;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(ip = i; ip < mat.m; ip++) {
|
|
|
|
double v = fabs(mat.A.num[ip][j]);
|
2008-04-20 11:35:10 +00:00
|
|
|
if(v > max) {
|
|
|
|
imax = ip;
|
|
|
|
max = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!Tol(max)) {
|
|
|
|
// There's a usable pivot in this column. Swap it in:
|
|
|
|
int js;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(js = j; js < mat.n; js++) {
|
2008-04-20 11:35:10 +00:00
|
|
|
double temp;
|
2008-04-21 01:26:36 +00:00
|
|
|
temp = mat.A.num[imax][js];
|
|
|
|
mat.A.num[imax][js] = mat.A.num[i][js];
|
|
|
|
mat.A.num[i][js] = temp;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get a 1 as the leading entry in the row we're working on.
|
2008-04-21 01:26:36 +00:00
|
|
|
double v = mat.A.num[i][j];
|
|
|
|
for(js = 0; js < mat.n; js++) {
|
|
|
|
mat.A.num[i][js] /= v;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Eliminate this column from rows except this one.
|
|
|
|
int is;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(is = 0; is < mat.m; is++) {
|
2008-04-20 11:35:10 +00:00
|
|
|
if(is == i) continue;
|
|
|
|
|
2008-04-21 01:26:36 +00:00
|
|
|
// We're trying to drive A[is][j] to zero. We know
|
|
|
|
// that A[i][j] is 1, so we want to subtract off
|
|
|
|
// A[is][j] times our present row.
|
|
|
|
double v = mat.A.num[is][j];
|
|
|
|
for(js = 0; js < mat.n; js++) {
|
|
|
|
mat.A.num[is][js] -= v*mat.A.num[i][js];
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.A.num[is][j] = 0;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// And mark this as a bound variable.
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.bound[j] = true;
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
// Move on to the next row, since we just used this one to
|
|
|
|
// eliminate from column j.
|
|
|
|
i++;
|
2008-04-21 01:26:36 +00:00
|
|
|
if(i >= mat.m) break;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool System::SolveLinearSystem(void) {
|
2008-04-21 01:26:36 +00:00
|
|
|
if(mat.m != mat.n) oops();
|
2008-04-20 11:35:10 +00:00
|
|
|
// Gaussian elimination, with partial pivoting. It's an error if the
|
|
|
|
// matrix is singular, because that means two constraints are
|
|
|
|
// equivalent.
|
|
|
|
int i, j, ip, jp, imax;
|
|
|
|
double max, temp;
|
|
|
|
|
2008-04-21 01:26:36 +00:00
|
|
|
for(i = 0; i < mat.m; i++) {
|
2008-04-20 11:35:10 +00:00
|
|
|
// We are trying eliminate the term in column i, for rows i+1 and
|
|
|
|
// greater. First, find a pivot (between rows i and N-1).
|
|
|
|
max = 0;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(ip = i; ip < mat.m; ip++) {
|
|
|
|
if(fabs(mat.A.num[ip][i]) > max) {
|
2008-04-20 11:35:10 +00:00
|
|
|
imax = ip;
|
2008-04-21 01:26:36 +00:00
|
|
|
max = fabs(mat.A.num[ip][i]);
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(fabs(max) < 1e-12) return false;
|
|
|
|
|
|
|
|
// Swap row imax with row i
|
2008-04-21 01:26:36 +00:00
|
|
|
for(jp = 0; jp < mat.n; jp++) {
|
|
|
|
temp = mat.A.num[i][jp];
|
|
|
|
mat.A.num[i][jp] = mat.A.num[imax][jp];
|
|
|
|
mat.A.num[imax][jp] = temp;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-21 01:26:36 +00:00
|
|
|
temp = mat.B.num[i];
|
|
|
|
mat.B.num[i] = mat.B.num[imax];
|
|
|
|
mat.B.num[imax] = temp;
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
// For rows i+1 and greater, eliminate the term in column i.
|
2008-04-21 01:26:36 +00:00
|
|
|
for(ip = i+1; ip < mat.m; ip++) {
|
|
|
|
temp = mat.A.num[ip][i]/mat.A.num[i][i];
|
2008-04-20 11:35:10 +00:00
|
|
|
|
2008-04-21 01:26:36 +00:00
|
|
|
for(jp = 0; jp < mat.n; jp++) {
|
|
|
|
mat.A.num[ip][jp] -= temp*(mat.A.num[i][jp]);
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.B.num[ip] -= temp*mat.B.num[i];
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We've put the matrix in upper triangular form, so at this point we
|
|
|
|
// can solve by back-substitution.
|
2008-04-21 01:26:36 +00:00
|
|
|
for(i = mat.m - 1; i >= 0; i--) {
|
|
|
|
if(fabs(mat.A.num[i][i]) < 1e-10) return false;
|
2008-04-20 11:35:10 +00:00
|
|
|
|
2008-04-21 01:26:36 +00:00
|
|
|
temp = mat.B.num[i];
|
|
|
|
for(j = mat.n - 1; j > i; j--) {
|
|
|
|
temp -= mat.X[j]*mat.A.num[i][j];
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-21 01:26:36 +00:00
|
|
|
mat.X[i] = temp / mat.A.num[i][i];
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool System::NewtonSolve(int tag) {
|
|
|
|
WriteJacobian(tag, tag);
|
2008-04-21 01:26:36 +00:00
|
|
|
if(mat.m != mat.n) oops();
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
int iter = 0;
|
|
|
|
bool converged = false;
|
|
|
|
int i;
|
2008-04-21 08:16:38 +00:00
|
|
|
|
|
|
|
// Evaluate the functions at our operating point.
|
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
mat.B.num[i] = (mat.B.sym[i])->Eval();
|
|
|
|
}
|
2008-04-20 11:35:10 +00:00
|
|
|
do {
|
2008-04-21 08:16:38 +00:00
|
|
|
// And evaluate the Jacobian at our initial operating point.
|
2008-04-20 11:35:10 +00:00
|
|
|
EvalJacobian();
|
|
|
|
|
|
|
|
if(!SolveLinearSystem()) break;
|
|
|
|
|
|
|
|
// Take the Newton step;
|
|
|
|
// J(x_n) (x_{n+1} - x_n) = 0 - F(x_n)
|
2008-04-21 01:26:36 +00:00
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
(param.FindById(mat.param[i]))->val -= mat.X[i];
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
2008-04-21 08:16:38 +00:00
|
|
|
// Re-evalute the functions, since the params have just changed.
|
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
mat.B.num[i] = (mat.B.sym[i])->Eval();
|
|
|
|
}
|
|
|
|
// Check for convergence
|
2008-04-20 11:35:10 +00:00
|
|
|
converged = true;
|
2008-04-21 01:26:36 +00:00
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
if(!Tol(mat.B.num[i])) {
|
2008-04-20 11:35:10 +00:00
|
|
|
converged = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while(iter++ < 50 && !converged);
|
|
|
|
|
2008-04-21 08:16:38 +00:00
|
|
|
if(converged) {
|
2008-04-20 11:35:10 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
2008-04-30 08:14:32 +00:00
|
|
|
dbp("no convergence");
|
2008-04-20 11:35:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool System::Solve(void) {
|
|
|
|
int i, j;
|
2008-04-30 04:52:34 +00:00
|
|
|
|
2008-04-27 09:31:56 +00:00
|
|
|
/*
|
2008-04-27 09:03:01 +00:00
|
|
|
dbp("%d equations", eq.n);
|
2008-04-20 11:35:10 +00:00
|
|
|
for(i = 0; i < eq.n; i++) {
|
2008-04-28 09:40:02 +00:00
|
|
|
dbp(" %.3f = %s = 0", eq.elem[i].e->Eval(), eq.elem[i].e->Print());
|
2008-04-27 09:03:01 +00:00
|
|
|
}
|
2008-04-27 09:31:56 +00:00
|
|
|
dbp("%d parameters", param.n); */
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
param.ClearTags();
|
|
|
|
eq.ClearTags();
|
|
|
|
|
|
|
|
WriteJacobian(0, 0);
|
|
|
|
EvalJacobian();
|
2008-04-30 04:52:34 +00:00
|
|
|
|
2008-05-01 06:25:38 +00:00
|
|
|
SortBySensitivity();
|
|
|
|
|
2008-04-30 04:52:34 +00:00
|
|
|
/* dbp("write/eval jacboian=%d", GetMilliseconds() - in);
|
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
dbp("function %d: %s", i, mat.B.sym[i]->Print());
|
|
|
|
}
|
|
|
|
dbp("m=%d", mat.m);
|
2008-04-21 01:26:36 +00:00
|
|
|
for(i = 0; i < mat.m; i++) {
|
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
dbp("A[%d][%d] = %.3f", i, j, mat.A.num[i][j]);
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-27 09:31:56 +00:00
|
|
|
} */
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
GaussJordan();
|
|
|
|
|
2008-04-27 05:00:12 +00:00
|
|
|
/* dbp("bound states:");
|
2008-04-21 01:26:36 +00:00
|
|
|
for(j = 0; j < mat.n; j++) {
|
|
|
|
dbp(" param %08x: %d", mat.param[j], mat.bound[j]);
|
2008-04-27 05:00:12 +00:00
|
|
|
} */
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
// Fix any still-free variables wherever they are now.
|
2008-05-01 06:25:38 +00:00
|
|
|
for(j = mat.n-1; j >= 0; --j) {
|
2008-04-21 01:26:36 +00:00
|
|
|
if(mat.bound[j]) continue;
|
2008-04-27 05:00:12 +00:00
|
|
|
Param *p = param.FindByIdNoOops(mat.param[j]);
|
|
|
|
if(!p) {
|
|
|
|
// This is parameter does not occur in this group, so it's
|
|
|
|
// not available to assume.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
p->tag = ASSUMED;
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
2008-04-30 04:52:34 +00:00
|
|
|
|
2008-04-21 08:16:38 +00:00
|
|
|
bool ok = NewtonSolve(0);
|
|
|
|
|
|
|
|
if(ok) {
|
|
|
|
// System solved correctly, so write the new values back in to the
|
|
|
|
// main parameter table.
|
|
|
|
for(i = 0; i < param.n; i++) {
|
|
|
|
Param *p = &(param.elem[i]);
|
|
|
|
Param *pp = SS.GetParam(p->h);
|
|
|
|
pp->val = p->val;
|
|
|
|
pp->known = true;
|
2008-04-27 05:00:12 +00:00
|
|
|
// The main param table keeps track of what was assumed, to
|
|
|
|
// choose which point to drag so that it actually moves.
|
|
|
|
pp->assumed = (p->tag == ASSUMED);
|
2008-04-21 08:16:38 +00:00
|
|
|
}
|
|
|
|
}
|
2008-04-20 11:35:10 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|