Skip to content

Commit

Permalink
remove unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfooted committed Jan 20, 2025
1 parent 444008a commit 82658f7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 21 deletions.
8 changes: 0 additions & 8 deletions SU2_CFD/include/solvers/CFVMFlowSolverBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2419,14 +2419,6 @@ class CFVMFlowSolverBase : public CSolver {
return YPlus[val_marker][val_vertex];
}

/*!
* \brief Set the y plus.
* \param[in] val_yplus - new value of yplus
*/
inline void SetYPlus(su2double val_yplus, unsigned short val_marker, unsigned long val_vertex) final {
YPlus[val_marker][val_vertex] = val_yplus;
}

/*!
* \brief Get the u_tau .
* \param[in] val_marker - Surface marker where the coefficient is computed.
Expand Down
5 changes: 0 additions & 5 deletions SU2_CFD/include/solvers/CFVMFlowSolverBase.inl
Original file line number Diff line number Diff line change
Expand Up @@ -2502,11 +2502,6 @@ void CFVMFlowSolverBase<V, FlowRegime>::Friction_Forces(const CGeometry* geometr
iPointNormal = geometry->vertex[iMarker][iVertex]->GetNormal_Neighbor();
Coord_Normal = geometry->nodes->GetCoord(iPointNormal);
WallDistMod = GeometryToolbox::Distance(nDim, Coord, Coord_Normal);
//nijso: we can modifiy y+ as well now?




YPlus[iMarker][iVertex] = WallDistMod * FrictionVel / (Viscosity / Density);
}

Expand Down
8 changes: 0 additions & 8 deletions SU2_CFD/include/solvers/CSolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2989,14 +2989,6 @@ class CSolver {
*/
inline virtual su2double GetYPlus(unsigned short val_marker, unsigned long val_vertex) const { return 0; }

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

/*!
* \brief A virtual member.
* \param[in] val_marker - Surface marker where the coefficient is computed.
Expand Down

0 comments on commit 82658f7

Please sign in to comment.