Formatting
This commit is contained in:
parent
14e1dd2233
commit
ddb867ee9f
1 changed files with 7 additions and 3 deletions
|
@ -232,11 +232,11 @@ void Foam::sixDOFqODE::aitkensRelaxation
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bound the relaxation factor for stability
|
// Bound the relaxation factor for stability
|
||||||
if(relaxFactorT_ > max)
|
if (relaxFactorT_ > max)
|
||||||
{
|
{
|
||||||
relaxFactorT_ = max;
|
relaxFactorT_ = max;
|
||||||
}
|
}
|
||||||
else if(relaxFactorT_ < min)
|
else if (relaxFactorT_ < min)
|
||||||
{
|
{
|
||||||
relaxFactorT_ = min;
|
relaxFactorT_ = min;
|
||||||
}
|
}
|
||||||
|
@ -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