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

help,why the negative energy source does'nt make the temperature decrease, thank you!

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 6, 2009, 03:04
Default help,why the negative energy source does'nt make the temperature decrease, thank you!
  #1
New Member
 
patrick
Join Date: Apr 2009
Posts: 14
Rep Power: 17
hunter is on a distinguished road
I am simulating the over-heated liquid evaporation. but the temperature did not decrease. Actually it should because some liquid evaporate into gas and the latent heat is from the liquid. I have done this for over months, but little progress is obtained. who can help me? I would appreciate your help. the model is as below:
liquid saturation temperature:3.7K
liquid initial-state temperature:4.2K
the liquid is in the state of over-heated. It should be evaporate by absorbing the energy of partion of liquid.
the model is vof. udf is as below:
DEFINE_ADJUST(m_dot_adjust, domain)
{cell_t cell;
Thread *mix_th,*pri_th ,*sec_th;
Domain *d;
d=Get_Domain(1);
thread_loop_c(mix_th,d)
{pri_th= THREAD_SUB_THREAD(mix_th, 0);
sec_th= THREAD_SUB_THREAD(mix_th, 1);
begin_c_loop(cell,mix_th)
{

if(C_T(cell, mix_th)>=T_SAT)
{
m_dot_l=0.1*C_VOF(cell,pri_th)*C_R(cell,pri_th)*(( C_T(cell,mix_th)/T_SAT)-1);
C_UDMI(cell,pri_th,3)=m_dot_l;
m_dot_l_m=0.1*C_R(cell,pri_th)*fabs(C_T(cell,mix_t h)-T_SAT)/T_SAT;
C_UDMI(cell,pri_th,4)=m_dot_l_m;
m_dot_l_eng=0.1*C_VOF(cell,pri_th)*C_R(cell,mix_th )/T_SAT;
C_UDMI(cell,pri_th,5)=m_dot_l_eng;
}
else
{
m_dot_v=0.1*C_VOF(cell,sec_th)*C_R(cell,sec_th)*(( C_T(cell,mix_th)/T_SAT)-1);
C_UDMI(cell,sec_th,9)=m_dot_v;
m_dot_v_m=0.1*C_R(cell,sec_th)*(-(C_T(cell,mix_th)/T_SAT)+1);
C_UDMI(cell,sec_th,10)=m_dot_v_m;
m_dot_v_eng=-0.1*C_VOF(cell,sec_th)*C_R(cell,sec_th)/T_SAT;
C_UDMI(cell,sec_th,11)=m_dot_v_eng;
}
}end_c_loop(cell,pri_th)
}
}
DEFINE_SOURCE(liq_src, cell, pri_th, dS, eqn)
{
Thread *mix_th,*sec_th;
mix_th = THREAD_SUPER_THREAD(pri_th);
sec_th = THREAD_SUB_THREAD(mix_th, 1);
if(C_T(cell, mix_th)>=T_SAT)
{source0=-C_UDMI(cell,pri_th,3);
dS[eqn]= -C_UDMI(cell,pri_th,4);}
else
{source0=C_UDMI(cell,sec_th,9);
dS[eqn]=0;}
C_UDMI(cell,pri_th,12)=source0;
return (source0);
}

DEFINE_SOURCE(gas_src, cell, sec_th, dS, eqn)
{
Thread *mix_th,*pri_th;
mix_th = THREAD_SUPER_THREAD(sec_th);
pri_th = THREAD_SUB_THREAD(mix_th, 0);
if(C_T(cell, mix_th)>=T_SAT)
{source1=C_UDMI(cell,pri_th,3);
dS[eqn]= 0;}
else
{source1=-C_UDMI(cell,sec_th,9);
dS[eqn]=-C_UDMI(cell,sec_th,10);}
C_UDMI(cell,sec_th,13)=source1;
return (source1);
}

DEFINE_SOURCE(mixture_eng_src, cell, mix_th, dS, eqn)
{ Thread * sec_th,*pri_th;
pri_th= THREAD_SUB_THREAD(mix_th, 0);
sec_th= THREAD_SUB_THREAD(mix_th, 1);
if(C_T(cell, mix_th)>=T_SAT)
{source3=-20800*C_UDMI(cell,pri_th,3);
dS[eqn]= -20800*C_UDMI(cell,pri_th,5);}
else
{source3=20800*C_UDMI(cell,sec_th,9);
dS[eqn]=20800*C_UDMI(cell,sec_th,11);}
C_UDMI(cell,mix_th,14)=source3;
return (source3);}
the evaprated liquid is monitored. the source0 is negative and the source1 is positive. the source3 is negative. therefore, the source3 is added into the energy equation, the temperature should decrease, why it increase? who can help me, it drives me crazy.
hunter is offline   Reply With Quote

Old   November 6, 2009, 03:07
Default
  #2
New Member
 
patrick
Join Date: Apr 2009
Posts: 14
Rep Power: 17
hunter is on a distinguished road
my email address is bj-luo@hotmail.com, welcome everyone to communicate with me, thank you very much!
hunter is offline   Reply With Quote

Old   November 6, 2009, 04:04
Default help,why the negative energy source does'nt make the temperature decrease, thank you!
  #3
Member
 
Shane
Join Date: Oct 2009
Posts: 52
Rep Power: 16
sircorp is on a distinguished road
Try to check the value of C_UDMI(cell,sec_th,(3,4,5,9,11) and source1(2,3).

Try to check these two steps.

1) Are they are geeting properly assigned.

2)Also I believe real value are getting truncated.


sircorp
sircorp is offline   Reply With Quote

Old   November 6, 2009, 10:08
Default
  #4
New Member
 
patrick
Join Date: Apr 2009
Posts: 14
Rep Power: 17
hunter is on a distinguished road
hello sircorp,

thank you for your help. the C_UDMI(cell,sec_th,(3,4,5,9,11) and source1(2,3) are correct. source0=-1.79,sour1=1.79,source3=-1.79*20800;
I have spent lots of time on it. it is very strange. the energy source is negative, but the temperature is increasing. begging for help!!!
hunter is offline   Reply With Quote

Old   November 8, 2009, 07:25
Default
  #5
New Member
 
patrick
Join Date: Apr 2009
Posts: 14
Rep Power: 17
hunter is on a distinguished road
maybe the problem is from the enthalpy. I assigned both the gas' and the liquid's standard state enthalpy is 0 with a 4.2K reference. but now I found the enthalpy is -1058514j/kg for liquid and -2147306j/kg for gas at 4.2K. I feel confused "is not it 0"? why? who can give me some words, thank you
hunter is offline   Reply With Quote

Old   November 8, 2009, 10:54
Default
  #6
New Member
 
patrick
Join Date: Apr 2009
Posts: 14
Rep Power: 17
hunter is on a distinguished road
is there someone who give me some words about re-defined the enthalpy? h=cp*t? is it possible?
hunter is offline   Reply With Quote

Old   May 12, 2010, 17:39
Default
  #7
New Member
 
Wei Shao
Join Date: Apr 2009
Posts: 3
Rep Power: 17
new bubble is on a distinguished road
Have you solved your problem? I have the same problem
new bubble is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
ATTENTION! Reliability problems in CFX 5.7 Joseph CFX 14 April 20, 2010 15:45
How to set Temperature as heat source in Solids shahpar73 CFX 2 August 20, 2009 18:51
flow in pipe with momentum and energy source Atit Koonsrisuk CFX 3 March 29, 2005 16:58
How to define energy source? Marie FLUENT 2 September 19, 2002 05:27
Why FVM for high-Re flows? Zhong Lei Main CFD Forum 23 May 14, 1999 13:22


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