**process volume#

Description#

Calculate the volume of a group of elements (elset).

Syntax#

**process volume

Example#

****post_processing
    ***precision 3
    ***data_source mesh_only
     **format Z7
     **open mymesh.geof
     **maps 1.

    ***global_post_processing
     **file integ
     %
     % volume of the whole structure
     %
     **elset ALL_ELEMENT
     **process volume
     %
     % volume of a part
     %
     **elset PART1
     **process volume

****return

**process volume_of_element#

Description#

Compute the volume of each elements and set this value as an integ field (called “volume”).

Syntax#

**process volume_of_element

Example#

The following example is extracted from Post_test/INP/volume_of_element.inp:

****post_processing

 ***data_source mesh_only
  **format Z7
  **open volume_of_element.geof
  **maps 1.

 ***global_post_processing
  **file integ
  **elset ALL
  **process volume_of_element

****return