Skip to content

Commit

Permalink
Changed default clip factor value
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidadi9 committed Jul 12, 2023
1 parent 57a2f5e commit 88fabfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion amr-wind/turbulence/RANS/KOmegaSSTIDDES.H
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected:
amrex::Real m_Ct{1.87};
amrex::Real m_Cw{0.15};
amrex::Real m_kappa{0.41};
amrex::Real m_sdr_prod_clip_factor{1.0};
amrex::Real m_sdr_prod_clip_factor{10.0};
};

} // namespace amr_wind::turbulence
Expand Down
2 changes: 1 addition & 1 deletion amr-wind/turbulence/RANS/KOmegaSSTIDDES.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void KOmegaSSTIDDES<Transport>::update_turbulent_viscosity(
rho_arr(i, j, k) * alpha *
amrex::min<amrex::Real>(
tmp4 * tmp4,
10.0 * sdr_prod_clip_factor *
sdr_prod_clip_factor *
amrex::max<amrex::Real>(sdr_arr(i, j, k), 0.0) *
std::sqrt(tke_arr(i, j, k)) / l_iddes);

Expand Down

0 comments on commit 88fabfd

Please sign in to comment.