**process max
#
Description#
This post computation gives at each node or Gauss point, the maximum value of a variable in the course of time. One output is produced for the totality of the time period for each variable specified.
Syntax#
**process max
\(~\,\) *list_var
name1 … nameN
The names name1, …, nameN designate the list of scalar variables to
treat. Outputs appearing in the file problem.utp
will be named
MAX_
name1, …, MAX_
nameN.
Example#
% compute the maximum value of the U1 and U2 displacements
**process max
*list_var U1 U2
% compute von Mises invariant of the stress tensor, ...
**process mises
*var sig
% ... then its maximum value
**process max
*list_var mises
**process fmax
#
Description#
This post computation produces for each variable specified an output per “map” of time, which corresponds to the maximum value achieved in the loading instant.
Syntax#
**process fmax
\(~\,\) *list_var
name1 … nameN
The names name1, …, nameN designate the scalar variables to be
treated. The output names which are generated will be of the form
FMAX_
name1, …, FMAX_
nameN (see the file
problem.utp
).
Example#
% this will provide FMAX_U1 and FMAX_U2
**process fmax
*list_var U1 U2
**process min
#
Description#
This post computation gives at each node or Gauss point, the minimum value of a variable in the course of time. One output is produced for the totality of the time period for each variable specified.
Syntax#
**process min
\(~\,\) *list_var
name1 … nameN
The names name1, …, nameN designate the list of scalar variables to
treat. Outputs appearing in the file problem.utp
will be named
MIN_
name1, …, MIN_
nameN.
Example#
% compute the minimum value of the temperature
**process min
*list_var TP
% compute eigenvalues of the stress tensor, ...
**process eigen2
*var sig
% 3 new variables are now available for the processing,
% sigp3 <= sigp2 <= sigp1
% ... then the minimum value of the two smaller ones
**process min
*list_var sigp2 sigp3
**process fmin
#
Description#
This post computation produces for each variable specified an output per “map” of time, which corresponds to the minimum value achieved up to each loading instant.
Syntax#
**process fmin
\(~\,\) *list_var
name1… nameN
The names name1, …, nameN designate the scalar variables to be
treated. The output names which are generated will be of the form
FMIN_
name1, …, FMIN_
nameN (see the file
problem.utp
).
Example#
% this will provides FMIN_TP
**process fmin
*list_var TP