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

[swak4Foam] groovyBC, coupling inlet with velocity at specific point location

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 18, 2011, 12:03
Default groovyBC, coupling inlet with velocity at specific point location
  #1
Senior Member
 
Olivier
Join Date: Jun 2009
Location: France, grenoble
Posts: 272
Rep Power: 17
olivierG is on a distinguished road
hello,

I need to link my velocity inlet with the velocity somewhere inside the domain. I know the location / coordinate, but i can't use the coupling betwheen patch.

Can groovyBc do this ?
ex, something like :
Code:
inlet
{
   type   groovyBC;
   variables    "V022@pos(0,2,2)=U";
   valueExpression "(V022 > 1.2) ? 2 : 0";
where v022 is the velocity at coordinate (0,2,2)

regards,
olivier
olivierG is offline   Reply With Quote

Old   August 18, 2011, 12:18
Default
  #2
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by olivierG View Post
hello,

I need to link my velocity inlet with the velocity somewhere inside the domain. I know the location / coordinate, but i can't use the coupling betwheen patch.

Can groovyBc do this ?
Yes. If this is the answer you were looking for read no further

Quote:
ex, something like :
Code:
inlet
{
   type   groovyBC;
   variables    "V022@pos(0,2,2)=U";
   valueExpression "(V022 > 1.2) ? 2 : 0";
where v022 is the velocity at coordinate (0,2,2)

regards,
olivier
Ah. You're here. So a mere "Yes" wasn't enough for you?

The last release of swak4Foam (I see from the syntax that you're a legacy-groovyBC-man, sorry you'll have to move to the darker side of the force) can do this via a sampled set.

Basically what you do is
1. create a sampled set via a special functionObject
2. Address this set via the more universal remote variables mechanism in swak

Have a look at the fillingTheDam-example that comes with swak or at my presentation from this years Workshop to get an idea

Bernhard
gschaider is offline   Reply With Quote

Old   August 18, 2011, 17:44
Default groovyBC; multiple domains
  #3
Member
 
ak
Join Date: May 2011
Posts: 64
Rep Power: 14
newOFuser is on a distinguished road
Hi

I am a relatively new user of OpenFoam, working in the area of combustion dynamics, and needed some help with transient boundary conditions.

The combustion system is divided into 3 components: the inlet channel (non-reacting flow), the combustor (reacting flow computations in this region), and the exhaust (models acoustics using 1D gas dynamics); the three are to be linked by appropriate boundary conditions (ie coupled at the inlet and exit planes of the combustor).

I saw that groovyBC be used for coupling of patches. The sample case for groovyBC defines 3 regions:
Region A: inlet ; interface11
Region B: interface12 ; interface21
Region C: interface22 ; outlet

However, I am interested in performing the reacting simulations only in the combustor region. Could someone please point out how it may be used for the above case, or if there are other ways to implement it?
Any tips would be useful, as I still learning working with OF!

Thanks so much!
amit
newOFuser is offline   Reply With Quote

Old   August 18, 2011, 19:14
Default
  #4
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by newOFuser View Post
Hi

I am a relatively new user of OpenFoam, working in the area of combustion dynamics, and needed some help with transient boundary conditions.

The combustion system is divided into 3 components: the inlet channel (non-reacting flow), the combustor (reacting flow computations in this region), and the exhaust (models acoustics using 1D gas dynamics); the three are to be linked by appropriate boundary conditions (ie coupled at the inlet and exit planes of the combustor).

I saw that groovyBC be used for coupling of patches. The sample case for groovyBC defines 3 regions:
Region A: inlet ; interface11
Region B: interface12 ; interface21
Region C: interface22 ; outlet

However, I am interested in performing the reacting simulations only in the combustor region. Could someone please point out how it may be used for the above case, or if there are other ways to implement it?
Any tips would be useful, as I still learning working with OF!

Thanks so much!
amit
Please don't hijack threads. It makes it rather hard to keep up discussions if the title of the thread has got nothing to do with the content (except that both problems attempt to use the same tool). http://openfoamwiki.net/index.php/Ho...age_Boardpoint 5 (groovyBC in the title of the new thread will surly get my attention)
gschaider is offline   Reply With Quote

Old   August 18, 2011, 20:28
Default
  #5
Member
 
ak
Join Date: May 2011
Posts: 64
Rep Power: 14
newOFuser is on a distinguished road
Thanks for pointing it out. Will take care from now on!
A new thread has been started for the discussion.

Cheers,
ak
newOFuser is offline   Reply With Quote

Old   June 22, 2012, 22:25
Default
  #6
Member
 
Santiago
Join Date: Dec 2009
Posts: 85
Rep Power: 16
gascortado is on a distinguished road
In a related to note, I just need to couple the outlet of a domain (called interface11) with the inlet of another one (called interface 12). Both patches have the same exact number of cells. I do not want/need to perform any kind of averaging or interpolation, just need the velocity and pressure from the end of one domain to be exactly the same in the inlet of the other domain. I'm trying:

interface12
{
type groovyBC;
variables "U_int11@interface11=U;";
valueExpression "U_int11";
}
interface11
{
type inletOutlet;
inletValue uniform (0 0 0);
value uniform (0 0 0);
}


in the U/0 file and:

interface12
{
type groovyBC;
variables "p_int12@interface11=p;";
valueExpression "p_int12";
}
interface11
{
type zeroGradient;
}


in the p/0 file.

I am not getting the desired results. Can anyone tell me what am I doing wrong?? Thanks
gascortado is offline   Reply With Quote

Old   June 23, 2012, 08:44
Default
  #7
Assistant Moderator
 
Bernhard Gschaider
Join Date: Mar 2009
Posts: 4,225
Rep Power: 51
gschaider will become famous soon enoughgschaider will become famous soon enough
Quote:
Originally Posted by gascortado View Post
In a related to note, I just need to couple the outlet of a domain (called interface11) with the inlet of another one (called interface 12). Both patches have the same exact number of cells. I do not want/need to perform any kind of averaging or interpolation, just need the velocity and pressure from the end of one domain to be exactly the same in the inlet of the other domain. I'm trying:

interface12
{
type groovyBC;
variables "U_int11@interface11=U;";
valueExpression "U_int11";
}
interface11
{
type inletOutlet;
inletValue uniform (0 0 0);
value uniform (0 0 0);
}


in the U/0 file and:

interface12
{
type groovyBC;
variables "p_int12@interface11=p;";
valueExpression "p_int12";
}
interface11
{
type zeroGradient;
}


in the p/0 file.

I am not getting the desired results. Can anyone tell me what am I doing wrong?? Thanks
First: the @ tells me that you're using the "old" groovyBC. Even if that feature will be added it surly will only be for the groovyBC that comes with swak4Foam

Second: I have explained that a number of times. Even for an equal number of cells this is currently not possible. Up to know I (nor one of the people I work for) did need it and I have no intention to rush in a feature that is not THAT trivial to test (equal number does not mean equal ordering ... what if the patches are not translatory aligned ... what for parallel cases).

So: you're doing nothing wrong. It just doesn't work that way

Also: for most examples that came up (including yours) I'm not quite sure why people didn't set up the problem with cyclic boundary conditions in the first place
gschaider is offline   Reply With Quote

Reply


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
why there are two point where the velocity didn't converge at velocity inlet zhangxing STAR-CCM+ 0 January 10, 2016 00:51
[blockMesh] error EOF in blockMesh Ahmed Khattab OpenFOAM Meshing & Mesh Conversion 7 May 17, 2012 00:37
Velocity inlet boundary condition for porous medium Chander CFX 3 March 11, 2012 21:18
[swak4Foam] groovyBC for gradual inlet velocity sixwp OpenFOAM Community Contributions 3 April 4, 2011 02:58
Two-Phase Buoyant Flow Issue Miguel Baritto CFX 4 August 31, 2006 12:02


All times are GMT -4. The time now is 04:52.