|
[Sponsors] |
September 25, 2013, 11:27 |
Position of the center of gravity
|
#1 |
New Member
Damien Geslain
Join Date: Sep 2013
Posts: 3
Rep Power: 13 |
Hi everyone,
I am working on a "Vortex induced vibration" simulation and for now I managed to simulated a plate which is moving because of the air flow.. The thing is I would be glad if I can output the position of the center of gravity for each timestep in a transient simulation.. I spent a lot of time in CDF-Post and I have no idea how I can do that.. That is why I did a "DEFINE_EXECUTE_AT_END" UDF.. However I am not able to compile it with Ansys Fluent.. I will be very thankful if somebody can help me with this issue.. This is my UDF ========================================== #include "udf.h" DEFINE_EXECUTE_AT_END (execute_at_end, dt, time, dtime) { FILE * fp; /* Declaring file variable */ /* record the kinematic data in the file */ fp = fopen ("Motion.txt", "a"); /* Open a file to add data to the end */ /* Format output data file */ fprintf (fp, "% E", CURRENT_TIME); /* Current time in */ fprintf (fp, "% E", DT_CG(dt)[0]); /* center of gravity position */ fclose (fp); /* Closing the file */ } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
center of gravity orientation | wujinlao5 | FLUENT | 4 | June 27, 2014 09:53 |
center of gravity motion | Jessica.S | Fluent UDF and Scheme Programming | 0 | March 9, 2012 15:46 |
DPM UDF particle position using the macro P_POS(p)[i] | dm2747 | FLUENT | 0 | April 17, 2009 02:29 |
RE: Applying forces / Center of Gravity in CFX | Janusz | CFX | 1 | November 16, 2008 20:37 |
Combustion Convergence problems | Art Stretton | Phoenics | 5 | April 2, 2002 06:59 |