Skip to content

Commit

Permalink
fixed trailing white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
EvertBunschoten committed Feb 14, 2025
1 parent 8419fa5 commit 5325a32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Common/include/CConfig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ class CConfig {
su2double DataDriven_Relaxation_Factor; /*!< \brief Relaxation factor for Newton solvers in data-driven fluid models. */
su2double DataDriven_rho_init{-1.0}, /*!< \brief Optional initial density value for Newton solver in data-driven fluid model.*/
DataDriven_e_init{-1.0}; /*!< \brief Optional initial static energy value for Newton solver in data-driven fluid model.*/

bool UsePINN = false; /*!< \brief Use physics-informed method for data-driven fluid modeling. */

STRUCT_TIME_INT Kind_TimeIntScheme_FEA; /*!< \brief Time integration for the FEA equations. */
Expand Down Expand Up @@ -4008,9 +4008,9 @@ class CConfig {
* \return Initial static value.
*/
su2double GetInitialEnergy_DataDriven(void) const { return DataDriven_e_init; }

bool Use_PINN(void) const { return UsePINN; }

/*!
* \brief Returns the name of the fluid we are using in CoolProp.
*/
Expand Down Expand Up @@ -7106,7 +7106,7 @@ class CConfig {
* \param[in] val_marker - Index corresponding to the Riemann BC.
*/
void SetRiemann_Var1(su2double newVar1, const string& val_marker);

/*!
* \brief Get the relax factor for the average component for the Giles BC.
* \param[in] val_marker - Index corresponding to the Giles BC.
Expand Down
2 changes: 1 addition & 1 deletion Common/src/CConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ void CConfig::SetConfig_Options() {
addDoubleOption("DATADRIVEN_INITIAL_ENERGY", DataDriven_e_init, -1.0);
/*!\biref USE_PINN \n DESCRIPTION: Use physics-informed approach for the entropy-based fluid model. \n \ingroup Config*/
addBoolOption("USE_PINN",UsePINN, false);

/*!\brief CONFINEMENT_PARAM \n DESCRIPTION: Input Confinement Parameter for Vorticity Confinement*/
addDoubleOption("CONFINEMENT_PARAM", Confinement_Param, 0.0);

Expand Down

0 comments on commit 5325a32

Please sign in to comment.