To add the effect of uniform temperature change modify ./elements/shells/shl3ds.f at around line 1300 to read
call dmat2d(d,d(31),dd,alp)
thk = d(14)
thk3 = thk**3/12.d0
norm(1) = (dd(1,1)*eps(1) + dd(1,2)*eps(2) + dd(1,4)*eps(3))*thk
norm(2) = (dd(2,1)*eps(1) + dd(2,2)*eps(2) + dd(2,4)*eps(3))*thk
norm(3) = (dd(4,1)*eps(1) + dd(4,2)*eps(2) + dd(4,4)*eps(3))*thk
! Modify in-plane forces by constant temperature change
norm(1:2) = norm(1:2) - alp(1:2)*d(9)
temp(1) = norm(1)
temp(2) = norm(2)
temp(4) = norm(3)
The change is the line after the comment -- be sure to place exactly as shown so outputs will be correct.
Modify your materials to read
MATErial 1
Shell
ELAStic ISOTropic 7e+04 0.3
THERmal ISOTropic 2.3e-05 85 ! 85 is temperature change
THICk,, 0.5, 0.833333333
DENSity 1 2.7e-06
Also if you want the shell to be only 1 part instead of 6 you need a TIE command after the mesh END command to force the shell to be connected.