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

Coupled heat transfer convective-diffusive

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 12, 2021, 09:17
Default Coupled heat transfer convective-diffusive
  #1
New Member
 
Léo BAZIN
Join Date: Mar 2021
Posts: 3
Rep Power: 5
leobaz is on a distinguished road
Hello everyone,
I'm writting this post because I need to simulate a flow heated by an obstacle in the center of the flow in 2D axis-symetric. I already used BuoyantBoussinesqSimpleFoam to simulate the mixing between a hot flow with a cold one, so I decided to keep using this solver. However, results show that the only heat transfer taken into account is the diffusive heat transfer, as you can see on pictures attached. The heat is not transported by the flow.

I used fixedGradient BC but I also tried with fixedValue and the conclusion remains the same.

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 1 0 0 0];


internalField   uniform 673;

boundaryField
{	
    inlet
    {
        type            fixedValue;
        value           uniform 673;
    }
	
    outlet
    {
        type            zeroGradient;
    }
	
    wall
    {
        type            zeroGradient;
    }


	obstacle
	{
        type            fixedGradient;
		gradient		uniform 500;
		
    }

    wedge0
    {
        type            wedge;
    }
	
    wedge1
    {
        type            wedge;
    }	

}




// ************************************************************************* //
I can provide other files of course but I wonder if the problem is not about the solver itself.
So my questions are : - Can we use BuoyantBoussinesqSimpelFoam to solve this type of problem ?
- Is there some options available to enable convection heat transfer in buoyant(Boussinesq)SimpleFoam ?
- Do I have to use chtMultiRegionFoam and model the heater/obstacle as a solid ?

Regards,
Léo.
Attached Images
File Type: jpg velocity_obstacle.jpg (19.0 KB, 4 views)
File Type: jpg temperature_obstacle.jpg (15.7 KB, 4 views)
leobaz is offline   Reply With Quote

Reply

Tags
convective heat transfer, coupled heat transfer


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
Convective heat transfer coefficient huizju OpenFOAM Running, Solving & CFD 0 July 7, 2020 07:25
Convective Heat Transfer Validation csaban CFX 5 May 12, 2020 18:37
Surface Heat Transfer Coefficient driven by a UDF, using coupled wall ryanbezz11 CFD Freelancers 1 March 16, 2018 03:01
Difficulty In Setting Boundary Conditions Moinul Haque CFX 4 November 25, 2014 17:30
Fifth order anti diffusive scheme for 1D hyperbolic heat transfer areffallah Main CFD Forum 0 November 3, 2010 04:48


All times are GMT -4. The time now is 13:47.