Skip to content
Snippets Groups Projects
Commit fc31799a authored by andy's avatar andy Committed by Andrew Heather
Browse files

BUG: cyclicAMI - fixed transform for case that angle is given - mantis #1217

parent 32aa0b82
Branches
Tags
No related merge requests found
......@@ -154,13 +154,13 @@ void Foam::cyclicAMIPolyPatch::calcTransforms
tensor RPos
(
T
+ cos(rotationAngle_)*(tensor::I + T)
+ cos(rotationAngle_)*(tensor::I - T)
+ sin(rotationAngle_)*S
);
tensor RNeg
(
T
+ cos(-rotationAngle_)*(tensor::I + T)
+ cos(-rotationAngle_)*(tensor::I - T)
+ sin(-rotationAngle_)*S
);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment