Author Topic: meaning of ea(*,*) and er(*,*) in shell3d.f  (Read 4232 times)

feapnew

  • New Member
  • *
  • Posts: 2
meaning of ea(*,*) and er(*,*) in shell3d.f
« on: March 28, 2022, 11:17:46 PM »
what do these lines do in shell3d.f

!       Construct rotation parameters: u-x = 1; u-y = 2 (same as defaults)

        ea(1,-iel) = 1
        ea(2,-iel) = 2

!       Construct rotation parameters: theta-x = 4; theta-y = 5

        er(1,-iel) = 4
        er(2,-iel) = 5

is the first comment correct, maybe should say displacements.

for user 2d element with nodal dofs x displacement, y displacement, temperature, what values of ea and er should i use to ignore temperature dof in deformed shape plot.

thanks for help.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2649
Re: meaning of ea(*,*) and er(*,*) in shell3d.f
« Reply #1 on: March 29, 2022, 08:42:05 AM »
The values of ea and er are to display boundary conditions.  If you want to ignore a DOF in a deformed plot you set PLOT DOFS 1 2 3  - if any are zero that dof is not used to scale the deform.  So you would set
   PLOT DOFS 1 2 0


feapnew

  • New Member
  • *
  • Posts: 2
Re: meaning of ea(*,*) and er(*,*) in shell3d.f
« Reply #2 on: March 29, 2022, 04:05:23 PM »
thank you professor.