Coupled thermal-viscoelastic problem
Coupled thermal-viscoelastic problem
(OP)
Hi, I need to simulate the firing of a ceramic component.
The mechanical model of the component during firing is viscoelastic. When there is a constant stress, the strain of the material increases with time. The stresses will be induced by the thermal profiles calculated.
For my problem, the thermal model will not receive information from the structural model.
I have thought of several ways to couple them, unfortunately all of them are wrong:
1) I calculate the final thermal profiles, then do the structural part using it. If some part of the piece is heated too fast but at the end the temperature becomes uniform, no stresses will be reported at all.
2) Each substep of the viscoelastic part will receive the stresses from the last substep and the profile of temperatures correspondent. Obviously wrong, the stresses will increase arithmetically and the more substeps, the higher and worst the stresses.
3) Each substep of the viscoelastic part will receive the displacements from the last substep. I think that it will have the same behaviour as option 2). Besides, the strain rate does not behave linearly (in both senses of the word, the model is Norton's law).
Any Ideas? what is the right way to do this?
The mechanical model of the component during firing is viscoelastic. When there is a constant stress, the strain of the material increases with time. The stresses will be induced by the thermal profiles calculated.
For my problem, the thermal model will not receive information from the structural model.
I have thought of several ways to couple them, unfortunately all of them are wrong:
1) I calculate the final thermal profiles, then do the structural part using it. If some part of the piece is heated too fast but at the end the temperature becomes uniform, no stresses will be reported at all.
2) Each substep of the viscoelastic part will receive the stresses from the last substep and the profile of temperatures correspondent. Obviously wrong, the stresses will increase arithmetically and the more substeps, the higher and worst the stresses.
3) Each substep of the viscoelastic part will receive the displacements from the last substep. I think that it will have the same behaviour as option 2). Besides, the strain rate does not behave linearly (in both senses of the word, the model is Norton's law).
Any Ideas? what is the right way to do this?





RE: Coupled thermal-viscoelastic problem
For example (2 load steps),
antype,0 ! static analysis
nlgeom,on ! Turn on Large Deformation Effects
solc,on,on ! Turn on solution control
eqsl,sparse,,,,,1
!CONSTRAIN YOUR MODEL PROPERLY...
nsub,1,10,1
time,3600
bf,all,temp,25
toffst,273
kbc,0
SOLVE !This completes load step 1, a dwell at 25C for 3600s
autots,off ! User turned off automatic time stepping
nsub,6,6,6
time,4780
bf,all,temp,-34 !Go down to -34C
kbc,0 !RAMP RATE
SOLVE !END LOAD STEP 2
etc....till your done.