mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- regular or forced assignment from `zero` does not need dimension
checking:
Old: U = dimensionedVector(U.dimensions(), Zero);
New: U = Zero;
this eliminates a fair bit of clutter and simplifies new coding
without losing general dimension checking capabilities.
1111 lines
26 KiB
C++
1111 lines
26 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2016-2017 Wikki Ltd
|
|
Copyright (C) 2020-2023 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::faMatrix
|
|
|
|
Description
|
|
Finite-Area matrix.
|
|
|
|
SourceFiles
|
|
faMatrix.C
|
|
faMatrixSolve.C
|
|
|
|
Author
|
|
Zeljko Tukovic, FMENA
|
|
Hrvoje Jasak, Wikki Ltd.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef Foam_faMatrix_H
|
|
#define Foam_faMatrix_H
|
|
|
|
#include "areaFields.H"
|
|
#include "edgeFields.H"
|
|
#include "lduMatrix.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// Forward Declarations
|
|
template<class Type> class faMatrix;
|
|
template<class T> class UIndirectList;
|
|
|
|
template<class Type>
|
|
Ostream& operator<<(Ostream&, const faMatrix<Type>&);
|
|
|
|
template<class Type>
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> operator&
|
|
(
|
|
const faMatrix<Type>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> operator&
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> operator&
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> operator&
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> operator&
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> operator&
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class faMatrix Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Type>
|
|
class faMatrix
|
|
:
|
|
public refCount,
|
|
public lduMatrix
|
|
{
|
|
public:
|
|
|
|
// Public Types
|
|
|
|
//- The geometric field type for psi
|
|
typedef
|
|
GeometricField<Type, faPatchField, areaMesh>
|
|
psiFieldType;
|
|
|
|
//- Field type for face flux (for non-orthogonal correction)
|
|
typedef
|
|
GeometricField<Type, faePatchField, edgeMesh>
|
|
faceFluxFieldType;
|
|
|
|
/// //- The internal field type for the psi field
|
|
/// typedef DimensionedField<Type, areaMesh> Internal;
|
|
|
|
private:
|
|
|
|
// Private Data
|
|
|
|
//- Const reference to field
|
|
// Converted into a non-const reference at the point of solution.
|
|
const psiFieldType& psi_;
|
|
|
|
//- Dimension set
|
|
dimensionSet dimensions_;
|
|
|
|
//- Source term
|
|
Field<Type> source_;
|
|
|
|
//- Boundary scalar field containing pseudo-matrix coeffs
|
|
//- for internal faces
|
|
FieldField<Field, Type> internalCoeffs_;
|
|
|
|
//- Boundary scalar field containing pseudo-matrix coeffs
|
|
//- for boundary faces
|
|
FieldField<Field, Type> boundaryCoeffs_;
|
|
|
|
//- Face flux field for non-orthogonal correction
|
|
mutable std::unique_ptr<faceFluxFieldType> faceFluxCorrectionPtr_;
|
|
|
|
|
|
protected:
|
|
|
|
//- Declare friendship with the faSolver class
|
|
friend class faSolver;
|
|
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Add patch contribution to internal field
|
|
template<class Type2>
|
|
void addToInternalField
|
|
(
|
|
const labelUList& addr,
|
|
const Field<Type2>& pf,
|
|
Field<Type2>& intf
|
|
) const;
|
|
|
|
template<class Type2>
|
|
void addToInternalField
|
|
(
|
|
const labelUList& addr,
|
|
const tmp<Field<Type2>>& tpf,
|
|
Field<Type2>& intf
|
|
) const;
|
|
|
|
//- Subtract patch contribution from internal field
|
|
template<class Type2>
|
|
void subtractFromInternalField
|
|
(
|
|
const labelUList& addr,
|
|
const Field<Type2>& pf,
|
|
Field<Type2>& intf
|
|
) const;
|
|
|
|
template<class Type2>
|
|
void subtractFromInternalField
|
|
(
|
|
const labelUList& addr,
|
|
const tmp<Field<Type2>>& tpf,
|
|
Field<Type2>& intf
|
|
) const;
|
|
|
|
|
|
// Matrix completion functionality
|
|
|
|
void addBoundaryDiag
|
|
(
|
|
scalarField& diag,
|
|
const direction cmpt
|
|
) const;
|
|
|
|
void addCmptAvBoundaryDiag(scalarField& diag) const;
|
|
|
|
void addBoundarySource
|
|
(
|
|
Field<Type>& source,
|
|
const bool couples = true
|
|
) const;
|
|
|
|
|
|
// Matrix manipulation functionality
|
|
|
|
//- Set solution in given faces to the specified values
|
|
template<template<class> class ListType>
|
|
void setValuesFromList
|
|
(
|
|
const labelUList& faceLabels,
|
|
const ListType<Type>& values
|
|
);
|
|
|
|
|
|
public:
|
|
|
|
//- Solver class returned by the solver function
|
|
//- used for systems in which it is useful to cache the solver for reuse.
|
|
class faSolver
|
|
{
|
|
faMatrix<Type>& faMat_;
|
|
|
|
autoPtr<lduMatrix::solver> solver_;
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
faSolver(faMatrix<Type>& faMat, autoPtr<lduMatrix::solver>&& sol)
|
|
:
|
|
faMat_(faMat),
|
|
solver_(std::move(sol))
|
|
{}
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Solve returning the solution statistics.
|
|
// Solver controls read from dictionary
|
|
SolverPerformance<Type> solve(const dictionary& solverControls);
|
|
|
|
//- Solve returning the solution statistics.
|
|
// Solver controls read from faSolution
|
|
SolverPerformance<Type> solve();
|
|
};
|
|
|
|
|
|
// Runtime information
|
|
ClassName("faMatrix");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct given a field to solve for
|
|
faMatrix
|
|
(
|
|
const GeometricField<Type, faPatchField, areaMesh>& psi,
|
|
const dimensionSet& ds
|
|
);
|
|
|
|
//- Copy construct
|
|
faMatrix(const faMatrix<Type>&);
|
|
|
|
//- Copy/move construct from tmp<faMatrix<Type>>
|
|
faMatrix(const tmp<faMatrix<Type>>&);
|
|
|
|
//- Deprecated(2022-05) - construct with dimensionSet instead
|
|
// \deprecated(2022-05) - construct with dimensionSet instead
|
|
FOAM_DEPRECATED_FOR(2022-05, "Construct with dimensionSet")
|
|
faMatrix
|
|
(
|
|
const GeometricField<Type, faPatchField, areaMesh>& psi,
|
|
Istream& is
|
|
)
|
|
:
|
|
faMatrix<Type>(psi, dimensionSet(is))
|
|
{}
|
|
|
|
//- Construct and return a clone
|
|
tmp<faMatrix<Type>> clone() const
|
|
{
|
|
return tmp<faMatrix<Type>>::New(*this);
|
|
}
|
|
|
|
|
|
//- Destructor
|
|
virtual ~faMatrix();
|
|
|
|
|
|
// Member Functions
|
|
|
|
// Access
|
|
|
|
const GeometricField<Type, faPatchField, areaMesh>& psi() const
|
|
{
|
|
return psi_;
|
|
}
|
|
|
|
const dimensionSet& dimensions() const noexcept
|
|
{
|
|
return dimensions_;
|
|
}
|
|
|
|
Field<Type>& source() noexcept
|
|
{
|
|
return source_;
|
|
}
|
|
|
|
const Field<Type>& source() const noexcept
|
|
{
|
|
return source_;
|
|
}
|
|
|
|
//- faBoundary scalar field containing pseudo-matrix coeffs
|
|
//- for internal cells
|
|
const FieldField<Field, Type>& internalCoeffs() const noexcept
|
|
{
|
|
return internalCoeffs_;
|
|
}
|
|
|
|
//- faBoundary scalar field containing pseudo-matrix coeffs
|
|
//- for internal cells
|
|
FieldField<Field, Type>& internalCoeffs() noexcept
|
|
{
|
|
return internalCoeffs_;
|
|
}
|
|
|
|
//- faBoundary scalar field containing pseudo-matrix coeffs
|
|
//- for boundary cells
|
|
const FieldField<Field, Type>& boundaryCoeffs() const noexcept
|
|
{
|
|
return boundaryCoeffs_;
|
|
}
|
|
|
|
//- faBoundary scalar field containing pseudo-matrix coeffs
|
|
//- for boundary cells
|
|
FieldField<Field, Type>& boundaryCoeffs() noexcept
|
|
{
|
|
return boundaryCoeffs_;
|
|
}
|
|
|
|
//- Declare return type of the faceFluxCorrectionPtr() function
|
|
typedef std::unique_ptr<faceFluxFieldType> faceFluxFieldPtrType;
|
|
|
|
//- Return pointer to face-flux non-orthogonal correction field
|
|
faceFluxFieldPtrType& faceFluxCorrectionPtr()
|
|
{
|
|
return faceFluxCorrectionPtr_;
|
|
}
|
|
|
|
//- Set pointer to face-flux non-orthogonal correction field
|
|
void faceFluxCorrectionPtr(faceFluxFieldType* flux)
|
|
{
|
|
faceFluxCorrectionPtr_.reset(flux);
|
|
}
|
|
|
|
//- True if face-flux non-orthogonal correction field exists
|
|
bool hasFaceFluxCorrection() const noexcept
|
|
{
|
|
return bool(faceFluxCorrectionPtr_);
|
|
}
|
|
|
|
|
|
// Operations
|
|
|
|
//- Set solution in given faces to the specified value
|
|
//- and eliminate the corresponding equations from the matrix.
|
|
void setValues
|
|
(
|
|
const labelUList& faceLabels,
|
|
const Type& value
|
|
);
|
|
|
|
//- Set solution in given faces to the specified values
|
|
//- and eliminate the corresponding equations from the matrix.
|
|
void setValues
|
|
(
|
|
const labelUList& faceLabels,
|
|
const UList<Type>& values
|
|
);
|
|
|
|
//- Set solution in given faces to the specified values
|
|
//- and eliminate the corresponding equations from the matrix.
|
|
void setValues
|
|
(
|
|
const labelUList& faceLabels,
|
|
const UIndirectList<Type>& values
|
|
);
|
|
|
|
//- Set reference level for solution
|
|
void setReference
|
|
(
|
|
const label facei,
|
|
const Type& value,
|
|
const bool forceReference = false
|
|
);
|
|
|
|
//- Set reference level for solution
|
|
void setReferences
|
|
(
|
|
const labelUList& faceLabels,
|
|
const Type& value,
|
|
const bool forceReference = false
|
|
);
|
|
|
|
//- Set reference level for solution
|
|
void setReferences
|
|
(
|
|
const labelUList& faceLabels,
|
|
const UList<Type>& values,
|
|
const bool forceReference = false
|
|
);
|
|
|
|
//- Set reference level for a component of the solution
|
|
//- on a given patch face
|
|
void setComponentReference
|
|
(
|
|
const label patchi,
|
|
const label facei,
|
|
const direction cmpt,
|
|
const scalar value
|
|
);
|
|
|
|
//- Relax matrix (for steady-state solution).
|
|
// alpha = 1 : diagonally equal
|
|
// alpha < 1 : ,, dominant
|
|
// alpha = 0 : do nothing
|
|
// Note: Requires positive diagonal.
|
|
void relax(const scalar alpha);
|
|
|
|
//- Relax matrix (for steady-state solution).
|
|
// alpha is read from controlDict
|
|
void relax();
|
|
|
|
//- Solve returning the solution statistics.
|
|
// Use the given solver controls
|
|
SolverPerformance<Type> solve(const dictionary&);
|
|
|
|
//- Solve returning the solution statistics.
|
|
// Uses \p name solver controls from faSolution
|
|
SolverPerformance<Type> solve(const word& name);
|
|
|
|
//- Solve returning the solution statistics.
|
|
// Solver controls read from faSolution
|
|
SolverPerformance<Type> solve();
|
|
|
|
//- Return the matrix residual
|
|
tmp<Field<Type>> residual() const;
|
|
|
|
//- Return the matrix diagonal
|
|
tmp<scalarField> D() const;
|
|
|
|
//- Return the central coefficient
|
|
tmp<areaScalarField> A() const;
|
|
|
|
//- Return the H operation source
|
|
tmp<GeometricField<Type, faPatchField, areaMesh>> H() const;
|
|
|
|
//- Return the face-flux field from the matrix
|
|
tmp<GeometricField<Type, faePatchField, edgeMesh>> flux() const;
|
|
|
|
//- Return the solver dictionary (from faSolution) for \p name
|
|
const dictionary& solverDict(const word& name) const;
|
|
|
|
//- Return the solver dictionary for psi
|
|
const dictionary& solverDict() const;
|
|
|
|
|
|
// Member Operators
|
|
|
|
void operator=(const faMatrix<Type>&);
|
|
void operator=(const tmp<faMatrix<Type>>&);
|
|
|
|
//- Inplace negate
|
|
void negate();
|
|
|
|
void operator+=(const faMatrix<Type>&);
|
|
void operator+=(const tmp<faMatrix<Type>>&);
|
|
|
|
void operator-=(const faMatrix<Type>&);
|
|
void operator-=(const tmp<faMatrix<Type>>&);
|
|
|
|
void operator+=(const DimensionedField<Type, areaMesh>&);
|
|
void operator+=(const tmp<DimensionedField<Type, areaMesh>>&);
|
|
void operator+=
|
|
(
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
void operator-=(const DimensionedField<Type, areaMesh>&);
|
|
void operator-=(const tmp<DimensionedField<Type, areaMesh>>&);
|
|
void operator-=
|
|
(
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
void operator+=(const dimensioned<Type>&);
|
|
void operator-=(const dimensioned<Type>&);
|
|
|
|
void operator+=(Foam::zero) {}
|
|
void operator-=(Foam::zero) {}
|
|
|
|
void operator*=(const areaScalarField::Internal&);
|
|
void operator*=(const tmp<areaScalarField::Internal>&);
|
|
void operator*=(const tmp<areaScalarField>&);
|
|
|
|
void operator*=(const dimensioned<scalar>&);
|
|
|
|
|
|
// Friend Operators
|
|
|
|
friend tmp<GeometricField<Type, faPatchField, areaMesh>>
|
|
operator& <Type>
|
|
(
|
|
const faMatrix<Type>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
friend tmp<GeometricField<Type, faPatchField, areaMesh>>
|
|
operator& <Type>
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
friend tmp<GeometricField<Type, faPatchField, areaMesh>>
|
|
operator& <Type>
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
friend tmp<GeometricField<Type, faPatchField, areaMesh>>
|
|
operator& <Type>
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
|
|
// Ostream Operator
|
|
|
|
friend Ostream& operator<< <Type>
|
|
(
|
|
Ostream&,
|
|
const faMatrix<Type>&
|
|
);
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void checkMethod
|
|
(
|
|
const faMatrix<Type>&,
|
|
const faMatrix<Type>&,
|
|
const char*
|
|
);
|
|
|
|
template<class Type>
|
|
void checkMethod
|
|
(
|
|
const faMatrix<Type>&,
|
|
const DimensionedField<Type, areaMesh>&,
|
|
const char*
|
|
);
|
|
|
|
template<class Type>
|
|
void checkMethod
|
|
(
|
|
const faMatrix<Type>&,
|
|
const dimensioned<Type>&,
|
|
const char*
|
|
);
|
|
|
|
|
|
//- Solve returning the solution statistics given convergence tolerance
|
|
// Use the given solver controls
|
|
template<class Type>
|
|
SolverPerformance<Type> solve
|
|
(
|
|
faMatrix<Type>&,
|
|
const dictionary& solverControls
|
|
);
|
|
|
|
//- Solve returning the solution statistics given convergence tolerance,
|
|
//- deleting temporary matrix after solution.
|
|
// Use the given solver controls
|
|
template<class Type>
|
|
SolverPerformance<Type> solve
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const dictionary& solverControls
|
|
);
|
|
|
|
|
|
//- Solve returning the solution statistics given convergence tolerance
|
|
// Uses \p name solver controls from faSolution
|
|
template<class Type>
|
|
SolverPerformance<Type> solve(faMatrix<Type>&, const word& name);
|
|
|
|
//- Solve returning the solution statistics given convergence tolerance,
|
|
//- deleting temporary matrix after solution.
|
|
// Uses \p name solver controls from faSolution
|
|
template<class Type>
|
|
SolverPerformance<Type> solve(const tmp<faMatrix<Type>>&, const word& name);
|
|
|
|
|
|
//- Solve returning the solution statistics given convergence tolerance
|
|
// Uses solver controls from faSolution
|
|
template<class Type>
|
|
SolverPerformance<Type> solve(faMatrix<Type>&);
|
|
|
|
//- Solve returning the solution statistics given convergence tolerance,
|
|
//- deleting temporary matrix after solution.
|
|
// Uses solver controls from faSolution
|
|
template<class Type>
|
|
SolverPerformance<Type> solve(const tmp<faMatrix<Type>>&);
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * //
|
|
|
|
//- Unary negation
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
//- Unary negation
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const faMatrix<Type>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const faMatrix<Type>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const DimensionedField<Type, areaMesh>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<DimensionedField<Type, areaMesh>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const DimensionedField<Type, areaMesh>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<DimensionedField<Type, areaMesh>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const DimensionedField<Type, areaMesh>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<DimensionedField<Type, areaMesh>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const DimensionedField<Type, areaMesh>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<DimensionedField<Type, areaMesh>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const faMatrix<Type>&,
|
|
const dimensioned<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const dimensioned<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const dimensioned<Type>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator+
|
|
(
|
|
const dimensioned<Type>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const faMatrix<Type>&,
|
|
const dimensioned<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const dimensioned<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const dimensioned<Type>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator-
|
|
(
|
|
const dimensioned<Type>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const DimensionedField<Type, areaMesh>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<DimensionedField<Type, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const tmp<GeometricField<Type, faPatchField, areaMesh>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const dimensioned<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const dimensioned<Type>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const faMatrix<Type>&,
|
|
const Foam::zero
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator==
|
|
(
|
|
const tmp<faMatrix<Type>>&,
|
|
const Foam::zero
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const areaScalarField::Internal&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const tmp<areaScalarField::Internal>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const tmp<areaScalarField>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const areaScalarField::Internal&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const tmp<areaScalarField::Internal>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const tmp<areaScalarField>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const dimensioned<scalar>&,
|
|
const faMatrix<Type>&
|
|
);
|
|
|
|
template<class Type>
|
|
tmp<faMatrix<Type>> operator*
|
|
(
|
|
const dimensioned<scalar>&,
|
|
const tmp<faMatrix<Type>>&
|
|
);
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "faMatrix.C"
|
|
#endif
|
|
|
|
// Specialisation for scalars
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|