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

transient solid condution

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 3, 2003, 18:38
Default transient solid condution
  #1
Bikash
Guest
 
Posts: n/a
Hi, im using Fluent6. i want to input the source term which is varying with time. just the source term, the boundary conditions are not changing. i have the datas of how the source term is changing with time. how do i input the source term?

it would be a great help if anyone would lead me the way.

regards bikash
  Reply With Quote

Old   December 4, 2003, 04:54
Default Re: transient solid condution
  #2
Andrew Garrard
Guest
 
Posts: n/a
I believe the only way that you can achieve this is with a UDF. If that is the case and you have not created a UDF before then you are faced with a decision of either finding someone who will make one for you, possiable for a fee, or learning UDF programming and doing it yourself.

Check out the UDF manual for Fluent 6.
  Reply With Quote

Old   December 4, 2003, 10:20
Default Re: transient solid condution
  #3
bikash
Guest
 
Posts: n/a
hi andrew

thanks a lot for ur advice. let me try the UDF, hope i can do something.

thank you bikash
  Reply With Quote

Old   December 4, 2003, 22:16
Default Re: transient solid condution
  #4
co2
Guest
 
Posts: n/a
bikash,

take a look at the following udf for varying temperature at a boundary. your udf will look similar but it will act on the source term.

/************************************************** ********************/ /* unsteady.c */ /* UDF for specifying a transient velocity profile boundary condition */ /************************************************** ********************/

#include "udf.h"

DEFINE_PROFILE(unsteady_temp, thread, position) { face_t f;

begin_f_loop(f, thread)

{

real t = RP_Get_Real("flow-time");

F_PROFILE(f, thread, position) = 350. + 5.0*t;

} end_f_loop(f, thread) }

  Reply With Quote

Old   December 5, 2003, 10:33
Default Re: transient solid condution
  #5
bikash
Guest
 
Posts: n/a
hi thanks a lot for ur help.

regards bikash
  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
FSI Transient Thermal Analysis Abduri CFX 1 January 1, 2017 22:54
Transient conduction possible in fluent? jlefevre76 FLUENT 2 February 5, 2013 09:53
Moddeling solid settlement in water tank steady state or transient? 88phil88 CFX 1 March 9, 2011 18:45
Multiple Solid Domains - Interfaces Scott CFX 8 July 31, 2008 15:20
CFX4.3 -build analysis form Chie Min CFX 5 July 12, 2001 23:19


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