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

Release injection each time step in Fluent 14

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 31, 2012, 02:35
Default Release injection each time step in Fluent 14
  #1
New Member
 
JenFeg
Join Date: Oct 2012
Posts: 1
Rep Power: 0
jfeg is on a distinguished road
Hello,
I'm solving unsteady flow with steady DPM particles. So, I'd like to set up injection to be released only once in each time-step (probably at beggining of time-step).

I could not find this settings, can give a hint ?
Thank you.
jfeg
jfeg is offline   Reply With Quote

Old   November 1, 2012, 10:29
Default
  #2
Member
 
vicarious's Avatar
 
Pedram Mojtabavi
Join Date: Apr 2011
Location: Iran
Posts: 66
Rep Power: 15
vicarious is on a distinguished road
Send a message via Yahoo to vicarious
You need to setup a boundary with pulsed on/off type injection?
You can write an UDF to define these type of boundary by using a step function.
You can use a simple SIN or COS to define that, for exmaple:
F(x) = |sin(pi*t/2)|;
The function produces 0 ,1 periodically with the progression of time =1,2,3,...
I have a code here specifically for on/off injection you can use:

************************************************** ******
#include "udf.h"
DEFINE_PROFILE(injection_pulsed_flux, thread, position)
{
face_t f;
real t = CURRENT_TIME;
int n;
real pi;
n = 1000000.*t/1.7;
pi = 1.570796;
begin_f_loop(f, thread)
{
F_PROFILE(f, thread, position) = 100.*fabs(sin(pi*n));
}
end_f_loop(f, thread)
}
************************************************** ****
You need to replace you own 1/(delta t) where I have underlined (mine was 1e-6). The F profile will generate a specific number and zero. The "100" could be replaced by your own case's value.

Hope it could help,
Best regards.
vicarious is offline   Reply With Quote

Old   February 12, 2013, 23:47
Default Dpm model
  #3
New Member
 
santhosh
Join Date: Aug 2012
Posts: 3
Rep Power: 13
santhosh kumar k is on a distinguished road
Hai sir/Madam

I am using fluent software for my dpm injections ina GDI engines.Using pressure swirl atomizer i got injectios in the form of V shape instaed of a circular shape in 3d model.Please tell me which parameter does it depend on it. and how to modify.

Thank u

Santhosh Kumar K
santhosh kumar k is offline   Reply With Quote

Reply

Tags
particle track fluent


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 simulation not converging skabilan OpenFOAM Running, Solving & CFD 14 December 16, 2019 23:12
InterFoam negative alpha karasa03 OpenFOAM 7 December 12, 2013 03:41
Upgraded from Karmic Koala 9.10 to Lucid Lynx10.04.3 bookie56 OpenFOAM Installation 8 August 13, 2011 04:03
Modeling in micron scale using icoFoam m9819348 OpenFOAM Running, Solving & CFD 7 October 27, 2007 00:36
unsteady calcs in FLUENT Sanjay Padhiar Main CFD Forum 1 March 31, 1999 12:32


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