|
[Sponsors] |
The pitching airfoil simulated in Fluent using a UDF has unexpected amount of lift |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 27, 2018, 01:25 |
The pitching airfoil simulated in Fluent using a UDF has unexpected amount of lift
|
#1 |
Member
Hanye Azimi
Join Date: Oct 2016
Posts: 42
Rep Power: 10 |
Hi
I'm simulating an unsteady harmonic 2D motion(pitching) for an airfoil in Fluent using a UDF. The amplitude of pitching is 15deg,the angle of attack is 10deg. trying to validate with a paper but the result doesn't match. The lift coefficient range is between -0.5<Cl<2.4 in the paper but the lift Coeff. range of my simulation is 0.1<Cl<2.3 I doubt in my mesh so I tried many mesh and time steps, still there is no negative lift.I'm using this UDF: #include "udf.h" DEFINE_GRID_MOTION(airfoil,d, dt, vel, omega, time, dtime) { real a, w, pi; pi = 3.14159265; /* define motion variables */ a = 15*(pi/180); /* Amplitude */ f=0.06; /* frequency */ w = 2 * pi *f; /* Angular Frequency */ /* define airfoil motion */ omega[2] = -a*w*cos(w*time); /* z-component of angular velocity */ } The angle of attack is defined in inlet velocity ( in monitors, lift monitors & drag monitors) Why is the lift positive whole the cycle although we're expected to have a range of negative lift as the airfoil moves anticlockwise from 10deg to -5deg and returns in a clockwise direction & continue to 25deg. what could be my mistake? The result of the paper is attached. Thanks in advance |
|
July 27, 2018, 12:54 |
|
#2 |
New Member
maisui
Join Date: Jun 2018
Posts: 7
Rep Power: 8 |
may be the cg-motion is ok
|
|
July 30, 2018, 14:57 |
|
#3 |
Member
mohamed
Join Date: Apr 2016
Posts: 34
Rep Power: 10 |
use CG motion not grid motion the code is fine just change grid motion with CG motion
|
|
August 1, 2018, 00:49 |
|
#4 |
Member
Hanye Azimi
Join Date: Oct 2016
Posts: 42
Rep Power: 10 |
||
Tags |
ansys15, harmonic motion, pitching airfoil, udf |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Problem with airfoil shape optimization | robyTKD | SU2 Shape Design | 7 | March 7, 2022 17:18 |
looking for a smart interface matlab fluent | chary | FLUENT | 24 | June 18, 2021 10:07 |
FLUENT installation on UBUNTU 12.04 (LTS) | teymourj | FLUENT | 2 | March 1, 2017 23:24 |
Supersonic flow over an airfoil. FLUENT Lift don't match up with Shock Expansion Tech | enriccasas | FLUENT | 1 | August 21, 2013 07:43 |
UDF in Fluent | subha_meter | Main CFD Forum | 0 | October 18, 2009 00:54 |