@@ -97,11 +97,8 @@ class CNEMOEulerSolver : public CFVMFlowSolverBase<CNEMOEulerVariable, COMPRESSI
9797 * \param[in] iMesh - Index of the mesh in multigrid computations.
9898 * \param[in] Iteration - Value of the current iteration.
9999 */
100- void SetTime_Step (CGeometry *geometry,
101- CSolver **solver_container,
102- CConfig *config,
103- unsigned short iMesh,
104- unsigned long Iteration) final ;
100+ void SetTime_Step (CGeometry *geometry, CSolver **solver_container,
101+ CConfig *config, unsigned short iMesh, unsigned long Iteration) final ;
105102
106103 /* !
107104 * \brief Set the initial condition for the Euler Equations.
@@ -141,11 +138,8 @@ class CNEMOEulerSolver : public CFVMFlowSolverBase<CNEMOEulerVariable, COMPRESSI
141138 * \param[in] config - Definition of the particular problem.
142139 * \param[in] iMesh - Index of the mesh in multigrid computations.
143140 */
144- void Upwind_Residual (CGeometry *geometry,
145- CSolver **solver_container,
146- CNumerics **numerics_container,
147- CConfig *config,
148- unsigned short iMesh) final ;
141+ void Upwind_Residual (CGeometry *geometry, CSolver **solver_container, CNumerics **numerics_container,
142+ CConfig *config, unsigned short iMesh) final ;
149143
150144 /* !
151145 * \brief Recompute the extrapolated quantities, after MUSCL reconstruction,
@@ -168,11 +162,8 @@ class CNEMOEulerSolver : public CFVMFlowSolverBase<CNEMOEulerVariable, COMPRESSI
168162 * \param[in] config - Definition of the particular problem.
169163 * \param[in] iMesh - Index of the mesh in multigrid computations.
170164 */
171- void Source_Residual (CGeometry *geometry,
172- CSolver **solver_container,
173- CNumerics **numerics_container,
174- CConfig *config,
175- unsigned short iMesh) final ;
165+ void Source_Residual (CGeometry *geometry, CSolver **solver_container, CNumerics **numerics_container,
166+ CConfig *config, unsigned short iMesh) final ;
176167
177168 /* !
178169 * \brief Preprocessing actions common to the Euler and NS solvers.
@@ -214,6 +205,17 @@ class CNEMOEulerSolver : public CFVMFlowSolverBase<CNEMOEulerVariable, COMPRESSI
214205 */
215206 void SetNondimensionalization (CConfig *config, unsigned short iMesh) final ;
216207
208+ /* !
209+ * \brief Set all the conserved variables from the primitive vector..
210+ */
211+ void RecomputeConservativeVector (su2double *U, const su2double *V);
212+
213+ /* !
214+ * \brief Check for unphysical points.
215+ * \return Boolean value of physical point
216+ */
217+ bool CheckNonPhys (const su2double *V);
218+
217219 /* !
218220 * \brief Compute the pressure at the infinity.
219221 * \return Value of the pressure at the infinity.
0 commit comments