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

how to find laminar viscosity?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 7, 2015, 12:58
Question how to find laminar viscosity?
  #1
Senior Member
 
Join Date: Mar 2013
Location: B'lr
Posts: 130
Rep Power: 13
shivakumar is on a distinguished road
hi,

From the solution data it is easy to obtain turbulent viscosity at each cell center or node.. In similar fashion, is there any other way to find the laminar viscosity?

Thanks
shivakumar
shivakumar is offline   Reply With Quote

Old   April 7, 2015, 14:13
Default
  #2
Senior Member
 
Cees Haringa
Join Date: May 2013
Location: Delft
Posts: 607
Rep Power: 0
CeesH is on a distinguished road
The laminar viscosity is an input parameter which you provide under materials.
you can plot it in FLUENT if you want, bu for newtonian fluids it's a constant which you added yourself.
CeesH is offline   Reply With Quote

Old   April 8, 2015, 00:15
Default
  #3
Senior Member
 
Join Date: Mar 2013
Location: B'lr
Posts: 130
Rep Power: 13
shivakumar is on a distinguished road
can u tell me how to plot it?
shivakumar is offline   Reply With Quote

Old   April 8, 2015, 00:34
Default
  #4
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
The laminar viscosity doesn't appear to be available to plot within Fluent directly. You could save the laminar viscosity of each cell with User-Defined Memory and then plot this UDM (holding the laminar viscosity values). I'm puzzled as to why you'd want to plot a uniform field of values... filling the domain in CFD-Post with a colour would be a quicker method.
`e` is offline   Reply With Quote

Old   April 8, 2015, 03:23
Default
  #5
Senior Member
 
Cees Haringa
Join Date: May 2013
Location: Delft
Posts: 607
Rep Power: 0
CeesH is on a distinguished road
I can see how it might be useful to do make effective viscosity plots for non-newtonian fluids; for newtonian it doesn't make sense indeed.
CeesH is offline   Reply With Quote

Old   April 9, 2015, 00:06
Default
  #6
Senior Member
 
Join Date: Mar 2013
Location: B'lr
Posts: 130
Rep Power: 13
shivakumar is on a distinguished road
Thanks for the reply

From udf it possible find the laminar viscosity at each....('e')


Yes indeed. for Newtonian flows it does not make sense..For example, when it comes to the viscous sensor algorithm given by Tognaccini, Laminar viscosity does make sense in the region of boundary layer.

D=1+(mu_t/mu_l)
shivakumar is offline   Reply With Quote

Old   April 9, 2015, 03:05
Default
  #7
Senior Member
 
Cees Haringa
Join Date: May 2013
Location: Delft
Posts: 607
Rep Power: 0
CeesH is on a distinguished road
You could write a simple user defined function that stores the viscosity in a user defined memory. I think this should work:

Code:
#include udf.h

DEFINE_ADJUST(my_adjust,d)
 {
    Thread *t;

    cell_t c;

    thread_loop_c(t,d)
    {
     begin_c_loop(c,t)
C_UDMI(c,t,0) = C_MU_L(c,t)
     end_c_loop(c,t)
    }

 }
This stores the laminar viscosity in a user defined memory (don't forget to declare upfront), and user defined memory values can be plotted.
CeesH is offline   Reply With Quote

Old   April 9, 2015, 03:08
Default
  #8
Senior Member
 
Join Date: Mar 2013
Location: B'lr
Posts: 130
Rep Power: 13
shivakumar is on a distinguished road
Thanks for the reply.. I got it.
shivakumar 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
Can a turbulent flow converge in laminar simulatio KM CFX 7 December 5, 2019 00:25
Eulerian Modeling: Frictional Viscosity Help meangreen FLUENT 1 January 25, 2018 15:13
[swak4Foam] Error bulding swak4Foam sfigato OpenFOAM Community Contributions 18 August 22, 2013 12:41
CFX problem in ubuntu (linux) Vigneshramaero CFX 0 July 13, 2012 10:22
Problem of Turbulent Viscosity Ratio Limited David Yang FLUENT 3 June 3, 2002 06:13


All times are GMT -4. The time now is 11:27.