-
-
January 31, 2021 at 12:57 pm
100041488
SubscriberHi folks,
I am creating my first UDF and I have a problem, I do not understand how to read the face wall temperature
. Can anyone help me?. The code is almost ready except how to input this temperature. Many thanks in advance.
PS: If i set up temperature at 500 K all calculus are ok, but I would need to read the real one!
#include "udf.h"
#define QMAX 407400 /* W/m2 */
#define EEPSILON 0.1
#define TAU 5.67e-8
#define T_AIRE 300
#define H_AIRE 40 /* convective coef.W/m2K */
/* profile for heat flux*/
DEFINE_PROFILE(heatflux_profile, t, i)
{
/* variable declaration */
real centroide[ND_ND]; /* vector position */
real x;
real y;
face_t f;
cell_t cell;
real seno; /* heat distribution */
real T_p; /* wall temperature */
begin_f_loop(f, t)
{
F_CENTROID(centroide,f,t);
x=centroide[0]; /* valor del cntroide en la componente x */
y=centroide[1]; /* valor del cntroide en la componente y */
seno=y/sqrt((x*x)+(y*y));
T_p = 500; /* I NEED TO FIND THE FUNCTION IN ORDER TO READ THE WALL TEMPERATURE, DO NOT WHY F_T(f,t) DOES NOT WORK */
if (0 < y)
{
F_PROFILE(f,t,i)=(QMAX*seno)-TAU*((T_p*T_p*T_p*T_p )-(EEPSILON*T_AIRE*T_AIRE*T_AIRE*T_AIRE))-H_AIRE*(T_ p-T_AIRE);
} else {
F_PROFILE(f,t,i)=0;
}
}
end_f_loop(f, t)
}
February 1, 2021 at 6:40 amKeyur Kanade
Ansys EmployeeDuplicate
Viewing 1 reply thread- You must be logged in to reply to this topic.
Ansys Innovation SpaceBoost Ansys Fluent Simulations with AWS
Computational Fluid Dynamics (CFD) helps engineers design products in which the flow of fluid components is a significant challenge. These different use cases often require large complex models to solve on a traditional workstation. Click here to join this event to learn how to leverage Ansys Fluids on the cloud, thanks to Ansys Gateway powered by AWS.
Earth Rescue – An Ansys Online Series
The climate crisis is here. But so is the human ingenuity to fight it. Earth Rescue reveals what visionary companies are doing today to engineer radical new ideas in the fight against climate change. Click here to watch the first episode.
Ansys Blog
Subscribe to the Ansys Blog to get great new content about the power of simulation delivered right to your email on a weekly basis. With content from Ansys experts, partners and customers you will learn about product development advances, thought leadership and trends and tips to better use Ansys tools. Sign up here.
Trending discussions- Suppress Fluent to open with GUI while performing in journal file
- Floating point exception in Fluent
- What are the differences between CFX and Fluent?
- Heat transfer coefficient
- Getting graph and tabular data from result in workbench mechanical
- Difference between K-epsilon and K-omega Turbulence Model
- The solver failed with a non-zero exit code of : 2
- Time Step Size and Courant Number
- Mesh Interfaces in ANSYS FLUENT
- error: Received signal SIGSEGV
Top Contributors-
5290
-
3311
-
2471
-
1308
-
1016
Top Rated Tags© 2023 Copyright ANSYS, Inc. All rights reserved.
Ansys does not support the usage of unauthorized Ansys software. Please visit www.ansys.com to obtain an official distribution.
-