Skip to content

Commit 51a1a86

Browse files
committed
Remove SetAverageValues
1 parent 96e830f commit 51a1a86

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

SU2_CFD/include/interfaces/CInterface.hpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -185,15 +185,6 @@ class CInterface {
185185
*/
186186
inline virtual void SetSpanWiseLevels(const CConfig *donor_config, const CConfig *target_config) { }
187187

188-
/*!
189-
* \brief A virtual member.
190-
* \param[in] target_solution - Solution from the target mesh.
191-
* \param[in] target_solution - Solution from the target mesh.
192-
* \param[in] donor_zone - Index of the donorZone.
193-
*/
194-
inline virtual void SetAverageValues(CSolver *donor_solution, CSolver *target_solution,
195-
unsigned short donorZone) { }
196-
197188
/*!
198189
* \brief Interpolate data and broadcast it into all processors, for nonmatching meshes.
199190
* \param[in] interpolator - Object defining the interpolation.

SU2_CFD/include/interfaces/cfd/CMixingPlaneInterface.hpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,4 @@ class CMixingPlaneInterface : public CInterface {
104104
Target_Variable[iVar] = (1 - donorCoeff)*bcastVariable[iSpan * nMixingVars + iVar] + donorCoeff * bcastVariable[(iSpan + 1) * nMixingVars + iVar];
105105
}
106106
}
107-
108-
/*!
109-
* \brief Store all the turboperformance in the solver in ZONE_0.
110-
* \param[in] donor_solution - Solution from the donor mesh.
111-
* \param[in] target_solution - Solution from the target mesh.
112-
* \param[in] donorZone - counter of the donor solution
113-
*/
114-
void SetAverageValues(CSolver *donor_solution, CSolver *target_solution, unsigned short donorZone) override;
115-
116-
117-
118107
};

0 commit comments

Comments
 (0)