


{"id":382576,"date":"2024-09-13T07:53:22","date_gmt":"2024-09-13T07:53:22","guid":{"rendered":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/"},"modified":"2024-09-13T07:53:22","modified_gmt":"2024-09-13T07:53:22","slug":"6dof-udf-does-not-seem-to-work","status":"publish","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/","title":{"rendered":"6DOF UDF does not seem to work"},"content":{"rendered":"<p>&lt;p&gt;Dear all,&nbsp;&lt;\/p&gt;&lt;p&gt;I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.&lt;\/p&gt;&lt;p&gt;<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png\" width=\"708\" height=\"292\" \/>&lt;\/p&gt;&lt;p&gt;I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I&#8217;ve assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want to introduce damping to my model. For the UDF, I used codes shown in <a title=\"this video\" href=\"https:\/\/www.youtube.com\/watch?v=7MeHvOrXl8g&amp;t=522s\">https:\/\/www.youtube.com\/watch?v=7MeHvOrXl8g&amp;t=522s<\/a> as a reference with some modifications to fit with my case study. My UDF source code is outlined as follows:&lt;\/p&gt;&lt;p&gt;#include &#8220;udf.h&#8221;&lt;br&gt;#include &#8220;dynamesh_tools.h&#8221;&lt;\/p&gt;&lt;p&gt;FILE *fout;&lt;\/p&gt;&lt;p&gt;DEFINE_SDOF_PROPERTIES(bridge_motion_standard, prop, dt, time, dtime)&lt;br&gt;{&lt;br&gt;&nbsp; &nbsp; Thread *t;&lt;br&gt;&nbsp; &nbsp; Domain *d = Get_Domain(1);&lt;br&gt;&nbsp; &nbsp; \/*real x_cg[3], force[3], moment[3];*\/&lt;br&gt;&nbsp; &nbsp; real pos_x, pos_y, pos_theta;&lt;br&gt;&nbsp; &nbsp; real cg_x = 0; \/*center of gravity x*\/&lt;br&gt;&nbsp; &nbsp; real cg_y = -0.025; \/*center of gravity y*\/&lt;br&gt;&nbsp; &nbsp; real defo_x, defo_y, rot_z; \/*displacement variables*\/&lt;br&gt;&nbsp; &nbsp; real vel_x, vel_y, rot_vel; \/*velocity variable*\/&lt;br&gt;&nbsp; &nbsp; real Fx, Fy, Mz; \/*force*\/&lt;br&gt;&nbsp; &nbsp; real mass = 33.75; \/*bridge deck model*\/&lt;br&gt;&nbsp; &nbsp; real mom_inertia = 1.73; \/*moment inertia*\/&lt;br&gt;&nbsp; &nbsp; real fh = 9.5; \/*heave frequency in Hz*\/&lt;br&gt;&nbsp; &nbsp; real ft = 20.0; \/*torsion frequency in Hz*\/&lt;br&gt;&nbsp; &nbsp; real fd = 0.8*fh; \/*drag frequency in Hz*\/&lt;br&gt;&nbsp; &nbsp; \/*natural frequencies in rad\/s*\/&lt;br&gt;&nbsp; &nbsp; real wh = 2*M_PI*fh;&lt;br&gt;&nbsp; &nbsp; real wt = 2*M_PI*ft;&lt;br&gt;&nbsp; &nbsp; real wd = 2*M_PI*fd;&lt;br&gt;&nbsp; &nbsp; real zeta = 0.005; \/*damping ratio*\/&lt;br&gt;&nbsp; &nbsp; \/*stiffness calculation*\/&lt;br&gt;&nbsp; &nbsp; real kh = mass*wh*wh;&lt;br&gt;&nbsp; &nbsp; real kt = mom_inertia*wt*wt;&lt;br&gt;&nbsp; &nbsp; real kd = mass*wd*wd;&lt;br&gt;&nbsp; &nbsp; \/*damping coefficient calculation*\/&lt;br&gt;&nbsp; &nbsp; real ch = 2*mass*wh*zeta;&lt;br&gt;&nbsp; &nbsp; real ct = 2*mom_inertia*wt*zeta;&lt;br&gt;&nbsp; &nbsp; real cd = 2*mass*wd*zeta;&lt;br&gt;&nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; t = DT_THREAD(dt);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_MASS] = mass; \/* total mass:total length*\/&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_IZZ] = mom_inertia; \/*mass moment inertia*\/&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_ZERO_TRANS_X] = FALSE;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_ZERO_TRANS_Y] = FALSE;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_ZERO_TRANS_Z] = TRUE;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_ZERO_ROT_X] = TRUE;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_ZERO_ROT_Y] = TRUE;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_ZERO_ROT_Z] = FALSE;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; pos_x = (DT_CG(dt)[0]);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; pos_y = (DT_CG(dt)[1]);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; pos_theta = (DT_THETA(dt)[2]*M_PI\/180);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; \/*deformation calculation*\/&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; defo_x = pos_x &#8211; cg_x;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; defo_y = pos_y &#8211; cg_y;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; rot_z = pos_theta;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; vel_x = (DT_VEL_CG(dt)[0]);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; vel_y = (DT_VEL_CG(dt)[1]);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; rot_vel = (DT_OMEGA_CG(dt)[2]);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; \/*spring force and damping force calculation*\/&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_LOAD_F_X] = -kd*defo_x &#8211; cd*vel_x;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_LOAD_F_Y] = -kh*defo_y &#8211; ch*vel_y;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; prop[SDOF_LOAD_M_Z] = -kt*rot_z &#8211; ct*rot_vel;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; \/*results writing to txt files*\/&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fout = fopen(&#8220;displacement_results.txt&#8221;, &#8220;a&#8221;);&nbsp;&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fprintf(fout, &#8220;%g %f %f %f \\n&#8221;, time, defo_x, defo_y, rot_z);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fclose(fout);&lt;\/p&gt;&lt;p&gt;&nbsp; &nbsp; &nbsp; &nbsp; fout = fopen(&#8220;velocity_results.txt&#8221;, &#8220;a&#8221;);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fprintf(fout, &#8220;%g %f %f %f \\n&#8221;, time, vel_x, vel_y, rot_vel);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fclose(fout);&lt;\/p&gt;&lt;p&gt;&nbsp; &nbsp; &nbsp; &nbsp; fout = fopen(&#8220;acceleration_results.txt&#8221;, &#8220;a&#8221;);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fprintf(fout, &#8220;%g %f %f %f \\n&#8221;, time, DT_ACC_CG(dt)[0], DT_ACC_CG(dt)[1], DT_ALPHA_CG(dt)[2]);&lt;br&gt;&nbsp; &nbsp; &nbsp; &nbsp; fclose(fout);&lt;br&gt;}&lt;\/p&gt;&lt;p&gt;&nbsp;&lt;\/p&gt;&lt;p&gt;I have tried compiling and hooking the UDF and there was no problem with that process, however the analysis results showed that the lift-forces and the displacements of the bridge deck increasing continuously instead of reaching a steady-state condition as predicted by other papers related to VIV on a bridge deck. It just seemed like the resistance forces from spring and damping did not exist. Does anybody have any idea what the problem is? I am afraid that FLUENT somehow was not able to read my UDF and it just ended up getting ignored by the program, but I am not sure.&lt;\/p&gt;<\/p>\n","protected":false},"template":"","class_list":["post-382576","topic","type-topic","status-publish","hentry","topic-tag-dynamic-mesh"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I&#039;ve assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Ansys Learning Forum | Ansys Innovation Space\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"6DOF UDF does not seem to work | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I&#039;ve assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-09-13T07:53:22+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-09-13T07:53:22+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"6DOF UDF does not seem to work | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I&#039;ve assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/6dof-udf-does-not-seem-to-work\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/dynamic-mesh\\\/#listItem\",\"name\":\"dynamic-mesh\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/dynamic-mesh\\\/#listItem\",\"position\":3,\"name\":\"dynamic-mesh\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/dynamic-mesh\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/6dof-udf-does-not-seem-to-work\\\/#listItem\",\"name\":\"6DOF UDF does not seem to work\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/6dof-udf-does-not-seem-to-work\\\/#listItem\",\"position\":4,\"name\":\"6DOF UDF does not seem to work\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/dynamic-mesh\\\/#listItem\",\"name\":\"dynamic-mesh\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/6dof-udf-does-not-seem-to-work\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/6dof-udf-does-not-seem-to-work\\\/\",\"name\":\"6DOF UDF does not seem to work | Ansys Learning Forum\",\"description\":\"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I've assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/6dof-udf-does-not-seem-to-work\\\/#breadcrumblist\"},\"datePublished\":\"2024-09-13T07:53:22+00:00\",\"dateModified\":\"2024-09-13T07:53:22+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"6DOF UDF does not seem to work | Ansys Learning Forum","description":"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I've assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","position":1,"name":"Home","item":"https:\/\/innovationspace.ansys.com\/forum","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","position":2,"name":"Topics","item":"https:\/\/innovationspace.ansys.com\/forum\/topics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/dynamic-mesh\/#listItem","name":"dynamic-mesh"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/dynamic-mesh\/#listItem","position":3,"name":"dynamic-mesh","item":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/dynamic-mesh\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/#listItem","name":"6DOF UDF does not seem to work"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/#listItem","position":4,"name":"6DOF UDF does not seem to work","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/dynamic-mesh\/#listItem","name":"dynamic-mesh"}}]},{"@type":"Organization","@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization","name":"Ansys Learning Forum","description":"Ansys Innovation Space","url":"https:\/\/innovationspace.ansys.com\/forum\/"},{"@type":"WebPage","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/","name":"6DOF UDF does not seem to work | Ansys Learning Forum","description":"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I've assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/#breadcrumblist"},"datePublished":"2024-09-13T07:53:22+00:00","dateModified":"2024-09-13T07:53:22+00:00"},{"@type":"WebSite","@id":"https:\/\/innovationspace.ansys.com\/forum\/#website","url":"https:\/\/innovationspace.ansys.com\/forum\/","name":"Ansys Learning Forum","description":"Ansys Innovation Space","inLanguage":"en-US","publisher":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization"}}]},"og:locale":"en_US","og:site_name":"Ansys Learning Forum | Ansys Innovation Space","og:type":"article","og:title":"6DOF UDF does not seem to work | Ansys Learning Forum","og:description":"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I've assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/","og:image":"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png","og:image:secure_url":"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png","article:published_time":"2024-09-13T07:53:22+00:00","article:modified_time":"2024-09-13T07:53:22+00:00","twitter:card":"summary_large_image","twitter:title":"6DOF UDF does not seem to work | Ansys Learning Forum","twitter:description":"Dear all, I would like to ask for help regarding the dynamic simulation of vortex-induced oscillation on a bridge deck as shown below.I use the 6DOF solver to calculate displacements of the bridge deck due to the aerodynamic forces and for that I've assigned the properties using a UDF with the DEFINE_SDOF_PROPERTIES function since I want","twitter:image":"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/09\/13-09-2024-1726213137-mceclip0.png"},"aioseo_meta_data":{"post_id":"382576","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"content","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":true,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-10-28 16:29:16","updated":"2026-09-17 01:24:36","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\/topics\/\" title=\"Topics\">Topics<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/dynamic-mesh\/\" title=\"dynamic-mesh\">dynamic-mesh<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t6DOF UDF does not seem to work\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/forum"},{"label":"Topics","link":"https:\/\/innovationspace.ansys.com\/forum\/topics\/"},{"label":"dynamic-mesh","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/dynamic-mesh\/"},{"label":"6DOF UDF does not seem to work","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/6dof-udf-does-not-seem-to-work\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["261660","199"],"_bbp_author_ip":["167.205.0.228"],"_btv_view_count":["753"],"_bbp_topic_status":["unanswered"],"_bbp_topic_id":["382576"],"_bbp_forum_id":["27792"],"_bbp_engagement":["199","261660"],"_bbp_voice_count":["2"],"_bbp_reply_count":["1"],"_bbp_last_reply_id":["382584"],"_bbp_last_active_id":["382584"],"_bbp_last_active_time":["2024-09-13 09:24:54"]},"test":"35020306mahasiswa-itb-ac-id"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/382576","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics"}],"about":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/382576\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=382576"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}