Skip to content

Commit 2f8e7e3

Browse files
authored
Fix doxygen
1 parent 66f6de7 commit 2f8e7e3

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

SU2_CFD/include/variables/CNEMONSVariable.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class CNEMONSVariable final : public CNEMOEulerVariable {
9999
*/
100100
inline su2double* GetDiffusionCoeff(unsigned long iPoint) override { return DiffusionCoeff[iPoint]; }
101101

102-
/*!
102+
/*!
103103
* \brief Get the species enthalpy.
104104
* \return Value of the species enthalpy.
105105
*/

SU2_CFD/include/variables/CVariable.hpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -938,10 +938,8 @@ class CVariable {
938938
inline virtual su2double GetMassFraction(unsigned long iPoint, unsigned long val_Species) const { return 0.0; }
939939

940940
/*!
941-
* \brief A virtual member.
942-
* \param[in] iPoint - Point index.
943-
* \param[in] val_Species - Index of species s.
944-
* \return Value of enthalpy of species s.
941+
* \brief Get the species enthalpy.
942+
* \return Value of the species enthalpy.
945943
*/
946944
inline virtual su2double* GetEnthalpys(unsigned long iPoint) { return nullptr; }
947945

SU2_CFD/src/variables/CNEMONSVariable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ bool CNEMONSVariable::SetPrimVar(unsigned long iPoint, CFluidModel *FluidModel)
113113

114114
LaminarViscosity(iPoint) = fluidmodel->GetViscosity();
115115

116-
const auto& thermalconductivities = fluidmodel->GetThermalConductivities();
116+
const auto& thermalconductivities = fluidmodel->GetThermalConductivities();
117117
ThermalCond(iPoint) = thermalconductivities[0];
118118
ThermalCond_ve(iPoint) = thermalconductivities[1];
119119

0 commit comments

Comments
 (0)