mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Renamed relativeFlux -> makeRelative and absoluteFlux -> makeAbsolute
This commit is contained in:
@ -499,13 +499,13 @@ void Foam::MRFZone::absoluteVelocity(volVectorField& U) const
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZone::relativeFlux(surfaceScalarField& phi) const
|
||||
void Foam::MRFZone::makeRelative(surfaceScalarField& phi) const
|
||||
{
|
||||
relativeRhoFlux(geometricOneField(), phi);
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZone::relativeFlux
|
||||
void Foam::MRFZone::makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
@ -515,13 +515,13 @@ void Foam::MRFZone::relativeFlux
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZone::absoluteFlux(surfaceScalarField& phi) const
|
||||
void Foam::MRFZone::makeAbsolute(surfaceScalarField& phi) const
|
||||
{
|
||||
absoluteRhoFlux(geometricOneField(), phi);
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZone::absoluteFlux
|
||||
void Foam::MRFZone::makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
@ -214,20 +214,20 @@ public:
|
||||
void absoluteVelocity(volVectorField& U) const;
|
||||
|
||||
//- Make the given absolute flux relative within the MRF region
|
||||
void relativeFlux(surfaceScalarField& phi) const;
|
||||
void makeRelative(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given absolute mass-flux relative within the MRF region
|
||||
void relativeFlux
|
||||
void makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const;
|
||||
|
||||
//- Make the given relative flux absolute within the MRF region
|
||||
void absoluteFlux(surfaceScalarField& phi) const;
|
||||
void makeAbsolute(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given relative mass-flux absolute within the MRF region
|
||||
void absoluteFlux
|
||||
void makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
@ -178,16 +178,16 @@ void Foam::MRFZoneList::absoluteVelocity(volVectorField& U) const
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZoneList::relativeFlux(surfaceScalarField& phi) const
|
||||
void Foam::MRFZoneList::makeRelative(surfaceScalarField& phi) const
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
operator[](i).relativeFlux(phi);
|
||||
operator[](i).makeRelative(phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZoneList::relativeFlux
|
||||
void Foam::MRFZoneList::makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
@ -195,21 +195,21 @@ void Foam::MRFZoneList::relativeFlux
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
operator[](i).relativeFlux(rho, phi);
|
||||
operator[](i).makeRelative(rho, phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZoneList::absoluteFlux(surfaceScalarField& phi) const
|
||||
void Foam::MRFZoneList::makeAbsolute(surfaceScalarField& phi) const
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
operator[](i).absoluteFlux(phi);
|
||||
operator[](i).makeAbsolute(phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::MRFZoneList::absoluteFlux
|
||||
void Foam::MRFZoneList::makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
@ -217,7 +217,7 @@ void Foam::MRFZoneList::absoluteFlux
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
operator[](i).absoluteFlux(rho, phi);
|
||||
operator[](i).makeAbsolute(rho, phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -109,20 +109,20 @@ public:
|
||||
void absoluteVelocity(volVectorField& U) const;
|
||||
|
||||
//- Make the given absolute flux relative within the MRF region
|
||||
void relativeFlux(surfaceScalarField& phi) const;
|
||||
void makeRelative(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given absolute mass-flux relative within the MRF region
|
||||
void relativeFlux
|
||||
void makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const;
|
||||
|
||||
//- Make the given relative flux absolute within the MRF region
|
||||
void absoluteFlux(surfaceScalarField& phi) const;
|
||||
void makeAbsolute(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given relative mass-flux absolute within the MRF region
|
||||
void absoluteFlux
|
||||
void makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
@ -474,13 +474,13 @@ void Foam::fv::option::setValue(fvMatrix<tensor>& eqn, const label fieldI)
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::option::relativeFlux(surfaceScalarField& phi) const
|
||||
void Foam::fv::option::makeRelative(surfaceScalarField& phi) const
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::option::relativeFlux
|
||||
void Foam::fv::option::makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
@ -490,13 +490,13 @@ void Foam::fv::option::relativeFlux
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::option::absoluteFlux(surfaceScalarField& phi) const
|
||||
void Foam::fv::option::makeAbsolute(surfaceScalarField& phi) const
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::option::absoluteFlux
|
||||
void Foam::fv::option::makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
@ -425,20 +425,20 @@ public:
|
||||
// Flux manipulations
|
||||
|
||||
//- Make the given absolute flux relative
|
||||
virtual void relativeFlux(surfaceScalarField& phi) const;
|
||||
virtual void makeRelative(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given absolute mass-flux relative
|
||||
virtual void relativeFlux
|
||||
virtual void makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const;
|
||||
|
||||
//- Make the given relative flux absolute
|
||||
virtual void absoluteFlux(surfaceScalarField& phi) const;
|
||||
virtual void makeAbsolute(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given relative mass-flux absolute
|
||||
virtual void absoluteFlux
|
||||
virtual void makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
@ -107,16 +107,16 @@ void Foam::fv::optionList::reset(const dictionary& dict)
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::optionList::relativeFlux(surfaceScalarField& phi) const
|
||||
void Foam::fv::optionList::makeRelative(surfaceScalarField& phi) const
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
this->operator[](i).relativeFlux(phi);
|
||||
this->operator[](i).makeRelative(phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::optionList::relativeFlux
|
||||
void Foam::fv::optionList::makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
@ -124,21 +124,21 @@ void Foam::fv::optionList::relativeFlux
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
this->operator[](i).relativeFlux(rho, phi);
|
||||
this->operator[](i).makeRelative(rho, phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::optionList::absoluteFlux(surfaceScalarField& phi) const
|
||||
void Foam::fv::optionList::makeAbsolute(surfaceScalarField& phi) const
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
this->operator[](i).absoluteFlux(phi);
|
||||
this->operator[](i).makeAbsolute(phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::optionList::absoluteFlux
|
||||
void Foam::fv::optionList::makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
@ -146,7 +146,7 @@ void Foam::fv::optionList::absoluteFlux
|
||||
{
|
||||
forAll(*this, i)
|
||||
{
|
||||
this->operator[](i).absoluteFlux(rho, phi);
|
||||
this->operator[](i).makeAbsolute(rho, phi);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -157,20 +157,20 @@ public:
|
||||
// Flux manipulations
|
||||
|
||||
//- Make the given absolute flux relative
|
||||
void relativeFlux(surfaceScalarField& phi) const;
|
||||
void makeRelative(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given absolute mass-flux relative
|
||||
void relativeFlux
|
||||
void makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const;
|
||||
|
||||
//- Make the given relative flux absolute
|
||||
void absoluteFlux(surfaceScalarField& phi) const;
|
||||
void makeAbsolute(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given relative mass-flux absolute
|
||||
void absoluteFlux
|
||||
void makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
@ -120,35 +120,35 @@ void Foam::fv::MRFSource::addSup
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::MRFSource::relativeFlux(surfaceScalarField& phi) const
|
||||
void Foam::fv::MRFSource::makeRelative(surfaceScalarField& phi) const
|
||||
{
|
||||
mrfPtr_->relativeFlux(phi);
|
||||
mrfPtr_->makeRelative(phi);
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::MRFSource::relativeFlux
|
||||
void Foam::fv::MRFSource::makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const
|
||||
{
|
||||
mrfPtr_->relativeFlux(rho, phi);
|
||||
mrfPtr_->makeRelative(rho, phi);
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::MRFSource::absoluteFlux(surfaceScalarField& phi) const
|
||||
void Foam::fv::MRFSource::makeAbsolute(surfaceScalarField& phi) const
|
||||
{
|
||||
mrfPtr_->absoluteFlux(phi);
|
||||
mrfPtr_->makeAbsolute(phi);
|
||||
}
|
||||
|
||||
|
||||
void Foam::fv::MRFSource::absoluteFlux
|
||||
void Foam::fv::MRFSource::makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const
|
||||
{
|
||||
mrfPtr_->absoluteFlux(rho, phi);
|
||||
mrfPtr_->makeAbsolute(rho, phi);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -138,20 +138,20 @@ public:
|
||||
// Flux manipulations
|
||||
|
||||
//- Make the given absolute flux relative
|
||||
virtual void relativeFlux(surfaceScalarField& phi) const;
|
||||
virtual void makeRelative(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given absolute mass-flux relative
|
||||
virtual void relativeFlux
|
||||
virtual void makeRelative
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
) const;
|
||||
|
||||
//- Make the given relative flux absolute
|
||||
virtual void absoluteFlux(surfaceScalarField& phi) const;
|
||||
virtual void makeAbsolute(surfaceScalarField& phi) const;
|
||||
|
||||
//- Make the given relative mass-flux absolute
|
||||
virtual void absoluteFlux
|
||||
virtual void makeAbsolute
|
||||
(
|
||||
const surfaceScalarField& rho,
|
||||
surfaceScalarField& phi
|
||||
|
||||
Reference in New Issue
Block a user