Skip to content

!WRITE

Enables output to various files (result file, visualization file, log, FEMAP neutral) and specifies the output frequency. The card is implemented as a single keyword; its RESULT / VISUAL / LOG / FEMAP (formerly UTABLE) parameters select the output destinations (fstr_ctrl_get_WRITE in fistr1/src/common/fstr_ctrl_common.f90, fstr_ctrl_get_output in fistr1/src/lib/m_out.f90).

Format and surface specifications for visualization are given on the separate !VISUAL card.

Parameters

Parameter Role
RESULT Enables output of the analysis result data file.
VISUAL Enables visualization data output via the in-memory visualizer.
LOG Enables log file output.
FEMAP Enables output in FEMAP neutral format.
FREQUENCY = n Step interval of output. Default is 1.

RESULT / VISUAL / LOG / FEMAP may be combined on the same card, each enabled independently.

Examples

!WRITE,RESULT — Result file

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

!WRITE, RESULT, FREQUENCY=2

!WRITE,VISUAL — Visualization file

Enables visualization data output. The minimal dataset is as follows. surface_num and !surface on the !VISUAL card are required.

!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 destinations can be enabled with a single !WRITE card.

!WRITE, RESULT, VISUAL, FREQUENCY=1