From e45603b57293c7a0e0be34c4a7680e7ea4e0f9d5 Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Tue, 5 Jan 2016 14:23:07 +0000 Subject: [PATCH] Variable naming --- src/finiteVolume/finiteVolume/fvm/fvmDiv.C | 44 +++++++++++----------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/finiteVolume/finiteVolume/fvm/fvmDiv.C b/src/finiteVolume/finiteVolume/fvm/fvmDiv.C index dd6a22e6a..69123bfd5 100644 --- a/src/finiteVolume/finiteVolume/fvm/fvmDiv.C +++ b/src/finiteVolume/finiteVolume/fvm/fvmDiv.C @@ -44,7 +44,7 @@ template tmp > div ( - const surfaceScalarField& flux, + const surfaceScalarField& rho, GeometricField& vf, const word& name ) @@ -52,9 +52,9 @@ div return fv::convectionScheme::New ( vf.mesh(), - flux, + rho, vf.mesh().schemesDict().divScheme(name) - )().fvmDiv(flux, vf); + )().fvmDiv(rho, vf); } @@ -62,13 +62,13 @@ template tmp > div ( - const tmp& tflux, + const tmp& trho, GeometricField& vf, const word& name ) { - tmp > Div(fvm::div(tflux(), vf, name)); - tflux.clear(); + tmp > Div(fvm::div(trho(), vf, name)); + trho.clear(); return Div; } @@ -77,11 +77,11 @@ template tmp > div ( - const surfaceScalarField& flux, + const surfaceScalarField& rho, GeometricField& vf ) { - return fvm::div(flux, vf, "div("+flux.name()+','+vf.name()+')'); + return fvm::div(rho, vf, "div(" + rho.name() + ',' + vf.name() + ')'); } @@ -89,12 +89,12 @@ template tmp > div ( - const tmp& tflux, + const tmp& trho, GeometricField& vf ) { - tmp > Div(fvm::div(tflux(), vf)); - tflux.clear(); + tmp > Div(fvm::div(trho(), vf)); + trho.clear(); return Div; } @@ -123,7 +123,7 @@ tmp BlockLduSystem::type> > UDiv ( - const surfaceScalarField& flux, + const surfaceScalarField& rho, GeometricField& vf, const word& name ) @@ -132,7 +132,7 @@ tmp ( vf.mesh(), vf.mesh().schemesDict().divScheme(name) - )().fvmUDiv(flux, vf); + )().fvmUDiv(rho, vf); } @@ -142,7 +142,7 @@ tmp BlockLduSystem::type> > UDiv ( - const tmp& tflux, + const tmp& trho, GeometricField& vf, const word& name ) @@ -151,8 +151,8 @@ tmp < BlockLduSystem::type> > - Div(fvm::UDiv(tflux(), vf, name)); - tflux.clear(); + Div(fvm::UDiv(trho(), vf, name)); + trho.clear(); return Div; } @@ -180,15 +180,15 @@ tmp BlockLduSystem::type> > UDiv ( - const surfaceScalarField& flux, + const surfaceScalarField& rho, GeometricField& vf ) { return fvm::UDiv ( - flux, + rho, vf, - "div(" + vf.name() + ')' + "div(" + rho.name() + ',' + vf.name() + ')' ); } @@ -199,7 +199,7 @@ tmp BlockLduSystem::type> > UDiv ( - const tmp& tflux, + const tmp& trho, GeometricField& vf ) { @@ -207,8 +207,8 @@ tmp < BlockLduSystem::type> > - Div(fvm::UDiv(tflux(), vf)); - tflux.clear(); + Div(fvm::UDiv(trho(), vf)); + trho.clear(); return Div; }