CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT > Fluent UDF and Scheme Programming

UDF for spatially dependent momentum source

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 17, 2014, 17:48
Default UDF for spatially dependent momentum source
  #1
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
Hello

I need to define a momentum source which is dependent on the location of the cells. My model is 2D only and time-independent, so all I want is to be able to define x_mom(x,y).

I have data for the momentum source, which I approximnate with a 2nd degree polynomial fit.

I was able to compile and hook up my UDF, but the results that I get are not correct. I was able to run the simulation with a simple UDF in which I set the source to be constant (spatially independent and about the average of the values returned by the polynomial fit), and I got reasonable results. Therefore, I think that the problem might be with C_CENTROID(x,c,t).

What value does it actually return for x? Is it in meters / whatever unit is defined? Is there an easy way to verify which values are returned for x?

Any other idea why this function does not work properly?

I attached my code:

#include "udf.h"
#include <math.h>

DEFINE_SOURCE(xmom_source,c,t,dS,eqn)
{
real source;
real x0y0, x1y0, x0y1, x2y0, x1y1, x0y2;
real p00, p10, p01, p20, p11, p02;

real x[ND_ND];

C_CENTROID(x,c,t);

x0y0 = 1;
x1y0 = abs(x[0]);
x0y1 = x[1];
x2y0 = pow(x[0],2.0);
x1y1 = abs(x[0])*x[1];
x0y2 = pow(x[1],2.0);

// define the polinomial coefficients
p00 = -0.53825458;
p10 = 73.53581559;
p01 = 774.0253865;
p20 = -1931.148778;
p11 = 3762.806598;
p02 = -85702.19479;

// Define the momentum source
source = p00*x0y0+p10*x1y0+p01*x0y1+p20*x2y0+p11*x1y1+p02*x 0y2;

dS[eqn] = 0;
return source;
}

Your help is much appreciated!

Thanks
ngallandat3 is offline   Reply With Quote

Old   July 17, 2014, 18:16
Default
  #2
Senior Member
 
Syavash Asgari
Join Date: Apr 2010
Posts: 473
Rep Power: 18
syavash is on a distinguished road
Quote:
Originally Posted by ngallandat3 View Post
Hello

I need to define a momentum source which is dependent on the location of the cells. My model is 2D only and time-independent, so all I want is to be able to define x_mom(x,y).

I have data for the momentum source, which I approximnate with a 2nd degree polynomial fit.

I was able to compile and hook up my UDF, but the results that I get are not correct. I was able to run the simulation with a simple UDF in which I set the source to be constant (spatially independent and about the average of the values returned by the polynomial fit), and I got reasonable results. Therefore, I think that the problem might be with C_CENTROID(x,c,t).

What value does it actually return for x? Is it in meters / whatever unit is defined? Is there an easy way to verify which values are returned for x?

Any other idea why this function does not work properly?

I attached my code:

#include "udf.h"
#include <math.h>

DEFINE_SOURCE(xmom_source,c,t,dS,eqn)
{
real source;
real x0y0, x1y0, x0y1, x2y0, x1y1, x0y2;
real p00, p10, p01, p20, p11, p02;

real x[ND_ND];

C_CENTROID(x,c,t);

x0y0 = 1;
x1y0 = abs(x[0]);
x0y1 = x[1];
x2y0 = pow(x[0],2.0);
x1y1 = abs(x[0])*x[1];
x0y2 = pow(x[1],2.0);

// define the polinomial coefficients
p00 = -0.53825458;
p10 = 73.53581559;
p01 = 774.0253865;
p20 = -1931.148778;
p11 = 3762.806598;
p02 = -85702.19479;

// Define the momentum source
source = p00*x0y0+p10*x1y0+p01*x0y1+p20*x2y0+p11*x1y1+p02*x 0y2;

dS[eqn] = 0;
return source;
}

Your help is much appreciated!

Thanks
Hi,
You could write another UDF; e.g. a Define_Adjust to calculate the source terms for your particular zone and write data along with coordinates into a file. There, you may examine the value calculated for each cell and find where the problem lies.
P.S.: Units are all in SI as far as I know.
Goodluck
syavash is offline   Reply With Quote

Old   July 17, 2014, 20:19
Default
  #3
Senior Member
 
Join Date: Aug 2011
Posts: 421
Blog Entries: 1
Rep Power: 21
blackmask will become famous soon enough
What is the bounding-box of your computational domain?

What is your result?
What is the result you expected?

Your udf seems to be correct if your momentum source take the form of
Code:
xmom(x, y)=pij|x|^i*|y|^j, 0<=i<=2, 0<=j<=2
blackmask is offline   Reply With Quote

Old   July 17, 2014, 22:30
Default
  #4
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
syavash: Thanks for your reply. Could you please help me further and give me a rough outline on how to write such a function (Define_Adjust)? I think this would really help me find out where is the problem.
I defined my coefficients assuming SI units, so this should be fine.

blackmask: my domain is a rectangle (-0.01 < x < 0.01, 0 < y < 0.05). This is the reason why I assume the results I get are not correct: the values of the source term in y range from 0 to 4 N (depending on the location). If I define a constant source of 4 N, I get velocities in y of roughly 0.6 m/s, which what I expect. But when I use the polynomial fit to approximate the source, it computes values several orders of magnitude higher (5000 m/s). I must add that I double checked the values of the polynomial coefficients separately, so they should be correct.
My source term should indeed have the form you wrote down. Any idea on how to fix that?
ngallandat3 is offline   Reply With Quote

Old   July 18, 2014, 03:29
Default
  #5
Senior Member
 
Join Date: Aug 2011
Posts: 421
Blog Entries: 1
Rep Power: 21
blackmask will become famous soon enough
Is there a typo in your post? The range for y should be 0 < y < 0.005, right? otherwise the maximum value for the force should be two order of magnitude higher, i.e., about 400 N.

What is the output of grid/check?
blackmask is offline   Reply With Quote

Old   July 18, 2014, 06:29
Default
  #6
Senior Member
 
Syavash Asgari
Join Date: Apr 2010
Posts: 473
Rep Power: 18
syavash is on a distinguished road
Quote:
Originally Posted by ngallandat3 View Post
syavash: Thanks for your reply. Could you please help me further and give me a rough outline on how to write such a function (Define_Adjust)? I think this would really help me find out where is the problem.
I defined my coefficients assuming SI units, so this should be fine.
The macro can take the following form:
DEFINE_ADJUST(my_adjust,d)
{
Thread *t;
cell_t c;
FILE *fp; /* define a local pointer fp of type FILE */
fp = fopen("data.txt","w");
real x[ND_ND];
real source;
real x0y0, x1y0, x0y1, x2y0, x1y1, x0y2;
real p00, p10, p01, p20, p11, p02;
thread_loop_c(t, d)
{
begin_c_loop(c, t)
{
C_CENTROID(x,c,t);
x0y0 = 1;
x1y0 = abs(x[0]);
x0y1 = x[1];
x2y0 = pow(x[0],2.0);
x1y1 = abs(x[0])*x[1];
x0y2 = pow(x[1],2.0);

// define the polinomial coefficients
p00 = -0.53825458;
p10 = 73.53581559;
p01 = 774.0253865;
p20 = -1931.148778;
p11 = 3762.806598;
p02 = -85702.19479;
// Define the momentum source
source = p00*x0y0+p10*x1y0+p01*x0y1+p20*x2y0+p11*x1y1+p02*x 0y2;
fprintf (fp, "% f% f% f% f", x[0],x[1],x[2],source);
}
end_c_loop(c, c_thread)
}
}
Bests

Last edited by syavash; July 19, 2014 at 07:45.
syavash is offline   Reply With Quote

Old   July 19, 2014, 06:56
Default
  #7
Senior Member
 
Join Date: Aug 2011
Posts: 421
Blog Entries: 1
Rep Power: 21
blackmask will become famous soon enough
I have corrected a syntax error in your code.
Code:
DEFINE_ADJUST(my_adjust,d)
{
    Thread *t;
    cell_t c;
    FILE *fp; /* define a local pointer fp of type FILE */
    fp = fopen("data.txt","w");
    real x[ND_ND];
    real x0y0, x1y0, x0y1, x2y0, x1y1, x0y2;
    real p00, p10, p01, p20, p11, p02;
    real source; // if it is not declared in the file scope
    thread_loop_c(t, d)
    {
        begin_c_loop(c, t)
        {
            C_CENTROID(x,c,t);
            x0y0 = 1;
            x1y0 = abs(x[0]);
            x0y1 = x[1];
            x2y0 = pow(x[0],2.0);
            x1y1 = abs(x[0])*x[1];
            x0y2 = pow(x[1],2.0);

            // define the polinomial coefficients
            p00 = -0.53825458;
            p10 = 73.53581559;
            p01 = 774.0253865;
            p20 = -1931.148778;
            p11 = 3762.806598;
            p02 = -85702.19479;
            // Define the momentum source
            source = p00*x0y0+p10*x1y0+p01*x0y1+p20*x2y0+p11*x1y1+p02*x0y2;
            fprintf (fp, "%f%f%f%f\n", x[0],x[1],x[2],source);
        }
        end_c_loop(c,t) // you have missed this line, i.e., a right curly bracket
    }
}
blackmask is offline   Reply With Quote

Old   July 22, 2014, 09:28
Default
  #8
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
Thanks, syavash and blackmask.

As blackmask pointed out, there was a mistake regarding the domain. I fixed this, but I'd still like to be able to read the actual values computed by my UDF.

I think that you did 95% of the job for me, but I was still unable to do the remaining 5% without further help

1) Where do I save the DEFINE_ADJUST function?
2) How do I link it to fluent?

and, lastly, in line 5-6:

FILE *fp; /* define a local pointer fp of type FILE */
fp = fopen("data.txt","w");

The pointer to the file is fully defined as it is now. There is no need for further command, right?

Again, thanks for your help.
ngallandat3 is offline   Reply With Quote

Old   July 22, 2014, 09:31
Default
  #9
Member
 
David
Join Date: Aug 2012
Posts: 48
Rep Power: 13
GM_XIII is on a distinguished road
Quote:
Originally Posted by ngallandat3 View Post
Thanks, syavash and blackmask.

As blackmask pointed out, there was a mistake regarding the domain. I fixed this, but I'd still like to be able to read the actual values computed by my UDF.

I think that you did 95% of the job for me, but I was still unable to do the remaining 5% without further help

1) Where do I save the DEFINE_ADJUST function?
2) How do I link it to fluent?

and, lastly, in line 5-6:

FILE *fp; /* define a local pointer fp of type FILE */
fp = fopen("data.txt","w");

The pointer to the file is fully defined as it is now. There is no need for further command, right?

Again, thanks for your help.
I dont fully understand what you mean with 1, the macro is saved in a .c file and for 2 you have to hook the function in Define> User-Defined>Functions Hooks in the adjust field
GM_XIII is offline   Reply With Quote

Old   July 23, 2014, 09:01
Default
  #10
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
Thank you. I'm trying to incorporate all your comments and will get back to you if needed!
ngallandat3 is offline   Reply With Quote

Old   July 24, 2014, 14:07
Default
  #11
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
Hello,

I have tried to compile the define_adjust function, but fluent gives an error when compiling (attached). I found out that the error is due to line 8 (fp = fopen("data.txt","w") because it gets compiled without any problem if I comment that line.
Am I missing something? Any header file that should be included? Thanks for the help.

#include "udf.h"
#include "stdio.h"
DEFINE_ADJUST(my_adjust,d)
{
Thread *t;
cell_t c;
FILE *fp; /* define a local pointer fp of type FILE */
fp = fopen("data.txt","w");
real x[ND_ND];
real x0y0, x1y0, x0y1, x2y0, x1y1, x0y2;
real p00, p10, p01, p20, p11, p02;
real source; // if it is not declared in the file scope
thread_loop_c(t, d)
{
begin_c_loop(c, t)
{
C_CENTROID(x,c,t);
x0y0 = 1;
x1y0 = abs(x[0]);
x0y1 = x[1];
x2y0 = pow(x[0],2.0);
x1y1 = abs(x[0])*x[1];
x0y2 = pow(x[1],2.0);

// define the polinomial coefficients
p00 = -0.53825458;
p10 = 73.53581559;
p01 = 774.0253865;
p20 = -1931.148778;
p11 = 3762.806598;
p02 = -85702.19479;
// Define the momentum source
source = p00*x0y0 + p10*x1y0 + p01*x0y1 + p20*x2y0 + p11*x1y1 + p02*x0y2;
fprintf (fp, "%f%f%f%f\n", x[0],x[1],x[2],source);
}
end_c_loop(c,t)
}
}


The error looks like that:

..\..\src\define_adjust.c(36) : error C2275: 'real' : illegal use of this type as an expression
c:\program files\ansys inc\v145\fluent\fluent14.5.7\src\global.h(166) : see declaration of 'real'
..\..\src\define_adjust.c(36) : error C2146: syntax error : missing ';' before identifier 'x'
..\..\src\define_adjust.c(36) : error C2065: 'x' : undeclared identifier
..\..\src\define_adjust.c(36) : error C2109: subscript requires array or pointer type
..\..\src\define_adjust.c(37) : error C2275: 'real' : illegal use of this type as an expression
c:\program files\ansys inc\v145\fluent\fluent14.5.7\src\global.h(166) : see declaration of 'real'
..\..\src\define_adjust.c(37) : error C2146: syntax error : missing ';' before identifier 'x0y0'
..\..\src\define_adjust.c(37) : error C2065: 'x0y0' : undeclared identifier
..\..\src\define_adjust.c(37) : error C2065: 'x1y0' : undeclared identifier
..\..\src\define_adjust.c(37) : error C2065: 'x0y1' : undeclared identifier
..\..\src\define_adjust.c(37) : error C2065: 'x2y0' : undeclared identifier
..\..\src\define_adjust.c(37) : error C2065: 'x1y1' : undeclared identifier
..\..\src\define_adjust.c(37) : error C2065: 'x0y2' : undeclared identifier
..\..\src\define_adjust.c(38) : error C2275: 'real' : illegal use of this type as an expression
c:\program files\ansys inc\v145\fluent\fluent14.5.7\src\global.h(166) : see declaration of 'real'
..\..\src\define_adjust.c(38) : error C2146: syntax error : missing ';' before identifier 'p00'
..\..\src\define_adjust.c(38) : error C2065: 'p00' : undeclared identifier
..\..\src\define_adjust.c(38) : error C2065: 'p10' : undeclared identifier
..\..\src\define_adjust.c(38) : error C2065: 'p01' : undeclared identifier
..\..\src\define_adjust.c(38) : error C2065: 'p20' : undeclared identifier
..\..\src\define_adjust.c(38) : error C2065: 'p11' : undeclared identifier
..\..\src\define_adjust.c(38) : error C2065: 'p02' : undeclared identifier
ngallandat3 is offline   Reply With Quote

Old   July 24, 2014, 21:25
Default
  #12
Senior Member
 
Join Date: Aug 2011
Posts: 421
Blog Entries: 1
Rep Power: 21
blackmask will become famous soon enough
I have no problem compiling this code.

You might want to change
Code:
#include "stdio.h"
into
Code:
#include <stdio.h>
blackmask is offline   Reply With Quote

Old   July 25, 2014, 15:17
Default
  #13
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
Thanks for the hints, but it did not work. I still get the same error when compiling. Any other hint why it would not work?

To add to my previous description,I created a data.txt file and saved it in the same folder as the one containing the UDF. Is that correct?

Am I missing any headers?

Again, if I comment
fp = fopen("data.txt","w");
the UDF would be compiled without any error, which makes me doubt because the syntax is exactly the same as described in the UDF guide!

I appreciate your help!
ngallandat3 is offline   Reply With Quote

Old   July 25, 2014, 20:28
Default
  #14
Senior Member
 
Join Date: Aug 2011
Posts: 421
Blog Entries: 1
Rep Power: 21
blackmask will become famous soon enough
Did you interpret rather than compile your UDF?
blackmask is offline   Reply With Quote

Old   July 27, 2014, 12:21
Default
  #15
New Member
 
Noris
Join Date: Jun 2014
Posts: 11
Rep Power: 11
ngallandat3 is on a distinguished road
I compiled it.
I tried to interpret it after reading your post, but the same error is displayed.
ngallandat3 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
[swak4Foam] groovyBC in openFOAM-2.0 for parabolic velocity bc ofslcm OpenFOAM Community Contributions 25 March 6, 2017 10:03
UDF for source term in momentum equation Enrico FLUENT 9 May 30, 2014 11:34
Problem in UDF time dependent vloumetric heat source eng_yasser_2020 Fluent UDF and Scheme Programming 0 March 30, 2014 08:07
Can Anyone help me to write a momentum source udf ? Ozora Fluent UDF and Scheme Programming 0 December 11, 2013 03:44
DxFoam reader update hjasak OpenFOAM Post-Processing 69 April 24, 2008 01:24


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