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

Heat transfer with solid elements conduction

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 27, 2005, 18:30
Default Sounds like a boundary conditi
  #41
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
Sounds like a boundary condition problem. Should all three boundaries be fixed value?

Also check if you are running 2D that your geometry is actually 2D. And if running 3D that you do not have any empty patches.
mattijs is offline   Reply With Quote

Old   August 26, 2005, 11:47
Default I spent some time to test the
  #42
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
I spent some time to test the solver I submitted and I realized that there where some mistakes.

I have now corrected the mistakes and tested the code against an analytical solution and it works.

The test case is the same I have already explained, the only difference is that now I run openFoam in 1D to save time and space.

here is the new solver

conjugateFoam2.tar.gz

and here is the case

conjugate2bars2.tar.gz
panara is offline   Reply With Quote

Old   August 26, 2005, 13:11
Default Nice one! First multi-domain s
  #43
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
Nice one! First multi-domain solver using the new region stuff.

Already had forgotten about the -mesh option to foamToVTK to postprocess a given region ;-)

(is the only application so far that has been adapted)

From first scan:
- you have '<' (angle brackets) around some patch names. Any reason?
- some patches are of type 'wall', instead of 'patch'.
mattijs is offline   Reply With Quote

Old   August 26, 2005, 14:09
Default The reason why there are brack
  #44
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
The reason why there are brackets and wall is due to the fact that I recycled an old case... =)

The brackets have not importance at all, and I guess the same for the wall thing...

A wall patch is a normal patch with some features for calculating turbulence and wall distances that in my case are not used...

So, you can take away the wall and use patch instead of wall.. the solution should be the same..

Sorry if the code is a bit dirty =) but I am a new user..

I am growing with OpenFoam.. and I thank you all for this opportunity.. This is also to answer to the thread "Typo in foamInstallationTest, version 1.2?"

I understand the fundings problem and I really hope that OpenFoam will survive. I am also planning to save some of the funds I have to buy some support hours in order to perform more future complicated tasks.

To the other side, I aggree with "Public User". Any code development should be supported at the best of our capability.

This is the reason why I posted my "little solver" on the discussion group.

I really hope that the solver can be usefull to someone and further developed in the Open Source phylosopy and in the future versions of OpenFoam.

Regards,

Daniele
panara is offline   Reply With Quote

Old   September 8, 2005, 05:42
Default Dear all, I am now trying t
  #45
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
Dear all,

I am now trying to couple laplacianFoam (solid wall) with rhoTurbFoam (fluid).

I have a question about the Temperature field.

It seems that rhoTurbFoam creates only two IOobject that are rho and U in createFields.H

plus

volScalarField& p = thermo->p();

and

volScalarField& h = thermo->h();

the solver solves for the rho equation (continuity), U equation (momentum), p equation (PISO) and h equation (energy).

In the output we find the temperature field and the BC are given using temperature values, but it seems to me that an IOobject for the temperature field is not created..

Am I correct?

If yes, how can I access the values of the temperature field?

in which part of the code the temperature field in output is written? in runTime->write() ?

Thanks in advance for your time,

Daniele
panara is offline   Reply With Quote

Old   September 8, 2005, 13:54
Default Have a look in the thermophysi
  #46
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
Have a look in the thermophysicalModels library. The base class of all the models (basicThermo.H) has a T() access function.

runTime->write() indeed writes all registered objects (of which T is one)
mattijs is offline   Reply With Quote

Old   September 9, 2005, 05:46
Default I think I solved the problem,
  #47
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
I think I solved the problem,
I added the following lines to basicThermo.H

//- Temperature [K]
// Non-const access allowed for conjugate heat transfer prob.
volScalarField& T()
{
return T_;
}

And I left the code untouched...
it seems to work, I am now testing it.

I think it is not a very elegant solution, any other idea how to solve the problem is wellcome =)

Daniele
panara is offline   Reply With Quote

Old   September 17, 2005, 04:36
Default Hello, I would like to try
  #48
unoder
Guest
 
Posts: n/a
Hello,

I would like to try this case and solve the conjugate heat transfer problem myself. I can do the analytical calculcation for a 1D problem myself for comparison purposes using Matlab but since I don't have much experience with Foam, I appreciate a few hints to get starting.

For instance: 1) Do this, 2) Do that 3) Compile 4) Run solver on case 5) View result with paraFoam, etc...

So if some of you could point out what I need to get started with a numerical calculation using conjugateFoam2 and conjugate2bars2 I would probably save hours, since I've never tried to experiment with own solvers and this kind of mesh...

Also, in http://www.cfd-online.com/cgi-bin/Op...=4191#POST4191 Mattijs Janssens writes that one should use buoyantFoam instead. Any explanation for this, to a beginner?

Thanks in advance.
  Reply With Quote

Old   September 20, 2005, 14:42
Default Never mind, it was not so diff
  #49
unoder
Guest
 
Posts: n/a
Never mind, it was not so difficult to get it working...

Now I need some hints on how to post process, like li... Because in paraview I can only color by "Property"... Haven't figured out how to color by temperature yet...
  Reply With Quote

Old   September 20, 2005, 14:47
Default Never mind, it was not so diff
  #50
unoder
Guest
 
Posts: n/a
Never mind, it was not so difficult to get it working...

Now I need some hints on how to post process, like li... Because in paraview I can only color by "Property"... Haven't figured out how to color by temperature yet...
  Reply With Quote

Old   September 20, 2005, 15:18
Default for postprocessing I did it in
  #51
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
for postprocessing I did it in a very dirty way =) but I guess that there is a better way using foamToVTK as Mattijs Janssens suggested...

by the way I modified foamToTecplot in foamToTecplotMultiRegion, changing the following line:

in file createMeshes.H

// in order to process a defined region change region below and recompile


Info<< "region3: Create mesh for time = "
<< runTime.value() << nl << endl;

fvMesh mesh
(
IOobject
(
"region3",
runTime.timeName(),
runTime,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);

mesh.constructAndClear();

in file foamToTecplot

// in order to process different region change region below and
// recompile
IOobjectList objects(mesh, runTime.timeName(),"region3");

and in file writeDXdata.H

// in order to process different region change region below and
// recompile
fileName instance(runTime.timeName()/"region3/");

this works for the region called 'region3' to change region you have to change 'region3' with the name of the other region and recompile the application with wmake

I cannot send the foamToTecplotMultiRegion application because I have problem with my computer.. I hope I have helped you anyway..

Daniele
panara is offline   Reply With Quote

Old   September 20, 2005, 15:26
Default P.S. If you are interested
  #52
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
P.S.

If you are interested in graphic-plots you can do the same kind of modifications to sample and create a sampleMultiRegion application...

when I will find some time I will add sampleMultiRegion too...

what kind of problem are you trying to simulate?
for the solid-solid coupling I have already validated the solver in 1D using the analytical solution... are you working on solid-fluid coupling?

Regards and good work,

Daniele
panara is offline   Reply With Quote

Old   September 21, 2005, 12:09
Default Hi Daniele 1) At this momen
  #53
unoder
Guest
 
Posts: n/a
Hi Daniele

1) At this moment, I just want to learn how to use Foam and get usable results - I've only used it for 3 weeks or so until now. Too bad, that the tutorial isn't longer.

2) You're right - it looks dirty, what you did. I prefer to look closer at the foamToVTK solution to begin with. Also because I'm not really into this source code and never used such a thing like "foamToTecplotMultiRegion". What is that?

3) I'm interested in graphic-plots for my report. I was told I should look at this sample-utility and I'll look again in the tutorial...

4) To start with, I want to simulate solid-solid heat conduction and compare it analytically. 1D is excellent for that. Later on I hope to be able to simulate a casting process but this seems very complicated (I did a calculation with interFoam-solver and the flow looks realistic, but there's no temperature dependency in that calculation)...

What do you think about that?
  Reply With Quote

Old   October 4, 2005, 11:26
Default hallo ! I want to solve the
  #54
New Member
 
Arne Henning
Join Date: Mar 2009
Location: Göttingen, Germany
Posts: 1
Rep Power: 0
arne_henning is on a distinguished road
hallo !

I want to solve the laplacian for heat conduction in different joint solids, which have different thermal conductivity....so as far as i can read here, the only possibility is to solve the equation for each material (and mesh) and pass the values at the junctions ?! That's strange for me....since, for example, in the "damBreake" example, they even change the "transportProperty" dynamic with the phase.....
So please tell me, if i missed the point...:-)..or if i can use one mesh for all the materials....

thank you !!

Arne
arne_henning is offline   Reply With Quote

Old   November 29, 2005, 17:58
Default Hi Sergei, You said the cel
  #55
Senior Member
 
Guoxiang
Join Date: Mar 2009
Posts: 109
Rep Power: 17
liugx212 is on a distinguished road
Hi Sergei,

You said the cell properties can be set. I want to set for different cells but I really do not know hot to do. So I am eager to get your help.

Thanks
Guoxiang
liugx212 is offline   Reply With Quote

Old   November 30, 2005, 10:30
Default Hi Guoxiang, Check out Bern
  #56
New Member
 
Helmut Roth
Join Date: Mar 2009
Posts: 23
Rep Power: 17
helmut is on a distinguished road
Hi Guoxiang,

Check out Bernhard Gschaider's 2005 August 22 post to the thread OpenFOAM Message Board: OpenFoam: Meshing / Mesh conversion: Gambit/Fluent: Extension of fluentMeshToFoam: internal cells and faces.

Good luck,
H.
helmut is offline   Reply With Quote

Old   December 2, 2005, 10:17
Default Hi Sergei: Thanks, I have c
  #57
Senior Member
 
Guoxiang
Join Date: Mar 2009
Posts: 109
Rep Power: 17
liugx212 is on a distinguished road
Hi Sergei:

Thanks, I have checked. I want to set the different propertities (mechanical and thermo properties) here. So I am eager to your more advice.

Thanks deeply.
Guoxiang
liugx212 is offline   Reply With Quote

Old   February 15, 2006, 05:24
Default I am trying to make a conjugat
  #58
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
I am trying to make a conjugate heat transfer solver running together laplacianFoam and rhoTurbFoam.

I did more or less the same thing I did for the two laplacianFoam case for composite material posted in this tread.

I am getting now very strange results...

I am testing the solver in a pipe configuration.
The exterior of the pipe is manteined at 300K and at the beginning the flow and the pipe are at 700K.

At some point I do not know why but the internal pipe wall get colder than the external pipe wall.
and I have a maximum of the temperature inside the pipe close to the wall...

What I am doing wrong?
Do you have any suggestions?

I post here the solver and the test case I am running, hoping to start a discussion...

Daniele




panara is offline   Reply With Quote

Old   February 15, 2006, 05:28
Default Ops http://www.cfd-online.
  #59
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
Ops

Conjugate_pipe.tar.gz
panara is offline   Reply With Quote

Old   February 15, 2006, 05:36
Default and http://www.cfd-online.
  #60
Senior Member
 
Daniele Panara
Join Date: Mar 2009
Posts: 101
Rep Power: 17
panara is on a distinguished road
and

conjugateFoam7.tar.gz
panara 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
heat conduction in solid - mismatch to exp. res. Ralf Schmidt FLUENT 1 December 9, 2008 08:34
Solid mesh for heat conduction Munni FLUENT 1 December 12, 2006 12:24
heat conduction in a solid francesco FLUENT 0 May 27, 2004 18:00
Heat conduction in a solid domain Rene CFX 0 October 20, 2003 03:33
Heat conduction in a solid domain S. Balasubramanyam CFX 10 October 14, 2003 08:57


All times are GMT -4. The time now is 20:29.