From: Petar T. <pet...@ob...> - 2009-05-21 18:40:37
|
Hello again, a similar problem (with a similar resolution :) ) is appearing one more time in kap_support.f, but this time in the Get_Results subroutine: right at the beginning, just after the declaration block, you test Y for being negative: Y = 1 - (X+Zbase+XC+XO) if (Y < 0) then ! adjust XC and XO But sometimes the line before the 'if' test was giving to Y the value of ~-1e-17. So am I wrong changing the condition in this way: if (Y < -1d-9) then ! adjust XC and XO Regards, --Petar |