@@ -593,12 +593,12 @@ class CConfig {
593593 MUSCL_AdjFlow, /* !< \brief MUSCL scheme for the adj flow equations.*/
594594 MUSCL_AdjTurb, /* !< \brief MUSCL scheme for the adj turbulence equations.*/
595595 MUSCL_Species; /* !< \brief MUSCL scheme for the species equations.*/
596- su2double MUSCL_Kappa, /* !< \brief Blending coefficient for MUSCL scheme. */
597- MUSCL_Kappa_Flow, /* !< \brief Blending coefficient for MUSCL scheme for the flow equations.*/
598- MUSCL_Kappa_Turb, /* !< \brief Blending coefficient for MUSCL scheme for the turbulence equations.*/
599- MUSCL_Kappa_Heat, /* !< \brief Blending coefficient for MUSCL scheme for the (fvm) heat equation.*/
600- MUSCL_Kappa_AdjFlow, /* !< \brief Blending coefficient for MUSCL scheme for the adj flow equations.*/
601- MUSCL_Kappa_Species; /* !< \brief Blending coefficient for MUSCL scheme for the species equations.*/
596+ su2double MUSCL_Kappa, /* !< \brief Blending coefficient for U- MUSCL scheme. */
597+ MUSCL_Kappa_Flow, /* !< \brief Blending coefficient for U- MUSCL scheme for the flow equations.*/
598+ MUSCL_Kappa_Turb, /* !< \brief Blending coefficient for U- MUSCL scheme for the turbulence equations.*/
599+ MUSCL_Kappa_Heat, /* !< \brief Blending coefficient for U- MUSCL scheme for the (fvm) heat equation.*/
600+ MUSCL_Kappa_AdjFlow, /* !< \brief Blending coefficient for U- MUSCL scheme for the adj flow equations.*/
601+ MUSCL_Kappa_Species; /* !< \brief Blending coefficient for U- MUSCL scheme for the species equations.*/
602602 bool Use_Accurate_Jacobians; /* !< \brief Use numerically computed Jacobians for AUSM+up(2) and SLAU(2). */
603603 bool Use_Accurate_Turb_Jacobians; /* !< \brief Use numerically computed Jacobians for standard SA turbulence model. */
604604 bool EulerPersson; /* !< \brief Boolean to determine whether this is an Euler simulation with Persson shock capturing. */
@@ -4624,27 +4624,18 @@ class CConfig {
46244624
46254625 /* !
46264626 * \brief Get if the upwind scheme used MUSCL or not.
4627- * \note This is the information that the code will use, the method will
4628- * change in runtime depending of the specific equation (direct, adjoint,
4629- * linearized) that is being solved.
46304627 * \return MUSCL scheme.
46314628 */
46324629 bool GetMUSCL_Flow (void ) const { return MUSCL_Flow; }
46334630
46344631 /* !
46354632 * \brief Get if the upwind scheme used MUSCL or not.
4636- * \note This is the information that the code will use, the method will
4637- * change in runtime depending of the specific equation (direct, adjoint,
4638- * linearized) that is being solved.
46394633 * \return MUSCL scheme.
46404634 */
46414635 bool GetMUSCL_Heat (void ) const { return MUSCL_Heat; }
46424636
46434637 /* !
46444638 * \brief Get if the upwind scheme used MUSCL or not.
4645- * \note This is the information that the code will use, the method will
4646- * change in runtime depending of the specific equation (direct, adjoint,
4647- * linearized) that is being solved.
46484639 * \return MUSCL scheme.
46494640 */
46504641 bool GetMUSCL_Turb (void ) const { return MUSCL_Turb; }
@@ -4657,21 +4648,24 @@ class CConfig {
46574648
46584649 /* !
46594650 * \brief Get if the upwind scheme used MUSCL or not.
4660- * \note This is the information that the code will use, the method will
4661- * change in runtime depending of the specific equation (direct, adjoint,
4662- * linearized) that is being solved.
46634651 * \return MUSCL scheme.
46644652 */
46654653 bool GetMUSCL_AdjFlow (void ) const { return MUSCL_AdjFlow; }
46664654
46674655 /* !
46684656 * \brief Get if the upwind scheme used MUSCL or not.
4657+ * \return MUSCL scheme.
4658+ */
4659+ bool GetMUSCL_AdjTurb (void ) const { return MUSCL_AdjTurb; }
4660+
4661+ /* !
4662+ * \brief Get the blending coefficient for the U-MUSCL scheme.
46694663 * \note This is the information that the code will use, the method will
46704664 * change in runtime depending of the specific equation (direct, adjoint,
46714665 * linearized) that is being solved.
4672- * \return MUSCL scheme.
4666+ * \return Blending coefficient for the U- MUSCL scheme.
46734667 */
4674- bool GetMUSCL_AdjTurb (void ) const { return MUSCL_AdjTurb ; }
4668+ su2double GetMUSCL_Kappa (void ) const { return MUSCL_Kappa ; }
46754669
46764670 /* !
46774671 * \brief Get the blending coefficient for the MUSCL scheme.
0 commit comments