Took out an unneeded m_atol call that wasn't necessary and caused
problems with numerical deltas.
This commit is contained in:
parent
43c4d1215c
commit
78b2d5689c
1 changed files with 1 additions and 2 deletions
|
|
@ -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]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue