/unix/pltime.f

https://bitbucket.org/nrs/feappv3_1 · FORTRAN Legacy · 35 lines · 9 code · 12 blank · 14 comment · 0 complexity · 6c907064b4670e24bd97bb956fc88fb6 MD5 · raw file

  1. c$Id: pltime.f,v 1.1 2000/08/24 20:49:58 rlt Exp $
  2. subroutine pltime()
  3. c * * F E A P * * A Finite Element Analysis Program
  4. c.... Copyright (c) 1984-2012: Robert L. Taylor
  5. c All rights reserved
  6. c-----[--+---------+---------+---------+---------+---------+---------+-]
  7. c Purpose: Place time on plot window
  8. c Inputs: None
  9. c Outputs: To plot window
  10. c-----[--+---------+---------+---------+---------+---------+---------+-]
  11. implicit none
  12. include 'tdata.h'
  13. include 'pdatxt.h'
  14. character yy*15
  15. save
  16. c Display time for current view
  17. dtext = 0.00d0
  18. call pppcol(1,1)
  19. yy = ' '
  20. call tplot(1.13d0 , 0.135d0, yy, 15, 1)
  21. write(yy, '(6hTime =,1p,1e9.2)' ) ttim
  22. call tplot(1.13d0 , 0.135d0, yy, 15, 1)
  23. end