FEAP User Forum

FEAP => Input File Issues => Topic started by: jbruss on January 21, 2018, 03:28:25 PM

Title: Require Nodal Projection ( isw = 8 )
Post by: jbruss 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
Title: Re: Require Nodal Projection ( isw = 8 )
Post by: Prof. R.L. Taylor 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
Title: Re: Require Nodal Projection ( isw = 8 )
Post by: jbruss on January 21, 2018, 06:27:42 PM
Great! Thank you again Professor Taylor!