mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Register dynLagrangian with (optional) alternative name
- reflects commit 583d518ad5
This commit is contained in:
@ -60,10 +60,11 @@ dynLagrangian::dynLagrangian
|
|||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi,
|
const surfaceScalarField& phi,
|
||||||
transportModel& transport,
|
transportModel& transport,
|
||||||
const word& turbulenceModelName
|
const word& turbulenceModelName,
|
||||||
|
const word& modelName
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
LESModel(typeName, U, phi, transport, turbulenceModelName),
|
LESModel(modelName, U, phi, transport, turbulenceModelName),
|
||||||
GenEddyVisc(U, phi, transport),
|
GenEddyVisc(U, phi, transport),
|
||||||
|
|
||||||
flm_
|
flm_
|
||||||
|
|||||||
@ -132,7 +132,8 @@ public:
|
|||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi,
|
const surfaceScalarField& phi,
|
||||||
transportModel& transport,
|
transportModel& transport,
|
||||||
const word& turbulenceModelName = turbulenceModel::typeName
|
const word& turbulenceModelName = turbulenceModel::typeName,
|
||||||
|
const word& modelName = typeName
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user