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

handling of high viscosity

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 14, 2013, 18:03
Default handling of high viscosity
  #1
Member
 
Stephan Langenberg
Join Date: Sep 2011
Location: Germany
Posts: 73
Rep Power: 14
Jim87 is on a distinguished road
Hallo,

Modelling the properties of high viscosity materials (polymer melt), leads to bad residuals and divergence in my test-models.

I use a UDF for the compressibility of the polymer fluid. This UDF (dependents of temperature and pressure) works really fine at low viscosity (air , water etc). When I am going up with may viscosity (over 1 Pas) every solver that I tested leads to a divergence (usually pressure correction).

- I tested pressure and density based solvers
- I screwed the solution contolls to a absurd low level
- I changed timesteps up and down.
- I used soft uprising setting to suspend wrong initial conditions


Does anyone have experience in modelling high viscosity models and have an advice for me. Even my Ansys support is insecure what the problem might be.
Jim87 is offline   Reply With Quote

Old   July 15, 2013, 02:59
Default
  #2
New Member
 
Firas
Join Date: Jul 2013
Location: Iraq
Posts: 8
Rep Power: 12
Firas is on a distinguished road
May you give brief description of your model to see how can I help you ..I dealt with hight viscosity before .
Firas is offline   Reply With Quote

Old   July 15, 2013, 03:52
Default
  #3
Member
 
Stephan Langenberg
Join Date: Sep 2011
Location: Germany
Posts: 73
Rep Power: 14
Jim87 is on a distinguished road
The Model:


Geometrie:The testroom is 5*20*40 mm. 4000 identical hexahedrons.

Boundary Condition: In my easiest case there is only a velocity inlet (rather slow 0,01 m/s). I disabled the pressure outlet in oder to raise the compression effect. This works very very fine at low viscosity with good results and nearly perfect residuals.

- The walls are at a lower temperature than the fluid (450K)
- realising a velocity outlet leads not to an solution

--------------------------------------------------------------------------
Material: In my opinion the compressive UDF may be the origin of all problems.

Density is turned to an UDF function:

#include "udf.h"

DEFINE_PROPERTY(UDF_4Koeff_bar_cm_,c,t)
{
/************************************************** **************************
Standard UDF Order
************************************************** ***************************/
double pressure = 0.0;
double temp = 0.0;
double s1 = 19598.341796875;
double s2 = 2.7665386199951;
double s3 = 5604.6762695312;
double s4 = 22733.578125;

double spezVolu = 0.0;
double Rho = 0.0;

/************************************************** **************************
point and select temperature and pressure
************************************************** ***************************/

temp = C_T(c,t);
pressure = C_P(c,t);

/************************************************** *************************
equation
************************************************** ***************************/

spezVolu = s1 / (s4 + pressure) + (s2 * temp) / (s3 + pressure);
Rho = 1/spezVolu;
Rho = Rho * 1000;

return Rho;
}

/************************************************** **************************
Gleichung 4 Koeffizienten nach Schmidt
************************************************** ***************************/

The viscosity will be an UDF of a carreau fluid (testet in many projects, this one works)


Solver settings are pressure ore density based ansys standard cases. All Problems need to run transient and with time step sizes of ca. 0.001 sec.

If there are further questions I'll try to give detailed reports.
Jim87 is offline   Reply With Quote

Old   July 18, 2013, 14:24
Default
  #4
Member
 
Stephan Langenberg
Join Date: Sep 2011
Location: Germany
Posts: 73
Rep Power: 14
Jim87 is on a distinguished road
I tried my best on finding a solution and reworked the udf and the material datas. The problem of dealing high viscosity could be handeld by very very low under relaxation factors.

But from viscosities of 1 Pas and more my hole setup and simulation becomes weird. Values that I fixed in the material data udf by maximum and minimum loops change their values and the residuals rise to cray heights (see figur [viscosity to iterations]).

Can anyone imagine a reason why high viscosities seem not capable in Fluent? My UDF's work brilliant for less viscosity (figure). Maybe there is a solver that I should use or setting fpr dealing these materials?
Attached Images
File Type: jpg hohe_viskositaet.jpg (75.5 KB, 84 views)
Jim87 is offline   Reply With Quote

Old   July 19, 2013, 03:21
Default
  #5
Super Moderator
 
flotus1's Avatar
 
Alex
Join Date: Jun 2012
Location: Germany
Posts: 3,399
Rep Power: 46
flotus1 has a spectacular aura aboutflotus1 has a spectacular aura about
Fluent can handle high viscosities.

I dont know what your UDF does, but for finding the cause of your problem it might be better to deactivate it for now.

I can imagine that the way you increase the viscosity in your simulation causes problems. Starting with a very low viscosity, the flow will be turbulent. Thus the simulation is an under-resolved DNS and eddies start to build up.
Now increasing the viscosity on this flow field is very likely to cause trouble or even lead to divergence.
Have you tried starting the simulation with a high viscosity from the beginning?
flotus1 is offline   Reply With Quote

Old   July 19, 2013, 03:31
Default
  #6
Member
 
Stephan Langenberg
Join Date: Sep 2011
Location: Germany
Posts: 73
Rep Power: 14
Jim87 is on a distinguished road
Hallo,
The probelm seems to be the combination of compression and high viscosities.

I tried high and constant viscosities at the beginning but the residuals are as high as you can see in the attached figgure. I need eveb lower under relaxation factors even to get those bad residuals, otherwise the simulation diverges after a few iterations.

There needen't be a UDF for my viscosity. High and constant usually leed to this high residuals and very bad solutions.

-> Do you choose special solvers and settings for high viscosities in unsteady (transient) simulations?
Jim87 is offline   Reply With Quote

Old   July 19, 2013, 05:00
Default
  #7
Super Moderator
 
flotus1's Avatar
 
Alex
Join Date: Jun 2012
Location: Germany
Posts: 3,399
Rep Power: 46
flotus1 has a spectacular aura aboutflotus1 has a spectacular aura about
Wait a minute... What boundary conditions did you use? According to one of the previous posts, you use velocity inlet and velocity outlet? This is under-constrained if the fluid is compressible.
flotus1 is offline   Reply With Quote

Old   July 19, 2013, 05:28
Default
  #8
Member
 
Stephan Langenberg
Join Date: Sep 2011
Location: Germany
Posts: 73
Rep Power: 14
Jim87 is on a distinguished road
The discussed cases are testcases, I used different boundaries to check the UDF's. Generall the problem is detected in this cases

1. Velocity inlet, pressure outlet. -> checking the flow properties.

2. Velocity or Pressure inlet and no outlet -> checking the compressibility.

3. Pressure outlet and no inlet (patching the pressure). -> ckecking time dependent decompression value.

Velocity In and Outlet at the same time shouldn't work,I agree.

The final viscosity modell is a carreau model. The viscoisty should rang from 300 Pas to 1 Pas.
Jim87 is offline   Reply With Quote

Old   July 19, 2013, 05:43
Default
  #9
Senior Member
 
Join Date: Aug 2011
Posts: 421
Blog Entries: 1
Rep Power: 21
blackmask will become famous soon enough
Maybe you should reduce your time step by an order of square root of (Re) when you switch from the large Re number to small number? Also you might need to adjust the preconditioning parameters, if there is any.
blackmask 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
Problem with divergence TDK FLUENT 13 December 14, 2018 06:00
flow with high turbulent viscosity ratio Phillips Main CFD Forum 2 August 25, 2008 18:01
flow with high turbulent viscosity ratio Phillips FLUENT 0 August 24, 2008 18:01
High turbulent viscosity, problem with BC Narmin FLUENT 2 May 8, 2007 03:17
Multicomponent fluid Andrea CFX 2 October 11, 2004 05:12


All times are GMT -4. The time now is 03:15.