File: schmidt.f

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (66 lines) | stat: -rw-r--r-- 1,706 bytes parent folder | download | duplicates (6)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
C  Copyright (c) 2003-2010 University of Florida
C
C  This program is free software; you can redistribute it and/or modify
C  it under the terms of the GNU General Public License as published by
C  the Free Software Foundation; either version 2 of the License, or
C  (at your option) any later version.

C  This program is distributed in the hope that it will be useful,
C  but WITHOUT ANY WARRANTY; without even the implied warranty of
C  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
C  GNU General Public License for more details.

C  The GNU General Public License is included in this distribution
C  in the file COPYRIGHT.

C THIS PROJECTS OUT LINEARLY DEPENDENT PARTS OF THE INTERNAL COORDINATES

c INPUT
c integer NATOM

c OUTPUT
c double SCR(*)
c double SYMQ(*)

c RECORDS
c get 'COMPNSYQ'
c get 'COMPSYMQ'
c put 'COMPSYMQ'

      SUBROUTINE SCHMIDT(NATOM,SCR,SYMQ)
      IMPLICIT DOUBLE PRECISION (A-H,O-Z)

      DIMENSION SCR(*),SYMQ(*)

      COMMON /MACHSP/ IINTLN,IFLTLN,IINTFP,IALONE,IBITWD

      DATA TOL /1.D-8/

      NSIZE=3*NATOM

      CALL IGETREC(20,'JOBARC','COMPNSYQ',1,NSYMOLD)
      CALL DGETREC(20,'JOBARC','COMPSYMQ',NSIZE*NSIZE,SCR)

c   o loop over vectors
      DO I=2,NSYMOLD
         IPOS=(I-1)*NSIZE+1
         CALL GSCHMIDT(SCR(IPOS),SCR,NSIZE,I-1,SYMQ,ZJUNK,1.D-8)
      END DO
      CALL XDCOPY(NSIZE*NSIZE,SCR,1,SYMQ,1)

c   o renormalize
      IOFF=1
      DO I=1,NSYMOLD
         X=DNRM2(NSIZE,SYMQ(IOFF),1)
         IF (ABS(X).GT.TOL) THEN
            Z=1.d0/X
            CALL XDSCAL(NSIZE,Z,SYMQ(IOFF),1)
         END IF
         IOFF=IOFF+NSIZE
      END DO

      CALL DPUTREC(20,'JOBARC','COMPSYMQ',NSIZE*NSIZE,SYMQ)

      RETURN
      END