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

how to define transient flow in fluent?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 10, 2003, 22:28
Default how to define transient flow in fluent?
  #1
cynthia
Guest
 
Posts: n/a
Want to analysis the press fluctuation caused by the quick change of the inlet velocity? Thanks
  Reply With Quote

Old   March 11, 2003, 05:12
Default Re: how to define transient flow in fluent?
  #2
Volker Pawlik
Guest
 
Posts: n/a
You need to create an UDF ans of course switch the solver to unsteady. See the UDF-Tutorials or the examples in the UDF-Handbook. They provide a UDF with a sinus-based time dependent inlet-function:

************************************************** ********************/

/* unsteady.c */

/* UDF for specifying a transient velocity profile boundary condition */ /************************************************** ********************/

#include "udf.h"

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

begin_f_loop(f, thread)

{

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

F_PROFILE(f, thread, position) = 20. + 5.0*sin(10.*t);

} end_f_loop(f, thread) }

Volker
  Reply With Quote

Old   March 11, 2003, 13:36
Default Re: how to define transient flow in fluent?
  #3
Turtle
Guest
 
Posts: n/a
Right! As Volker mentioned, you can use as the inlet transient condition with this example file. This file was set for the inlet velocity to change as time like sinusoidal wave. For more detailed, refer the manual and handbook or contact the Fluent inc.
  Reply With Quote

Old   March 11, 2003, 13:37
Default Re: how to define transient flow in fluent?
  #4
Turtle
Guest
 
Posts: n/a
  Reply With Quote

Old   March 12, 2003, 08:53
Default Re: how to define transient flow in fluent?
  #5
cynthia
Guest
 
Posts: n/a
thanks!
  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
Transient Mass flow inlet boundary condition nikhil FLUENT 1 April 16, 2014 09:58
transient result in spray reactor with swirl flow glenn creten Main CFD Forum 1 August 14, 2012 05:10
UDF for transient pressure inlet, mass flow check at nozzle exit and volumetric heat kokoory FLUENT 0 August 17, 2011 02:07
transient compressible flow problem (urgent plz) jehanzeb FLUENT 5 August 3, 2004 08:04
Inviscid Drag at subsonic, subcritical Mach # Axel Rohde Main CFD Forum 1 November 19, 2001 12:19


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