CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   Fluent UDF and Scheme Programming (https://www.cfd-online.com/Forums/fluent-udf/)
-   -   Temperature dependent SURFACE TENSION TEMPERATURE COEFFICIENT (https://www.cfd-online.com/Forums/fluent-udf/166953-temperature-dependent-surface-tension-temperature-coefficient.html)

kcgmech February 20, 2016 04:08

Temperature dependent SURFACE TENSION TEMPERATURE COEFFICIENT
 
Dear Fluent user,
i am solving TIG welding simulation using fluent. i need to assign temperature dependent surface tension temperature coefficient for Marangoni convection. but there is a provision to use constant value. how can i use temperature dependent data ? kindly help me out in this boundary condition.

Ebr amin2003 November 22, 2016 17:01

Surface Tension Coefficient UDF
 
Quote:

Originally Posted by kcgmech (Post 586063)
Dear Fluent user,
i am solving TIG welding simulation using fluent. i need to assign temperature dependent surface tension temperature coefficient for Marangoni convection. but there is a provision to use constant value. how can i use temperature dependent data ? kindly help me out in this boundary condition.

Dear Ganesh,

You need a UDF to define surface tension temperature coefficient.

/************************************************** *************
Surface Tension Coefficient UDF for the VOF Multiphase Model
************************************************** *************/

#include "udf.h"
DEFINE_PROPERTY(sfc, c, t)
{
real T = C_T(c,t);
return 1.23 - 0.004*T + 5.0e-6*T*T;
}


All times are GMT -4. The time now is 23:33.