Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
C++Code

Solve MILLIONS of Unknowns In Equations – We Show You How!

pexels-darlene-alderson-4389372

C++ is a great programming language to calculate engineering problems. It is one of the best for those operations. Delphi is also a faster-compiled programming language that you can use in engineering problems. C++ compiler includes libraries designed to increase your productivity. We provide powerful and useful classes for strings, conversions, file IO, streaming, JSON, REST, and anything else you may require. In this post, we will explain how to solve millions of unknowns in Equations using the “Successive Over Relaxation Iteration” Method. In this post we will explain how to solve millions of unknowns in Equations by using the “Successive Over Relaxation Iteration” Method.

First, the science of unknowns in equations

Please take up a comfortable position and wear the appropriate safety equipment; we’re about to get all mathematical!

In mathematics there are Implicit Equations and we engineers mostly face solving numerical equations about the real life problems. Thermodynamics, Fluid Mechanics, Mechanism Theories, Structure Analysis, and many other engineering areas requires us to solve many unknown equations. Sometimes calculations these should be in real time or it should be simulating time fractions very precisely. Generally these implicit equations are exposed on a 1D, 2D or 3D grid examples (i.e compressed on uncompressed fluid flow, thermal distributions ) and these grids has nodes with parameters (i.e. Velocity, Pressure, Temperature etc.)

In mathematics, an implicit equation is a relation of the form R(x1,…, xn) = 0, where R is a function of several variables. In example, the implicit equation of the unit circle is is x2 + y2 − 1 = 0. More complex equations can be given as equations about to solve first and second law of thermodynamics, Momentum Equations, Naiver-Stokes Equations etc.

Implicit functions and the Gauss-Seidel method

An Implicit Function is a function that is defined by an implicit equation, that relates one of the variables, considered as the value of the function, with the others considered as the arguments. These Implicit Equations can be solved by using Iteration Methods. One of the most popular equation is SOR Successive Over Relaxation Iteration Method (SOR). This method can be used to solve problems on 1D, 2D and 3D problems. In Numerical Linear Algebra, the Successive Over-Relaxation (SOR) Method is a variant of the  Gauss–Seidel method for solving a linear system equations, resulting in faster convergence. A similar method can be used for any slowly converging iterative processes.

One Dimensional Grid Problems: How do I solve a 3 Diagonal Matrix

Implicit Equations on 1D Grids produces Triangular Matrix forms. If the problem is on a 1D grid (for example heat transfer on a wire is 1D problem) this will produce 3 diagonal matrix forms. Because each 1D grid nodes on this wire connected to with left node and right except the first and the last one. That means there will be 3 variables (Left, Mid, Right) in each lines of the 2D matrix affecting to 3 Unknowns that we want to solve.

Simply equations in matrix form can be written as below.

au_q-8659637

In this equation;
A is 2D matrix (2 bars shows that it is 2D matrix),
U is 1D matrix form of unknown parameters from the each node,
q is 1D matrix form of right side of the equation.

Tridiagonal A matrix, U and q matrixes can be shown as below here,

a10

Two Dimensional Grid Problems: How do I solve a 5 Diagonal Matrix?

If the problem is on a 2D grid (for example heat transfer on a plate is 2D problem) these equations will produce 5 diagonal matrix forms. Because each 2D grid nodes on this plane connected to with left, right, up and down nodes (or they are called East, West, North and South) except the corners and the edges. That means there will be maximum 5 variables in each lines of the 2D matrix.

au_q-8659637

In this equation;
A is 2D matrix (2 bars shows that it is 2D matrix),
U is 1D matrix form of unknown parameters from the each node,
q is 1D matrix form of right side of the equation.

5 diagonal A matrix, U and q matrixes can be shown as below here,

a0

Three Dimensional Grid Example: How to solve a 7 Diagonal Matrix

As same examples above, if the problem is on a 3D grid (for example heat transfer on in a cube is 3D problem) this will produce 7 diagonal matrix forms. Because each 3D grid nodes on this cube connected to with left, right, front, back, up and down nodes (or they are called East, West, North, South, Up and Down) except the faces, corners and the edges. That means there will be maximum 7 variables in each lines of the 2D matrix.

SOR Iteration Method example of solving a 3 Diagonal Matrix

To understand this method, let’s go simple and we will use 3 diagonal matrix arrays. Create a new C++ Builder VCL Project and add two buttons (TButton), captioned ‘Create’ and ‘Solve’, and add a Memo (TMemo) to see outputs in a simple way.

Let’s define Number of Nodes, NN is 10 and let’s create our matrix arrays, m[][] is our 2D matrix (we said A before), u[] is for unknown values, x[] is the right side matrix (we said q before), and finally we define sol[] to hold solutions in iterations, so let’s define them in our VCL project,

Let’s assume that we know unknowns, solution is 1,2,3,4, and so on…, we can create a random equations with these solutions in a 3 diagonal forms as below,

We can display all matrixes in this procedure by using FloatToStrF() formating,

What is the Successive Over-relaxation Iteration method?

Successive over-relaxation iteration method is explained well here on Successive Over Relaxation Iteration Method. In this method there are some constants;
max iteration: maximum number of iterations to exit from calculation, we took 1000
omega : relaxation factor, we assumed 0.5 here
min_error : minimum error allowed, we take 0.0001
In C++ Builder we can use this procedure below for the matrix forms,

The example above uses full matrix and this is not wise for bigger memory allocations. We can use this matrix form below to calculate all diagonals for 1D, 2D and 3D problems.

But to understand this method first lets use full matrix forms, we may explain that struct based matrix form in the future posts. At the end, we can use these methods above in the OnClick() event of our ‘Create’ and ‘Solve’ buttons. Let’s create our 3 diagonal matrix and display it in our Memo as below

An example of a 3 diagonal matrix using C++

Let’s reset unknowns (we know the solution is 1,2,3,4 … so on) and let’s solve these equations by using SOR iteration methods.

As a result, output will be as follows,

As you see in this example we achieved to results about 0, 1, 2,3, 4.. in 12 iterations with the error 0.000077. You can use this method to solve millions of unknowns on your grid systems, i.e on fluid mechanics, thermodynamics, stress analysis, and to solve many other linear equation problems.

More about iteration methods

Iteration methods are good to solve some problems, also sometimes hard to understand and hard solve some problems because of their behavior moves from convergence iterations to divergence iterations. That causes wrong solutions. So knowing these methods is not enough, also you should know well about it’s behavior of relaxation factor, error factors, assumptions and values in matrix also important. Sometimes you must use dimensionless parameters, or reformed matrixes to achieve results or to have lower iterations.

In some random generation tests, you will see that errors in iterations goes divergence instead of being convergence. There are SOR Revised ad some other new methods to solve these problems. Please check academic papers and latest releases for better solutions. In that point you will see that knowing mathematics well and knowing programming well is not enough to solve these kind of problems. You must also know the behavior of these kinds of methods.


RAD Studio C++ Builder is a great environment for learning to use C++ and is also powerful enough for all your development needs. Why not download and try C++ builder today?


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES