|
[Sponsors] |
How to apply surface heating to a solid on a patch/wall that is an interface with a g |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
November 17, 2022, 09:55 |
How to apply surface heating to a solid on a patch/wall that is an interface with a g
|
#1 |
New Member
Chris
Join Date: Jan 2022
Posts: 23
Rep Power: 4 |
Dear OpenFoam users I have the following issue.
Setup: I am trying to build a case in OpenFoam v9 using the solver chtMultiregionFoam. The case consist of 5 regions. 3 of air, 1 of solid material, and 1 of liquid. I broke the air region into 3 because the way I make my mesh solid_to_air and air_to_solid are defined automatically but I want to segment that interface to be able address different part of it separately. Problem: For solid_to_air1 interface I would like to apply heating to the surface of the solid as a means to simulate heating from solar radiation. In the past my model didn’t include air region(s), which meant that that patch was an external boundary, therefore I could simply use Code:
boundaryField { in_radiation { type externalWallHeatFluxTemperature; mode power; Q 40000; kappaMethod solidThermo; kappa none; value $internalField; } } but now since that wall is also an interface I have to use a different type boundary condition for the thermal coupling: Code:
boundaryField { "solid_to_air*" { type compressible::turbulentTemperatureRadCoupledMixed; value $internalField; Tnbr T; kappaMethod solidThermo; kappa none; } } What I looked into so far: 1. The use of heatSource in the fvModel file. The problem with that is that I don’t see, from the various examples, how to confine the heating just on the interface. Also that method seems to be limited only to volumetric heating. 2. I’m currently looking into using semiImplicitSource in the fvModel file. I’m still in the process of understanding how I can use a semiImplicitSource for h field to simulate surface heating. It seems to me that it suffers from the same issues as the heatSource method. Extra considerations: 1. The possible solutions should be compatible with the application of a radiation model (View factor to be more specific). 2. Ideally the solution should be generalizable such that I would be able, in the future, to apply non-uniform heating. This is not a must though, for now at least. If anyone has a suggested solution or some relevant resources to recommend please let me know. Best regards, Chris |
|
Tags |
boundary condition, chtmultiregionfoam, heating |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Error in gmshToFoam on ESI v2106 | siefer92 | OpenFOAM Programming & Development | 4 | July 17, 2021 06:11 |
My radial inflow turbine | Abo Anas | CFX | 27 | May 11, 2018 02:44 |
Heating efficiency through solid surface | kjetil | CFX | 2 | June 20, 2016 08:36 |
solid edge problem....can you help? | cindy | Main CFD Forum | 3 | April 5, 2004 14:43 |
Replace periodic by inlet-outlet pair | lego | CFX | 3 | November 5, 2002 21:09 |