@@ -154,6 +154,7 @@ class CFVMFlowSolverBase : public CSolver {
154154 su2double Total_Custom_ObjFunc = 0.0 ; /* !< \brief Total custom objective function for all the boundaries. */
155155 su2double Total_CpDiff = 0.0 ; /* !< \brief Total Equivalent Area coefficient for all the boundaries. */
156156 su2double Total_HeatFluxDiff = 0.0 ; /* !< \brief Total Equivalent Area coefficient for all the boundaries. */
157+ su2double Total_CEquivArea = 0.0 ; /* !< \brief Total Equivalent Area coefficient for all the boundaries. */
157158 su2double Total_MassFlowRate = 0.0 ; /* !< \brief Total Mass Flow Rate on monitored boundaries. */
158159 su2double Total_CNearFieldOF = 0.0 ; /* !< \brief Total Near-Field Pressure coefficient for all the boundaries. */
159160 su2double Total_Heat = 0.0 ; /* !< \brief Total heat load for all the boundaries. */
@@ -2091,6 +2092,12 @@ class CFVMFlowSolverBase : public CSolver {
20912092 */
20922093 inline void SetTotal_HeatFluxDiff (su2double val_heat) final { Total_HeatFluxDiff = val_heat; }
20932094
2095+ /* !
2096+ * \brief Set the value of the Equivalent Area coefficient.
2097+ * \param[in] val_equiv - Value of the Equivalent Area coefficient.
2098+ */
2099+ inline void SetTotal_CEquivArea (su2double val_equiv) final { Total_CEquivArea = val_equiv; }
2100+
20942101 /* !
20952102 * \brief Set the value of the Near-Field pressure oefficient.
20962103 * \param[in] val_cnearfieldpress - Value of the Near-Field pressure coefficient.
@@ -2122,6 +2129,12 @@ class CFVMFlowSolverBase : public CSolver {
21222129 * \return Value of the Equivalent Area coefficient (inviscid + viscous contribution).
21232130 */
21242131 inline su2double GetTotal_HeatFluxDiff () const final { return Total_HeatFluxDiff; }
2132+
2133+ /* !
2134+ * \brief Provide the total (inviscid + viscous) non dimensional Equivalent Area coefficient.
2135+ * \return Value of the Equivalent Area coefficient (inviscid + viscous contribution).
2136+ */
2137+ inline su2double GetTotal_CEquivArea () const final { return Total_CEquivArea; }
21252138
21262139 /* !
21272140 * \brief Set the value of the custom objective function.
0 commit comments