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

6Dof Solver + Moving Object in fluent

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree2Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 20, 2013, 21:56
Default Body to rotate by action of the air flow - 6Dof Solver + Moving Object in fluent
  #1
New Member
 
Pouyan Jahangiri
Join Date: Jan 2013
Posts: 1
Rep Power: 0
PouyanJ is on a distinguished road
Hi everybody. I need your help.

Here, I have a channel (2D) with a inclined rectangle in the middle and I'd like to simulate the rotation of this object by action of the fluid flow. I've been using a 6DOF udf together with dynamic mesh, but when I run the solver, the rectangular object wont rotate. I decreased the values of Moment of Inertia to even very low numbers, but it didn't rotate again. Would it be possible to help me what to do?

I used the following UDF file (however I Changed the values of mass and moment of inertia):

DEFINE_SDOF_PROPERTIES(body, prop, dt, time, dtime)
{
prop[SDOF_MASS] = 666.66;
prop[SDOF_IXX] = 129.6296;
prop[SDOF_IYY] = 111.1111;
prop[SDOF_IZZ] = 129.6296;

printf ("\n2d_test_box: Updated 6DOF properties");
}

Last edited by PouyanJ; January 21, 2013 at 00:38.
PouyanJ is offline   Reply With Quote

Old   August 21, 2013, 05:43
Default
  #2
New Member
 
Thành
Join Date: Aug 2013
Posts: 3
Rep Power: 12
thanhvn is on a distinguished road
Hi PouyanJ

I think that you should be addition some water's property density of water, sound of water in your UDF.

Can you read more detail in " Falling box in water " Tutorial ansys fluent
Good Luck!
thanhvn is offline   Reply With Quote

Old   September 25, 2013, 06:41
Smile
  #3
Member
 
Centurion2011's Avatar
 
Join Date: Jul 2011
Posts: 78
Blog Entries: 1
Rep Power: 18
Centurion2011 will become famous soon enough
try here
__________________
I'M NOT A GYNECOLOGIST BUT I'LL TAKE A LOOK.
Centurion2011 is offline   Reply With Quote

Old   September 25, 2013, 07:49
Default
  #4
Member
 
like.no.other
Join Date: Sep 2011
Posts: 35
Rep Power: 14
like.no.other is on a distinguished road
Hi Pouyan
If you want to simulate only rotation of body, you must restrict the motion in other directions.
you should use this macro for restriction of motion:
prop[SDOF_ZERO_TRANS_X] = TRUE;
prop[SDOF_ZERO_TRANS_Y] = TRUE;
prop[SDOF_ZERO_ROT_X] = TRUE;
prop[SDOF_ZERO_ROT_Y] = TRUE;
__________________
www.CFDiran.ir
like.no.other is offline   Reply With Quote

Old   August 1, 2014, 19:33
Default
  #5
New Member
 
Mahdi Torabi Asr
Join Date: Dec 2013
Posts: 10
Rep Power: 12
mahditorabiasr is on a distinguished road
Dear Pouyan, may I know your dynamic mesh setup. Maybe this problem comes from ill dynamic mesh configuration.
mahditorabiasr is offline   Reply With Quote

Old   August 7, 2014, 03:13
Default
  #6
New Member
 
arash
Join Date: Aug 2014
Posts: 9
Rep Power: 11
shayegan is on a distinguished road
Hi everyone

I have been working on moving projectile i barrel. I need udf for dynamic mesh(Six degree of freedom solver). can anyone help me?
shayegan is offline   Reply With Quote

Old   August 18, 2014, 01:26
Default
  #7
New Member
 
Join Date: Apr 2013
Posts: 3
Rep Power: 12
Config is on a distinguished road
Quote:
Originally Posted by shayegan View Post
Hi everyone

I have been working on moving projectile i barrel. I need udf for dynamic mesh(Six degree of freedom solver). can anyone help me?
hello
if you want to just simulate "moving" use this and replace your weight:

#include "udf.h"
DEFINE_SDOF_PROPERTIES(proj, prop, dt, time, dtime)
{
prop[SDOF_MASS] = 1;
}
the other progress of solve is in "projectile moving inside a barrel"pdf that you want it i can send it for you
Config is offline   Reply With Quote

Old   August 18, 2014, 02:49
Default
  #8
New Member
 
arash
Join Date: Aug 2014
Posts: 9
Rep Power: 11
shayegan is on a distinguished road
Thank you for the reply

I just have pdf file of this tutorial, could u please send me the case and data files of tutorial?

Thanks a lot
amin.ntea@yahoo.com
shayegan is offline   Reply With Quote

Old   October 15, 2014, 21:18
Default
  #9
Member
 
Su Xiaohui
Join Date: Mar 2009
Location: Singapore
Posts: 30
Rep Power: 17
sxhdhi is on a distinguished road
Send a message via Skype™ to sxhdhi
Hi, all

Could you please also send me the following falling box files:
6dof-mesh.msh.gz
6dof_2d.c

at sxh@dlut.edu.cn

thanks!

Best Regards

sxh
sxhdhi is offline   Reply With Quote

Old   November 18, 2014, 07:54
Default
  #10
New Member
 
Join Date: Nov 2014
Posts: 3
Rep Power: 11
99valentine is on a distinguished road
Thanks for the help.
99valentine is offline   Reply With Quote

Old   November 18, 2014, 08:05
Default
  #11
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
These files can be downloaded from the ansys customer portal.
Log in, go to "Tutorials & Training Materials", and search for "falling box".
pakk is offline   Reply With Quote

Old   February 23, 2015, 07:48
Default
  #12
Senior Member
 
amin.z's Avatar
 
Amin
Join Date: Oct 2013
Location: Germany
Posts: 397
Rep Power: 14
amin.z is on a distinguished road
Quote:
Originally Posted by shayegan View Post
Thank you for the reply

I just have pdf file of this tutorial, could u please send me the case and data files of tutorial?

Thanks a lot
amin.ntea@yahoo.com
Hi dear Arash
I'm also looking for these files ( case, data & UDF of moving projectile inside barrel)
could you please send these files to me if you find them?

CFDSimulation@yahoo.com

Last edited by amin.z; February 23, 2015 at 09:19.
amin.z is offline   Reply With Quote

Old   February 23, 2015, 08:57
Default
  #13
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
These files can be downloaded from the ansys customer portal.
Log in, go to "Tutorials & Training Materials", and search for "falling box".
pakk is offline   Reply With Quote

Old   February 24, 2015, 08:57
Default
  #14
Senior Member
 
amin.z's Avatar
 
Amin
Join Date: Oct 2013
Location: Germany
Posts: 397
Rep Power: 14
amin.z is on a distinguished road
guys! I can't find the tutorial file in ansys customer portal!
I need your help! anyone could help me to find these files?
a direct link to ansys customer portal or a keyword to find these or something like this!

The files are:
Tutorial: Projectile Moving Inside a Barrel
projectile.msh.gz
aneos.c
six_dof_property.c
amin.z is offline   Reply With Quote

Old   September 30, 2015, 14:40
Default
  #15
New Member
 
tuananh
Join Date: Sep 2015
Posts: 4
Rep Power: 10
tuananhtran56 is on a distinguished road
Hi dear pakk!
I'm also looking for mesh and udf file for this tutorial: the box falling the water.
could you please send these files to me if you have?
Thansk a lot.
My email: tuananhtran.kthk56@gmail.com
tuananhtran56 is offline   Reply With Quote

Old   October 6, 2015, 15:27
Talking
  #16
New Member
 
Anonymous
Join Date: Oct 2015
Posts: 1
Rep Power: 0
rqb7231 is on a distinguished road
Hi, all

Could you please also send me the following falling box files:
6dof-mesh.msh.gz
6dof_2d.c

at rqb7231@yahoo.com

thanks!

Best Regards
rqb7231 is offline   Reply With Quote

Old   October 6, 2015, 19:55
Default
  #17
New Member
 
Jesse
Join Date: Sep 2015
Posts: 3
Rep Power: 10
Baxter is on a distinguished road
Hi, I'm just using the free student version of Fluent and so don't have a login to the customer portal. If someone could please email the files for the box falling in water and/or the bullet in the gun barrel I would really really appreciate it! Email: jesse.anderson303@gmail.com

Best regards

Jesse
Baxter is offline   Reply With Quote

Old   October 29, 2015, 17:52
Default Looking for the tutorial files of box falling in water
  #18
New Member
 
Edgar
Join Date: Oct 2015
Posts: 1
Rep Power: 0
Edgar is on a distinguished road
Hello,

I am trying to do a simulation to observe the behavior of a macroscopic particle in a stream flow. I think that this tutorial will be very helpful, but I do not have the UDF file.

Could someone share with me these files (6dof-mesh.msh.gz and 6dof 2d.c), please?

My email is: eem370@mail.usask.ca

Thanks
Edgar is offline   Reply With Quote

Old   February 28, 2016, 09:10
Cool Hi guys
  #19
New Member
 
Join Date: Feb 2016
Posts: 9
Rep Power: 10
Vania is on a distinguished road
Hiiii

A useful reference for your problem

http://goo.gl/663zNX
Vania is offline   Reply With Quote

Old   March 17, 2016, 05:33
Default Body to move by action of the fluid flow - 6Dof Solver + Moving Object in fluent
  #20
New Member
 
harshit dariya
Join Date: Nov 2015
Posts: 3
Rep Power: 10
hdariya is on a distinguished road
Hi everybody. I need your help.

i have a problem in move body by the action of fluid flow.
for that i want udf. so that i can move body in particular direction with the help of action of fluid flow.
in my problem i want to move piston under cylinder.
hdariya is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Prescribed object motion and 6DOF vinz OpenFOAM Running, Solving & CFD 1 September 23, 2013 07:37
few quesions on ANSYS ICEMCFD and FLUENT Prakash.Paudel ANSYS 0 August 12, 2010 12:07
Changing from STAR to FLUENT - Solver Troubles BastiL FLUENT 0 February 15, 2008 16:41
2D flapping foil- moving ref frame model in Fluent VJ FLUENT 0 October 20, 2007 01:15
Moving Dynamic Mesh in Fluent 6.2 R.M.Bharath Somayaji FLUENT 0 January 9, 2006 20:36


All times are GMT -4. The time now is 20:54.