@@ -3660,6 +3660,9 @@ void CPhysicalGeometry::SetBoundaries(CConfig *config) {
36603660 if (config->GetSolid_Wall (iMarker))
36613661 nodes->SetSolidBoundary (Point_Surface, true );
36623662
3663+ if (config->GetViscous_Wall (iMarker))
3664+ nodes->SetViscousBoundary (Point_Surface, true );
3665+
36633666 if (config->GetMarker_All_KindBC (iMarker) == PERIODIC_BOUNDARY)
36643667 nodes->SetPeriodicBoundary (Point_Surface, true );
36653668 }
@@ -4853,6 +4856,7 @@ void CPhysicalGeometry::SetRCM_Ordering(CConfig *config) {
48534856 nodes->ResetBoundary (iPoint);
48544857 nodes->SetPhysicalBoundary (iPoint, false );
48554858 nodes->SetSolidBoundary (iPoint, false );
4859+ nodes->SetViscousBoundary (iPoint, false );
48564860 nodes->SetPeriodicBoundary (iPoint, false );
48574861 nodes->SetDomain (iPoint, true );
48584862 }
@@ -4909,6 +4913,9 @@ void CPhysicalGeometry::SetRCM_Ordering(CConfig *config) {
49094913 if (config->GetSolid_Wall (iMarker))
49104914 nodes->SetSolidBoundary (InvResult[iPoint], true );
49114915
4916+ if (config->GetViscous_Wall (iMarker) )
4917+ nodes->SetViscousBoundary (InvResult[iPoint], true );
4918+
49124919 if (config->GetMarker_All_KindBC (iMarker) == PERIODIC_BOUNDARY)
49134920 nodes->SetPeriodicBoundary (InvResult[iPoint], true );
49144921 }
0 commit comments