CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > CFX

ADDITIONAL VARIABLES LIMITERS

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 20, 2006, 11:18
Default ADDITIONAL VARIABLES LIMITERS
  #1
N.P
Guest
 
Posts: n/a
Dear CFX users,

I am using 2 additional variables in CFX-10 and i am solving them as transport equations. I would like to apply lower limits on them so that i.e.

NumberDensity >= 1 (#/m3) and Area >= Area of a single particle i.e. 5e-19 (m2/m3)

Is there a way that i can do something like that in CEL ? I have tried to use the step function and multiply it with the negative source terms of those 2 variables but it had no effect (as the actual problem is because them 2 variables are transported and hence the software needs something to tell it what are the limims for those variables.)

Do i have to use user Fortran? If thats the case could you please provide me with an example as it will be impossible to find out on my own how to do this.

Cheers, NP
  Reply With Quote

Old   October 20, 2006, 12:16
Default Re: ADDITIONAL VARIABLES LIMITERS
  #2
opaque
Guest
 
Posts: n/a
Dear N.P.

Why do you need limiters on a transported equation? The equation itself should produce bounded variables to satisfy the physics..

Are you triying to limit the numerics? How come is the variable getting out of bounds? Do you have source/sinks in your AV equation? A general advection+diffusion equation w/o sources should produce results bounded by the boundary conditions unless some numerics issue ocurrs.

I am puzzled..

Opaque
  Reply With Quote

Old   October 20, 2006, 12:33
Default Re: ADDITIONAL VARIABLES LIMITERS
  #3
N.P
Guest
 
Posts: n/a
Dear Opaque ,

My problem is a reactive flow in a pipe (similar to one of the tutorials). The CFD calculations and the species calculations are solved properly to very low RMS (<1e-9). Then i have created 2 additional variables . The first variable is accounting for the NumberDensity of particles through nucleation [#/m3 or #/kg of fluid] and the second is the overall particle area [m2/m3 or m2/kg of fluid]. I am solving them as a single phase flow and the 2 additional variables do not effect the other CFD variables. In the source terms for those 2 add. variables there are some negative terms accounting for other physical processes like agglomeration and sintering. My problem is that the equations are not solved properly and that is because once the negative sources are dominant the solution takes very unrealistic values ie. NumberDensity<<1 . I want to create a limiter so that i will be able to limit the lower end of the additional variables. Is there a way i can do this in CEL ?

I have used a step function in order to nulify the effect of the negative sources terms once the variables are below my limits (i.e. N<=1) but this doesnt stop the variables from transporting across the domain and dropping even below 1. I need 1 to be my lowest end i.e we cant have 1/2 of a particle.

Cheers and thanks for your time,

NP

  Reply With Quote

Old   October 20, 2006, 12:49
Default Re: ADDITIONAL VARIABLES LIMITERS
  #4
opaque
Guest
 
Posts: n/a
Dear N.P.

The problem is with your source term, not the equation nor the solution algorithm.. You must linearize and control your source terms such that the solution is physically bounded.

You want something like

If your source is negative, ie. sink

Source Coeff = YourSource /max(tolerance,YourAv-YourAvMin)

Source Coefficient = Source Coeff*(YourAv-YourAvMin)

As you can see, the source is multiplied by 1, unless it changes sign.. In that case, the source coefficient becomes very large (based on the tolerance) and prevent the solution to go unbounded from below..

You can work out the upper bounding for the case the source is positive.. How do you do that in CEL? Perhaps a combination of the Fortran sign function, and the CEL step function..

Good luck,

Opaque
  Reply With Quote

Old   October 20, 2006, 13:53
Default Re: ADDITIONAL VARIABLES LIMITERS
  #5
Robin
Guest
 
Posts: n/a
You can mimick the Fortran 'sign' function in CEL.

By definition, the Fortran 'sign' funtion gives you:

CASE 1: If y &ge; 0 then

sign(x,y) = abs(x) , CASE 2: If y < 0 then

sign(x,y) = - abs(x)

I.e 'sign(x,y) returns the absolute value of x with the sign of y. To do this in CEL write an expression as:

sign xy = abs(x)*y/abs(y)

Regards, Robin
  Reply With Quote

Old   December 1, 2011, 07:47
Default
  #6
Senior Member
 
Join Date: Jan 2010
Location: Germany
Posts: 268
Rep Power: 17
Zaktatir is on a distinguished road
it is little bit old but opaque what do you mean with limiting the AV by means of that source coefficient
Zaktatir 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
emag beta feature: charge density charlotte CFX 4 March 22, 2011 09:14
what is boundary-only additional variables? frank CFX 0 September 6, 2008 22:11
additional variables' effect ariel CFX 9 April 2, 2008 00:41
user SUBROUTINE for additional variables Tuks CFX 0 November 8, 2005 02:09
Replace periodic by inlet-outlet pair lego CFX 3 November 5, 2002 20:09


All times are GMT -4. The time now is 05:45.