@@ -3689,20 +3689,17 @@ void CSolver::LoadInletProfile(CGeometry **geometry,
36893689 case TURB_FAMILY::SA:
36903690 /* --- 1-equation turbulence model: SA ---*/
36913691 columnName << " NU_TILDE " << setw (24 );
3692- columnValue << config->GetNuFactor_FreeStream () * config->GetViscosity_FreeStream () /
3693- config->GetDensity_FreeStream ()
3694- << " \t " ;
3692+ columnValue << config->GetNuFactor_FreeStream () * config->GetViscosity_FreeStream () / config->GetDensity_FreeStream () <<" \t " ;
36953693 break ;
36963694 case TURB_FAMILY::KW:
36973695 /* --- 2-equation turbulence model (SST) ---*/
36983696 columnName << " TKE " << setw (24 ) << " DISSIPATION " << setw (24 );
3699- columnValue << config->GetTke_FreeStream () << " \t " << config->GetOmega_FreeStream () << " \t " ;
3697+ columnValue << config->GetTke_FreeStream () << " \t " << config->GetOmega_FreeStream () <<" \t " ;
37003698 break ;
37013699 }
37023700
37033701 switch (config->GetKind_Species_Model ()) {
3704- case SPECIES_MODEL::NONE:
3705- break ;
3702+ case SPECIES_MODEL::NONE: break ;
37063703 case SPECIES_MODEL::SPECIES_TRANSPORT:
37073704 for (unsigned short iVar = 0 ; iVar < nVar_Species; iVar++) {
37083705 columnName << " SPECIES_" + std::to_string (iVar) + " " << setw (24 );
@@ -3713,15 +3710,14 @@ void CSolver::LoadInletProfile(CGeometry **geometry,
37133710 const auto & flamelet_config_options = config->GetFlameletParsedOptions ();
37143711 /* --- 2-equation flamelet model ---*/
37153712 columnName << " PROGRESSVAR " << setw (24 ) << " ENTHALPYTOT " << setw (24 );
3716- columnValue << config->GetInlet_SpeciesVal (Marker_Tag)[0 ] << " \t " << config->GetInlet_SpeciesVal (Marker_Tag)[1 ]
3717- << " \t " ;
3713+ columnValue << config->GetInlet_SpeciesVal (Marker_Tag)[0 ] << " \t " << config->GetInlet_SpeciesVal (Marker_Tag)[1 ] <<" \t " ;
37183714 /* --- auxiliary species transport equations ---*/
37193715 for (unsigned short iReactant = 0 ; iReactant < flamelet_config_options.n_user_scalars ; iReactant++) {
37203716 columnName << flamelet_config_options.user_scalar_names [iReactant] << setw (24 );
3721- columnValue << config->GetInlet_SpeciesVal (Marker_Tag)[flamelet_config_options.n_control_vars + iReactant]
3722- << " \t " ;
3717+ columnValue << config->GetInlet_SpeciesVal (Marker_Tag)[flamelet_config_options.n_control_vars + iReactant] << " \t " ;
37233718 }
3724- } break ;
3719+ break ;
3720+ }
37253721 }
37263722
37273723 columnNames.push_back (columnName.str ());
0 commit comments