Can anyone help me decoding below code, as in what is the function of time()?
IF (TIME(1).EQ.0.0) THEN
open (unit = 20, file = "C:\Temp\RANDOM.TXT")
Can anyone help me decoding below code, as in what is the function of time()?
IF (TIME(1).EQ.0.0) THEN
open (unit = 20, file = "C:\Temp\RANDOM.TXT")
See the Abaqus User Subroutines Reference Guide, in section 1 User Subroutines -> 1.1 Abaqus/Standard subroutines -> 1.1.41 UMAT. TIME
is an array with two elements:
TIME(1)
Value of step time at the beginning of the current increment or frequency.
TIME(2)
Value of total time at the beginning of the current increment.