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

periodic flow-solve flow equation

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 18, 2013, 09:41
Default periodic flow-solve flow equation
  #1
Senior Member
 
Join Date: Feb 2011
Posts: 140
Rep Power: 15
Lilly is on a distinguished road
Dear all,

I want to simulate a species transport inside periodic pulsatile flow. A friend of mine is using Open Foam and he told me, that he can calculate the flow once and use this solution later. During the rest of the simulation Open Foam is just calculating the species transport, which saves a lot of calculating time.
I found that you can choose which equations to solve at Fluent as well (Solution Methods->Equations). But how can I choose to consider a periodic pulsatile solution for the flow (and not a constant flow)?

Thanks a million for any help and idea!
Lilly
Lilly is offline   Reply With Quote

Old   February 28, 2013, 03:37
Default
  #2
Senior Member
 
Join Date: Feb 2011
Posts: 140
Rep Power: 15
Lilly is on a distinguished road
Does anybody have an idea how to solve this?
Lilly is offline   Reply With Quote

Old   February 28, 2013, 13:40
Default
  #3
Super Moderator
 
diamondx's Avatar
 
Ghazlani M. Ali
Join Date: May 2011
Location: Tokyo, Japan
Posts: 1,385
Blog Entries: 23
Rep Power: 28
diamondx will become famous soon enough
by periodic you mean profile at the inlet change along a direction ?
__________________
Regards,
New to ICEM CFD, try this document --> https://goo.gl/KAOIwm
Ali
diamondx is offline   Reply With Quote

Old   March 1, 2013, 03:15
Default
  #4
Senior Member
 
Join Date: Feb 2011
Posts: 140
Rep Power: 15
Lilly is on a distinguished road
Thank you, Ali!
I mean the velocity is spatially constant at the inlet-face, but it changes with time. After about one second the cycle starts again from the beginning. It's the blood velocity profile inside a coronary vessel which I want to simulate (transient).
Thank you for any help and idea!
Lilly
Lilly is offline   Reply With Quote

Old   March 1, 2013, 08:50
Default
  #5
Super Moderator
 
diamondx's Avatar
 
Ghazlani M. Ali
Join Date: May 2011
Location: Tokyo, Japan
Posts: 1,385
Blog Entries: 23
Rep Power: 28
diamondx will become famous soon enough
for a "transient velocity profile", you will have to use UDF. i guess you are familiar with that ? for an unsteady velocity profile , use this code:

Quote:
/************************************************** ********************/
/* 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)
}
What you have to do: replace the "20. + 5.0*sin(10.*t)" by your own equation... i hope it will help
__________________
Regards,
New to ICEM CFD, try this document --> https://goo.gl/KAOIwm
Ali
diamondx is offline   Reply With Quote

Old   March 4, 2013, 07:10
Default
  #6
Senior Member
 
Join Date: Feb 2011
Posts: 140
Rep Power: 15
Lilly is on a distinguished road
Thanks a million for your help and your UDF profile, Ali!

But I meant: is it possible to solve the flow equations for each time step of the cardiac cycle that I am using and use this solutions for the following cardiac cycles to save computing time (since I have to consider about 50 cardiac cycles at my species transport)? Otherwise the flow distribution would have to be calculated again at each time step of the following cardiac cycles...

Thank you for any idea!
Lilly
Lilly 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
Use advection step and Dispersion step to solve advection diffusion equation cooljd Main CFD Forum 0 October 15, 2012 15:44
non periodic heat tansfer on periodic flow field tomekk89 FLUENT 2 July 28, 2012 12:06
Solve Flow or VOF simultaneously ? Ramsey FLUENT 1 February 16, 2011 13:16
Inviscid Drag at subsonic, subcritical Mach # Axel Rohde Main CFD Forum 1 November 19, 2001 12:19
help!!!how to solve multiphas flow combustione king J FLUENT 7 November 26, 2000 22:43


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