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

UDF problems

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 12, 2005, 11:55
Default UDF problems
  #1
Winnie
Guest
 
Posts: n/a
Hi,

I am trying to calculate the intersection angle between the velocity and the gradient of the temperature using UDF. My short code is as follows:

#include "udf.h"

DEFINE_ADJUST(Angle,domain)

{ Thread *thread; cell_t c; float TX,TY,TZ,TG; float U,V,W,Vel;

thread_loop_c(thread,domain)

{

begin_c_loop(c, thread)

{

TX = C_T_G(c,thread)[0];

TY = C_T_G(c,thread)[1];

TZ = C_T_G(c,thread)[2];

TG = sqrt(pow(TX,2.0)+pow(TY,2.0)+pow(TZ,2.0));

U = C_U(c,thread);

V = C_V(c,thread);

W = C_W(c,thread);

Vel = sqrt(pow(U,2.0)+pow(V,2.0)+pow(W,2.0));

C_UDMI(c,thread,0) = acos((U*TX+V*TY+W*TZ)/TG/Vel);

}

end_c_loop(c, thread)

} }

The compile was good but when I calculated for several iterations and tried to plot the result, the values are zero everywhere.

Can anyone please please help me with this program or give me some advice?

Thank you so much.

I am nearly exhausted by this problem.

Winnie
  Reply With Quote

Old   August 12, 2005, 12:09
Default Re: UDF problems
  #2
pUl|
Guest
 
Posts: n/a
hmm, they (fluent) recommend running some ScalarReconstruction routine to allocate memory internally when calculating the gradients of volume fraction. I'm not sure whether this is applicable to temperature gradients as well but it is worth a try. If you have access to the OTS, please check solution 982 to see what I mean.
  Reply With Quote

Old   August 12, 2005, 12:32
Default Re: UDF problems
  #3
Winnie
Guest
 
Posts: n/a
Thank you!

Forgive my ignorance, what is OTS?

Winnie
  Reply With Quote

Old   August 12, 2005, 12:33
Default Re: UDF problems
  #4
pUl|
Guest
 
Posts: n/a
Online Technical Support (http://clarify.fluent.com/eSupport)
  Reply With Quote

Old   August 12, 2005, 12:47
Default Re: UDF problems
  #5
Winnie
Guest
 
Posts: n/a
Thanks.

I tried the reconstruction gradient and it still doesn't work.

I don't have an account of OTS since I am a student. Can you provide more information?

Thanks again.

Winnie
  Reply With Quote

Old   August 12, 2005, 12:48
Default Re: UDF problems
  #6
pUl|
Guest
 
Posts: n/a
Here is an example:

#include "udf.h"
#define CON 1

DEFINE_ADJUST(store_gradient, domain)
{
Thread *t;
Thread **pt;
cell_t c;
int phase_domain_index = 0.;
Domain *pDomain = DOMAIN_SUB_DOMAIN(domain,phase_domain_index);
{
Alloc_Storage_Vars(pDomain,SV_VOF_RG,SV_VOF_G,SV_N ULL);
Scalar_Reconstruction(pDomain, SV_VOF,-1,SV_VOF_RG,NULL);
Scalar_Derivatives(pDomain,SV_VOF,-1,SV_VOF_G,SV_VOF_RG,
Vof_Deriv_Accumulate);
}


mp_thread_loop_c (t,domain,pt)
if (FLUID_THREAD_P(t))
{
Thread *ppt = pt[phase_domain_index];

begin_c_loop (c,t)
{
C_UDMI(c,t,0) = C_VOF_G(c,ppt)[0];
}
end_c_loop (c,t)
}
Free_Storage_Vars(pDomain,SV_VOF_RG,SV_VOF_G,SV_NU LL);
}
Arjun Jayakumar likes this.
  Reply With Quote

Old   August 12, 2005, 12:55
Default Re: UDF problems
  #7
dirk
Guest
 
Posts: n/a
The temperature gradient is not stored by default. In the TUI go to "solve set expert" and disable "keep temporary solver memory from being freed". Then you should be able to use temperature gradients.

Dirk
  Reply With Quote

Old   August 12, 2005, 12:57
Default Re: UDF problems
  #8
Winnie
Guest
 
Posts: n/a
Hi,

Thanks a lot!

I think this case is quite more complex than mine since I am working on single phase flow.

I have got a converged solution for my problem, but I need know the intersection angle, therefore, I used UDF. I allocate a user defined memory, and compiles this code into FLUENT.

Is DEFINE_ADJUST macro used right?

Can you give me some other advices other than the method I used?

Thank you.

Winnie
  Reply With Quote

Old   August 12, 2005, 13:00
Default Re: UDF problems
  #9
pUl|
Guest
 
Posts: n/a
Try what dirk says first.

When you use the UDF, are you also hooking up the adjust function to the solver?
  Reply With Quote

Old   August 12, 2005, 13:03
Default Re: UDF problems
  #10
Winnie
Guest
 
Posts: n/a
Do you mean 'disable'?

I checked it, it is 'no'.

Any more suggestions?

Thank you

Winnie
  Reply With Quote

Old   August 12, 2005, 13:08
Default Re: UDF problems
  #11
dirk
Guest
 
Posts: n/a
Sorry, it has to be "enable", so you have to set it to "yes".

  Reply With Quote

Old   August 12, 2005, 13:10
Default Re: UDF problems
  #12
Winnie
Guest
 
Posts: n/a
No, it didn't work.

I didn't change the default set in FLUENT. I think adjust function is not hookedto the solver.

Winnie
  Reply With Quote

Old   August 12, 2005, 13:12
Default Re: UDF problems
  #13
Winnie
Guest
 
Posts: n/a
I tried both. But it didn't work.

What does that mean? If I disabled it, then the temperature gradient will not be calcualted by solver?

Thanks.

Winnie
  Reply With Quote

Old   August 12, 2005, 13:19
Default Re: UDF problems
  #14
dirk
Guest
 
Posts: n/a
The temperature gradient is calculated but you can only access it while energy equation is solved. If you let Fluent store the gradients with the command I told then you can access the gradients at any time. But you have to make at least one iteration after you set that command and then execute your UDF. It should work then in my opinion.

Dirk
  Reply With Quote

Old   August 12, 2005, 13:44
Default Re: UDF problems
  #15
Winnie
Guest
 
Posts: n/a
Thanks, dirk

I have tried. And still can not solve the problem.

What do you think of my code? Do you think it is OK for calculating the intersection angle between the velocity and the temperature gradient?

Thank you for the help.

Winnie
  Reply With Quote

Old   August 12, 2005, 17:03
Default Re: UDF problems
  #16
dirk
Guest
 
Posts: n/a
I just tried your UDF. It seems to work as I get non zero values for UDM 0. By the way, what is the physical sense of this intersection angle ?
  Reply With Quote

Old   August 13, 2005, 04:53
Default UDF problems
  #17
Firas
Guest
 
Posts: n/a
Hi iam just starting with UDF i used unsteady BC for velocity inlet that mentioned in manual i stored the file at C:\ when asking program to cpompile the file he cant read first line #include "udf.h" the qustion should i have cpp compiler to do calaculation and if not what to do. Best regards
  Reply With Quote

Old   August 13, 2005, 05:33
Default Re: UDF problems
  #18
Firas
Guest
 
Posts: n/a
dear all when i run on of the manual example i have the following at line 1 that is include udf.h should i have c++ or what to do. thanks

cpp -IC:\FLUENT.INC\fluent6.0/src -IC:\FLUENT.INC\fluent6.0/cortex/src -IC:\FLUENT.INC\fluent6.0/client/src -IC:\FLUENT.INC\fluent6.0/multiport/src -I. -DUDFCONFIG_H="<udfconfig.h>" unsteadyError: unsteady: line 1: parse error.
  Reply With Quote

Old   August 14, 2005, 06:29
Default Re: UDF problems
  #19
Winnie
Guest
 
Posts: n/a
I am trying to do the optomization to enhance the convective heat transfer. And lower this angle, the better the heat transfer rate.

I still can't get the code work in my case, can you please tell me the detailed procedure you did? And does it have any relationship with the mesh? my mesh is irregular.

Thank you. dirk.

Winnie
  Reply With Quote

Old   August 16, 2005, 07:47
Default Re: UDF problems
  #20
dirk
Guest
 
Posts: n/a
I took your file, hooked it as interpreted UDF, enabled the storage of the gradients, set the UDF as an adjust function, set the number of UDM to 1 and iterated. Maybe you should define it as an execute-on-demand, so it doesn't have to be executed after every iteration.
  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
Dynamic Mesh UDF Qureshi FLUENT 7 March 23, 2017 07:37
parse error while interpreting udf Kristin Fluent UDF and Scheme Programming 3 March 15, 2012 06:43
UDF parallel error: chip-exec: function not found????? shankara.2 Fluent UDF and Scheme Programming 1 January 16, 2012 22:14
problems with UDF to set contact angle poiuy219 Main CFD Forum 0 April 30, 2009 10:43
I need UDF help. S.Whitney FLUENT 0 October 15, 2007 11:29


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