-
-
March 3, 2024 at 6:24 pmFrancesco MiccoliSubscriber
Hello everyone, I am implementing a thermal transient thermal simulation in Ansys Mechanical and would like to set the film coefficient for convection as a function of temperature and space alike. As you can see in the first picture I can easily select the film coefficient to be a function.
My problem is that I can't find any reference regarding the possible variables (and their names) to be used in this field. By trial and error I figured that 'x','y','z','s' refer to coordinates and 'time' to the time value but I am not able to use temperature as a variable here.
As you can see in the second picture it is very easy to set the film coefficient as a tabulated function of a surface temperature alone. What I need is to be able to have it function of both temperature and coordinate.
Any help is greatly appreciated, thank you!
-
March 4, 2024 at 4:36 pmdloomanAnsys Employee
Mechanical doesn't support a 4D table. You would need to use APDL commands for that. The commands below create a table that is a function TIME, TEMP, X and Y, but you could replace TIME with Z. Â
*dim,t4d,TAB4,3,2,2,2,TIME,TEMP,X,Y*taxis,t4d(1),1,0.0,1.0,2.0Â Â Â Â Â ! TIME index values*taxis,t4d(1),2,22.0,200.0Â Â Â Â Â ! TEMP index values*taxis,t4d(1),3,0.0,2.0Â Â Â Â Â Â Â ! X index values*taxis,t4d(1),4,0.0,3.0Â Â Â Â Â Â Â ! Y index valuesÂ!!! Ymin valuest4d(1,1,1,1)=10,20,30t4d(1,2,1,1)=20,40,60t4d(1,1,2,1)=100,200,300t4d(1,2,2,1)=200,400,600Â!!! Ymax valuest4d(1,1,1,2)=1.0,2.0,3.0t4d(1,2,1,2)=2.0,4.0,6.0t4d(1,1,2,2)=10.0,20.0,30.0t4d(1,2,2,2)=20.0,40.0,60.0ÂThe table would be input with % signs like below:sf,all,conv,%t4d%-
March 5, 2024 at 6:31 pmFrancesco MiccoliSubscriber
Is it possible to do something like that with pyAPDL?
-
-
- The topic ‘Film Coefficient as function of temperature and coordinate’ is closed to new replies.
- Problem with access to session files
- Ayuda con Error: “Unable to access the source: EngineeringData”
- At least one body has been found to have only 1 element in at least 2 directions
- Error when opening saved Workbench project
- Geometric stiffness matrix for solid elements
- How to select the interface delamination surface of a laminate?
- How to apply Compression-only Support?
- Timestep range set for animation export
- Image to file in Mechanical is bugged and does not show text
- SMART crack under fatigue conditions, different crack sizes can’t growth
-
1191
-
513
-
488
-
225
-
209
© 2024 Copyright ANSYS, Inc. All rights reserved.