Difference between revisions of "Extend-bazaar/template"

From OpenFOAMWiki
(Wray Agarwal 1-Equation Turbulence Model and Example Case)
m (Accidentally Edited Wrong Page. Reverting page.)
Line 4: Line 4:
  
 
== Description ==
 
== Description ==
This code implements the Wray-Agarwal one-eqn turbulence closure model. [Developed on OpenFOAM V4.1]
+
This code implements...
 
+
    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 https://openfoamwiki.net/images/4/4c/Contribution.zip
+
Download from HERE, use either
  
Then compile by following the instructions in the ReadMe file in the zip.
+
* embedded .tgz archive directly on page (only for small files)
 +
* 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.
 
  
The working variable was labeled RWA (to avoid possible conflict with the Reynolds stress tensor R).
+
Then compile by running:
 +
<bash>cd src/
 +
./Allwmake
 +
</bash>
  
An example test case, applying the model to the usual pitzDaly case is included in the zip.
+
== Usage examples ==
 +
To use this code, insert into controlDict:
 +
 
 +
<cpp>functions
 +
{
 +
....(insert the necessary options here)...
 +
}
 +
</cpp>
  
 
== Documentation ==
 
== 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).
+
This implementation is based on publication by [http://www.mathstat.uottawa.ca/~rsmith/Zombies.pdf Munz et al (2009)].
  
 
== History ==
 
== History ==
22 Mar 2018: First upload
+
1 Jun 2010: First upload
 +
 
 +
1 Oct 2011: Bug fix for negative inlet velocities

Revision as of 05:29, 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...

2 Installation

Download from HERE, use either

  • embedded .tgz archive directly on page (only for small files)
  • link to file-hoster
  • link to repository, e.g. on sorceforge.org or github.org


Then compile by running:

cd src/
./Allwmake

3 Usage examples

To use this code, insert into controlDict:

functions
{
....(insert the necessary options here)...
}

4 Documentation

This implementation is based on publication by Munz et al (2009).

5 History

1 Jun 2010: First upload

1 Oct 2011: Bug fix for negative inlet velocities