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

Heat transfer in liquid water suggestions for chioce of solver

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 17, 2008, 10:49
Default Hi all I'm new to OpenFOAM as
  #1
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Hi all
I'm new to OpenFOAM as well as CFD, and would like to ask for some advice on how to choose solvers. I'm interested in thermal fatigue in pipes, and hence I would like to model thermal transport in such systems. The medium is liquid water, and hence rho=const (or in some cases rho=rho(T)). I would eventually like to do RANS as well as LES. As far as I can see, the standard library offers either incompressible solvers with no heat transport, or compressible solver utilizing a perfect gas equation of state. Based on that it seems that my choices are:

1. Adding temperature transport to a (or several) incompressible solver.

2. creating a new equation of state, where rho=const (or rho=rho(T)), and use existing compressible solvers.

I am kindly asking for suggestion or comments in this matter. Maybe someone has done something similar? I should also add that apart from being a CFD beginner, my knowledge in c++ is also limited.

Best Regards
Henrik
hkb is offline   Reply With Quote

Old   September 17, 2008, 11:14
Default Hi Henrik, I suggest you st
  #2
New Member
 
David Palko
Join Date: Mar 2009
Location: Stockholm
Posts: 17
Rep Power: 17
dpalko is on a distinguished road
Hi Henrik,

I suggest you start with incompressible solvers. The following is an interesting wiki link, how to add the energy equation to icoFoam.
http://www.openfoamwiki.net/index.ph...ure_to_icoFoam

David
dpalko is offline   Reply With Quote

Old   September 17, 2008, 11:15
Default Hi. I would choose option 1
  #3
Senior Member
 
Gavin Tabor
Join Date: Mar 2009
Posts: 181
Rep Power: 17
grtabor is on a distinguished road
Hi.

I would choose option 1.; nonlinear density just adds to the complexity of solution, whereas an additional transport equation should be easy to include into turbFoam (or something similar).

Gavin
grtabor is offline   Reply With Quote

Old   September 17, 2008, 14:51
Default Hi Thanks for your rapid repl
  #4
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Hi
Thanks for your rapid reply. I have started adding a temperature transport to turbFoam (based on this thread: http://www.cfd-online.com/OpenFOAM_D....html#POST6623). I figured that since the flow affects the temperature but not the other way around, the temperature equation should be solved after the PISO loop, is that correct?

Best Regards
Henrik
hkb is offline   Reply With Quote

Old   September 17, 2008, 15:21
Default Hi Henrik Even I am working
  #5
New Member
 
Ameya Durve
Join Date: Mar 2009
Location: Mumbai, Maharashtra, India
Posts: 20
Rep Power: 17
ameya is on a distinguished road
Hi Henrik

Even I am working on heat transfer in liquids and my work comprises of determining temperature fluctuations occuring due to mixing of non isothermal jets.

I am using heat transfer codes available in OpenFOAM. If you want to know which solvers to use go to : OpenFOAM<version>/applications/solvers/heattransfer

If you want rho = rho(T) i suggest you use OpenFOAM-1.5 . For 1.5 version you can download code for density variation using boussinesq approximation. you can use that code as it is or easily modify it for piecewise linear and piecewise polynomial variation of density

In case you need any further help feel free to ask
ameya is offline   Reply With Quote

Old   September 17, 2008, 17:52
Default I had a look at the code at:
  #6
Senior Member
 
Gavin Tabor
Join Date: Mar 2009
Posts: 181
Rep Power: 17
grtabor is on a distinguished road
I had a look at the code at:

http://www.openfoamwiki.net/index.ph...ure_to_icoFoam

Am I right in thinking it misses off the viscous heating term??

Gavin
grtabor is offline   Reply With Quote

Old   September 18, 2008, 12:50
Default Yes, I think the viscous heati
  #7
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Yes, I think the viscous heating is missing.
Based on http://ocw.mit.edu/NR/rdonlyres/Earth--Atmospheric--and-Planetary-Sciences/12-80 0Fall-2004/1CE85465-E605-4582-841B-24C3966E332A/0/energy.pdf I would write (ignoring div(u) terms)

ddt(T)+div(phi,T)-laplacian(alphaEff,T)- 1/(rho*Cv) tau && grad(U) == 0

This is essentially what is proposed in this thread: http://www.cfd-online.com/OpenFOAM_D...es/1/2513.html but for compressible flow. In that thread I also found this relation:

tau = mu * (gradU + gradU.T()) - (2.0/3.0 * mu * fvc::div(U)) * I

where I guess the second term drops out due to incompressibility.

Any thoughts on this?

Ameya: Are you referring to the Boussinesq solver? I looked at it a while back (from the OF-1.4.1-dev distribution) and as I recall it was only for laminar flow, while I need to consider turbulence.

Henrik
hkb is offline   Reply With Quote

Old   September 19, 2008, 06:52
Default Henrik, I came to the concl
  #8
Senior Member
 
Gavin Tabor
Join Date: Mar 2009
Posts: 181
Rep Power: 17
grtabor is on a distinguished road
Henrik,

I came to the conclusion that the term should not be there if the fluid is incompressible. Temam and Miranville "Mathematical Modelling in Continuum Mechanics" (good book, btw) gives the equation for this case as

rho C(dT/dt + u.del T) - k laplacian(T) = r

where r is the source term. Anyway, I put this and the Boussinesq term into icoFoam yesterday (isn't OF great!!) and got some rather pretty results out.

Gavin
grtabor is offline   Reply With Quote

Old   September 19, 2008, 08:40
Default Hi Gavin have you given any t
  #9
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Hi Gavin
have you given any thought to the reason for the absence of the viscous heating term in the incompressible case? It seems to be fairly common to omit it in the compressible case (I can't find it in any of the standard solvers in OF I have checked), so maybe it has a neglible impact? Or is there anything in the physics that invalidates the term in the incompressible case? I guess that (with a better knowledge of c++) I could ask the solver to print the different contributions seperately, to check their relative size.

Henrik
hkb is offline   Reply With Quote

Old   September 19, 2008, 09:31
Default Temem and Miranville give the
  #10
Senior Member
 
Gavin Tabor
Join Date: Mar 2009
Posts: 181
Rep Power: 17
grtabor is on a distinguished road
Temem and Miranville give the general energy equation as

rho De/Dt + q_i,i - \sigma_ij u_i,j = r

u_i,j = div(u) so this term = 0 in incompressible flow. q is the heat transfer by conduction which is modeled by Fourier's law, and for a perfect gas, the internal energy e=CT.

Looking through the link that you provided, it includes a viscous heating term as well, \phi, but then states that it is small for almost every case, and proceeds to ignore it. They don't ignore div(u) until the very last paragraph, where they state that the Boussinesq approximation makes this zero.

Gavin
grtabor is offline   Reply With Quote

Old   September 19, 2008, 09:45
Default Hi Gavin Forgive my ignorance
  #11
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Hi Gavin
Forgive my ignorance, but what is \sigma in the formula above? I actually ordered the book this morning, but I guess it won't arrive in a week or so.
Another question (also from a beginners perspective): from energy conservation, does the viscous heating equal the viscous dissipation? And in that case, could the viscous heating be estimated from the turbulent flow? Would the property of interest be epsilon?

Henrik
hkb is offline   Reply With Quote

Old   September 19, 2008, 10:16
Default \sigma=stress tensor (I think.
  #12
Senior Member
 
Gavin Tabor
Join Date: Mar 2009
Posts: 181
Rep Power: 17
grtabor is on a distinguished road
\sigma=stress tensor (I think...)

I'm guessing the viscous heating should roughly equal the viscous dissipation in turbulent flow. Or rather; any shear in the flow will dissipate energy through a viscous mechanism; your source gives the formula

2\mu e:e - 2/3 \mu del.u^2

for this (e here is the strain I think). In turbulent flow the main contribution to this is likely to be the turbulent one.

Gavin
grtabor is offline   Reply With Quote

Old   September 19, 2008, 12:11
Default Hi Gavin thanks for your pati
  #13
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Hi Gavin
thanks for your patience. I have one last question:
In one of the above links I picked up this expression for the heat transfer coefficient:
alphaEff=nut/Pr+k/(C*rho)
This seem reasonable as this means that the heat transfer is multiplied by the relative increase of the viscosity due to turbulence:

nut/Pr+k/(C*rho)=k/(C*rho)*(mut/mu+1)=k/(C*rho)*(mut+mu)/mu

Would you believe in this?

Henrik
hkb is offline   Reply With Quote

Old   September 19, 2008, 15:35
Default Hi Henrik, Yes, I can easil
  #14
Senior Member
 
Gavin Tabor
Join Date: Mar 2009
Posts: 181
Rep Power: 17
grtabor is on a distinguished road
Hi Henrik,

Yes, I can easilly believe that - the turbulence will enhance heat transfer. Worth checking this dimensionally though; the Prandtl number should be dimensionless, shouldn't it, so that would give [alphaEff] = [nut] - is that correct? (Sorry, end of long day and I can't be bothered to work it out properly.)

Gavin
grtabor is offline   Reply With Quote

Old   September 19, 2008, 15:53
Default Henrik, alphaEff is not the
  #15
New Member
 
David Palko
Join Date: Mar 2009
Location: Stockholm
Posts: 17
Rep Power: 17
dpalko is on a distinguished road
Henrik,

alphaEff is not the heat transfer coefficient, it is the heat diffusivity. If you take the law of conservation of energy, what you get after some simplifications and assumptions is div(T)=(k/cp*rho)*laplace(T), where k/(rho*cp)=alpha is thermal diffusivity. This just assumes that to the control volume the energy is transfered by conduction. The second term, nut/Pr accounts for increase of heat transport due to turbulence.

David
dpalko is offline   Reply With Quote

Old   September 19, 2008, 16:43
Default I'm sorry, this is all new to
  #16
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
I'm sorry, this is all new to me, and it seems like I messed it up in the naming.
So taking a step backwards:
based on Fourier's law I would expect the coefficient in front of the laplacian to be k/(rho*C), at least in the laminar case. Do we agree on that? Next, it is feasible that heat will be transported faster in a turbulent case, and by adding nut/Prt we preserve dimensions, so maybe it is ok. Still with me? Finally, in the compressible cases, the coefficient in front of the laplacian is called alphaEff, however, in those cases the coefficient don't include rho and C (since they are solving for h and we are solving for T).
I tried to look into the origin of alphaEff in the compressible codes, but I didn't understand very much. Maybe someone who knows a little more about these things can add something about the similarities (or differences) between alphaEff/(rho*C) and nut/Pr+k/(C*rho)?

Henrik
hkb is offline   Reply With Quote

Old   September 19, 2008, 17:06
Default Maybe i should do it more clea
  #17
New Member
 
David Palko
Join Date: Mar 2009
Location: Stockholm
Posts: 17
Rep Power: 17
dpalko is on a distinguished road
Maybe i should do it more clear:
When you average NS equations, you end up with one additional term, which is the Reynolds stress. This term is then modeled by turbulence model and this is when nut appears (sorry i don't know how to write equations in this forum).
The same thing as for the momentum equation, you do for the equation of transport of energy. Here you end up with one additional term. This term you then put equal to nut/Prt, where Prt is the turbulent Prandtl number, which is defined as the ratio between the turbulent transport of momentum and energy, this number is usually set up by your turbulence model and is Prt=0.9. This is the standard approach when using eddy viscosity turbulence models.

David
dpalko is offline   Reply With Quote

Old   October 6, 2008, 11:10
Default Thanks a lot David so k/C*rho
  #18
hkb
New Member
 
Henrik Bergersen
Join Date: Mar 2009
Posts: 17
Rep Power: 17
hkb is on a distinguished road
Thanks a lot David
so k/C*rho takes care of conduction, while nut/Prt accounts for turbulent convection, is that the way to understand this? I looked a little further into the compressible codes, and it seems that the situation is similar, but in those cases a turbulent Prandtl number of 1.0 is used.
I realize I have to catch up on the theory in order to get further. Can you (or anyone) recommend a textbook that explains this in a complete but still comprehensible way?

Henrik
hkb is offline   Reply With Quote

Old   October 16, 2008, 09:30
Default When running the boussinesqBuo
  #19
Member
 
Christian Lindbäck
Join Date: Mar 2009
Posts: 55
Rep Power: 17
christian is on a distinguished road
When running the boussinesqBuoyantSimpleFoam solver found at the OpenFOAM wiki on my own case, the following error appear:

Starting time loop

Time = 1



incompatible dimensions for operation
[U[0 1 -2 0 0 0 0] ] == [-grad(p)[1 -2 -2 0 0 0 0] ]#0 Foam::error::printStack(Foam:stream&) in "/home/csvs/OpenFOAM/OpenFOAM-1.5/lib/linux64GccDPOpt/libOpenFOAM.so"
#1 Foam::error::abort() in "/home/csvs/OpenFOAM/OpenFOAM-1.5/lib/linux64GccDPOpt/libOpenFOAM.so"
#2 void Foam::checkMethod<foam::vector<double> >(Foam::fvMatrix<foam::vector<double> > const&, Foam::DimensionedField<foam::vector<double>, Foam::volMesh> const&, char const*) in "/home/csvs/OpenFOAM/OpenFOAM-1.5/applications/bin/linux64GccDPOpt/boussinesqBuo yantSimpleFoam"
#3 Foam::tmp<foam::fvmatrix<foam::vector<double> > > Foam::operator==<foam::vector<double> >(Foam::fvMatrix<foam::vector<double> > const&, Foam::tmp<foam::geometricfield<foam::vector<double >, Foam::fvPatchField, Foam::volMesh> > const&) in "/home/csvs/OpenFOAM/OpenFOAM-1.5/applications/bin/linux64GccDPOpt/boussinesqBuo yantSimpleFoam"
#4 main in "/home/csvs/OpenFOAM/OpenFOAM-1.5/applications/bin/linux64GccDPOpt/boussinesqBuo yantSimpleFoam"
#5 __libc_start_main in "/lib64/libc.so.6"
#6 Foam::regIOobject::readIfModified() in "/home/csvs/OpenFOAM/OpenFOAM-1.5/applications/bin/linux64GccDPOpt/boussinesqBuo yantSimpleFoam"


From function checkMethod(const fvMatrix<type>&, const GeometricField<type,>&)
in file /home/csvs/OpenFOAM/OpenFOAM-1.5/src/finiteVolume/lnInclude/fvMatrix.C at line 1208.

FOAM aborting

Anyone with an idea? I can assure you that the dimension of my U field is m/s.
christian is offline   Reply With Quote

Old   October 17, 2008, 09:21
Default Hi Christian! If you have a
  #20
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Hi Christian!

If you have a closer look you might noticed that the difference in dimensions is a density. See discussions about different dimensions in pressure for compressible and incompressible solvers

Bernhard
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request
gschaider is offline   Reply With Quote

Reply


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
Solver for heat transfer calculation with water media benyamin1 OpenFOAM Running, Solving & CFD 6 January 27, 2011 04:26
Liquid Metals and Heat Transfer juanltm OpenFOAM Running, Solving & CFD 7 October 28, 2009 05:00
Solid-Liquid heat transfer Tu CFX 0 August 17, 2008 17:42
Heat transfer from solid to liquid Richard FLUENT 2 January 30, 2006 04:10
Heat Transfer from Solid To Liquid! Richard FLUENT 1 January 20, 2006 05:43


All times are GMT -4. The time now is 08:17.