CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Pre-Processing

Non-uniform Boundary Conditions

Register Blogs Community New Posts Updated Threads Search

Like Tree20Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 16, 2014, 18:11
Default
  #21
New Member
 
zahra
Join Date: Jun 2014
Location: Iran-Tehran
Posts: 28
Rep Power: 11
zahraa is on a distinguished road
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.


Ts= c1*(c2* Ta+Ti )

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?
zahraa is offline   Reply With Quote

Old   September 8, 2015, 07:41
Default
  #22
New Member
 
Tomladian Bucinara
Join Date: Jan 2015
Posts: 18
Rep Power: 11
Tom123 is on a distinguished road
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
Tom123 is offline   Reply With Quote

Old   October 5, 2015, 03:31
Default timeVaryingMappedFixedValue
  #23
Member
 
Divyaprakash
Join Date: Jun 2014
Posts: 68
Rep Power: 11
Divyaprakash is on a distinguished road
Why can't we use timeVaryingMappedFixedValue here? Although I am not too sure what does interpolation in time mean here.
Divyaprakash is offline   Reply With Quote

Old   August 2, 2017, 04:56
Default TemperatureGradient
  #24
New Member
 
Join Date: Aug 2017
Posts: 1
Rep Power: 0
AoKiji is on a distinguished road
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
AoKiji is offline   Reply With Quote

Old   November 14, 2017, 22:18
Default
  #25
New Member
 
Harshal Akolekar
Join Date: Aug 2016
Location: Melbourne
Posts: 25
Rep Power: 9
hakolekar is on a distinguished road
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
hakolekar is offline   Reply With Quote

Reply

Tags
non-uniform bc


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
How to set uniform heating boundary condition? Sargam05 OpenFOAM 0 September 11, 2012 10:09
Need help with boundary conditions: open to atmosphere Wolle OpenFOAM 2 April 11, 2011 07:32
Pressure instability with rhoSimpleFoam daniel_mills OpenFOAM Running, Solving & CFD 44 February 17, 2011 17:08
Boundary condition setting for non-premixed combustion using reactingFoam skyopener OpenFOAM 0 May 23, 2010 22:55
A problem about setting boundary conditions lyang Main CFD Forum 0 September 19, 1999 18:29


All times are GMT -4. The time now is 11:17.