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

Effects of vortex induced vibrations on cylinders

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By obscureed

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 18, 2016, 06:16
Default Effects of vortex induced vibrations on cylinders
  #1
New Member
 
Daban M. salih
Join Date: May 2016
Posts: 5
Rep Power: 9
Daban is on a distinguished road
HELLO WORLD
i am doing a simulation on effect of vortex induced vibration on cylinders, i wrote a udf file like this:
#include "udf.h"
DEFINE_SDOF_PROPERTIES(sdof_props, prop, dt, time, dtime)
{
real cgy;
real k = 170;
cgy = DT_CG(dt)[1];
prop[SDOF_MASS] = 170;
prop[SDOF_ZERO_TRANS_Y] = TRUE;
prop[SDOF_IXX] = 122.4;
prop[SDOF_IYY] = 122.4;
prop[SDOF_IZZ] = 40.8;
prop[SDOF_LOAD_F_Y] = -k*cgy;
printf("\n updated 6DOF properties");
}
what i expect is a movement (vibration) in y direction but when i do the analysis my cylinder moves in x direction. can anyone tell me if i wrote the correct udf file !!? von karman effect.PNG
Daban is offline   Reply With Quote

Old   May 18, 2016, 07:24
Default
  #2
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
You say you expect a movement in y-direction. But you type:

Code:
prop[SDOF_ZERO_TRANS_Y] = TRUE;
This tells Fluent that there should be zero translation in y-direction...

Maybe you want it to be frozen in x-direction?

Code:
prop[SDOF_ZERO_TRANS_X] = TRUE;
pakk is offline   Reply With Quote

Old   May 18, 2016, 10:11
Default
  #3
New Member
 
Daban M. salih
Join Date: May 2016
Posts: 5
Rep Power: 9
Daban is on a distinguished road
thank you sir for ur reply, i am new to ansys fluent, so if i want a spring based oscillation in y direction, how should i write a udf for it?
Daban is offline   Reply With Quote

Old   May 18, 2016, 10:17
Default
  #4
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
Euh... Didn't I already answer that in my first reply???
pakk is offline   Reply With Quote

Old   May 19, 2016, 02:44
Default
  #5
New Member
 
Rahil
Join Date: Mar 2016
Posts: 5
Rep Power: 10
rahilvalani is on a distinguished road
Hi there,

I am also trying to simulate Vortex induced vibrations of a cylinder. My question is that once you hook this udf to the cylinder, does ansys automatically calculated the velocity of the cylinder or do you have to write another udf for this?

Also I tried using this by using dynamic mesh in fluent but its giving me weird Coefficient of lift of about 100-200 and also the cylinder just moves in one direction and goes off the domain. Can someone please help?
rahilvalani is offline   Reply With Quote

Old   January 5, 2018, 11:25
Default Vortex Induced Vibrations of Circular Cylinder
  #6
New Member
 
Sajid
Join Date: Nov 2017
Posts: 3
Rep Power: 8
Sajid Sarfraz is on a distinguished road
Hello

I am Sajid

I am doing vortex induced vibrations in ANSYS Fluent using following UDF.
#include "udf.h"
DEFINE_SDOF_PROPERTIES(sdof_props, prop, dt, time, dtime)
{
real cg;
real k = 1*1.26*1.26;
cg = DT_CG(dt)[8];
prop[SDOF_MASS] = 1;
prop[SDOF_ZERO_TRANS_X] = TRUE;
prop[SDOF_ZERO_ROT_X] = TRUE;
prop[SDOF_ZERO_ROT_Y] = TRUE;
prop[SDOF_LOAD_F_Y] = -k*cg;
}

However i am not getting movement of cylinder in Y dirn. Can anybody guide me

Thx
Sajid Sarfraz is offline   Reply With Quote

Old   January 11, 2018, 09:47
Default
  #7
Senior Member
 
Join Date: Sep 2017
Posts: 246
Rep Power: 11
obscureed is on a distinguished road
Hi Sajid,

"DT_CG(dt)" is the position vector of the centre of gravity of the dynamic thread. So it does not make sense to use "DT_CG(dt)[8]" -- if you want the y-coordinate, then it is "DT_CG(dt)[1]". What was the basis for choosing 8?

The rest of the UDF looks OK (presuming this is a 2D simulation). It might help to send a message to screen before the end of the function, just to check that the UDF is hooked in correctly and to see if anything is strange:
Message("Exiting SDOF UDF with y = %g, force = %g\n",cg,-k*cg);
Sajid Sarfraz likes this.
obscureed is offline   Reply With Quote

Old   March 12, 2018, 09:59
Default Regarding VIV simulation in amsys fluent
  #8
New Member
 
Niraj Sonule
Join Date: Mar 2018
Posts: 1
Rep Power: 0
nirajnisa is on a distinguished road
I am trying to do VIV simulation of cylinder but new to ansys..can you provide me proper procedure to carry out my work
nirajnisa 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
Vortex induced Vibrations aravindh28.4 OpenFOAM 36 November 23, 2017 13:43
Vortex Induced Vibrations smm6889 ANSYS 2 February 18, 2014 10:00
pimpleDymFoam and Vortex Induced Vibrations on a 3D cylinder MrAnderson OpenFOAM Running, Solving & CFD 1 February 17, 2014 18:26
FSI including flow induced vibrations in porous models oj.bulmer FLUENT 6 October 15, 2013 12:16
Presenation of vortex strength and velocity concept? fruitkiwi Main CFD Forum 0 September 26, 2012 22:08


All times are GMT -4. The time now is 05:42.