mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
replacing isType with isA to enable directMappedWall to work
This commit is contained in:
@ -53,9 +53,8 @@ forAll(Tpatches, patchI)
|
||||
{
|
||||
if
|
||||
(
|
||||
(typeid(Tpatches[patchI]) == typeid(fixedValueFvPatchScalarField))
|
||||
&&
|
||||
(mesh.boundaryMesh()[patchI].name() == "floor")
|
||||
isA<fixedValueFvPatchScalarField>(Tpatches[patchI])
|
||||
&& mesh.boundaryMesh()[patchI].name() == "floor"
|
||||
)
|
||||
{
|
||||
fixedValueFvPatchScalarField& Tpatch =
|
||||
|
||||
Reference in New Issue
Block a user