Ansys Assistant will be unavailable on the Learning Forum starting January 30. An upgraded version is coming soon. We apologize for any inconvenience and appreciate your patience. Stay tuned for updates.

Ansys Learning Forum Forums Discuss Simulation General Mechanical Film Coefficient as function of temperature and coordinate Reply To: Film Coefficient as function of temperature and coordinate

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%
[bingo_chatbox]