FEAP User Forum

FEAP => Programming => Topic started by: anshulfy on July 24, 2021, 10:01:58 AM

Title: Paraview Output of displacement and stresses in User element
Post by: anshulfy on July 24, 2021, 10:01:58 AM
Dear all,
How do I get the Paraview output of stress and displacement components in for a user element?

Thanks,
--
Anshul
Title: Re: Paraview Output of displacement and stresses in User element
Post by: Prof. R.L. Taylor on July 24, 2021, 10:58:32 AM
Displacements are from nodal array, you do not need to add anything

Stresses are from projected values, thus you need to code the “isw=8” part of your element.  Consult programmer manual or look at elements provided.
Title: Re: Paraview Output of displacement and stresses in User element
Post by: anshulfy on July 24, 2021, 08:08:08 PM
Thanks Prof. Taylor.