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

Six Dof - Store Seperation - Fluent

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 22, 2022, 15:07
Default Six Dof - Store Seperation - Fluent
  #1
New Member
 
EminDikici's Avatar
 
Muhammed Emin Dikici
Join Date: Mar 2019
Posts: 13
Rep Power: 7
EminDikici is on a distinguished road
Hello Everyone

I am a mechanical engineer and i need to complete my MSc homework about store seperation anaylsis in Ansys Fluent.

But i need to apply external force on missile but how can i do it i really dont know. I read some papes about it, they were writing UDF but i havent seen any examples in the internet.

Can you help me ?
EminDikici is offline   Reply With Quote

Old   April 23, 2022, 03:38
Default
  #2
New Member
 
Chehade
Join Date: Apr 2022
Posts: 21
Rep Power: 4
Chehade is on a distinguished road
https://www.peopleperhour.com/freela...-body-6-664087
Chehade is offline   Reply With Quote

Old   April 23, 2022, 03:39
Default
  #3
New Member
 
Chehade
Join Date: Apr 2022
Posts: 21
Rep Power: 4
Chehade is on a distinguished road
Try this link maybe it can help.
Chehade is offline   Reply With Quote

Old   April 27, 2022, 04:40
Default The following UDF named delta_missile specifies case injector forces and moments that
  #4
New Member
 
Zunair
Join Date: Apr 2022
Posts: 1
Rep Power: 0
Zunair is on a distinguished road
/************************************************** *****
SDOF property compiled UDF with external forces/moments
************************************************** *****/
#include "udf.h"
DEFINE_SDOF_PROPERTIES(delta_missile, prop, dt, time, dtime)
{
prop[SDOF_MASS] = 907.185;
prop[SDOF_IXX] = 27.116;
prop[SDOF_IYY] = 488.094;
prop[SDOF_IZZ] = 488.094;
/* add injector forces, moments */
{
register real dfront = fabs (DT_CG (dt)[2] -
(0.179832*DT_THETA (dt)[1]));
register real dback = fabs (DT_CG (dt)[2] +
(0.329184*DT_THETA (dt)[1]));
if (dfront <= 0.100584)
{
prop[SDOF_LOAD_F_Z] = 10676.0;
prop[SDOF_LOAD_M_Y] = -1920.0;
}
if (dback <= 0.100584)
{
prop[SDOF_LOAD_F_Z] += 42703.0;
prop[SDOF_LOAD_M_Y] += 14057.0;
}
}
printf ("\ndelta_missile: updated 6DOF properties")






Can any body help me out with these two statements of register real dfront and register rear dback....what is their purpose as the forces and moments are constant....(This is a code taken from ANSYS UDF manual).....any opinion about this is much appreciated
Zunair 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
how to run fluent from matlab without using aas toolbox? artemis96 ANSYS 7 May 23, 2022 12:16
heat transfer with RANS wall function, over a flat plate (validation with fluent) bruce OpenFOAM Running, Solving & CFD 6 January 20, 2017 06:22
Fluent crash on writing data file after thousand iterations Chuck87 FLUENT 0 September 2, 2015 16:17
Force can not converge colopolo CFX 13 October 4, 2011 22:03


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