Sat Oct 8 17:04:56 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 Sat Oct 8 2011 at 17:04:56 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 = 3683 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.5387002 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): -28.31500 31.94600 ymin,ymax (A): -34.14500 31.94000 zmin,zma (A): 9.012000 63.78900 x,y,z range (A): 60.26100 66.08500 54.77700 scale (grids/A): 0.5387002 object centre (A): 1.815499 -1.102498 36.40050 number of atom coordinates read : 3683 total number of charged atoms : 3534 net assigned charge : -8.999981 assigned positive charge : 557.7946 centred at (gu) : 89.28192 90.23584 90.73983 assigned negative charge : -566.7968 centred at (gu) : 89.34850 90.25719 90.76363 start vw surface at 0.1900000 fill in re-entrant regions at 0.2000000 boundary points on vw surface= 6838 nv = 96 ne = 84 npr = 75054 no. pairs analyzed = 75054 no. exposed pairs = 4484 no. arc points = 31485 no. surface atoms = 1515 nbur = 2168 mkacc time = 0.2100000 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.596000 m= 274 mr = 3637 m= 0 mr = 21 time to grow re-entrant surface = 0.2400000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.4600000 number of dielectric boundary points 3454 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 3158 ## 410 charges are in solution ## iepsmp to db, and charging done at 0.5900000 number of grid points assigned charge 9038 setting boundary conditions some initial phi values: midg,midg,1; midg,midg,igrid -2.2577780E-10 -6.9021272E-10 midg,1,midg; midg,igrid,midg -2.6894340E-10 -5.9235272E-10 1,midg,midg; igrid,midg,midg 7.8407740E-12 -7.1364442E-10 gauss-seidel spectral radius is 0.9822871 estimated iterations to convergence 62 setup time was (sec) 0.7400000 now iterating at: 17:04:57 rms-change max change #iterations 7.7481493E-02 10.86798 at 10iterations 5.0575174E-03 0.6716423 at 20iterations 3.7948706E-04 5.9024811E-02 at 30iterations 5.1159488E-05 9.2144012E-03 at 40iterations 1.1383026E-05 2.2392273E-03 at 50iterations finished qdiffx linear iterations at : 17:05:00 total time elapsed so far: 4.110000 # loops : 50 mean,max change (kT/e) : 1.1383026E-05 2.2392273E-03 energy calculations done at 4.110000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 4.290000 DelPhi exited at 17:05:01 4.294u 0.252s 0:04.81 94.3% 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 Sat Oct 8 2011 at 17:05:01 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 = 3683 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.616101 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): -28.31500 31.94600 ymin,ymax (A): -34.14500 31.94000 zmin,zma (A): 9.012000 63.78900 x,y,z range (A): 60.26100 66.08500 54.77700 scale (grids/A): 1.616101 object centre (A): 1.815499 -1.102498 36.40050 number of atom coordinates read : 3683 total number of charged atoms : 3534 net assigned charge : -8.999981 assigned positive charge : 557.7946 centred at (gu) : 87.84472 90.70647 92.21838 assigned negative charge : -566.7968 centred at (gu) : 88.04494 90.77107 92.29024 start vw surface at 0.1700000 fill in re-entrant regions at 0.3100000 boundary points on vw surface= 76319 reading accessible surface arcs data from file ARCDAT no. of arc points read = 31485 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.484000 m= 23576 mr = 53041 m= 2445 mr = 16138 m= 71 mr = 1256 m= 1 mr = 5 m= 0 mr = 0 time to grow re-entrant surface = 0.3300000 no. cavity mid-points inaccessible to solvent = 340 time to turn everything in is 0.6800000 number of dielectric boundary points 31972 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 409 ## 5 charges are in solution ## iepsmp to db, and charging done at 0.8200000 number of grid points assigned charge 26958 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.5387002 object centre at (A) : 1.815499 -1.102498 36.40050 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid 4.2711900E-04 -7.2689690E-03 midg,1,midg; midg,igrid,midg -9.6966658E-04 -1.1221085E-02 1,midg,midg; igrid,midg,midg -1.4268090E-02 -3.1459019E-02 gauss-seidel spectral radius is 0.9982113 estimated iterations to convergence 188 setup time was (sec) 0.9900000 now iterating at: 17:05:02 rms-change max change #iterations 3.711205 190.4667 at 10iterations 1.552314 58.64354 at 20iterations 0.6495157 20.36349 at 30iterations 0.2737802 10.23674 at 40iterations 0.1151160 4.008476 at 50iterations 4.8400518E-02 1.664017 at 60iterations 2.0371944E-02 0.7229614 at 70iterations 8.5597169E-03 0.3012931 at 80iterations 3.6167165E-03 0.1231270 at 90iterations 1.5219577E-03 5.1671982E-02 at 100iterations 6.4815697E-04 2.0840645E-02 at 110iterations 2.7867022E-04 9.0599060E-03 at 120iterations finished qdiffx linear iterations at : 17:05:11 total time elapsed so far: 9.540000 # loops : 120 mean,max change (kT/e) : 2.7867022E-04 9.0599060E-03 energy calculations done at 9.540000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 9.720000 DelPhi exited at 17:05:11 9.723u 0.327s 0:10.36 96.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 Sat Oct 8 2011 at 17:05:11 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 = 3683 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.424151 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): -28.31500 31.94600 ymin,ymax (A): -34.14500 31.94000 zmin,zma (A): 9.012000 63.78900 x,y,z range (A): 60.26100 66.08500 54.77700 scale (grids/A): 2.424151 object centre (A): 1.815499 -1.102498 36.40050 number of atom coordinates read : 3683 total number of charged atoms : 3534 net assigned charge : -8.999981 assigned positive charge : 557.7946 centred at (gu) : 86.76680 91.05933 93.32731 assigned negative charge : -566.7968 centred at (gu) : 87.06745 91.15657 93.43518 start vw surface at 0.1800000 fill in re-entrant regions at 0.5600000 boundary points on vw surface= 177504 reading accessible surface arcs data from file ARCDAT no. of arc points read = 31485 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.484000 m= 82742 mr = 129623 m= 22975 mr = 65712 m= 3871 mr = 17332 m= 261 mr = 2538 m= 6 mr = 94 m= 0 mr = 0 time to grow re-entrant surface = 1.010000 no. cavity mid-points inaccessible to solvent = 1158 time to turn everything in is 1.690000 number of dielectric boundary points 72060 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 32 iepsmp to db, and charging done at 1.840000 number of grid points assigned charge 28228 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.616101 object centre at (A) : 1.815499 -1.102498 36.40050 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -1.9777020E-02 -0.1371827 midg,1,midg; midg,igrid,midg 1.3097512E-02 -8.4518045E-02 1,midg,midg; igrid,midg,midg -0.3284956 -0.4825358 gauss-seidel spectral radius is 0.9991570 estimated iterations to convergence 272 setup time was (sec) 2.020000 now iterating at: 17:05:14 rms-change max change #iterations 9.550975 292.5908 at 10iterations 5.378913 113.0825 at 20iterations 3.028468 77.31418 at 30iterations 1.695560 35.78976 at 40iterations 0.9436353 18.77582 at 50iterations 0.5255477 9.829163 at 60iterations 0.2929594 5.778330 at 70iterations 0.1628790 3.299820 at 80iterations 9.0286508E-02 1.806942 at 90iterations 5.0095581E-02 1.026398 at 100iterations 2.7787063E-02 0.5290313 at 110iterations 1.5362533E-02 0.3038368 at 120iterations 8.5501447E-03 0.1814880 at 130iterations 4.7355755E-03 8.7288618E-02 at 140iterations 2.6336769E-03 5.0436020E-02 at 150iterations 1.4660438E-03 2.9277325E-02 at 160iterations 8.1794581E-04 1.7314672E-02 at 170iterations 4.6191097E-04 9.4079971E-03 at 180iterations finished qdiffx linear iterations at : 17:05:28 total time elapsed so far: 16.20000 # loops : 180 mean,max change (kT/e) : 4.6191097E-04 9.4079971E-03 energy calculations done at 16.20000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 16.38000 DelPhi exited at 17:05:28 16.380u 0.344s 0:16.99 98.4% 0+0k 0+0io 0pf+0w