Skip to content

Commit fbc42f9

Browse files
removed lines added earlier for debugging
1 parent c7ed362 commit fbc42f9

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

SU2_CFD/src/fluid/CDataDrivenFluid.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
#define USE_MLPCPP
3232
#endif
3333

34-
#include "../../../Common/include/tracy_structure.hpp"
35-
3634
CDataDrivenFluid::CDataDrivenFluid(const CConfig* config, bool display) : CFluidModel() {
3735
rank = SU2_MPI::GetRank();
3836
DataDrivenFluid_ParsedOptions datadriven_fluid_options = config->GetDataDrivenParsedOptions();
@@ -307,8 +305,7 @@ void CDataDrivenFluid::ComputeDerivativeNRBC_Prho(su2double P, su2double rho) {
307305

308306

309307
unsigned long CDataDrivenFluid::Predict_MLP(su2double rho, su2double e) {
310-
SU2_ZONE_SCOPED_N("Predict_MLP");
311-
unsigned long exit_code = 0;
308+
unsigned long exit_code = 0;
312309
/*--- Evaluate MLP collection for the given values for density and energy. ---*/
313310
#ifdef USE_MLPCPP
314311
MLP_inputs[idx_rho] = rho;
@@ -472,4 +469,4 @@ void CDataDrivenFluid::ComputeIdealGasQuantities() {
472469
Cp_idealgas = Cp;
473470

474471
gamma_idealgas = (R_idealgas / Cv_idealgas) + 1;
475-
}
472+
}

0 commit comments

Comments
 (0)