Author Topic: Paraview  (Read 7682 times)

ibry

  • Full Member
  • ***
  • Posts: 52
Paraview
« on: March 03, 2016, 01:35:26 AM »
Hello everyone,

How can I use the paraview?
And I also don't know to open *.vtu, what is the software to open it?
Thank you.

K.Li

  • Full Member
  • ***
  • Posts: 191
Re: Paraview
« Reply #1 on: March 03, 2016, 04:46:32 AM »
For FEAP, you will need to use a macro, see here, http://feap.berkeley.edu/forum/index.php?topic=1068.0

ibry

  • Full Member
  • ***
  • Posts: 52
Re: Paraview
« Reply #2 on: March 03, 2016, 06:49:08 AM »
Sure, I used macro for paraview.
I just don't know how to open file *.vtu.
Thank you.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2648
Re: Paraview
« Reply #3 on: March 03, 2016, 07:59:11 AM »
You should not need to open the *.vtu file.  It is to be read by the Paraview program (which you must download from their web site)

ibry

  • Full Member
  • ***
  • Posts: 52
Re: Paraview
« Reply #4 on: March 15, 2016, 02:21:29 AM »
Sorry I ask the common question.
How can I read pview command in the input file, if I want to plot at time 4 seconds (for example)?
I just write 'pvie,time,4' or how? Because I didn't get the expected plot result.
Thank you.

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2648
Re: Paraview
« Reply #5 on: March 15, 2016, 07:08:10 AM »
YOU can run your solution to time = 4, then plot with pview.

The commands to run to time = 4 are

LOOP,,10000 (bit enought to get to time 4 - it does not have to be 10000)
  TIME,,4
  LOOP,,newton_its
      TANG,,1
  NEXT
NEXT
PVIEW

Yaakov

  • Sr. Member
  • ****
  • Posts: 323
Re: Paraview
« Reply #6 on: July 19, 2016, 03:45:43 AM »
Dear Prof. Taylor,

should command be PVIEW or PVIEW, time for this case?

Thank you very much in advance for your answer!
Let's boost FEAP's performance!

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2648
Re: Paraview
« Reply #7 on: July 19, 2016, 05:34:09 AM »
If you only want one file then it should not need the 'time', if you are going to output multiple files you should use the 'time' parameter.   For example if you were to output every 10 time steps with a dt= 0.4 you could use the commands:

       dt,,0.4
       loop,,20
          loop,,10
             time
             loop,,10
               tang,,1
             next
          next
          pview time
       next

This does 200 time steps but only writes the paraview output every t0 time steps (i.e., at times 4,6,12,16,....

Yaakov

  • Sr. Member
  • ****
  • Posts: 323
Re: Paraview
« Reply #8 on: July 19, 2016, 06:07:14 AM »
Dear Prof. Taylor,
thank you very much for a detailed description of this command PVIEw!

Let's boost FEAP's performance!

Prof. R.L. Taylor

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 2648
Re: Paraview
« Reply #9 on: July 19, 2016, 07:44:54 AM »
I am not sure you have the latest macro can you post what you have so I can confirm the version