mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -118,7 +118,9 @@ void fixedShearStressFvPatchVectorField::updateCoeffs()
|
|||||||
|
|
||||||
const scalarField& ry = patch().deltaCoeffs();
|
const scalarField& ry = patch().deltaCoeffs();
|
||||||
|
|
||||||
tmp<scalarField> nuEffw = rasModel.nuEff()().boundaryField()[patchI];
|
tmp<volScalarField> tnuEff = rasModel.nuEff();
|
||||||
|
const volScalarField& nuEff = tnuEff();
|
||||||
|
const scalarField& nuEffw = nuEff.boundaryField()[patchI];
|
||||||
|
|
||||||
tmp<vectorField> UwUpdated =
|
tmp<vectorField> UwUpdated =
|
||||||
tauHat*(tauHat & (tau0_*(1.0/(ry*nuEffw)) + Ui));
|
tauHat*(tauHat & (tau0_*(1.0/(ry*nuEffw)) + Ui));
|
||||||
|
|||||||
Reference in New Issue
Block a user