Author Topic: Fully coupled problem with partition command  (Read 4357 times)

crepes

  • Full Member
  • ***
  • Posts: 54
Fully coupled problem with partition command
« on: December 03, 2018, 01:30:56 AM »
Hello,

Imagine a problem with 3 degrees of freedom.

Should an input file which includes

Code: [Select]
part
1 1 1

as the only partition with e.g.

Code: [Select]
      PART,,1
      loop,, 10
        tang,,1
      next

yield the same solution as an input file without any partition stuff?

Or maybe another question: Should they have the same tangent matrix?

Kind regards

Prof. S. Govindjee

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 1160
Re: Fully coupled problem with partition command
« Reply #1 on: December 03, 2018, 06:37:07 AM »
I believe so.  See http://feap.berkeley.edu/wiki/index.php/Partitions for some additional information on partitions.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2647
Re: Fully coupled problem with partition command
« Reply #2 on: December 03, 2018, 10:31:28 AM »
Try it and let us know!

crepes

  • Full Member
  • ***
  • Posts: 54
Re: Fully coupled problem with partition command
« Reply #3 on: December 04, 2018, 09:55:11 AM »
Dear Professor Taylor, Dear Professor Govindjee,

Thank you very much for your replies.

Try it and let us know!
I tried it recently with a built-in feap-element and both the variants (with PART 1 1 1, and additionally without any partition commands) behaved the same. I had done it before with different results, but I think I just had messed something up with the input file.

I believe so.  See http://feap.berkeley.edu/wiki/index.php/Partitions for some additional information on partitions.
The link is very helpful. I  did not take into account that I might need to do some changes in my user element when using part command. But still when I had a look at the routines solid2d.f, partpt.f, pmacr6.f and other routines that are called, it seems to me that changes regarding PART are optional inside a user element. Maybe just for saving computation time.

Am I right? If not, I should start a second attempt to understand what's going on.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2647
Re: Fully coupled problem with partition command
« Reply #4 on: December 05, 2018, 11:26:44 AM »
You are correct about adding 'part' checks in an element.  Partitions only assemble the dof's that are active.  So even if you compute everything in an element the inactive parts are not used.

crepes

  • Full Member
  • ***
  • Posts: 54
Re: Fully coupled problem with partition command
« Reply #5 on: December 05, 2018, 11:15:30 PM »
Thank you very much for this information