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

Go to the source code of this file.

Functions/Subroutines

double precision function dsecnd ()
 DSECND Using INTERNAL function CPU_TIME.

Function/Subroutine Documentation

◆ dsecnd()

double precision function dsecnd

DSECND Using INTERNAL function CPU_TIME.

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

Definition at line 34 of file dsecnd_INT_CPU_TIME.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* .. Local Scalars ..
43*
44 REAL T
45*
46* .. Intrinsic Functions ..
47*
48 INTRINSIC cpu_time
49*
50* .. Executable Statements .. *
51*
52 CALL cpu_time( t )
53 dsecnd = t
54 RETURN
55*
56* End of DSECND
57*
double precision function dsecnd()
DSECND Using INTERNAL function CPU_TIME.