Sun Oct 9 15:27:05 PDT 2011 #!/bin/csh -f # input: # $1 receptor coordinates file; # $2 grid size; # $3 # of iterations for the first run; # $4 # of iterations for the second run; # $5 # of iterations for the third run; # output: # delphi map: $1.phi # log file: delphi.out set RECCRG = rec+sph.crg set GRID = 179 set n1 = 50 set n2 = 120 set n3 = 180 set DELPHI = $DOCK_BASE/private/delphi set VDW = vdw.siz #set VDW = vdw.hydren set CRG = amb.crg.oxt set PRM = genric.prm # three step focussing calc. if (-e ARCDAT) /bin/rm ARCDAT cp $VDW fort.11 cp $CRG fort.12 cp $RECCRG fort.13 echo "gsize=$GRID, perfil=20, bndcon=2, linit=$n1\n" >! fort.10 cat $PRM >> fort.10 time $DELPHI if ($status != 0) exit(100) echo "gsize=$GRID, perfil=60, bndcon=3, linit=$n2\n" >! fort.10 cat $PRM >> fort.10 mv fort.14 fort.18 time $DELPHI if ($status != 0) exit(100) echo "gsize=$GRID, perfil=90, bndcon=3, linit=$n3\n" >! fort.10 cat $PRM >> fort.10 mv fort.14 fort.18 time $DELPHI if ($status != 0) exit(100) /bin/rm fort.1[0-3] fort.18 ARCDAT mv fort.14 $RECCRG:r.phi ___________________DelPhi II____________________ / | A program to solve the PB equation | | in 3D, using non-linear form, incorporating | | 2 dielectric regions, ionic strength, periodic | | and focussing boundary conditions, utilizing | | stripped optimum successive over-relaxation | | and an improved algorithm for mapping the | | Mol. Surface to the finite-Difference grid | __________________ ____________________/ DelPhi II program started on Sun Oct 9 2011 at 15:27:06 opening parameter file fort.10 atom radii read from file fort.11 ! default extended atom radii based loosely ! on mike connolly's MS program- note H's are 0 # of radius parameter records: 18 atomic charges read from file fort.12 # of charge parameter records: 236 assigning charges and radii... opening formatted file:fort.13 number of atoms read in = 5487 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 0.1000000 grid size : 179 scale,in grids/A, set to be: 0.4964994 object centred at (gu) : 0.0000000E+00 0.0000000E+00 0.0000000E+00 inner,outer dielectrics : 2.060000 78.50000 ionic strength (M) : 0.1450000 debye length (A) : 8.001814 ion exclusion radius (A) : 2.000000 probe radius (A) : 1.400000 boundary conditions : dipolar x,y,z periodic bc. flags : F F F # of linear iterations : 50 # of non-linear iterations : 0 concentration map output : F spherical charge distbn. : F INSIGHT format output : F site potential output : F modified atom file output : T map file label : qdiffxas: qdiffxs4 with an improved surfacing routine convergence graph turned off potential listings turned off box fill (%): 20.00000 xmin,xmax (A): 24.64800 85.15400 ymin,ymax (A): 11.29600 82.99800 zmin,zma (A): -36.05200 35.17100 x,y,z range (A): 60.50600 71.70200 71.22300 scale (grids/A): 0.4964994 object centre (A): 54.90100 47.14700 -0.4404984 number of atom coordinates read : 5487 total number of charged atoms : 5313 net assigned charge : -5.999952 assigned positive charge : 845.9124 centred at (gu) : 90.51697 90.97286 91.11225 assigned negative charge : -851.9200 centred at (gu) : 90.47282 90.95230 91.14510 start vw surface at 0.1400000 fill in re-entrant regions at 0.1400000 boundary points on vw surface= 8116 nv = 96 ne = 84 npr = 111909 no. pairs analyzed = 111909 no. exposed pairs = 6663 no. arc points = 45430 no. surface atoms = 2240 nbur = 3247 mkacc time = 0.2000000 writing accessible surface arcs data to file ARCDAT initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.708000 m= 314 mr = 4249 m= 1 mr = 11 m= 0 mr = 0 time to grow re-entrant surface = 0.2100000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.3600000 number of dielectric boundary points 4171 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 4257 ## 643 charges are in solution ## iepsmp to db, and charging done at 0.4300000 number of grid points assigned charge 11108 setting boundary conditions some initial phi values: midg,midg,1; midg,midg,igrid 6.7147824E-12 -1.3442117E-10 midg,1,midg; midg,igrid,midg -6.0856944E-11 -1.3172507E-11 1,midg,midg; igrid,midg,midg -1.0298961E-10 3.2865211E-11 gauss-seidel spectral radius is 0.9792977 estimated iterations to convergence 58 setup time was (sec) 0.5500000 now iterating at: 15:27:06 rms-change max change #iterations 6.4931564E-02 9.074158 at 10iterations 5.8586481E-03 1.080036 at 20iterations 1.7726124E-03 0.3757439 at 30iterations 6.6117139E-04 0.1436119 at 40iterations 2.4791711E-04 5.4473877E-02 at 50iterations finished qdiffx linear iterations at : 15:27:09 total time elapsed so far: 3.500000 # loops : 50 mean,max change (kT/e) : 2.4791711E-04 5.4473877E-02 energy calculations done at 3.500000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 3.630000 DelPhi exited at 15:27:10 3.633u 0.193s 0:04.11 92.9% 0+0k 0+0io 0pf+0w ___________________DelPhi II____________________ / | A program to solve the PB equation | | in 3D, using non-linear form, incorporating | | 2 dielectric regions, ionic strength, periodic | | and focussing boundary conditions, utilizing | | stripped optimum successive over-relaxation | | and an improved algorithm for mapping the | | Mol. Surface to the finite-Difference grid | __________________ ____________________/ DelPhi II program started on Sun Oct 9 2011 at 15:27:10 opening parameter file fort.10 atom radii read from file fort.11 ! default extended atom radii based loosely ! on mike connolly's MS program- note H's are 0 # of radius parameter records: 18 atomic charges read from file fort.12 # of charge parameter records: 236 assigning charges and radii... opening formatted file:fort.13 number of atoms read in = 5487 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 0.1000000 grid size : 179 scale,in grids/A, set to be: 1.489498 object centred at (gu) : 0.0000000E+00 0.0000000E+00 0.0000000E+00 inner,outer dielectrics : 2.060000 78.50000 ionic strength (M) : 0.1450000 debye length (A) : 8.001814 ion exclusion radius (A) : 2.000000 probe radius (A) : 1.400000 boundary conditions : focussing x,y,z periodic bc. flags : F F F # of linear iterations : 120 # of non-linear iterations : 0 concentration map output : F spherical charge distbn. : F INSIGHT format output : F site potential output : F modified atom file output : T map file label : qdiffxas: qdiffxs4 with an improved surfacing routine convergence graph turned off potential listings turned off box fill (%): 60.00000 xmin,xmax (A): 24.64800 85.15400 ymin,ymax (A): 11.29600 82.99800 zmin,zma (A): -36.05200 35.17100 x,y,z range (A): 60.50600 71.70200 71.22300 scale (grids/A): 1.489498 object centre (A): 54.90100 47.14700 -0.4404984 number of atom coordinates read : 5487 total number of charged atoms : 5313 net assigned charge : -5.999952 assigned positive charge : 845.9124 centred at (gu) : 91.54837 92.91695 93.33485 assigned negative charge : -851.9200 centred at (gu) : 91.41830 92.85660 93.43519 start vw surface at 0.1400000 fill in re-entrant regions at 0.2300000 boundary points on vw surface= 91672 reading accessible surface arcs data from file ARCDAT no. of arc points read = 45430 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.596000 m= 27863 mr = 63033 m= 2511 mr = 19094 m= 51 mr = 1105 m= 0 mr = 0 time to grow re-entrant surface = 0.2000000 no. cavity mid-points inaccessible to solvent = 526 time to turn everything in is 0.4700000 number of dielectric boundary points 38865 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 617 ## 6 charges are in solution ## iepsmp to db, and charging done at 0.5500000 number of grid points assigned charge 39450 setting boundary conditions focussing boundary condition read from file fort.18 focussing potential map: qdiffxas: qdiffxs4 with an improved surfacing routine original scale (grids/A) : 0.4964994 object centre at (A) : 54.90100 47.14700 -0.4404984 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -3.0757021E-03 2.7182160E-03 midg,1,midg; midg,igrid,midg -3.2968398E-03 -1.7102903E-02 1,midg,midg; igrid,midg,midg -5.4872464E-03 5.0360798E-03 gauss-seidel spectral radius is 0.9980328 estimated iterations to convergence 179 setup time was (sec) 0.6900000 now iterating at: 15:27:11 rms-change max change #iterations 3.905200 137.8560 at 10iterations 1.575503 51.38859 at 20iterations 0.6363190 19.52744 at 30iterations 0.2562865 7.543024 at 40iterations 0.1034811 3.456398 at 50iterations 4.2032994E-02 1.393974 at 60iterations 1.7203184E-02 0.5395889 at 70iterations 7.1907938E-03 0.2337036 at 80iterations 3.1676583E-03 0.1324844 at 90iterations 1.5477304E-03 6.1149597E-02 at 100iterations 8.6084759E-04 4.0714264E-02 at 110iterations 5.3261983E-04 2.2422791E-02 at 120iterations finished qdiffx linear iterations at : 15:27:18 total time elapsed so far: 7.970000 # loops : 120 mean,max change (kT/e) : 5.3261983E-04 2.2422791E-02 energy calculations done at 7.970000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 8.120000 DelPhi exited at 15:27:18 8.119u 0.210s 0:08.67 95.9% 0+0k 0+0io 0pf+0w ___________________DelPhi II____________________ / | A program to solve the PB equation | | in 3D, using non-linear form, incorporating | | 2 dielectric regions, ionic strength, periodic | | and focussing boundary conditions, utilizing | | stripped optimum successive over-relaxation | | and an improved algorithm for mapping the | | Mol. Surface to the finite-Difference grid | __________________ ____________________/ DelPhi II program started on Sun Oct 9 2011 at 15:27:18 opening parameter file fort.10 atom radii read from file fort.11 ! default extended atom radii based loosely ! on mike connolly's MS program- note H's are 0 # of radius parameter records: 18 atomic charges read from file fort.12 # of charge parameter records: 236 assigning charges and radii... opening formatted file:fort.13 number of atoms read in = 5487 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 0.1000000 grid size : 179 scale,in grids/A, set to be: 2.234247 object centred at (gu) : 0.0000000E+00 0.0000000E+00 0.0000000E+00 inner,outer dielectrics : 2.060000 78.50000 ionic strength (M) : 0.1450000 debye length (A) : 8.001814 ion exclusion radius (A) : 2.000000 probe radius (A) : 1.400000 boundary conditions : focussing x,y,z periodic bc. flags : F F F # of linear iterations : 180 # of non-linear iterations : 0 concentration map output : F spherical charge distbn. : F INSIGHT format output : F site potential output : F modified atom file output : T map file label : qdiffxas: qdiffxs4 with an improved surfacing routine convergence graph turned off potential listings turned off box fill (%): 90.00000 xmin,xmax (A): 24.64800 85.15400 ymin,ymax (A): 11.29600 82.99800 zmin,zma (A): -36.05200 35.17100 x,y,z range (A): 60.50600 71.70200 71.22300 scale (grids/A): 2.234247 object centre (A): 54.90100 47.14700 -0.4404984 number of atom coordinates read : 5487 total number of charged atoms : 5313 net assigned charge : -5.999952 assigned positive charge : 845.9124 centred at (gu) : 92.32187 94.37518 95.00172 assigned negative charge : -851.9200 centred at (gu) : 92.12743 94.28474 95.15287 start vw surface at 0.1500000 fill in re-entrant regions at 0.4000000 boundary points on vw surface= 213520 reading accessible surface arcs data from file ARCDAT no. of arc points read = 45430 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.596000 m= 97161 mr = 154801 m= 26556 mr = 76481 m= 3690 mr = 19799 m= 177 mr = 2284 m= 3 mr = 55 m= 0 mr = 0 time to grow re-entrant surface = 0.6300000 no. cavity mid-points inaccessible to solvent = 1796 time to turn everything in is 1.130000 number of dielectric boundary points 87687 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 92 iepsmp to db, and charging done at 1.230000 number of grid points assigned charge 42378 setting boundary conditions focussing boundary condition read from file fort.18 focussing potential map: qdiffxas: qdiffxs4 with an improved surfacing routine original scale (grids/A) : 1.489498 object centre at (A) : 54.90100 47.14700 -0.4404984 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -3.9649647E-02 0.1985970 midg,1,midg; midg,igrid,midg -6.9954872E-02 -0.3130509 1,midg,midg; igrid,midg,midg -8.1901662E-02 0.1627382 gauss-seidel spectral radius is 0.9991429 estimated iterations to convergence 270 setup time was (sec) 1.380000 now iterating at: 15:27:20 rms-change max change #iterations 10.78999 271.1563 at 10iterations 6.106078 168.3837 at 20iterations 3.451645 91.20401 at 30iterations 1.932655 38.84819 at 40iterations 1.079404 23.78911 at 50iterations 0.6003484 13.12676 at 60iterations 0.3336996 6.428673 at 70iterations 0.1843574 3.543266 at 80iterations 0.1024277 1.998932 at 90iterations 5.6603394E-02 1.058365 at 100iterations 3.1268254E-02 0.5608048 at 110iterations 1.7273858E-02 0.3267341 at 120iterations 9.5760049E-03 0.1773252 at 130iterations 5.2900543E-03 0.1060715 at 140iterations 2.9331616E-03 5.3718567E-02 at 150iterations 1.6392636E-03 3.0988693E-02 at 160iterations 9.2578074E-04 1.6407013E-02 at 170iterations 5.2965613E-04 1.0559082E-02 at 180iterations finished qdiffx linear iterations at : 15:27:32 total time elapsed so far: 13.12000 # loops : 180 mean,max change (kT/e) : 5.2965613E-04 1.0559082E-02 energy calculations done at 13.12000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 13.26000 DelPhi exited at 15:27:32 13.260u 0.209s 0:13.78 97.6% 0+0k 0+0io 0pf+0w