mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Adding mapping function to radiationCoupledBase
This commit is contained in:
@ -32,6 +32,13 @@ License
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
|
namespace Foam
|
||||||
|
{
|
||||||
|
defineTypeNameAndDebug(radiationCoupledBase, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
template<>
|
template<>
|
||||||
@ -139,6 +146,12 @@ Foam::radiationCoupledBase::radiationCoupledBase
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::radiationCoupledBase::~radiationCoupledBase()
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
Foam::scalarField Foam::radiationCoupledBase::emissivity() const
|
Foam::scalarField Foam::radiationCoupledBase::emissivity() const
|
||||||
|
|||||||
@ -90,6 +90,10 @@ protected:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
//- Runtime type information
|
||||||
|
TypeName("radiationCoupledBase");
|
||||||
|
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
//- Construct from patch, emissivity mode and emissivity
|
//- Construct from patch, emissivity mode and emissivity
|
||||||
@ -117,6 +121,9 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
//- Destructor
|
||||||
|
virtual ~radiationCoupledBase();
|
||||||
|
|
||||||
// Member functions
|
// Member functions
|
||||||
|
|
||||||
// Access
|
// Access
|
||||||
@ -135,13 +142,13 @@ public:
|
|||||||
// Mapping functions
|
// Mapping functions
|
||||||
|
|
||||||
//- Map (and resize as needed) from self given a mapping object
|
//- Map (and resize as needed) from self given a mapping object
|
||||||
void autoMap
|
virtual void autoMap
|
||||||
(
|
(
|
||||||
const fvPatchFieldMapper&
|
const fvPatchFieldMapper&
|
||||||
);
|
);
|
||||||
|
|
||||||
//- Reverse map the given fvPatchField onto this fvPatchField
|
//- Reverse map the given fvPatchField onto this fvPatchField
|
||||||
void rmap
|
virtual void rmap
|
||||||
(
|
(
|
||||||
const fvPatchScalarField&,
|
const fvPatchScalarField&,
|
||||||
const labelList&
|
const labelList&
|
||||||
|
|||||||
Reference in New Issue
Block a user