-
-
April 21, 2024 at 9:50 pm
-
April 22, 2024 at 2:45 pm
Chandra Sekaran
Ansys EmployeeTo input enthalpy material property in an APDL script, you can use the 'MPDATA' command. This command allows you to define material properties that are associated with a temperature table, which must be defined first using the 'MPTEMP' command. Here's an example script that demonstrates how to input enthalpy:
! Define temperature points
MPTEMP,1,0,100,200,300,400,500
! Define enthalpy values at the specified temperatures
MPDATA,ENTH,1,,900,1800,2700,3600,4500
In this example, 'MPTEMP' defines the temperature points, and 'MPDATA' assigns the enthalpy values at those temperatures for material reference number 1. The 'ENTH' label is used to specify that the data being defined is enthalpy. The values after 'ENTH' represent the enthalpy at each temperature point, in units of J/m^3 as suggested for a transient thermal analysis.
Remember to replace the enthalpy values with those appropriate for your specific material and analysis. -
April 23, 2024 at 2:11 pm
moi amibe
SubscriberThanks, is it possible to go beyond T6, for example T7, T8 ? in MPTEMP
-
April 23, 2024 at 4:02 pm
Chandra Sekaran
Ansys EmployeeThe format is MPTEMP,Â
SLOC
,ÂT1
,ÂT2
,ÂT3
,ÂT4
,ÂT5
,ÂT6 where SLOC is the starting location. Similar field exists in MPDATA also .
So if you have more than 6 temperatures you can do the following:
mptemp,1,100,200,300,400,500,600
mptemp,7,700,800,900
mpdata,enth,1,1,900,1800,2700,3600,4500
mpdata,enth,1,7,6000,7500,9000
-
April 23, 2024 at 4:34 pm
moi amibe
Subscriberthank you
I work on phase change materials, with transient thermal. how to achieve a phase change (especially fusion) ? please
-
- The topic ‘Enthalpie in transient thermal’ is closed to new replies.
-
3387
-
1052
-
1050
-
886
-
852
© 2025 Copyright ANSYS, Inc. All rights reserved.