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
|
scalar& xDash
|
||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
if (x < table_.last().first())
|
if (x > table_.last().first())
|
||||||
{
|
{
|
||||||
switch (boundsHandling_)
|
switch (boundsHandling_)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user