Skip to content

Commit 81fce82

Browse files
committed
change from code review
1 parent c93a84a commit 81fce82

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

SU2_CFD/include/fluid/CCoolPropConductivity.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class CCoolPropConductivity final : public CConductivityModel {
6060
/*!
6161
* \brief Constructor of the class.
6262
*/
63-
CCoolPropConductivity(const string& fluidname) {
63+
CCoolPropConductivity(const string &fluidname) {
6464
#ifdef USE_COOLPROP
6565
fluid_entity = std::unique_ptr<CoolProp::AbstractState>(CoolProp::AbstractState::factory("HEOS", fluidname));
6666
if (std::find(fluidNameList.begin(), fluidNameList.end(), fluidname) == fluidNameList.end()) {

SU2_CFD/include/fluid/CCoolPropViscosity.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class CCoolPropViscosity final : public CViscosityModel {
115115
/*!
116116
* \brief Constructor of the class.
117117
*/
118-
CCoolPropViscosity(const string& fluidname) {
118+
CCoolPropViscosity(const string &fluidname) {
119119
#ifdef USE_COOLPROP
120120
fluid_entity = std::unique_ptr<CoolProp::AbstractState>(CoolProp::AbstractState::factory("HEOS", fluidname));
121121
if (std::find(fluidNameList.begin(), fluidNameList.end(), fluidname) == fluidNameList.end()) {

SU2_CFD/src/interfaces/cht/CConjugateHeatInterface.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ void CConjugateHeatInterface::GetDonor_Variable(CSolver *donor_solution, CGeomet
111111
thermal_conductivity = thermal_conductivityND*donor_config->GetGas_Constant_Ref()
112112
*donor_config->GetViscosity_Ref();
113113
break;
114-
115114
case CONDUCTIVITYMODEL::POLYNOMIAL:
116115
SU2_MPI::Error("Polynomial Conductivity model not implemented for CHT interface.", CURRENT_FUNCTION);
117116
break;

0 commit comments

Comments
 (0)