mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: eigenVectors: correct field-function return type (#2011)
- return type of `eigenVectors` field functions should be `tensor` instead of `symmTensor`
This commit is contained in:
committed by
Mark Olesen
parent
0256e20da3
commit
a6f7b0f2ee
@ -6,7 +6,7 @@
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||
Copyright (C) 2019-2021 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -269,7 +269,7 @@ UNARY_FUNCTION(tensor, tensor, cof, pow2)
|
||||
UNARY_FUNCTION(tensor, tensor, inv, inv)
|
||||
|
||||
UNARY_FUNCTION(vector, symmTensor, eigenValues, transform)
|
||||
UNARY_FUNCTION(symmTensor, symmTensor, eigenVectors, sign)
|
||||
UNARY_FUNCTION(tensor, symmTensor, eigenVectors, sign)
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user