Tagged: species-transport
-
-
April 14, 2022 at 6:51 pm
Ionatan
SubscriberI would like to ask a question about the modeling of my problem.
I want to simulate the dispersion of decomposing tracer gas in a cold storage chamber. I already have the boundary conditions for the mass flow rate of the tracer gas and the air circulation, as well as kinetic data for the gas. The problem arises in modeling this air recycle, which must have conservation of the tracer gas, not being able to set only the mass flow inlet condition in the diffusers and the pressure outlet condition in the fan. I would like to be able to simplify this region where the recycling occurs, between the fan and diffuser, but I do not know how to do this, is it possible through a UDF? Or do I have to model this recycle region, then I get into the problem of how to find the fan's characteristic curve since the only information I have about it is the air mass flow rate. Below are some figures to better visualize the problem. Any ideas or guidance are welcome.
April 15, 2022 at 6:47 pmKarthik R
AdministratorHello:
It depends on your modeling objectives. If the recycle region is important, then I'm afraid you will need to include this as part of your simulation. If you know the type of fan, you may be able to get the fan curve from the manufacturer (something to look into). If you are trying to set up as a first pass, you may wish to remove this region and use a simple mass flow inlet.
Karthik
April 18, 2022 at 1:56 pmIonatan
SubscriberThe recycle region is not of great interest, I just want to conserve the species, where all the gas that comes out of the fan goes back into the diffuser, how could I simplify this part to get this result?
April 19, 2022 at 4:42 pmRob
Ansys EmployeeIf you use an expression you can calculate the mass fraction of tracer on the way out and then set that value on the way into the domain. As an aside, given then inlet never quite equals the outlet how are you stopping the solver reaching either infinite pressure or perfect vacuum?
April 19, 2022 at 4:46 pmIonatan
SubscriberI found a UDF, but it's for water humidity, how could I convert it to my trace gas? I'm still trying to decipher it, looking at its parts and the UDF user manual.
#include "udf.h"
#define OUTLET_ID 11
DEFINE_PROFILE(set_humidity_inlet,inlet_thread,variable_index)
{
face_t inlet_face_index, outlet_face_index;
real water_mass_fraction=0;
real n = 0.;
real H_AVG = 0.;
Thread *outlet_thread;
Domain *domain;
domain=Get_Domain(1);
outlet_thread=Lookup_Thread(domain,OUTLET_ID);
begin_f_loop(outlet_face_index,outlet_thread)
{
water_mass_fraction = water_mass_fraction + F_YI(outlet_face_index,outlet_thread,variable_inde x);
n = n + 1;
}
end_f_loop(outlet_face_index,outlet_thread)
H_AVG = water_mass_fraction/n;
begin_f_loop(inlet_face_index,inlet_thread)
{
F_PROFILE(inlet_face_index,inlet_thread,variable_i ndex)=H_AVG;
}
end_f_loop(inlet_face_index,inlet_thread)
}
Viewing 4 reply threads- 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
- The solver failed with a non-zero exit code of : 2
- Difference between K-epsilon and K-omega Turbulence Model
- Time Step Size and Courant Number
- Mesh Interfaces in ANSYS FLUENT
- error in cfd post
Top Contributors-
2706
-
2142
-
1355
-
1144
-
462
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.
-