File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Common/src/interface_interpolation
SU2_CFD/src/interfaces/cfd Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ void CMixingPlane::SetTransferCoeff(const CConfig* const* config) {
5858 int markDonor = -1 , markTarget = -1 ;
5959 unsigned short donorFlag = 0 , targetFlag = 0 ;
6060
61- markDonor = donor_config->FindMixingPlaneInterfaceMarker (iMarkerInt, donor_config->GetnMarker_All ());
61+ markDonor = donor_config->FindMixingPlaneInterfaceMarker (donor_config->GetnMarker_All ());
6262 donorFlag = (markDonor != -1 ) ? donor_config->GetMarker_All_MixingPlaneInterface (markDonor) : -1 ;
6363
6464#ifdef HAVE_MPI
@@ -86,7 +86,7 @@ void CMixingPlane::SetTransferCoeff(const CConfig* const* config) {
8686 delete [] buffDonorFlag;
8787#endif
8888
89- markTarget = target_config->FindMixingPlaneInterfaceMarker (iMarkerInt, target_config->GetnMarker_All ());
89+ markTarget = target_config->FindMixingPlaneInterfaceMarker (target_config->GetnMarker_All ());
9090 targetFlag = (markTarget != -1 ) ? target_config->GetMarker_All_MixingPlaneInterface (markTarget) : -1 ;
9191
9292 if (markTarget == -1 || markDonor == -1 ) continue ;
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ void CMixingPlaneInterface::BroadcastData_MixingPlane(const CInterpolator& inter
6767 for (auto iMarkerInt = 0u ; iMarkerInt < donor_config->GetMarker_n_ZoneInterface ()/2 ; iMarkerInt++) {
6868
6969 /* --- Find the markers containing the interface ---*/
70- short markDonor = donor_config->FindMixingPlaneInterfaceMarker (iMarkerInt, donor_geometry->GetnMarker ());
71- short markTarget= target_config->FindMixingPlaneInterfaceMarker (iMarkerInt, target_geometry->GetnMarker ());
70+ short markDonor = donor_config->FindMixingPlaneInterfaceMarker (donor_geometry->GetnMarker ());
71+ short markTarget= target_config->FindMixingPlaneInterfaceMarker (target_geometry->GetnMarker ());
7272
7373 /* --- Check if this interface connects the two zones, if not continue. ---*/
7474 if (!CInterpolator::CheckInterfaceBoundary (markDonor, markTarget)) continue ;
You can’t perform that action at this time.
0 commit comments