mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: interpolateXY was not creating correct type. Only worked for scalarField.
This commit is contained in:
@ -41,7 +41,7 @@ Field<Type> interpolateXY
|
||||
const Field<Type>& yOld
|
||||
)
|
||||
{
|
||||
scalarField yNew(xNew.size());
|
||||
Field<Type> yNew(xNew.size());
|
||||
|
||||
forAll(xNew, i)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user