Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Initialize QN coupling to size of interface variables.
  • Loading branch information
oleburghardt committed Apr 26, 2026
commit 60c917898627e9c66ecdac311a22a325603f9e71
4 changes: 2 additions & 2 deletions SU2_CFD/src/interfaces/CInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ void CInterface::InitializeQuasiNewtonCorrection(CGeometry *donor_geometry, cons

/*--- Initialize the Quasi-Newton correction object for this interface. ---*/
if(donor_config->GetnQuasiNewtonSamples()) {
std::cout << "Applying a Quasi-Newton correction for zone " << donor_config->GetiZone() << " and interface " << iMarkerInt << " with " << nGlobalVertexDonor << " donor vertices and " << nVar << " variables." << std::endl;
QuasiNewtonCorrection[iMarkerInt].resize(donor_config->GetnQuasiNewtonSamples(), nGlobalVertexDonor, 4);
std::cout << "\n - Applying a Quasi-Newton correction for zone " << donor_config->GetiZone() << " and interface " << iMarkerInt << " with " << nGlobalVertexDonor << " donor vertices and " << nVar << " variables." << std::endl;
QuasiNewtonCorrection[iMarkerInt].resize(donor_config->GetnQuasiNewtonSamples(), nGlobalVertexDonor, nVar);
}
}
}
Expand Down