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

Define_Specific_heat fluent - Enthalpy/Tref value

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 14, 2022, 02:29
Default Define_Specific_heat fluent - Enthalpy/Tref value
  #1
New Member
 
Abhinay
Join Date: Feb 2015
Location: Bethlehem, Pennsylvania
Posts: 23
Rep Power: 11
soankerabhinay is on a distinguished road
I am working on a simulations where specific heat capacity is dependent on temperature. This is the code I used based on fluent manual

#include "udf.h"
DEFINE_SPECIFIC_HEAT(my_user_cp, T, Tref, h, yi)
{
real cp;
if (T<=693)
{
cp = (2.79*T+725.07);
*h = cp*(T-Tref);
return cp;
}
else
{
cp=2729.00;
*h = cp*(T-Tref);
return cp;
}

}

About my transient simulations, basically an heat exchanger where heat transfer fluid is circulated in a pipe, so, as the temperature of the fluid varies with time and space, specific heat needs to be updated using an UDF above. UDF works fine is hooked up (No error messages), but after few hundred seconds, energy residual keeps increasing. If I unload specific heat UDF and keep the specific heat constant then energy residual is stable and residual keeps reducing.
I highly suspect problem is with *h (enthalpy). To begin with, I don't really understand what Tref value I should consider. My simulation starts with the fluid at 365K and I set the T reference value (under reference values) as 365K.
1)Is this correct Tref value?
2) Is *h increase in enthalpy for that time step (If that makes sense), in that case shouldn't DeltaT be (current temperature at node/cell - temperature during previous timestep at that node/cell). My second question may not be accurate, please correct me if it doesn't make any sense.
Any help is greatly appreciated!
soankerabhinay 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
CFX vs. FLUENT turbo CFX 4 April 13, 2021 08:08
How to solve UDF compilation problems in Fluent. pakk Fluent UDF and Scheme Programming 16 September 10, 2018 02:48
Two questions on Fluent UDF Steven Fluent UDF and Scheme Programming 7 March 23, 2018 03:22
heat transfer with RANS wall function, over a flat plate (validation with fluent) bruce OpenFOAM Running, Solving & CFD 6 January 20, 2017 06:22
Problems in lauching FLUENT Lourival FLUENT 3 January 16, 2008 16:48


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