Author Topic: Require Nodal Projection ( isw = 8 )  (Read 3844 times)

jbruss

  • Jr. Member
  • **
  • Posts: 36
Require Nodal Projection ( isw = 8 )
« on: January 21, 2018, 03:28:25 PM »
Hello -

Is there a way to force FEAP to compute the nodal projection using STRE,NODE two time in a row? I have some user quantities that are changing in between these commands.

In other words if I have

Code: [Select]
STRE,NODE ! call 1
! Do some user things here
STRE,NODE ! call 2

Only call 1 performs the loop over the elements with isw=8.

Thank you in advance!
Jonathan

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2647
Re: Require Nodal Projection ( isw = 8 )
« Reply #1 on: January 21, 2018, 06:05:54 PM »
If you put the commands
          MATE,,1
          MATE,,0
between the two STRE NODE it should "trick" the program to set the flag "fl(11)" to .false. and then it should project

jbruss

  • Jr. Member
  • **
  • Posts: 36
Re: Require Nodal Projection ( isw = 8 )
« Reply #2 on: January 21, 2018, 06:27:42 PM »
Great! Thank you again Professor Taylor!