Formatting
This commit is contained in:
parent
905f730e18
commit
71940b5ac7
1 changed files with 5 additions and 1 deletions
|
@ -198,7 +198,11 @@ gaussLaplacianScheme<Type, GType>::fvcLaplacian
|
|||
surfaceVectorField Sn = mesh.Sf()/mesh.magSf();
|
||||
|
||||
surfaceVectorField SfGamma = mesh.Sf() & gamma;
|
||||
GeometricField<scalar, fvsPatchField, surfaceMesh> SfGammaSn = SfGamma & Sn;
|
||||
GeometricField<scalar, fvsPatchField, surfaceMesh> SfGammaSn
|
||||
(
|
||||
SfGamma & Sn
|
||||
);
|
||||
|
||||
surfaceVectorField SfGammaCorr = SfGamma - SfGammaSn*Sn;
|
||||
|
||||
tmp<GeometricField<Type, fvPatchField, volMesh> > tLaplacian
|
||||
|
|
Reference in a new issue