mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
initial changes to compile src
This commit is contained in:
@ -153,30 +153,13 @@ void Foam::PointEdgeWave<Type>::enterDomain
|
||||
template <class Type>
|
||||
void Foam::PointEdgeWave<Type>::transform
|
||||
(
|
||||
const tensorField& rotTensor,
|
||||
const tensor& T,
|
||||
List<Type>& pointInfo
|
||||
) const
|
||||
{
|
||||
if (rotTensor.size() == 1)
|
||||
forAll(pointInfo, i)
|
||||
{
|
||||
const tensor& T = rotTensor[0];
|
||||
|
||||
forAll(pointInfo, i)
|
||||
{
|
||||
pointInfo[i].transform(T);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
FatalErrorIn
|
||||
(
|
||||
"PointEdgeWave<Type>::transform(const tensorField&, List<Type>&)"
|
||||
) << "Parallel cyclics not supported" << abort(FatalError);
|
||||
|
||||
forAll(pointInfo, i)
|
||||
{
|
||||
pointInfo[i].transform(rotTensor[i]);
|
||||
}
|
||||
pointInfo[i].transform(T);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user