|
[Sponsors] |
Problems in converging viscosity UDF dependent upon strain rate and temperature. |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
March 17, 2016, 07:33 |
Problems in converging viscosity UDF dependent upon strain rate and temperature.
|
#1 |
New Member
Alex Skerhut
Join Date: Mar 2016
Posts: 10
Rep Power: 10 |
Hi,
I am interpreting a viscosity UDF which is dependent upon temperature and strain rate. The UDF interprets fine but does not lead to convergence and starts diverging from the very start and does not run even a single iteration. My UDF is as follows: #include<udf.h> DEFINE_PROPERTY(cell_viscosity,c,t) { double stress = 22.22e+06; double A = 8.86e+06; double energy = 145000; double R = 8.314; double n = 3.55; double mu_laminar,temp,strainrate,Z,D,E,F; temp= C_T(c,t); strainrate= C_STRAIN_RATE_MAG(c,t); Z= strainrate*exp(energy/(R*temp)); D= pow((Z/A),(1/n)); E= pow((Z/A),(2/n)); F= pow(E+1,0.5); mu_laminar= (stress*log(D+F))/(3*strainrate); return mu_laminar; } A similar viscosity model named carreau dependent upon strainrate and temperature converges fine but my udf does not even start iterating. It gives the error message #Divergence detected in AM solver: x-momentum - Increasing relaxation sweeps! Kindly help me in this my complete project depends upon the successful implementation of the viscosity UDF. |
|
March 17, 2016, 08:19 |
|
#2 |
Senior Member
Join Date: Nov 2013
Posts: 1,965
Rep Power: 27 |
Print the values to your screen.
Code:
Message("Z,D,E,F: %f,%f,%f,%f\n",Z,D,E,F); Message("Mu: %f\n",mu_laminar); return mu_laminar; Then check if the values that are shown agree to what you want. If they don't, find out why not and fix your equations. |
|
Tags |
fluent - udf, udf and programming, udf compile, udf eror |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[openSmoke] libOpenSMOKE | Tobi | OpenFOAM Community Contributions | 562 | January 25, 2023 10:21 |
Ansys CFX problem: unexpected very high temperatures in premix laminar combustion | faizan_habib7 | CFX | 4 | February 1, 2016 18:00 |
Time and temperature dependent viscosity | sur4j | OpenFOAM | 16 | January 12, 2015 01:56 |
Temperature dependent Non-Newtonian viscosity UDF | cric92 | Fluent UDF and Scheme Programming | 0 | April 14, 2013 07:31 |