Posts: 2,247
Threads: 200
Joined: Jun 2005
Hello All,
When performing iterative processes you often compare one of more values between the current and last iterations. This comparison involves a tolerance value used to determine whether or not the current iteration has generated good enough results.
My question to all out there is "Do you prefer comparing the absolute difference between iteration values or a percentage absolute difference with a tolerance value? Keep in mind that the tolerance value or % can be specified with the arguments to the procedure performing the iterations. Fixing the tolerance value or % is a bit more tricky since it may not be able to handle a wide variety of problems.
Thanks
Namir
Edited: 21 Mar 2009, 10:12 a.m.
Posts: 1,619
Threads: 147
Joined: May 2006
Quote:
Do you prefer comparing the absolute difference between iteration values or a percentage absolute difference with a tolerance value?
The former. Usually something like:
if |diff| < 1E-desired precision then end loop
Posts: 124
Threads: 17
Joined: Dec 2006
Actually, I concur. If you pick a reasonably small absolute value, and I do mean reasonable compared to the solution values, you should not need to mess with the headache-y percentage tolerance.
It would be interesting to try a coupled algorithm where you first try an absolute value tolerance, get a solution, then switch to a percentage tolerance using as initial values solutions from the absolute value tolerance problem. I guess this would essentially be a double convergence.
Posts: 1,792
Threads: 62
Joined: Jan 2005
Namir --
If the calculated value(s) that establish convergence are large in magnitude, they can be normalized by scaling.
One application is power-flow programs for complicated AC networks. Sums of calculated values of power establish network convergence when they match known injection values. These values are large -- typically in megawatts (MW) and megavars (MVAr) -- along with voltage in kilovolts (kV) and current in hundreds of amperes (A). The powerflow calculations are done utilizing normalized "per unit" values, typically ranging from zero to ten. Mismatches are then small in magnitude, so absolute tolerances are employed.
-- KS