|
[Sponsors] |
Addition of Rotation correction to SA Turbulence Model |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 7, 2012, 03:30 |
Addition of Rotation correction to SA Turbulence Model
|
#1 |
Member
|
Guys,
I am trying to simulate wing tip vortices by modified the existing SA model by adding a rotational correction to it. This was proposed by Dacles and Mariani. It is the SA-R model in the following. http://turbmodels.larc.nasa.gov/spalart.html According to the above link, the only major difference is the way in which S_tilda is calculated. Finally, S_tilda will have to look like S_tilda=Omega+Crot*min(0,S-Omega)+nu_tilda*fv2/(k*d)^2 I tried to code this into openfoam the following way. const volScalarField omega(::sqrt(2.0)*(mag(skew(fvc::grad(U_))))); const volScalarField S(::sqrt(2.0)*(mag(symm(fvc::grad(U_))))); const volScalarField Stilda ( omega + scalar(2) * min(omega-omega,S-omega) + fv2(chi, fv1)*nuTilda_/sqr(kappa_*d_) ); The only reason I have omega-omega is so that I don't have to define 0 as a dimentionedScalar. can someone tell me if I am doing this right. I've tested this version and the results seem to be wrong. The results are right with the actual ( unmodified )implementation of SA model . Kalyan |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Superlinear speedup in OpenFOAM 13 | msrinath80 | OpenFOAM Running, Solving & CFD | 18 | March 3, 2015 06:36 |
SimpleFoam case with SpalartAllmaras turbulence model implemented | nedved | OpenFOAM Running, Solving & CFD | 2 | November 30, 2014 23:43 |
Low Reynolds k-epsilon model | YJZ | ANSYS | 1 | August 20, 2010 14:57 |
KOmega Turbulence model from wwwopenFOAMWikinet | philippose | OpenFOAM Running, Solving & CFD | 30 | August 4, 2010 11:26 |
Turbulence model for CFX moving mesh | songxguan | CFX | 7 | June 28, 2009 22:05 |