Changeset bd2278d for bgs.f


Ignore:
Timestamp:
09/05/08 11:49:42 (16 years ago)
Author:
baerbaer <baerbaer@…>
Branches:
master
Children:
fafe4d6
Parents:
2ebb8b6
Message:

Reformatting comments and continuation marks.

Fortran 90 and higher use ! to mark comments no matter where they are in the
code. The only valid continuation marker is &.
I also added the SMMP.kdevelop.filelist to the repository to make it easier
to use kdevelop.

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/smmp/trunk@12 26dc1dd8-5c4e-0410-9ffe-d298b4865968

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bgs.f

    r2ebb8b6 rbd2278d  
    156156            bv(nph,3)=xiv(nph,3)-zat(iN(icurraa))
    157157            ab(nph)=bv(nph,1)*bv(nph,1)+bv(nph,2)*bv(nph,2)
    158      #           +bv(nph,3)*bv(nph,3)
     158     &           +bv(nph,3)*bv(nph,3)
    159159            iph(nph)=iphi(icurraa)
    160160         endif
     
    168168            bv(nph,3)=xiv(nph,3)-zat(iCa(icurraa))
    169169            ab(nph)=bv(nph,1)*bv(nph,1)+bv(nph,2)*bv(nph,2)
    170      #           +bv(nph,3)*bv(nph,3)
     170     &           +bv(nph,3)*bv(nph,3)
    171171            iph(nph)=ipsi(icurraa)
    172172         endif
     
    185185         do j=1,nph
    186186            dv(i,j,1)=(1.0/ab(j))*(bv(j,2)*(rv(i,3)-xiv(j,3))-
    187      c           bv(j,3)*(rv(i,2)-xiv(j,2)))
     187     &           bv(j,3)*(rv(i,2)-xiv(j,2)))
    188188            dv(i,j,2)=(-1.0/ab(j))*(bv(j,1)*(rv(i,3)-xiv(j,3))-
    189      c           bv(j,3)*(rv(i,1)-xiv(j,1)))
     189     &           bv(j,3)*(rv(i,1)-xiv(j,1)))
    190190            dv(i,j,3)=(1.0/ab(j))*(bv(j,1)*(rv(i,2)-xiv(j,2))-
    191      c           bv(j,2)*(rv(i,1)-xiv(j,1)))
     191     &           bv(j,2)*(rv(i,1)-xiv(j,1)))
    192192         enddo
    193193      enddo
     
    273273            bv(nph,3)=xiv(nph,3)-zat(iN(icurraa))
    274274            ab(nph)=bv(nph,1)*bv(nph,1)+bv(nph,2)*bv(nph,2)
    275      #           +bv(nph,3)*bv(nph,3)
     275     &           +bv(nph,3)*bv(nph,3)
    276276            iph(nph)=iphi(icurraa)
    277277         endif
     
    285285            bv(nph,3)=xiv(nph,3)-zat(iCa(icurraa))
    286286            ab(nph)=bv(nph,1)*bv(nph,1)+bv(nph,2)*bv(nph,2)
    287      #           +bv(nph,3)*bv(nph,3)
     287     &           +bv(nph,3)*bv(nph,3)
    288288            iph(nph)=ipsi(icurraa)
    289289         endif
     
    302302         do j=1,nph
    303303            dv(i,j,1)=(1.0/ab(j))*(bv(j,2)*(rv(i,3)-xiv(j,3))-
    304      c           bv(j,3)*(rv(i,2)-xiv(j,2)))
     304     &           bv(j,3)*(rv(i,2)-xiv(j,2)))
    305305            dv(i,j,2)=(-1.0/ab(j))*(bv(j,1)*(rv(i,3)-xiv(j,3))-
    306      c           bv(j,3)*(rv(i,1)-xiv(j,1)))
     306     &           bv(j,3)*(rv(i,1)-xiv(j,1)))
    307307            dv(i,j,3)=(1.0/ab(j))*(bv(j,1)*(rv(i,2)-xiv(j,2))-
    308      c           bv(j,2)*(rv(i,1)-xiv(j,1)))
     308     &           bv(j,2)*(rv(i,1)-xiv(j,1)))
    309309         enddo
    310310      enddo
Note: See TracChangeset for help on using the changeset viewer.