|
[Sponsors] |
June 16, 2014, 19:11 |
|
#21 |
New Member
zahra
Join Date: Jun 2014
Location: Iran-Tehran
Posts: 28
Rep Power: 12 |
Hello,
I am new to openFoam and C++ .I want to use codedFixedValue for a wall with convection boundary condition. for this boundary i have used energy balance and with convection BC i have found following equation. In this equation Ts is the temperature of the boundary and Ta is the ambient temperature and Ti is the internal adjacent cell temperature(internal adjacent cell which is next to the boundary) and c1 and c2 are constant. now i do not know how i can find Ti and how i should define it here in codedFixedValue . and i should know normal distance between internal adjacent cell center and the boundary, how should i do this? |
|
September 8, 2015, 08:41 |
|
#22 |
New Member
Tomladian Bucinara
Join Date: Jan 2015
Posts: 18
Rep Power: 11 |
Hello ajnewman,
I found these replies may provide a solution for the problem that I am struggling with, but I need your help as I am inexperienced in C++. The non uniform inlet boundary condition for my problem could not be expressed in a mathmatical fomula, but only listed in a excel table that provides the coordinates and the corresponding velocity components. It is something like below: x y z ux uy uz 1 0 0 0.1 0.6 0.8 2.5 0.1 0 0.1 0.5 2 3 0.2 0 0.2 0.7 2.8 ... The first three components tells location (z component is 0 for this surface) and the remaining three components are the velocity components. I do not know how to apply the data to the inlet boundary condition. Any help would be greatly appreciated. Tom |
|
October 5, 2015, 04:31 |
timeVaryingMappedFixedValue
|
#23 |
Member
Divyaprakash
Join Date: Jun 2014
Posts: 71
Rep Power: 12 |
Why can't we use timeVaryingMappedFixedValue here? Although I am not too sure what does interpolation in time mean here.
|
|
August 2, 2017, 05:56 |
TemperatureGradient
|
#24 |
New Member
Join Date: Aug 2017
Posts: 1
Rep Power: 0 |
Hey Guys,
im trying to solve a similar problem. My geometry is a rectengular channel with an inlet and outlet. I want to have a rising temperature on the channel walls along the channel (up and down). This is my BC 0/T: dimensions [0 0 0 1 0 0 0]; internalField uniform 0; boundaryField { inlet { type fixedValue; value uniform 293.15; } outlet { type fixedValue; value uniform 473.15; } up { type codedFixedValue; value uniform 383.15; redirectType UpBC; code #{ vector dir=vector(1,0,0); scalarField var=patch().Cf()&dir; scalarField value=var*100+273; operator==(value); #}; } down { type fixedValue; value uniform 383.15; } front { type symmetryPlane; } back { type symmetryPlane; } } I only typed the code in for the upper wall but it will be the same i think for the lower wall. Now i have the Problem, that the code is compiling and running but it wont do anything while running. The up wall always got the uniform 383.15 temperature. What is wrong with the code? Do i need to start a for(....) argument? I hope you can help me AoKiji |
|
November 14, 2017, 23:18 |
|
#25 |
New Member
Harshal Akolekar
Join Date: Aug 2016
Location: Melbourne
Posts: 25
Rep Power: 10 |
Hi,
I am trying to use a pressureDirectedInletVelocity as an inlet boundary condition! However, for the same I need a non-uniform inlet angle distribution. Is that possible in OF2.4? It keeps on throwing an error - compound has already been transfered from token on line 51 the empty compound of type List<vector> Thank you Regards, Harshal |
|
Tags |
non-uniform bc |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to set uniform heating boundary condition? | Sargam05 | OpenFOAM | 0 | September 11, 2012 11:09 |
Need help with boundary conditions: open to atmosphere | Wolle | OpenFOAM | 2 | April 11, 2011 08:32 |
Pressure instability with rhoSimpleFoam | daniel_mills | OpenFOAM Running, Solving & CFD | 44 | February 17, 2011 18:08 |
Boundary condition setting for non-premixed combustion using reactingFoam | skyopener | OpenFOAM | 0 | May 23, 2010 23:55 |
A problem about setting boundary conditions | lyang | Main CFD Forum | 0 | September 19, 1999 19:29 |