|
[Sponsors] |
October 12, 2021, 10:17 |
Coupled heat transfer convective-diffusive
|
#1 |
New Member
Léo BAZIN
Join Date: Mar 2021
Posts: 3
Rep Power: 5 |
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; } } // ************************************************************************* // 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. |
|
Tags |
convective heat transfer, coupled heat transfer |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Convective heat transfer coefficient | huizju | OpenFOAM Running, Solving & CFD | 0 | July 7, 2020 08:25 |
Convective Heat Transfer Validation | csaban | CFX | 5 | May 12, 2020 19:37 |
Surface Heat Transfer Coefficient driven by a UDF, using coupled wall | ryanbezz11 | CFD Freelancers | 1 | March 16, 2018 04:01 |
Difficulty In Setting Boundary Conditions | Moinul Haque | CFX | 4 | November 25, 2014 18:30 |
Fifth order anti diffusive scheme for 1D hyperbolic heat transfer | areffallah | Main CFD Forum | 0 | November 3, 2010 05:48 |