Took out an unneeded m_atol call that wasn't necessary and caused

problems with numerical deltas.
This commit is contained in:
Harry Moffat 2010-10-15 21:02:19 +00:00
parent 43c4d1215c
commit 78b2d5689c

View file

@ -184,8 +184,7 @@ namespace Cantera {
}
} else {
for (int i = 0; i < neq_; i++) {
deltaYSoln[i] = m_atol +
fmaxx(1.0E-2 * solnWeights[i], 1.0E-6 * fabs(ySoln[i]));
deltaYSoln[i] = fmaxx(1.0E-2 * solnWeights[i], 1.0E-6 * fabs(ySoln[i]));
}
}
}