File: writesuccess.f90

package info (click to toggle)
packmol 20.010-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 828 kB
  • sloc: tcl: 7,504; f90: 4,916; fortran: 1,926; makefile: 149; sh: 110
file content (46 lines) | stat: -rw-r--r-- 1,582 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
!
!  Written by Leandro Martínez, 2009-2011.
!  Copyright (c) 2009-2018, Leandro Martínez, Jose Mario Martinez,
!  Ernesto G. Birgin.
!  
! Subroutine writesuccess
!
!    Writes the success messages for good packings    
!

subroutine writesuccess(itype,fdist,frest,f)

  use input, only : input_itype
  use compute_data, only : ntype
  use ahestetic
  implicit none
  integer :: itype
  double precision :: fdist, frest, f

  if(itype.le.ntype) then
    write(*,dash1_line)
    write(*,*)' Packing solved for molecules of type', input_itype(itype)
    write(*,*)' Objective function value: ', f
    write(*,*)' Maximum violation of target distance: ',fdist
    write(*,*)' Max. constraint violation: ', frest
    write(*,dash1_line)
  else
    write(*,hash3_line)
    write(*,"(&
              &t33, ' Success! ',                               /,&
              &t14, ' Final objective function value: ', e10.5, /,&
              &t14, ' Maximum violation of target distance: ', f10.6, /,&
              &t14, ' Maximum violation of the constraints: ', e10.5 &
              &)") f, fdist, frest
    write(*,dash3_line)
    write(*,"(&
              &t14,' Please cite this work if Packmol was useful: ',/,/,&
              &t11,' L. Martinez, R. Andrade, E. G. Birgin, J. M. Martinez, ',/,&
              &t9,' PACKMOL: A package for building initial configurations for',/,&
              &t19,' molecular dynamics simulations. ',/,&
              &t10,' Journal of Computational Chemistry, 30:2157-2164,2009.' )")
    write(*,hash3_line)
  end if

end subroutine writesuccess