Skip to content

Commit 82658f7

Browse files
committed
remove unused functions
1 parent 444008a commit 82658f7

3 files changed

Lines changed: 0 additions & 21 deletions

File tree

SU2_CFD/include/solvers/CFVMFlowSolverBase.hpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2419,14 +2419,6 @@ class CFVMFlowSolverBase : public CSolver {
24192419
return YPlus[val_marker][val_vertex];
24202420
}
24212421

2422-
/*!
2423-
* \brief Set the y plus.
2424-
* \param[in] val_yplus - new value of yplus
2425-
*/
2426-
inline void SetYPlus(su2double val_yplus, unsigned short val_marker, unsigned long val_vertex) final {
2427-
YPlus[val_marker][val_vertex] = val_yplus;
2428-
}
2429-
24302422
/*!
24312423
* \brief Get the u_tau .
24322424
* \param[in] val_marker - Surface marker where the coefficient is computed.

SU2_CFD/include/solvers/CFVMFlowSolverBase.inl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2502,11 +2502,6 @@ void CFVMFlowSolverBase<V, FlowRegime>::Friction_Forces(const CGeometry* geometr
25022502
iPointNormal = geometry->vertex[iMarker][iVertex]->GetNormal_Neighbor();
25032503
Coord_Normal = geometry->nodes->GetCoord(iPointNormal);
25042504
WallDistMod = GeometryToolbox::Distance(nDim, Coord, Coord_Normal);
2505-
//nijso: we can modifiy y+ as well now?
2506-
2507-
2508-
2509-
25102505
YPlus[iMarker][iVertex] = WallDistMod * FrictionVel / (Viscosity / Density);
25112506
}
25122507

SU2_CFD/include/solvers/CSolver.hpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2989,14 +2989,6 @@ class CSolver {
29892989
*/
29902990
inline virtual su2double GetYPlus(unsigned short val_marker, unsigned long val_vertex) const { return 0; }
29912991

2992-
/*!
2993-
* \brief A virtual member.
2994-
* \param[in] val_marker - Surface marker where the coefficient is computed.
2995-
* \param[in] val_vertex - Vertex of the marker <i>val_marker</i> where the coefficient is evaluated.
2996-
* \return Value of the y plus.
2997-
*/
2998-
inline virtual void SetYPlus(su2double val_yplus, unsigned short val_marker, unsigned long val_vertex) {};
2999-
30002992
/*!
30012993
* \brief A virtual member.
30022994
* \param[in] val_marker - Surface marker where the coefficient is computed.

0 commit comments

Comments
 (0)