|
[Sponsors] |
December 13, 2010, 18:07 |
Production of Turbulent Kinetic Energy
|
#1 |
Senior Member
John Deas
Join Date: Mar 2009
Posts: 160
Rep Power: 17 |
Hi,
I need to compute the term . If R is the volSymmTensorField containing the Reynolds stress, and Umean the mean velocity vector, is this the correct way to compute it ? Code:
R.component(tensor::XX)*fvc::grad(Umean)().component(tensor::XX)+ R.component(tensor::XY)*fvc::grad(Umean)().component(tensor::XY)+ R.component(tensor::XZ)*fvc::grad(Umean)().component(tensor::XZ)+ R.component(tensor::YX)*fvc::grad(Umean)().component(tensor::YX)+ R.component(tensor::YY)*fvc::grad(Umean)().component(tensor::YY)+ R.component(tensor::YZ)*fvc::grad(Umean)().component(tensor::YZ)+ R.component(tensor::ZX)*fvc::grad(Umean)().component(tensor::ZX)+ R.component(tensor::ZY)*fvc::grad(Umean)().component(tensor::ZY)+ R.component(tensor::ZZ)*fvc::grad(Umean)().component(tensor::ZZ) JD |
|
December 14, 2010, 10:22 |
|
#2 |
Senior Member
David Boger
Join Date: Mar 2009
Location: Penn State Applied Research Laboratory
Posts: 146
Rep Power: 17 |
Okay, but you might first have a look at the available operators. For example, something like
Code:
R && fvc::grad(Umean)
__________________
David A. Boger |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
LES and total turbulent kinetic energy | Boerge | FLUENT | 1 | September 8, 2012 12:41 |
LES of periodic pipe centerline turbulent kinetic energy | smehdi609 | OpenFOAM | 0 | December 1, 2010 00:59 |
UDF for changing production of turbulent kinetic energy | CFT | FLUENT | 0 | April 20, 2009 03:35 |
what's the macro of SGS turbulent kinetic energy? | lcw | FLUENT | 1 | June 13, 2006 04:08 |
Turbulent Kinetic Energy | Olga | FLUENT | 2 | October 11, 2002 16:05 |