print : Print Parameters

  • Brief description : defines output format and path to the printing times.
  • File type : unfromatted ASCII
  • Additional information : the output can be printed in ASCII or binary format. In the case of binary printing, each MPI rank prints to its own file to speed up the output process. Each MPI rank prints mesh, displacements, stress, and strain relative to its computational subgrid: the computational subgrid is composed of both nodes and elements belonging to the rank and nodes and elements (socalled ghosts) that compose the interface between other subgrids and belongs to other ranks. The latter are then duplicated in the output files.
  • Index of the file path in ATLAS.fnames : 14
  • Parameters to be set :
NAME TYPE DESCRIPTION UM
PRINT_ASCII logical allows printing in ASCII format (false for binary format) -
PRINT_MESH logical allows mesh printing -
PRINT_DISP3D logical allows 3D displacements printing -
TIME_DISP3D_FILE character path to printing times for the displacements -
PRINT_STATUS3D logical allows 3D status printing (stress/strain) -
TIME_STATUS3D_FILE character path to printing times for the 3D status -
PRINT_STATUSIE logical allows Interface Element status printing (stress/displacement/plasticity) -
TIME_STATUSIE_FILE character path to printing times for the Interface Element status -
PRINT_BOX logical allows printing inside a user-defined box -
BOX_XMIN real minimu X value of the box boundary \(length\)
BOX_XMAX real maximum X value of the box boundary \(length\)
BOX_YMIN real minimu Y value of the box boundary \(length\)
BOX_YMAX real maximum Y value of the box boundary \(length\)
BOX_ZMIN real minimu Z value of the box boundary \(length\)
BOX_ZMAX real maximum Z value of the box boundary \(length\)
  • File structure :
PRINT_ASCII
PRINT_MESH
PRINT_DISP TIME_DISP3D_FILE
PRINT_STATUS3D TIME_STATUS3D_FILE
PRINT_STATUSIE TIME_STATUSIE_FILE
PRINT_BOX
BOX_XMIN BOX_XMAX
BOX_YMIN BOX_YMAX
BOX_ZMIN BOX_ZMAX
  • Example [standard ASCII] :
.true.                        ! PRINT_ASCII format (F=binary format)
.true.                        ! PRINT_MESH
.true. './INPUT/print_times'  ! PRINT_DISP3D
.true. './INPUT/print_times'  ! PRINT_STATUS3D (3D stress/strain)
.true. './INPUT/print_times'  ! PRINT_STATUSIE (IE stress/displacement/plasticity)
.true. './INPUT/print_times'  ! PRINT_BOX
  3000.    7000.              ! BOX_XMIN BOX_XMAX
  1500.    3500.              ! BOX_YMIN BOX_YMAX
 -1050.    -950.              ! BOX_ZMIN BOX_ZMAX