mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: corrected tableBase max-bounds check
This commit is contained in:
@ -241,7 +241,7 @@ bool Foam::TableBase<Type>::checkMaxBounds
|
||||
scalar& xDash
|
||||
) const
|
||||
{
|
||||
if (x < table_.last().first())
|
||||
if (x > table_.last().first())
|
||||
{
|
||||
switch (boundsHandling_)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user