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

Wankel Engine UDF Problem

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 2, 2014, 08:15
Default Wankel Engine UDF Problem
  #1
New Member
 
Kieran
Join Date: Dec 2013
Posts: 6
Rep Power: 12
Kxt908 is on a distinguished road
I am modelling a Wankel Engine for a University project in Fluent 14.5.
I first tried the method of creating the entire geometry and running a simulation which causes problems of negative cell volumes. This seems inherent to Fluent and to the Wankel Engine problem. Many people on this forum have tried this method with limited success.

Therefore I am looking at the problem from a different angle.
I have just created one chamber and plan to rotate that through 360 degrees to simulate one cycle of a Wankel Rotary Engine.

I decided to test the problem by simplifying it to a semi-circular geometry - the centreline just rotates about its midpoint using DEFINE_CG_MOTION UDF. Then I have tried to generate the circular arc for any given rotational angle of the straight line part of the semi-circle using a DEFINE_GEOM UDF:

#include "udf.h"
#define NCOORDS 360
#define r 50
#define its 180
#define pi 3.1415926

DEFINE_CG_MOTION(eccentric, dt, vel, omega, time, dtime)
{
NV_S (vel, =, 0.0);
NV_S (omega, =, 0.0);
omega[2] = -1.0;
}


DEFINE_GEOM(housing, domain, dt, position)
{
int i,j;
real rad, x, y;
int start=0;

for(i=0;i<=NCOORDS;i++)
{
for(j=start;j<=start+its;j++)
{
j=j%360;
rad = ((j * pi )/ 180);
position[0] = r * cos(rad);
position[1] = r * sin(rad);
}
start=start+1;
}
}


I know this seems an overly complicated way of rotating a semi-circle but it is required when the problem includes the correct Wankel geometry.

This UDF compiles fine with no errors. When I calculate the solution, the whole program freezes with no error messages. I have to close Fluent from the Task Manager.
It would be much appreciated if someone could provide some insight.

Kieran
Kxt908 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
ATTN ALL: SOLUTON TO UDF COMPILE PROBLEM Rizwan Fluent UDF and Scheme Programming 40 March 18, 2018 06:05
For Joe : CFD in a Wankel engine amcfd FLUENT 15 March 27, 2013 04:40
Problem with my udf july Fluent UDF and Scheme Programming 3 June 20, 2010 06:56
udf compiling problem akr FLUENT 3 August 22, 2007 07:14
I have problem of UDF with turbulent premx source. Z FLUENT 0 February 16, 2005 03:34


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