CalculiX  2.13
A Free Software Three-Dimensional Structural Finite Element Program
timer.f File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine timer (ttime)
 

Function/Subroutine Documentation

◆ timer()

subroutine timer ( double precision  ttime)
7  double precision ttime
8 c
9  real temp
10 c
11 c This routine computes cpu time in double precision; it makes use of
12 c the intrinsic f90 cpu_time therefore a conversion type is
13 c needed.
14 c
15 c J.L Morales Departamento de Matematicas,
16 c Instituto Tecnologico Autonomo de Mexico
17 c Mexico D.F.
18 c
19 c J.L Nocedal Department of Electrical Engineering and
20 c Computer Science.
21 c Northwestern University. Evanston, IL. USA
22 c
23 c January 21, 2011
24 c
25  temp = sngl(ttime)
26  call cpu_time(temp)
27  ttime = dble(temp)
28 
29  return
30 
Hosted by OpenAircraft.com, (Michigan UAV, LLC)