OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
dsecnd_EXT_ETIME.f File Reference

Go to the source code of this file.

Functions/Subroutines

double precision function dsecnd ()
 DSECND Using ETIME

Function/Subroutine Documentation

◆ dsecnd()

double precision function dsecnd

DSECND Using ETIME

Purpose:
!>
!>  DSECND returns the user time for a process in seconds.
!>  This version gets the time from the EXTERNAL system function ETIME.
!> 
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 34 of file dsecnd_EXT_ETIME.f.

35*
36* -- LAPACK auxiliary routine --
37* -- LAPACK is a software package provided by Univ. of Tennessee, --
38* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
39*
40*
41* =====================================================================
42*
43* .. Local Scalars ..
44 REAL T1
45* ..
46* .. Local Arrays ..
47 REAL TARRAY( 2 )
48* ..
49* .. External Functions ..
50 REAL ETIME
51 EXTERNAL etime
52* ..
53* .. Executable Statements ..
54*
55 t1 = etime( tarray )
56 dsecnd = tarray( 1 )
57 RETURN
58*
59* End of DSECND
60*
double precision function dsecnd()
DSECND Using ETIME