@@ -495,30 +495,6 @@ void CConfig::addInletSpeciesOption(const string& name, unsigned short & nMarker
495495 option_map.insert (pair<string, COptionBase *>(name, val));
496496}
497497
498- void CConfig::addWallSpeciesOption (const string& name, unsigned short & nMarker_Wall_Species,
499- string * & Marker_Wall_Species, su2double** & wall_species_val,
500- unsigned short & nSpecies_per_Wall) {
501- assert (option_map.find (name) == option_map.end ());
502- all_options.insert (pair<string, bool >(name, true ));
503-
504- COptionBase* val = new COptionStringValuesList<su2double*>(name, nMarker_Wall_Species, Marker_Wall_Species,
505- wall_species_val, nSpecies_per_Wall);
506- option_map.insert (pair<string, COptionBase *>(name, val));
507- }
508-
509- void CConfig::addWallSpeciesType (const string& name, unsigned short & nMarker_Wall_Species,
510- // string * & Marker_Wall_Species, WALL_SPECIES_TYPE** & wall_species_type,
511- string * & Marker_Wall_Species, unsigned short ** & wall_species_type,
512- unsigned short & nSpecies_per_Wall) {
513- assert (option_map.find (name) == option_map.end ());
514- all_options.insert (pair<string, bool >(name, true ));
515-
516- // COptionBase* val = new COptionStringValuesList<<static_cast>(unsigned short)WALL_SPECIES_TYPE*>(name, nMarker_Wall_Species, Marker_Wall_Species,
517- COptionBase* val = new COptionStringValuesList<unsigned short *>(name, nMarker_Wall_Species, Marker_Wall_Species,
518- wall_species_type, nSpecies_per_Wall);
519- option_map.insert (pair<string, COptionBase *>(name, val));
520- }
521-
522498void CConfig::addInletTurbOption (const string& name, unsigned short & nMarker_Inlet_Turb, string*& Marker_Inlet_Turb,
523499 su2double**& Turb_Properties_val, unsigned short & nTurb_Properties) {
524500 assert (option_map.find (name) == option_map.end ());
@@ -1598,7 +1574,7 @@ void CConfig::SetConfig_Options() {
15981574 addEnumOption (" INLET_TYPE" , Kind_Inlet, Inlet_Map, INLET_TYPE::TOTAL_CONDITIONS);
15991575 /* !\brief INC_INLET_TYPE \n DESCRIPTION: List of inlet types for incompressible flows. List length must match number of inlet markers. Options: VELOCITY_INLET, PRESSURE_INLET, INPUT_FILE. \ingroup Config*/
16001576 addEnumListOption (" INC_INLET_TYPE" , nInc_Inlet, Kind_Inc_Inlet, Inlet_Map);
1601-
1577+
16021578
16031579 addBoolOption (" SPECIFIED_INLET_PROFILE" , Inlet_From_File, false );
16041580 /* !\brief INLET_FILENAME \n DESCRIPTION: Input file for a specified inlet profile (w/ extension) \n DEFAULT: inlet.dat \ingroup Config*/
@@ -1619,10 +1595,6 @@ void CConfig::SetConfig_Options() {
16191595 /* !\brief MARKER_INLET_SPECIES \n DESCRIPTION: Inlet Species boundary marker(s) with the following format
16201596 Inlet Species: (inlet_marker, Species1, Species2, ..., SpeciesN-1, inlet_marker2, Species1, Species2, ...) */
16211597 addInletSpeciesOption (" MARKER_INLET_SPECIES" ,nMarker_Inlet_Species, Marker_Inlet_Species, Inlet_SpeciesVal, nSpecies_per_Inlet);
1622- addWallSpeciesOption (" MARKER_WALL_SPECIES" ,nMarker_Wall_Species , Marker_Wall_Species , Wall_SpeciesVal , nSpecies_per_Wall);
1623- addWallSpeciesType (" WALL_SPECIES_TYPE" ,nMarker_Wall_Species , Marker_Wall_Species , Wall_SpeciesType , nSpecies_per_Wall);
1624-
1625-
16261598 /* !\brief MARKER_INLET_TURBULENT \n DESCRIPTION: Inlet Turbulence boundary marker(s) with the following format
16271599 Inlet Turbulent: (inlet_marker, TurbulentIntensity1, ViscosityRatio1, inlet_marker2, TurbulentIntensity2,
16281600 ViscosityRatio2, ...) */
@@ -9079,15 +9051,6 @@ INLET_TYPE CConfig::GetKind_Inc_Inlet(const string& val_marker) const {
90799051 return Kind_Inc_Inlet[iMarker_Inlet];
90809052}
90819053
9082-
9083- // WALL_SPECIES_TYPE* CConfig::GetKind_Wall_Species(const string& val_marker) const {
9084- // unsigned short * CConfig::GetKind_Wall_Species(const string& val_marker) const {
9085- // unsigned short iMarker_Wall_Species;
9086- // for (iMarker_Wall_Species = 0; iMarker_Wall_Species < nMarker_Wall_Species; iMarker_Wall_Species++)
9087- // if (Marker_Wall_Species[iMarker_Wall_Species] == val_marker) break;
9088- // return Wall_SpeciesType[iMarker_Wall_Species];
9089- // }
9090-
90919054INC_OUTLET_TYPE CConfig::GetKind_Inc_Outlet (const string& val_marker) const {
90929055 unsigned short iMarker_Outlet;
90939056 for (iMarker_Outlet = 0 ; iMarker_Outlet < nMarker_Outlet; iMarker_Outlet++)
@@ -9151,20 +9114,6 @@ const su2double* CConfig::GetInlet_SpeciesVal(const string& val_marker) const {
91519114 return Inlet_SpeciesVal[iMarker_Inlet_Species];
91529115}
91539116
9154- const su2double* CConfig::GetWall_SpeciesVal (const string& val_marker) const {
9155- unsigned short iMarker_Wall_Species;
9156- for (iMarker_Wall_Species = 0 ; iMarker_Wall_Species < nMarker_Wall_Species; iMarker_Wall_Species++)
9157- if (Marker_Wall_Species[iMarker_Wall_Species] == val_marker) break ;
9158- return Wall_SpeciesVal[iMarker_Wall_Species];
9159- }
9160- // const WALL_SPECIES_TYPE* CConfig::GetWall_SpeciesType(const string& val_marker) const {
9161- const unsigned short * CConfig::GetWall_SpeciesType (const string& val_marker) const {
9162- unsigned short iMarker_Wall_Species;
9163- for (iMarker_Wall_Species = 0 ; iMarker_Wall_Species < nMarker_Wall_Species; iMarker_Wall_Species++)
9164- if (Marker_Wall_Species[iMarker_Wall_Species] == val_marker) break ;
9165- return Wall_SpeciesType[iMarker_Wall_Species];
9166- }
9167-
91689117const su2double* CConfig::GetInlet_TurbVal (const string& val_marker) const {
91699118 /* --- If Turbulent Inlet is not provided for the marker, return free stream values. ---*/
91709119 for (auto iMarker = 0u ; iMarker < nMarker_Inlet_Turb; iMarker++) {
0 commit comments