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

Boundary condition for point?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 18, 2003, 17:20
Default Boundary condition for point?
  #1
J.W.Ryu
Guest
 
Posts: n/a
Hello,

I generated "point" from "surface/point" command, and I'd like to assign constant temperature for this point. Is it possible to assign boundary condition for specific point? I read manual several times. But, I could not find any appropriate method. Could you let me know the way?

Thanks,

J.W.Ryu
  Reply With Quote

Old   March 18, 2003, 20:50
Default Re: Boundary condition for point?
  #2
Alex Munoz
Guest
 
Posts: n/a
hello

Until I know you assign boundary conditions for zones.

Potentially could be one way, However, I want to know why you want just one point instead of a whole zone. If you expand a little bit your case perhaps I can help you more.

Regards

Alex
  Reply With Quote

Old   March 20, 2003, 03:47
Default Re: Boundary condition for point?
  #3
Chetan Kadaki
Guest
 
Posts: n/a
A point is a surface but not a zone. You must assign a b.c. to a zone. The best way to do this is in Gambit, just as you may have created your other b.c.'s.

But do tell why you just want one a single point at constant temp? Maybe then, we could advise better.

  Reply With Quote

Old   March 20, 2003, 15:48
Default Re: Boundary condition for point?
  #4
J.W.Ryu
Guest
 
Posts: n/a
My model is for steady state 2d-axisymmetry solidification. Of course, energy, DO model and standard k-e viscous model are being used. I gave Cp based on latent heat of fusion for liquid phase. But, calculation is not easy since temperature of liquid region is not constant during calculation. So, I'd intentionally like to give bc for specific point where solidification is happened. Specific point means tri-point of solid/liquid/gas phases. Of course, I can not image exact solificiation line, since this is decided by calculation from heat radiation, convection and conduction. Only I can aware specific point in solidification line. So, I wanna try to give bc(temperature) for specific point. Is this enough to explain my model? It is not easy to explain without any picture....

Thanks,

J.W.Ryu
  Reply With Quote

Old   March 20, 2003, 19:51
Default Re: Boundary condition for point?
  #5
Alex Munoz
Guest
 
Posts: n/a
I suggest that you use a UDF to define viscosity dependent of the temperature throught the the domain, instead of the boundary condition in some cells.

I wonder if you have read the solidification/melting model information offered by Fluent

Bellow you will see a UDF copied from Fluent

/************************************************** *******************

UDF for specifying a temperature-dependent viscosity property ************************************************** ********************/

#include "udf.h"

DEFINE_PROPERTY(cell_viscosity, cell, thread) { real mu_lam; real temp = C_T(cell, thread);

if (temp > 288.)

mu_lam = 5.5e-3; else if (temp > 286.)

mu_lam = 143.2135 - 0.49725 * temp; else

mu_lam = 1.;

return mu_lam; }

regards

Alex Munoz
  Reply With Quote

Old   April 6, 2003, 23:45
Default Re: Boundary condition for point?
  #6
J.W.Ryu
Guest
 
Posts: n/a
Thanks for your comment, Alex,

I also have used temperature dependent viscosity as mentioned in manual. But, as I mentioned before, liquid zone was not converged due to continuously changed temperature during iteration. As a solidification phenomina, I have used UDF to change source term of momentum equation to control liquid flow dependent on temperature. It showed analogous divergence trouble, since fluid flow and heat transfer are being solved at same time. During calculation, temperature of liquid zone is various so that viscosity/momentun source is continuosly changed. This affects next calculation repeatedly. Finally calculation was divergent. Could you let let me know appropriate method to overcome this trouble?

Thanks,

J.W.Ryu
  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
Domain Imbalance HMR CFX 5 October 10, 2016 05:57
Can anyone give me some hint on how to make traction free boundary condition? poplar OpenFOAM 3 January 14, 2015 02:37
Boundary Conditions Thomas P. Abraham Main CFD Forum 20 July 7, 2013 05:05
Setting outlet Pressure boundary condition using CAFFA code Mukund Pondkule Main CFD Forum 0 March 16, 2011 03:23
How to set boundary condition in Fluent for the fo Peiyong FLUENT 1 November 10, 2006 11:44


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