11/* !
22 * \file CSpeciesFlameletSolver.hpp
33 * \brief Headers of the CSpeciesFlameletSolver class
4- * \author D. Mayer, N. Beishuizen, T. Economon
4+ * \author D. Mayer, N. Beishuizen, T. Economon, E. Bunschoten
55 * \version 7.5.1 "Blackbird"
66 *
77 * SU2 Project Website: https://su2code.github.io
@@ -47,15 +47,6 @@ class CSpeciesFlameletSolver final : public CSpeciesSolver {
4747 */
4848 void SetPreconditioner (CGeometry* geometry, CSolver** solver_container, CConfig* config);
4949
50- /* !
51- * \brief Compute the primitive variables (diffusivities).
52- * \param[in] solver_container - Container vector with all the solutions.
53- * \param[in] config - Definition of the particular problem.
54- * \param[in] Output - Boolean to determine whether to print output.
55- * \return - The number of non-physical points.
56- */
57- unsigned long SetPrimitive_Variables (CSolver** solver_container, CConfig* config, bool Output);
58-
5950 /* !
6051 * \brief Generic implementation of the isothermal wall also covering CHT cases,
6152 * for which the wall temperature is given by GetConjugateHeatVariable.
@@ -93,7 +84,7 @@ class CSpeciesFlameletSolver final : public CSpeciesSolver {
9384 * \return - within manifold bounds (0) or outside manifold bounds (1).
9485 */
9586 unsigned long SetScalarSources (const CConfig* config, CFluidModel* fluid_model_local, unsigned long iPoint,
96- vector<su2double>& scalars);
87+ const vector<su2double>& scalars);
9788
9889 /* !
9990 * \brief Retrieve passive look-up data from manifold.
@@ -104,7 +95,7 @@ class CSpeciesFlameletSolver final : public CSpeciesSolver {
10495 * \return - within manifold bounds (0) or outside manifold bounds (1).
10596 */
10697 unsigned long SetScalarLookUps (const CConfig* config, CFluidModel* fluid_model_local, unsigned long iPoint,
107- vector<su2double>& scalars);
98+ const vector<su2double>& scalars);
10899
109100 public:
110101 /* !
@@ -184,29 +175,4 @@ class CSpeciesFlameletSolver final : public CSpeciesSolver {
184175 */
185176 void BC_ConjugateHeat_Interface (CGeometry* geometry, CSolver** solver_container, CNumerics* numerics, CConfig* config,
186177 unsigned short val_marker) override ;
187-
188- /* !
189- * \brief Get the conjugate heat variables.
190- * \param[in] val_marker - The marker index.
191- * \param[in] val_vertex - The vertex index.
192- * \param[in] pos_var - The variable position (in vector of all conjugate heat variables).
193- */
194- inline su2double GetConjugateHeatVariable (unsigned short val_marker, unsigned long val_vertex,
195- unsigned short pos_var) const override {
196- return conjugate_var[val_marker][val_vertex][pos_var];
197- }
198-
199- /* !
200- * \brief Set the conjugate heat variables.
201- * \param[in] val_marker - The marker index.
202- * \param[in] val_vertex - The vertex index.
203- * \param[in] pos_var - The variable position (in vector of all conjugate heat variables).
204- * \param[in] relaxation_factor - The relaxation factor for the change of the variables.
205- * \param[in] val_var - The value of the variable.
206- */
207- inline void SetConjugateHeatVariable (unsigned short val_marker, unsigned long val_vertex, unsigned short pos_var,
208- su2double relaxation_factor, su2double val_var) override {
209- conjugate_var[val_marker][val_vertex][pos_var] =
210- relaxation_factor * val_var + (1.0 - relaxation_factor) * conjugate_var[val_marker][val_vertex][pos_var];
211- }
212178};
0 commit comments