COMP: macros for non-templated boundary conditions

This commit is contained in:
Mark Olesen
2010-12-17 16:05:22 +01:00
parent f729c75bd8
commit 5e4c5c9469
99 changed files with 192 additions and 162 deletions

View File

@ -501,80 +501,85 @@ const pointPatchField<Type>& operator+
#define makePointPatchTypeFieldTypeName(type) \ #define makePointPatchTypeFieldTypeName(type) \
\ defineNamedTemplateTypeNameAndDebug(type, 0);
defineNamedTemplateTypeNameAndDebug(type, 0);
#define makePointPatchFieldsTypeName(type) \ #define makePointPatchFieldsTypeName(type) \
\ makePointPatchTypeFieldTypeName(type##PointPatchScalarField); \
makePointPatchTypeFieldTypeName(type##PointPatchScalarField); \ makePointPatchTypeFieldTypeName(type##PointPatchVectorField); \
makePointPatchTypeFieldTypeName(type##PointPatchVectorField); \ makePointPatchTypeFieldTypeName(type##PointPatchSphericalTensorField); \
makePointPatchTypeFieldTypeName(type##PointPatchSphericalTensorField); \ makePointPatchTypeFieldTypeName(type##PointPatchSymmTensorField); \
makePointPatchTypeFieldTypeName(type##PointPatchSymmTensorField); \ makePointPatchTypeFieldTypeName(type##PointPatchTensorField);
makePointPatchTypeFieldTypeName(type##PointPatchTensorField);
#define addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField) \
\
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
pointPatch \
); \
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
patchMapper \
); \
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
dictionary \
);
// for non-templated patch fields
#define makeNonTemplatedPointPatchTypeField(PatchTypeField,typePatchTypeField)\
defineTypeNameAndDebug(typePatchTypeField, 0); \
addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField)
// for templated patch fields
#define makePointPatchTypeField(PatchTypeField, typePatchTypeField) \ #define makePointPatchTypeField(PatchTypeField, typePatchTypeField) \
\ defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0); \
defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0); \ addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField)
\
addToRunTimeSelectionTable \
( \
PatchTypeField, typePatchTypeField, pointPatch \
); \
\
addToRunTimeSelectionTable \
( \
PatchTypeField, \
typePatchTypeField, \
patchMapper \
); \
\
addToRunTimeSelectionTable \
( \
PatchTypeField, typePatchTypeField, dictionary \
);
#define makePointPatchFields(type) \ #define makePointPatchFields(type) \
\ makePointPatchTypeField \
makePointPatchTypeField \ ( \
( \ pointPatchScalarField, \
pointPatchScalarField, \ type##PointPatchScalarField \
type##PointPatchScalarField \ ); \
); \ makePointPatchTypeField \
\ ( \
makePointPatchTypeField \ pointPatchVectorField, \
( \ type##PointPatchVectorField \
pointPatchVectorField, \ ); \
type##PointPatchVectorField \ makePointPatchTypeField \
); \ ( \
\ pointPatchSphericalTensorField, \
makePointPatchTypeField \ type##PointPatchSphericalTensorField \
( \ ); \
pointPatchSphericalTensorField, \ makePointPatchTypeField \
type##PointPatchSphericalTensorField \ ( \
); \ pointPatchSymmTensorField, \
\ type##PointPatchSymmTensorField \
makePointPatchTypeField \ ); \
( \ makePointPatchTypeField \
pointPatchSymmTensorField, \ ( \
type##PointPatchSymmTensorField \ pointPatchTensorField, \
); \ type##PointPatchTensorField \
\
makePointPatchTypeField \
( \
pointPatchTensorField, \
type##PointPatchTensorField \
); );
#define makePointPatchFieldTypedefs(type) \ #define makePointPatchFieldTypedefs(type) \
\ typedef type##PointPatchField<scalar> type##PointPatchScalarField; \
typedef type##PointPatchField<scalar> type##PointPatchScalarField; \ typedef type##PointPatchField<vector> type##PointPatchVectorField; \
typedef type##PointPatchField<vector> type##PointPatchVectorField; \ typedef type##PointPatchField<sphericalTensor> \
typedef type##PointPatchField<sphericalTensor> \ type##PointPatchSphericalTensorField; \
type##PointPatchSphericalTensorField; \ typedef type##PointPatchField<symmTensor> type##PointPatchSymmTensorField;\
typedef type##PointPatchField<symmTensor> type##PointPatchSymmTensorField; \ typedef type##PointPatchField<tensor> type##PointPatchTensorField;
typedef type##PointPatchField<tensor> type##PointPatchTensorField;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -164,7 +164,7 @@ void Foam::SRFVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
SRFVelocityFvPatchVectorField SRFVelocityFvPatchVectorField

View File

@ -310,11 +310,12 @@ void Foam::activeBaffleVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
activeBaffleVelocityFvPatchVectorField activeBaffleVelocityFvPatchVectorField
); );
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -145,7 +145,7 @@ void Foam::buoyantPressureFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
buoyantPressureFvPatchScalarField buoyantPressureFvPatchScalarField

View File

@ -162,7 +162,7 @@ void Foam::cylindricalInletVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
cylindricalInletVelocityFvPatchVectorField cylindricalInletVelocityFvPatchVectorField

View File

@ -264,7 +264,7 @@ void Foam::directMappedVelocityFluxFixedValueFvPatchField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
directMappedVelocityFluxFixedValueFvPatchField directMappedVelocityFluxFixedValueFvPatchField

View File

@ -172,7 +172,7 @@ void Foam::fixedFluxPressureFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
fixedFluxPressureFvPatchScalarField fixedFluxPressureFvPatchScalarField

View File

@ -137,7 +137,7 @@ void Foam::fixedPressureCompressibleDensityFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
fixedPressureCompressibleDensityFvPatchScalarField fixedPressureCompressibleDensityFvPatchScalarField

View File

@ -168,7 +168,7 @@ void Foam::flowRateInletVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
flowRateInletVelocityFvPatchVectorField flowRateInletVelocityFvPatchVectorField

View File

@ -152,7 +152,7 @@ void Foam::fluxCorrectedVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
fluxCorrectedVelocityFvPatchVectorField fluxCorrectedVelocityFvPatchVectorField

View File

@ -144,7 +144,7 @@ void Foam::freestreamPressureFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
freestreamPressureFvPatchScalarField freestreamPressureFvPatchScalarField

View File

@ -203,7 +203,7 @@ const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
inletOutletTotalTemperatureFvPatchScalarField inletOutletTotalTemperatureFvPatchScalarField

View File

@ -146,7 +146,7 @@ void Foam::movingWallVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
movingWallVelocityFvPatchVectorField movingWallVelocityFvPatchVectorField

View File

@ -218,7 +218,7 @@ void Foam::pressureDirectedInletOutletVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
pressureDirectedInletOutletVelocityFvPatchVectorField pressureDirectedInletOutletVelocityFvPatchVectorField

View File

@ -204,7 +204,7 @@ void Foam::pressureDirectedInletVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
pressureDirectedInletVelocityFvPatchVectorField pressureDirectedInletVelocityFvPatchVectorField

View File

@ -213,7 +213,7 @@ void Foam::pressureInletOutletVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
pressureInletOutletVelocityFvPatchVectorField pressureInletOutletVelocityFvPatchVectorField

View File

@ -117,7 +117,7 @@ void Foam::pressureInletUniformVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
pressureInletUniformVelocityFvPatchVectorField pressureInletUniformVelocityFvPatchVectorField

View File

@ -166,7 +166,7 @@ void Foam::pressureInletVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
pressureInletVelocityFvPatchVectorField pressureInletVelocityFvPatchVectorField

View File

@ -187,7 +187,7 @@ void Foam::pressureNormalInletOutletVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
pressureNormalInletOutletVelocityFvPatchVectorField pressureNormalInletOutletVelocityFvPatchVectorField

View File

@ -134,7 +134,7 @@ void Foam::rotatingPressureInletOutletVelocityFvPatchVectorField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
rotatingPressureInletOutletVelocityFvPatchVectorField rotatingPressureInletOutletVelocityFvPatchVectorField

View File

@ -124,7 +124,7 @@ void Foam::rotatingTotalPressureFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
rotatingTotalPressureFvPatchScalarField rotatingTotalPressureFvPatchScalarField

View File

@ -140,7 +140,7 @@ void Foam::rotatingWallVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
rotatingWallVelocityFvPatchVectorField rotatingWallVelocityFvPatchVectorField

View File

@ -305,7 +305,7 @@ void Foam::supersonicFreestreamFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
supersonicFreestreamFvPatchVectorField supersonicFreestreamFvPatchVectorField

View File

@ -134,7 +134,7 @@ void Foam::surfaceNormalFixedValueFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
surfaceNormalFixedValueFvPatchVectorField surfaceNormalFixedValueFvPatchVectorField

View File

@ -189,7 +189,7 @@ void Foam::swirlFlowRateInletVelocityFvPatchVectorField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
swirlFlowRateInletVelocityFvPatchVectorField swirlFlowRateInletVelocityFvPatchVectorField

View File

@ -247,7 +247,7 @@ void Foam::syringePressureFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
syringePressureFvPatchScalarField syringePressureFvPatchScalarField

View File

@ -121,7 +121,7 @@ write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
timeVaryingFlowRateInletVelocityFvPatchVectorField timeVaryingFlowRateInletVelocityFvPatchVectorField

View File

@ -232,7 +232,7 @@ write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
timeVaryingUniformTotalPressureFvPatchScalarField timeVaryingUniformTotalPressureFvPatchScalarField

View File

@ -241,7 +241,7 @@ void Foam::totalPressureFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
totalPressureFvPatchScalarField totalPressureFvPatchScalarField

View File

@ -190,7 +190,7 @@ void Foam::totalTemperatureFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
totalTemperatureFvPatchScalarField totalTemperatureFvPatchScalarField

View File

@ -124,7 +124,7 @@ void Foam::translatingWallVelocityFvPatchVectorField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
translatingWallVelocityFvPatchVectorField translatingWallVelocityFvPatchVectorField

View File

@ -147,7 +147,7 @@ void Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentIntensityKineticEnergyInletFvPatchScalarField turbulentIntensityKineticEnergyInletFvPatchScalarField

View File

@ -155,7 +155,7 @@ void Foam::uniformDensityHydrostaticPressureFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
uniformDensityHydrostaticPressureFvPatchScalarField uniformDensityHydrostaticPressureFvPatchScalarField

View File

@ -196,7 +196,7 @@ void angularOscillatingDisplacementPointPatchVectorField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
angularOscillatingDisplacementPointPatchVectorField angularOscillatingDisplacementPointPatchVectorField

View File

@ -201,7 +201,7 @@ void angularOscillatingVelocityPointPatchVectorField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
angularOscillatingVelocityPointPatchVectorField angularOscillatingVelocityPointPatchVectorField

View File

@ -127,7 +127,7 @@ void oscillatingDisplacementPointPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
oscillatingDisplacementPointPatchVectorField oscillatingDisplacementPointPatchVectorField

View File

@ -171,7 +171,7 @@ void oscillatingVelocityPointPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
oscillatingVelocityPointPatchVectorField oscillatingVelocityPointPatchVectorField

View File

@ -499,7 +499,7 @@ void surfaceDisplacementPointPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
fixedValuePointPatchVectorField, fixedValuePointPatchVectorField,
surfaceDisplacementPointPatchVectorField surfaceDisplacementPointPatchVectorField

View File

@ -448,7 +448,7 @@ void surfaceSlipDisplacementPointPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
surfaceSlipDisplacementPointPatchVectorField surfaceSlipDisplacementPointPatchVectorField

View File

@ -268,7 +268,7 @@ void sixDoFRigidBodyDisplacementPointPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
sixDoFRigidBodyDisplacementPointPatchVectorField sixDoFRigidBodyDisplacementPointPatchVectorField

View File

@ -185,7 +185,7 @@ void uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePointPatchTypeField makeNonTemplatedPointPatchTypeField
( (
pointPatchVectorField, pointPatchVectorField,
uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField uncoupledSixDoFRigidBodyDisplacementPointPatchVectorField

View File

@ -156,7 +156,7 @@ void Foam::filmHeightInletVelocityFvPatchVectorField::operator=
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
filmHeightInletVelocityFvPatchVectorField filmHeightInletVelocityFvPatchVectorField

View File

@ -150,7 +150,7 @@ void htcConvFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
htcConvFvPatchScalarField htcConvFvPatchScalarField

View File

@ -232,7 +232,7 @@ void alphatFilmWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
alphatFilmWallFunctionFvPatchScalarField alphatFilmWallFunctionFvPatchScalarField

View File

@ -235,7 +235,11 @@ void mutFilmWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField(fvPatchScalarField, mutFilmWallFunctionFvPatchScalarField); makeNonTemplatedPatchTypeField
(
fvPatchScalarField,
mutFilmWallFunctionFvPatchScalarField
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -120,7 +120,7 @@ void Foam::fixedEnthalpyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
fixedEnthalpyFvPatchScalarField fixedEnthalpyFvPatchScalarField

View File

@ -117,7 +117,7 @@ void Foam::fixedInternalEnergyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
fixedInternalEnergyFvPatchScalarField fixedInternalEnergyFvPatchScalarField

View File

@ -131,7 +131,7 @@ void Foam::gradientEnthalpyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
gradientEnthalpyFvPatchScalarField gradientEnthalpyFvPatchScalarField

View File

@ -124,7 +124,7 @@ void Foam::gradientInternalEnergyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
gradientInternalEnergyFvPatchScalarField gradientInternalEnergyFvPatchScalarField

View File

@ -141,7 +141,7 @@ void Foam::mixedEnthalpyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mixedEnthalpyFvPatchScalarField mixedEnthalpyFvPatchScalarField

View File

@ -134,7 +134,7 @@ void Foam::mixedInternalEnergyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mixedInternalEnergyFvPatchScalarField mixedInternalEnergyFvPatchScalarField

View File

@ -184,7 +184,11 @@ void Foam::wallHeatTransferFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField(fvPatchScalarField, wallHeatTransferFvPatchScalarField); makeNonTemplatedPatchTypeField
(
fvPatchScalarField,
wallHeatTransferFvPatchScalarField
);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -176,7 +176,7 @@ void Foam::MarshakRadiationFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
MarshakRadiationFvPatchScalarField MarshakRadiationFvPatchScalarField

View File

@ -180,7 +180,7 @@ void Foam::MarshakRadiationFixedTMixedFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
MarshakRadiationFixedTMixedFvPatchScalarField MarshakRadiationFixedTMixedFvPatchScalarField

View File

@ -236,7 +236,7 @@ namespace Foam
{ {
namespace radiation namespace radiation
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
greyDiffusiveRadiationMixedFvPatchScalarField greyDiffusiveRadiationMixedFvPatchScalarField

View File

@ -232,7 +232,7 @@ namespace Foam
{ {
namespace radiation namespace radiation
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
wideBandDiffusiveRadiationMixedFvPatchScalarField wideBandDiffusiveRadiationMixedFvPatchScalarField

View File

@ -118,7 +118,7 @@ void Foam::fixedUnburntEnthalpyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
fixedUnburntEnthalpyFvPatchScalarField fixedUnburntEnthalpyFvPatchScalarField

View File

@ -124,7 +124,7 @@ void Foam::gradientUnburntEnthalpyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
gradientUnburntEnthalpyFvPatchScalarField gradientUnburntEnthalpyFvPatchScalarField

View File

@ -132,7 +132,7 @@ void Foam::mixedUnburntEnthalpyFvPatchScalarField::updateCoeffs()
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mixedUnburntEnthalpyFvPatchScalarField mixedUnburntEnthalpyFvPatchScalarField

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd. \\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -122,7 +122,7 @@ void Foam::constantAlphaContactAngleFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
constantAlphaContactAngleFvPatchScalarField constantAlphaContactAngleFvPatchScalarField

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd. \\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License

View File

@ -158,7 +158,7 @@ void Foam::dynamicAlphaContactAngleFvPatchScalarField::write(Ostream& os) const
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
dynamicAlphaContactAngleFvPatchScalarField dynamicAlphaContactAngleFvPatchScalarField

View File

@ -143,7 +143,7 @@ void Foam::timeVaryingAlphaContactAngleFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
timeVaryingAlphaContactAngleFvPatchScalarField timeVaryingAlphaContactAngleFvPatchScalarField

View File

@ -167,7 +167,7 @@ void Foam::alphaFixedPressureFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
alphaFixedPressureFvPatchScalarField alphaFixedPressureFvPatchScalarField

View File

@ -318,7 +318,7 @@ void alphaSgsJayatillekeWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
alphaSgsJayatillekeWallFunctionFvPatchScalarField alphaSgsJayatillekeWallFunctionFvPatchScalarField

View File

@ -147,7 +147,7 @@ void alphaSgsWallFunctionFvPatchScalarField::evaluate
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
alphaSgsWallFunctionFvPatchScalarField alphaSgsWallFunctionFvPatchScalarField

View File

@ -208,7 +208,7 @@ void muSgsUSpaldingWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
muSgsUSpaldingWallFunctionFvPatchScalarField muSgsUSpaldingWallFunctionFvPatchScalarField

View File

@ -137,7 +137,7 @@ void turbulentMixingLengthDissipationRateInletFvPatchScalarField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentMixingLengthDissipationRateInletFvPatchScalarField turbulentMixingLengthDissipationRateInletFvPatchScalarField

View File

@ -142,7 +142,7 @@ void turbulentMixingLengthFrequencyInletFvPatchScalarField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentMixingLengthFrequencyInletFvPatchScalarField turbulentMixingLengthFrequencyInletFvPatchScalarField

View File

@ -300,7 +300,7 @@ void alphatJayatillekeWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
alphatJayatillekeWallFunctionFvPatchScalarField alphatJayatillekeWallFunctionFvPatchScalarField

View File

@ -135,7 +135,11 @@ void alphatWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField(fvPatchScalarField, alphatWallFunctionFvPatchScalarField); makeNonTemplatedPatchTypeField
(
fvPatchScalarField,
alphatWallFunctionFvPatchScalarField
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -253,7 +253,7 @@ void epsilonWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
epsilonWallFunctionFvPatchScalarField epsilonWallFunctionFvPatchScalarField

View File

@ -102,7 +102,7 @@ mutLowReWallFunctionFvPatchScalarField::mutLowReWallFunctionFvPatchScalarField
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mutLowReWallFunctionFvPatchScalarField mutLowReWallFunctionFvPatchScalarField

View File

@ -298,7 +298,7 @@ void mutURoughWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mutURoughWallFunctionFvPatchScalarField mutURoughWallFunctionFvPatchScalarField

View File

@ -205,7 +205,7 @@ void mutUSpaldingWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mutUSpaldingWallFunctionFvPatchScalarField mutUSpaldingWallFunctionFvPatchScalarField

View File

@ -184,7 +184,7 @@ void mutUWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mutUWallFunctionFvPatchScalarField mutUWallFunctionFvPatchScalarField

View File

@ -222,7 +222,7 @@ void mutkRoughWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
mutkRoughWallFunctionFvPatchScalarField mutkRoughWallFunctionFvPatchScalarField

View File

@ -228,7 +228,11 @@ void mutkWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField(fvPatchScalarField, mutkWallFunctionFvPatchScalarField); makeNonTemplatedPatchTypeField
(
fvPatchScalarField,
mutkWallFunctionFvPatchScalarField
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -250,7 +250,7 @@ void omegaWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
omegaWallFunctionFvPatchScalarField omegaWallFunctionFvPatchScalarField

View File

@ -230,7 +230,7 @@ void turbulentHeatFluxTemperatureFvPatchScalarField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentHeatFluxTemperatureFvPatchScalarField turbulentHeatFluxTemperatureFvPatchScalarField

View File

@ -289,7 +289,7 @@ void Foam::turbulentTemperatureCoupledBaffleFvPatchScalarField::write
namespace Foam namespace Foam
{ {
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentTemperatureCoupledBaffleFvPatchScalarField turbulentTemperatureCoupledBaffleFvPatchScalarField

View File

@ -247,7 +247,7 @@ void turbulentTemperatureCoupledBaffleMixedFvPatchScalarField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentTemperatureCoupledBaffleMixedFvPatchScalarField turbulentTemperatureCoupledBaffleMixedFvPatchScalarField

View File

@ -195,7 +195,7 @@ void nuSgsUSpaldingWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
nuSgsUSpaldingWallFunctionFvPatchScalarField nuSgsUSpaldingWallFunctionFvPatchScalarField

View File

@ -154,7 +154,7 @@ void atmBoundaryLayerInletEpsilonFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
atmBoundaryLayerInletEpsilonFvPatchScalarField atmBoundaryLayerInletEpsilonFvPatchScalarField

View File

@ -189,7 +189,7 @@ void atmBoundaryLayerInletVelocityFvPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
atmBoundaryLayerInletVelocityFvPatchVectorField atmBoundaryLayerInletVelocityFvPatchVectorField

View File

@ -146,7 +146,7 @@ void fixedShearStressFvPatchVectorField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchVectorField, fvPatchVectorField,
fixedShearStressFvPatchVectorField fixedShearStressFvPatchVectorField

View File

@ -237,7 +237,7 @@ void turbulentHeatFluxTemperatureFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentHeatFluxTemperatureFvPatchScalarField turbulentHeatFluxTemperatureFvPatchScalarField

View File

@ -137,7 +137,7 @@ void turbulentMixingLengthDissipationRateInletFvPatchScalarField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentMixingLengthDissipationRateInletFvPatchScalarField turbulentMixingLengthDissipationRateInletFvPatchScalarField

View File

@ -143,7 +143,7 @@ void turbulentMixingLengthFrequencyInletFvPatchScalarField::write
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
turbulentMixingLengthFrequencyInletFvPatchScalarField turbulentMixingLengthFrequencyInletFvPatchScalarField

View File

@ -248,7 +248,7 @@ void epsilonWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
epsilonWallFunctionFvPatchScalarField epsilonWallFunctionFvPatchScalarField

View File

@ -261,7 +261,7 @@ void kappatJayatillekeWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
kappatJayatillekeWallFunctionFvPatchScalarField kappatJayatillekeWallFunctionFvPatchScalarField

View File

@ -102,7 +102,11 @@ nutLowReWallFunctionFvPatchScalarField::nutLowReWallFunctionFvPatchScalarField
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField(fvPatchScalarField, nutLowReWallFunctionFvPatchScalarField); makeNonTemplatedPatchTypeField
(
fvPatchScalarField,
nutLowReWallFunctionFvPatchScalarField
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -294,7 +294,7 @@ void nutURoughWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
nutURoughWallFunctionFvPatchScalarField nutURoughWallFunctionFvPatchScalarField

View File

@ -197,7 +197,7 @@ void nutUSpaldingWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
nutUSpaldingWallFunctionFvPatchScalarField nutUSpaldingWallFunctionFvPatchScalarField

View File

@ -200,7 +200,7 @@ void nutUTabulatedWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
nutUTabulatedWallFunctionFvPatchScalarField nutUTabulatedWallFunctionFvPatchScalarField

View File

@ -183,7 +183,7 @@ void nutUWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
nutUWallFunctionFvPatchScalarField nutUWallFunctionFvPatchScalarField

View File

@ -230,7 +230,7 @@ void nutkRoughWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
nutkRoughWallFunctionFvPatchScalarField nutkRoughWallFunctionFvPatchScalarField

View File

@ -236,7 +236,11 @@ void nutkWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField(fvPatchScalarField, nutkWallFunctionFvPatchScalarField); makeNonTemplatedPatchTypeField
(
fvPatchScalarField,
nutkWallFunctionFvPatchScalarField
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -248,7 +248,7 @@ void omegaWallFunctionFvPatchScalarField::write(Ostream& os) const
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeField makeNonTemplatedPatchTypeField
( (
fvPatchScalarField, fvPatchScalarField,
omegaWallFunctionFvPatchScalarField omegaWallFunctionFvPatchScalarField