Difference between revisions of "Extend-bazaar/template"

From OpenFOAMWiki
(Wray Agarwal 1-Equation Turbulence Model and Example Case)
Line 4: Line 4:
  
 
== Description ==
 
== Description ==
This code implements...
+
This code implements the Wray-Agarwal one-eqn turbulence closure model. [Developed on OpenFOAM V4.1]
 +
 
 +
    Reference:
 +
    \verbatim
 +
        Wray, T. J., Agarwal, R. K.,
 +
        A New Low Reynolds Number One Equation Turbulence Model Based on a k-omega Closure,
 +
        AIAA Journal, Vol. 53, No. 8, 2015, pp. 2216-2227
 +
    \endverbatim
  
 
== Installation ==
 
== Installation ==
Download from HERE, use either
+
Download from https://openfoamwiki.net/images/4/4c/Contribution.zip
  
* embedded .tgz archive directly on page (only for small files)
+
Then compile by following the instructions in the ReadMe file in the zip.
* link to file-hoster
+
* link to repository, e.g. on sorceforge.org or github.org
+
  
 +
== Usage examples ==
 +
To use this code, select the model as the RAS model to be used in a simulation in the constant/turbulenceProperties dictionary.
  
Then compile by running:
+
The working variable was labeled RWA (to avoid possible conflict with the Reynolds stress tensor R).
<bash>cd src/
+
./Allwmake
+
</bash>
+
  
== Usage examples ==
+
An example test case, applying the model to the usual pitzDaly case is included in the zip.
To use this code, insert into controlDict:
+
 
+
<cpp>functions
+
{
+
....(insert the necessary options here)...
+
}
+
</cpp>
+
  
 
== Documentation ==
 
== Documentation ==
This implementation is based on publication by [http://www.mathstat.uottawa.ca/~rsmith/Zombies.pdf Munz et al (2009)].
+
This implementation is based on the Wray Agarwal model as presented in the NASA turbulence model research page (https://turbmodels.larc.nasa.gov/wray_agarwal.html).
  
 
== History ==
 
== History ==
1 Jun 2010: First upload
+
22 Mar 2018: First upload
 
+
1 Oct 2011: Bug fix for negative inlet velocities
+

Revision as of 05:26, 22 March 2018

This template is only a suggestion aimed at saving your time. Please feel free to use any other format on the subpage for your contribution!

Click "Edit" to access and copy the page code.

1 Description

This code implements the Wray-Agarwal one-eqn turbulence closure model. [Developed on OpenFOAM V4.1]

   Reference:
   \verbatim
       Wray, T. J., Agarwal, R. K.,
       A New Low Reynolds Number One Equation Turbulence Model Based on a k-omega Closure,
       AIAA Journal, Vol. 53, No. 8, 2015, pp. 2216-2227
   \endverbatim

2 Installation

Download from https://openfoamwiki.net/images/4/4c/Contribution.zip

Then compile by following the instructions in the ReadMe file in the zip.

3 Usage examples

To use this code, select the model as the RAS model to be used in a simulation in the constant/turbulenceProperties dictionary.

The working variable was labeled RWA (to avoid possible conflict with the Reynolds stress tensor R).

An example test case, applying the model to the usual pitzDaly case is included in the zip.

4 Documentation

This implementation is based on the Wray Agarwal model as presented in the NASA turbulence model research page (https://turbmodels.larc.nasa.gov/wray_agarwal.html).

5 History

22 Mar 2018: First upload