Hi,
@Stringmaker I tried the following set of commands, where I read a temperature of 500 K from the table. I am doing a transient thermal analysis in this complicated way as I need to stick in few other analysis after every cycle of transient analysis.
/PREP7
length=1.0
height=1.0
blc4,0,0,length, height
ET,1, PLANE55
MP,Dens,1,920
mp,c,1,2.040
mp,kxx,1,5
ESIZE,0.05
AMESH,ALL
FINISH
/SOLU
ANTYPE,STATIC
NSEL,S,LOC,Y,0
D,ALL,TEMP,100
NSEL,S,LOC,Y,height
D,ALL,TEMP,100
ALLSEL
SOLVE
FINISH
*Do,i,1,1,1
/SOLU
ANTYPE,TRANS
LDREAD,TEMP,LAST,,,2,,rth
time,300
nropt,full
lumpm,0
nsubst,10
neqit,100
autots,off
lnsrch,on
outres,all,all
kbc,0
temperature = 500
NSEL,S,LOC,Y,height
D,ALL,TEMP,temperature
NSEL,S,LOC,Y,0
D,ALL,TEMP,100
ALLSEL
Solve
Finish
*IF,i,Eq,4,Then
*Exit
*Endif
*Enddo
The confusion I am facing is in LDREAD command which reads the file.rth and apply the temperature as initial condition (use of option 2). Then I specify Boundary condition in transient analysis and use ramped loading then at the bottom of square Y=0 I expected that the temperature at these nodes will remain 100 K but when I plot the temperature variation on these nodes it ramps from zero to 100K rather than staying at 100K. Simillarly for top nodes the temperature ramps to 500 K from zero and not from initial condition which was applied using LDREAD.
Can some one tell me if I am using some option incorrectly?
Regards