-
-
November 14, 2018 at 6:28 pm
Edem930527
SubscriberHello!
I'd like to simulate a transient thermodynamic problem.
I have a heat changer with cooling water and ethanol-water alloy. I'd like to add the alloy temperature and the time contact from an excel file. The simulation is 90 minutes and I determine the temperature every minute (inside this excel).
How can I import this excel to Fluent?
-
November 15, 2018 at 5:02 am
Keyur Kanade
Ansys EmployeeExcel can be used through workbench for driving input and output parameters.
But in your case I think you will need to write UDF.
Please check customization manual in help.
-
December 2, 2018 at 5:33 pm
Edem930527
SubscriberI wrote a UDF, but I think it doesn't work.
I'd like 3D simulation, the start temperature is 351,3K (78°C) and then the temperature arises every sec.
Can you check it?
#include "udf.h"
DEFINE_PROFILE(temp, t, i)
{
real x[ND_ND];
real x0;
face_t f;
real time= CURRENT_TIME;
begin_f_loop(f, t)
{
F_CENTROID(x,f,t);
x0 = x[0];
if (time<1800)
F_PROFILE(f, t, i) = 351.3 + 0.01 * x0;
else
F_PROFILE(f, t, i) = 373;
}
end_f_loop(f, t)
}
-
December 3, 2018 at 8:51 pm
DrAmine
Ansys EmployeeYou want the temperature to rise every second so why you are using the x-coordinate there. If your temperature profile is only time-dependent just read a transient table or transient profile for that
-
December 3, 2018 at 9:45 pm
Edem930527
SubscriberThank you for your answer!
Can you write an example what you though?
Best regards,
Adam
-
December 4, 2018 at 4:29 am
Keyur Kanade
Ansys Employeehere is a example for profile
((sampleprofile transient 3 0)
(time
1
2
3
)
(u
10
20
30
)
)
-
- You must be logged in to reply to this topic.

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.
- 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
-
2656
-
2120
-
1347
-
1118
-
461
© 2023 Copyright ANSYS, Inc. All rights reserved.