|
[Sponsors] |
June 10, 2014, 05:48 |
Temperature table as boundary condition
|
#1 |
New Member
Join Date: Sep 2011
Posts: 16
Rep Power: 15 |
Hi,
I currently want to implement a boundary condition for a wall where the temperature is dependent on its position on this wall. From another program I get a table for the temperature distribution along this wall. Can anyone tell me how to implement such a boundary condition? Thanks in advance for your effort. Regards Philipp Btw. I am using openFoam 2.3.0 |
|
June 10, 2014, 07:11 |
|
#2 |
Senior Member
|
You can do either of these: (1) "codedFixedValue"; (2) "groovyBC"; in OpenFOAM.
I have never tried former patch, It seems bit difficult. I would suggest you to go for "groovyBC". (refer: http://openfoamwiki.net/index.php/Contrib/groovyBC) Use any of these as per your requirement. -- Best Luck! |
|
November 23, 2016, 12:47 |
|
#3 |
Senior Member
alberto
Join Date: Apr 2016
Location: Mexico
Posts: 119
Rep Power: 10 |
Hi
Did you find any way to do that? I want to do something similar, a wall with certain temperature distribution along x. |
|
February 19, 2020, 20:11 |
Setting an equation(scalar temperature) as boundary condition
|
#4 |
New Member
Jobin Raju
Join Date: Nov 2019
Location: Germany
Posts: 3
Rep Power: 6 |
I was looking for the same and after some digging through the internet this is what did the job for me:
//setting a temperature equation: T = x - 0.5 along a boundary (top and bottom of a square cavity) ..in a natural convection simulation// Code:
TopAndBottomWalls { type codedFixedValue; value uniform 0.5; name myBC; code #{ vector dir = vector(1, 0, 0); scalarField var = patch().Cf()&dir; operator==(var-.5); #}; } |
|
Tags |
boundary condition, nonuniform, temperature |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Domain Imbalance | HMR | CFX | 5 | October 10, 2016 06:57 |
Temperature and heat flux wall boundary condition | L. Hamid | FLUENT | 2 | February 10, 2014 00:59 |
Temperature dependant mixed Boundary condition | argonaut | OpenFOAM Pre-Processing | 2 | February 15, 2011 12:02 |
How to apply the temperature boundary condition on the outside of the mould? | alefem | FLOW-3D | 5 | May 25, 2010 06:32 |
boundary condition : temperature | J.D.Yoon | FLUENT | 1 | August 29, 2000 05:08 |