March 4, 2024 at 4:36 pm
dlooman
Ansys 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 values
t4d(1,1,1,1)=10,20,30
t4d(1,2,1,1)=20,40,60
t4d(1,1,2,1)=100,200,300
t4d(1,2,2,1)=200,400,600
Â
!!! Ymax values
t4d(1,1,1,2)=1.0,2.0,3.0
t4d(1,2,1,2)=2.0,4.0,6.0
t4d(1,1,2,2)=10.0,20.0,30.0
t4d(1,2,2,2)=20.0,40.0,60.0
Â
The table would be input with % signs like below:
sf,all,conv,%t4d%