CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

StrainRate definition 141 vs 15

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree17Likes
  • 1 Post By floooo
  • 6 Post By kerstin
  • 2 Post By eugene
  • 3 Post By floooo
  • 1 Post By openfoammaofnepo
  • 1 Post By JonW
  • 1 Post By JonW
  • 2 Post By JonW

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 25, 2008, 10:37
Default Hello, I compared nonNewton
  #1
Member
 
florian
Join Date: Mar 2009
Location: Mannheim - Vincennes - Valenciennes, Deutchland - France
Posts: 34
Rep Power: 17
floooo is on a distinguished road
Hello,

I compared nonNewtonian results.
The pressure is not the same with 1.4.1 and with 1.5 version of OpenFoam.
When I take n=1 => newtonian flow the results are the same.
It due to the strainRate calculation.
First I had these lines in BirdCarreau in the fonction calcNu()

Info
<< "max(strainRate): " << max(strainRate()).value()
<< " min(strainRate): " << min(strainRate()).value()
<< endl;

During the caluclation OpenFoam prints line like this one.
max(strainRate): 2027.15 min(strainRate): 1.46869

when I calculate :
max(strainRate)1.4.1/max(strainRate)1.5=1,414..
min(strainRate)1.4.1/min(strainRate)1.5=1,414..

And sqrt(2)=1,4142

I searched where is the definition of strainRate.
I found it in viscosityModel.C
in OpenFoam 1.4.1
return mag(fvc::grad(U_));
in OpenFoam 1.5
return mag(symm(fvc::grad(U_)));
This is not the same

Can someone help me ?

Florian
floooo is offline   Reply With Quote

Old   October 9, 2008, 05:03
Default Hi, I am a beginner. I hav
  #2
New Member
 
zhiwei liu
Join Date: Mar 2009
Posts: 22
Rep Power: 17
lzw2003 is on a distinguished road
Hi,

I am a beginner. I have some quesitons with Cross PowerLaw,I want to check the problem,
But I do not know how to print strainRate(mag(fvc::grad(U_))),can you tell me ?

Thanks!
lzw2003 is offline   Reply With Quote

Old   October 10, 2008, 09:02
Default if you add Info << "max(
  #3
Member
 
florian
Join Date: Mar 2009
Location: Mannheim - Vincennes - Valenciennes, Deutchland - France
Posts: 34
Rep Power: 17
floooo is on a distinguished road
if you add

Info
<< "max(strainRate): " << max(strainRate()).value()
<< " min(strainRate): " << min(strainRate()).value()
<< endl;

in the powerlow.C file it will print the max and min value of the strainRate.
sourav90 likes this.
floooo is offline   Reply With Quote

Old   November 18, 2008, 03:46
Default Hello; I am also trying to
  #4
New Member
 
Bercan Siyahhan
Join Date: Mar 2009
Posts: 1
Rep Power: 0
sbercan is on a distinguished road
Hello;

I am also trying to use a non-Newtonian model, and I was also looking at the definition of strain rate, and my question is what U_ stands for?

Thanks.
sbercan is offline   Reply With Quote

Old   November 19, 2008, 03:22
Default In Viscosities Model all const
  #5
Member
 
florian
Join Date: Mar 2009
Location: Mannheim - Vincennes - Valenciennes, Deutchland - France
Posts: 34
Rep Power: 17
floooo is on a distinguished road
In Viscosities Model all constants are imported with a "_"

if you look in the "Member Functions" part of a viscosity model

k_(powerLawCoeffs_.lookup("k")),
n_(powerLawCoeffs_.lookup("n")),
nuMin_(powerLawCoeffs_.lookup("nuMin")),
nuMax_(powerLawCoeffs_.lookup("nuMax")),

I think U_=U
floooo is offline   Reply With Quote

Old   November 19, 2008, 04:40
Default Hi Florian, Indeed the defi
  #6
New Member
 
Kerstin Heinen
Join Date: Mar 2009
Location: Ludwigshafen, Germany
Posts: 27
Rep Power: 17
kerstin is on a distinguished road
Hi Florian,

Indeed the definition of strain rate is not the same.

The more general definiton used for strain rate in rheology books fpr 3D flows is

strain rate = sqrt( 2* (D:D) )
And D = 1/2 * (grad(U) + grad(U).T)

This "D" is the deformation gradient tensor (the symmetric part of the velocity gradient tensor).

The velocity gradient Tensor L= grad(U).T can be decomposed in a symmetric part and unsymmetric part. And the unsymmetric part is called rotation velocity tensor. The unsymmetric part doesn't contribute to fluid volume deformation. This is the reason why D is usually preferred.

You can calculate both definitons and if I didn't make something wrong now after one page of tensor calculations, I get the following (with the definition of mag(T) according ProgrammersGuide)

[ mag(symm(grad(U)))]^2 = [ mag(grad(U))] ^2 +
2* dUy/dx*dUx/dy
+ 2* dUz/dx*dUx/dz + 2* dUz/dy*dUy/dz

Ux, Uy and Uz are the components of velocity vector in each direction...

So indeed this is different. So I would prefer the definition I have given above because this is the widest spread in rheology books. But I didn't look up what Fluent or CFX use so far...but who cares what Ansys does? ;-)

And a rheologist would say, that calculation of a scalar strain rate for a 3D complex flow and using a model fitted to a measurement in simple shear flow is dangerous...but I think it's the best choice available...

Kerstin
Nucleophobe, atieh, Pirlu and 3 others like this.
kerstin is offline   Reply With Quote

Old   November 19, 2008, 05:26
Default I started working with OpenFoa
  #7
Senior Member
 
Ehsan
Join Date: Mar 2009
Posts: 112
Rep Power: 17
ehsan is on a distinguished road
I started working with OpenFoam. Doing so, a question arose for me, as I write here:

For compressible rarefied flow, it is suggested to use rhocentralFoam routine. I like to know whether it can solve very low Mach flow? I see the examples of this routine are mostly high Mach number flows. Does it an all speed flow solver?

Sincerely,
Ehsan
ehsan is offline   Reply With Quote

Old   November 20, 2008, 04:00
Default Kerstin => Thanks ehsan =>
  #8
Member
 
florian
Join Date: Mar 2009
Location: Mannheim - Vincennes - Valenciennes, Deutchland - France
Posts: 34
Rep Power: 17
floooo is on a distinguished road
Kerstin => Thanks

ehsan => I advise you to post your question in a new topic.
Or to use the search Utility and post your question in a topic which is about rhocentralFoam.
The subject of this topic is "StrainRate definition 1.4.1 vs 1.5"

Florian
floooo is offline   Reply With Quote

Old   November 20, 2008, 09:09
Default My mistake. The common defi
  #9
Senior Member
 
Eugene de Villiers
Join Date: Mar 2009
Posts: 725
Rep Power: 21
eugene is on a distinguished road
My mistake.

The common definition for shear rate in fluid mechanics is indeed:

sr = sqrt(0.5 * D:D), where D = grad(U) + grad(U).T()

In OpenFOAM, skew(T) = 0.5*(T + T^t) and mag(T) = sqrt(T:T), so

sr = sqrt(0.5 * 4* skew(U):skew(U))
sr = sqrt(2) * mag(skew(U))

The current implementation is incorrect. I will submit a bug report. Thanks for catching it!
kiddmax and sourav90 like this.
eugene is offline   Reply With Quote

Old   November 20, 2008, 11:14
Default skew(T) = 0.5*(T - T^t) symm(
  #10
Member
 
florian
Join Date: Mar 2009
Location: Mannheim - Vincennes - Valenciennes, Deutchland - France
Posts: 34
Rep Power: 17
floooo is on a distinguished road
skew(T) = 0.5*(T - T^t)
symm(T) = 0.5*(T + T^t)

with T = grad(U)

I think the good definition is :

sr = sqrt(2) * mag(symm(fvc::grad(U)))

Florian
sungda, sourav90 and aasmunar like this.
floooo is offline   Reply With Quote

Old   December 6, 2010, 08:08
Default glopal change in shear rate for 1.7.x
  #11
Senior Member
 
Jon Elvar Wallevik
Join Date: Nov 2010
Location: Reykjavik, ICELAND
Posts: 103
Rep Power: 19
JonW will become famous soon enough
Hello there
Just an additional comment to the above
I am using OF 1.7.x and I have made a "glopal" change to the shear rate. What I did is as follows: (of course replace my username with yours in path, if you want to repeat)

cd /home/jonelvar/OpenFOAM/OpenFOAM-1.7.x/src/transportModels/incompressible/viscosityModels/viscosityModel

gedit viscosityModel.C

Change...
return mag(symm(fvc::grad(U_)));
...to...
return sqrt(2.0)*mag(symm(fvc::grad(U_)));

cd /home/jonelvar/OpenFOAM/OpenFOAM-1.7.x/src/transportModels/incompressible/

wmake libso

Hope this is of help
JonW is offline   Reply With Quote

Old   August 16, 2014, 18:19
Default
  #12
Senior Member
 
Join Date: Jan 2013
Posts: 372
Rep Power: 14
openfoammaofnepo is on a distinguished road
Dear Eugene,

In OpenFOAM, how to calculate the principal compressive strain rate? I would like to extract this quantity but did not find it in the OpenFOAM classes?

Thank you very much if you can give me some hints.

OFFO
sourav90 likes this.
openfoammaofnepo is offline   Reply With Quote

Old   August 18, 2014, 01:40
Default
  #13
Senior Member
 
Jon Elvar Wallevik
Join Date: Nov 2010
Location: Reykjavik, ICELAND
Posts: 103
Rep Power: 19
JonW will become famous soon enough
Dear OFFO

I recently published a paper in which I derivatived the above equation for shear rate (see Section 3.1). It applies for incompressible material only.
As I understand from your post, you want to do the same for compressible material?
If so, you could follow the steps done in this paper and see where it gets you. You might have to implement it your self into OpenFOAM.

the paper is...
JE Wallevik, Effect of the hydrodynamic pressure on shaft torque for a 4-blades vane rheometer, International Journal of Heat and Fluid Flow, 2014

Cheers
J.
sourav90 likes this.
JonW is offline   Reply With Quote

Old   November 16, 2015, 10:20
Default
  #14
Member
 
Christa
Join Date: Apr 2011
Posts: 53
Rep Power: 15
user_of_cfx is on a distinguished road
Quote:
Originally Posted by kerstin View Post
strain rate = sqrt( 2* (D) )
And D = 1/2 * (grad(U) + grad(U).T)

This "D" is the deformation gradient tensor (the symmetric part of the velocity gradient tensor).
I want to model a viscosity model in which the viscosity depends on the shear strain. I was wondering if OF calculates that, or if there is a way to relate shear strain with velocity (or any other parameter calculated by the OF solver) in any way? Looks like D might be a good candidate to use for this purpose?

On a related note, how stable would a solution be if I used an integral in the viscosity equation? i.e. if I just wanted to set he shear strain equal to the integral of shear rate in dt?
user_of_cfx is offline   Reply With Quote

Old   November 16, 2015, 13:04
Default
  #15
Senior Member
 
Jon Elvar Wallevik
Join Date: Nov 2010
Location: Reykjavik, ICELAND
Posts: 103
Rep Power: 19
JonW will become famous soon enough
hello christa

This is possible, just use the correct solver (i.e. a non-Newtonian solver) as a template when programming your new OF solver.

Regarding your integration thingi, I have done this and published in
Wallevik, J.E., Thixotropic investigation on cement paste: Experimental and numerical approach. J. Non-Newtonian Fluid Mech. 132 (2005) 86-99.

At least in my case, integration did not pose any stability problems. But you have to be careful about memory footprint which can be huge.
In my phd (in the old days), I did overcome this and wrote about it in my thesis, see p.171, download:
http://ntnu.diva-portal.org/smash/re...=1&dswid=-1320

A Fortran code is available in
http://www.vvpf.net/download.html (note, download version 1.0)

Please note that I am following British Standard BS 5168:1975 "Glossary of rheological terms", so I use the term "shear rate" and not "shear strain" or "strain rate", see more about this issue in...

Wallevik, J.E. (2014), Effect of the hydrodynamic pressure on shaft torque for a 4-blades vane rheometer, International Journal of Heat and Fluid Flow, DOI: 10.1016/j.ijheatfluidflow.2014.06.001.
http://www.sciencedirect.com/science...42727X14000812

cheers
J.
sourav90 likes this.
JonW is offline   Reply With Quote

Old   November 17, 2015, 08:22
Default
  #16
Member
 
Christa
Join Date: Apr 2011
Posts: 53
Rep Power: 15
user_of_cfx is on a distinguished road
Quote:
Originally Posted by JonW View Post
Please note that I am following British Standard BS 5168:1975 "Glossary of rheological terms", so I use the term "shear rate" and not "shear strain" or "strain rate", see more about this issue in...
Hi Jon,

Thanks for your reply. I had a look through your excellent thesis, but I think there is a confusion about what I am after (which is the story of all my searches so far). What I am looking for is not the shear rate (let me call this gamma dot), but the shear strain, which I'll call gamma. From the paper I have been looking at (I am trying to replicate the work of another paper using OF) I understand gamma to be the integral of gamma dot in time (essentially it's a fluid version of deformation, delatl/L, and is unitless), which is why I asked if I can create a viscosity model in OF where I can use the existing shear rate (sr()) and integrate in time to calculate the gamma value I am after. Or maybe the strain is calculated by OF already, in which case I would be grateful if someone could point me to the file where this calculation happens, as I cannot find it.

I hope this is clearer now?
user_of_cfx is offline   Reply With Quote

Old   November 17, 2015, 10:01
Default
  #17
Senior Member
 
Jon Elvar Wallevik
Join Date: Nov 2010
Location: Reykjavik, ICELAND
Posts: 103
Rep Power: 19
JonW will become famous soon enough
Hi there again,
I see what you mean. I am pretty sure that this is not in OF. You have to program it your self

I just send you the paper you asked, and it might be a use after all, for your problem.
If you look at Eq. (8) in the paper (see also eq 9.3 p. 210 in the phd thesis), you have a Gamma which I am using. What I am working on is fading memory. But you could let it have full memory (alpha = 1) and put I = shear rate (i.e. dot-gamma) and you would be calculating deformation. In the FORTRAN source code this is named Gamma (in viscous.f90).

Anyway, if you do use this approach, memory (as in RAM) can be a problem very quickly, but the integration trick in my phd thesis I mentioned above can solve this.

J.
JonW is offline   Reply With Quote

Old   November 17, 2015, 12:08
Default
  #18
Member
 
Christa
Join Date: Apr 2011
Posts: 53
Rep Power: 15
user_of_cfx is on a distinguished road
Again thanks a lot. I had not reached that part with the fading memory.

I saw the trick with the exponentials that you used though, looks quite clever.

I was thinking something a lot simpler (and probably not as accurate), like storing the deformation value of t' and then adding the newly calculated deformation to it. Something along the lines of:

gamma(t) = gamma(t')+gamma_dot(t')*deltaT_

I can see however, that if I don't do this properly it can result in massive memory leaks.

However, you really have set me in the right direction with respect to the rheological model. Now to implement it all in C++ ...

Many thanks again!
user_of_cfx is offline   Reply With Quote

Old   June 27, 2017, 13:11
Default
  #19
New Member
 
Andy
Join Date: Aug 2015
Posts: 8
Rep Power: 10
andy_pr is on a distinguished road
Hi,

So I take it that sr = sqrt(2) * mag(symm(fvc::grad(U))) is the second invariant of the strain rate tensor? If I wanted the strain rate tensor do I use 2 * symm(fvc::grad(U)) ?

Thanks,

A.
andy_pr is offline   Reply With Quote

Old   June 27, 2017, 13:36
Default
  #20
Senior Member
 
Jon Elvar Wallevik
Join Date: Nov 2010
Location: Reykjavik, ICELAND
Posts: 103
Rep Power: 19
JonW will become famous soon enough
Quote:
Originally Posted by andy_pr View Post
Hi,

So I take it that sr = sqrt(2) * mag(symm(fvc::grad(U))) is the second invariant of the strain rate tensor? If I wanted the strain rate tensor do I use 2 * symm(fvc::grad(U)) ?

Thanks,

A.
yes
strain rate tensor = (grad(U) + grad(U)^T)
rate of deformation tensor = 0.5 * (grad(U) + grad(U)^T)

Example of use of the latter in OpenFOAM, see Section 2.5 in
https://doi.org/10.1016/j.cemconres.2017.02.007

If you are interested in shear rate and why it is, see Section 3.1 in
https://doi.org/10.1016/j.ijheatfluidflow.2014.06.001

About "symm", see Section 1.3.9, equation (1.31) in the ProgrammersGuide.pdf (of 2.3.1 version), which is in you doc directory (if you type 'foam').
See also the table in Section 1.4.1. Should be similar section numbers in OF 4.1.

J.
SHUBHAM9595 and sourav90 like this.
JonW is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
sub function CEL definition harry CFX 1 March 15, 2009 21:08
what is GGI definition in CFX? NITIN DEWANGAN CFX 1 August 7, 2008 22:48
Mesh definition Ogbeni CFX 0 November 22, 2005 17:49
b.c. definition john FLUENT 0 June 5, 2004 10:00
definition of u* for y+<10 Robert Spall FLUENT 0 May 29, 2003 11:40


All times are GMT -4. The time now is 21:28.