/* This is a Successive Over-Relaxation (SOR) algorithm found in the */ /* Numerical Recipies in C book, page 869. It is used in evaluating */ /* partial differential equations. /* -- Submitted By: David Kolson (dkolson@ics.uci.edu) - 08 Dec 94 -- -- Verification Information: -- -- Verified By whom? Date Simulator -- -------- ------------ -------- ------------ -- Syntax yes Preeti R. Panda 17 Jan 95 - -- Functionality yes David Kolson ? - */ #define N 100 main() { float a[N][N], b[N][N], c[N][N], d[N][N], e[N][N], f[N][N]; float omega, resid, u[N][N]; int j, l; for (j=2; j