refactor(poly/coeff): renamed coefficients to be more descriptive

This commit is contained in:
2025-03-05 12:54:47 -05:00
parent 11d41786e0
commit cd6da7065b
2 changed files with 8 additions and 22 deletions

View File

@@ -12,7 +12,7 @@ namespace polycoeff
* @param x Input vector.
* @return double The computed xi coefficient.
*/
double xi_coeff_func(const mfem::Vector &x);
double nonlinearSourceCoeff(const mfem::Vector &x);
/**
* @brief Computes the vector xi coefficient function.
@@ -20,16 +20,7 @@ namespace polycoeff
* @param x Input vector.
* @param v Output vector to store the computed xi coefficient.
*/
void vec_xi_coeff_func(const mfem::Vector &x, mfem::Vector &v);
/**
* @brief Computes the initial guess for theta.
*
* @param x Input vector.
* @param root Root value used in the computation.
* @return double The initial guess for theta.
*/
double theta_initial_guess(const mfem::Vector &x, double root);
void diffusionCoeff(const mfem::Vector &x, mfem::Vector &v);
} // namespace polyCoeff
#endif // POLYCOEFF_H