|
[Sponsors] |
Transformation of volSymmTensorField to volTensorField |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
August 20, 2009, 23:20 |
Transformation of volSymmTensorField to volTensorField
|
#1 |
Member
Sven Schweikert
Join Date: Jun 2009
Posts: 38
Rep Power: 17 |
Hello together
Is there a way to transform a existing volSymmTensorField to a volTensorField? I want to implement a new turbulence model which is based on the use of the symmetric part of the mean velocity gradient Sij as well as the skew-symmetric ones Wij. In my eyes - defining the symmetric part Sij is no big deal: Code:
volSymmTensorField S = symm(fvc::grad(U_)); Code:
volTensorField W = skew(fvc::grad(U_)); So far I guess it's because of the different number of components I used while defining with volSymmTensorField and volTensorField. Therefore my quetion: Is there a way to transform a existing volSymmTensorField to a volTensorField? But maybe there is a better way to deal with my problem? I'm grateful about every input! Thanks a lot & greetings Sven Last edited by svens; August 21, 2009 at 03:10. |
|
September 4, 2009, 02:28 |
|
#2 |
Member
Sven Schweikert
Join Date: Jun 2009
Posts: 38
Rep Power: 17 |
Hello together
It doesn't really answer my question but I found a way to solve my problem: I had a further look at my eqautions and recognized that I'm multiply my new skew-symmetric tensor W with a symmetric ones b. After that I'm summing this product like (bW + Wb) which creates a symmetric tensor again. While implementing it like symm(bW+Wb) to the REqn all my problems with tmp<fvSymmTensorMatrix> dissapeared. Maybe someone of you can help this. Cheers - Sven |
|
November 19, 2009, 06:47 |
Q&D fix
|
#3 |
New Member
Iyer Arvind Sundaram
Join Date: May 2009
Posts: 13
Rep Power: 17 |
A quick and dirty fix.
Just multiply with tensor(1,0,0,0,1,0,0,0,1) too bad but if performance is not a concern go ahead, kill the CPU |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Transformation of a cartesian velocity gradient volTensorField to cylindrical coord. | alexey7783 | OpenFOAM | 5 | April 26, 2012 19:29 |
grid transformation | lavan | Main CFD Forum | 1 | October 22, 2005 05:57 |
elliptic transformation in 3D | Dinesh Godavarty | Main CFD Forum | 1 | August 21, 2003 15:17 |
Roberts transformation Eqn. | Yang | Main CFD Forum | 2 | January 10, 2002 10:20 |
transformation between Cartesian and spherical coordinates? | Xiaofeng Yang | Main CFD Forum | 6 | February 23, 2000 11:19 |