Skip to content

!WRITE

Enables output to various files (result files, visualization files, logs, and FEMAP neutral files) and specifies the output frequency. In the implementation, this is a single card, and the RESULT / VISUAL / LOG / FEMAP (formerly UTABLE) parameters select the output destinations (in fistr1/src/common/fstr_ctrl_common.f90, fstr_ctrl_get_WRITE; in fistr1/src/lib/m_out.f90, fstr_ctrl_get_output).

Visualization-specific controls such as the visualization format and surface specification are provided on the separate !VISUAL card.

Parameters

Parameter Role
RESULT Enables analysis result data file output.
VISUAL Enables visualization data output through the in-memory visualizer.
LOG Enables log file output.
FEMAP Enables FEMAP neutral format output.
FREQUENCY = n Specifies the output step interval. The default is 1.

RESULT / VISUAL / LOG / FEMAP can be specified together on the same card and enabled independently.

Examples

!WRITE,RESULT — Result file

Enables analysis result data file output. The physical quantities to output are selected with !OUTPUT_RES.

!WRITE, RESULT, FREQUENCY=2

!WRITE,VISUAL — Visualization file

Enables visualization data output. A minimal dataset example is shown below. On the !VISUAL card, the surface_num and !surface specifications cannot be omitted.

!WRITE, VISUAL, FREQUENCY=2
!VISUAL,method=PSR
!surface_num=1
!surface 1
!output_type=VTK

!WRITE,LOG — Log

Specifies the step interval for log file output.

!WRITE, LOG, FREQUENCY=2

Combined example

Multiple output destinations can be enabled simultaneously with a single !WRITE card.

!WRITE, RESULT, VISUAL, FREQUENCY=1