Formatting
This commit is contained in:
parent
14e1dd2233
commit
ddb867ee9f
1 changed files with 7 additions and 3 deletions
|
@ -245,7 +245,11 @@ void Foam::sixDOFqODE::aitkensRelaxation
|
||||||
const scalar saveOldRelFacR = oldRelaxFactorR_;
|
const scalar saveOldRelFacR = oldRelaxFactorR_;
|
||||||
oldRelaxFactorR_ = relaxFactorR_;
|
oldRelaxFactorR_ = relaxFactorR_;
|
||||||
|
|
||||||
if(magSqr(OmegaDot_[0] - OmegaDotn_[1] - OmegaDot_[1] - OmegaDotn_[2]) > SMALL)
|
if
|
||||||
|
(
|
||||||
|
magSqr(OmegaDot_[0] - OmegaDotn_[1] - OmegaDot_[1] - OmegaDotn_[2])
|
||||||
|
> SMALL
|
||||||
|
)
|
||||||
{
|
{
|
||||||
relaxFactorR_ =
|
relaxFactorR_ =
|
||||||
saveOldRelFacR + (saveOldRelFacR - 1)*
|
saveOldRelFacR + (saveOldRelFacR - 1)*
|
||||||
|
|
Reference in a new issue