Sun Oct 9 08:52:34 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 08:52:35 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 = 5608 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 9.0000004E-02 grid size : 179 scale,in grids/A, set to be: 0.5164810 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): 8.207999 77.13600 ymin,ymax (A): 2.303000 66.08100 zmin,zma (A): -18.40800 50.20800 x,y,z range (A): 68.92800 63.77800 68.61600 scale (grids/A): 0.5164810 object centre (A): 42.67200 34.19200 15.90000 number of atom coordinates read : 5608 total number of charged atoms : 5442 net assigned charge : -3.499982 assigned positive charge : 843.9099 centred at (gu) : 89.65079 89.52312 89.21702 assigned negative charge : -847.4167 centred at (gu) : 89.54300 89.61461 89.23619 start vw surface at 0.1400000 fill in re-entrant regions at 0.1500000 boundary points on vw surface= 9344 nv = 96 ne = 84 npr = 114982 no. pairs analyzed = 114982 no. exposed pairs = 6845 no. arc points = 47709 no. surface atoms = 2311 nbur = 3297 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.652000 m= 297 mr = 4880 m= 0 mr = 0 time to grow re-entrant surface = 0.2200000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.3700000 number of dielectric boundary points 4761 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 4683 ## 709 charges are in solution ## iepsmp to db, and charging done at 0.4400000 number of grid points assigned charge 12569 setting boundary conditions some initial phi values: midg,midg,1; midg,midg,igrid 1.3656677E-11 -1.1502657E-10 midg,1,midg; midg,igrid,midg 3.3148195E-10 -3.7975054E-10 1,midg,midg; igrid,midg,midg -5.4436983E-10 3.2286299E-10 gauss-seidel spectral radius is 0.9808816 estimated iterations to convergence 60 setup time was (sec) 0.5500000 now iterating at: 08:52:35 rms-change max change #iterations 7.7847876E-02 12.09228 at 10iterations 4.6294229E-03 0.7140770 at 20iterations 3.9587679E-04 7.6194763E-02 at 30iterations 8.5535314E-05 2.0233154E-02 at 40iterations 2.5426358E-05 5.8174133E-03 at 50iterations finished qdiffx linear iterations at : 08:52:38 total time elapsed so far: 3.420000 # loops : 50 mean,max change (kT/e) : 2.5426358E-05 5.8174133E-03 energy calculations done at 3.420000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 3.550000 DelPhi exited at 08:52:39 3.552u 0.177s 0:04.01 92.7% 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 08:52:39 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 = 5608 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 9.0000004E-02 grid size : 179 scale,in grids/A, set to be: 1.549443 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): 8.207999 77.13600 ymin,ymax (A): 2.303000 66.08100 zmin,zma (A): -18.40800 50.20800 x,y,z range (A): 68.92800 63.77800 68.61600 scale (grids/A): 1.549443 object centre (A): 42.67200 34.19200 15.90000 number of atom coordinates read : 5608 total number of charged atoms : 5442 net assigned charge : -3.499982 assigned positive charge : 843.9099 centred at (gu) : 88.95045 88.56710 87.64952 assigned negative charge : -847.4167 centred at (gu) : 88.62879 88.84380 87.70841 start vw surface at 0.1300000 fill in re-entrant regions at 0.2300000 boundary points on vw surface= 105774 reading accessible surface arcs data from file ARCDAT no. of arc points read = 47709 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.540000 m= 29258 mr = 73003 m= 2402 mr = 18857 m= 48 mr = 956 m= 0 mr = 0 time to grow re-entrant surface = 0.2200000 no. cavity mid-points inaccessible to solvent = 959 time to turn everything in is 0.5000000 number of dielectric boundary points 44666 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 655 ## 6 charges are in solution ## iepsmp to db, and charging done at 0.5900000 number of grid points assigned charge 41116 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.5164810 object centre at (A) : 42.67200 34.19200 15.90000 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -1.4305026E-02 -2.1521792E-02 midg,1,midg; midg,igrid,midg 9.7734313E-03 -4.2809863E-03 1,midg,midg; igrid,midg,midg -2.0839334E-02 5.9204069E-03 gauss-seidel spectral radius is 0.9982330 estimated iterations to convergence 189 setup time was (sec) 0.7300000 now iterating at: 08:52:39 rms-change max change #iterations 4.250299 173.0680 at 10iterations 1.788605 52.62183 at 20iterations 0.7551543 24.21629 at 30iterations 0.3202249 9.670132 at 40iterations 0.1349419 4.089989 at 50iterations 5.6961536E-02 1.728451 at 60iterations 2.4094807E-02 0.7406597 at 70iterations 1.0181977E-02 0.3019381 at 80iterations 4.3282751E-03 0.1231127 at 90iterations 1.8455364E-03 5.6588173E-02 at 100iterations 7.9311593E-04 2.1903992E-02 at 110iterations 3.4791639E-04 1.1528015E-02 at 120iterations finished qdiffx linear iterations at : 08:52:47 total time elapsed so far: 7.880000 # loops : 120 mean,max change (kT/e) : 3.4791639E-04 1.1528015E-02 energy calculations done at 7.880000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 8.010000 DelPhi exited at 08:52:47 8.017u 0.208s 0:08.52 96.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 Sun Oct 9 2011 at 08:52:47 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 = 5608 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 9.0000004E-02 grid size : 179 scale,in grids/A, set to be: 2.324164 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): 8.207999 77.13600 ymin,ymax (A): 2.303000 66.08100 zmin,zma (A): -18.40800 50.20800 x,y,z range (A): 68.92800 63.77800 68.61600 scale (grids/A): 2.324164 object centre (A): 42.67200 34.19200 15.90000 number of atom coordinates read : 5608 total number of charged atoms : 5442 net assigned charge : -3.499982 assigned positive charge : 843.9099 centred at (gu) : 88.42541 87.85035 86.47375 assigned negative charge : -847.4167 centred at (gu) : 87.94307 88.26546 86.56263 start vw surface at 0.1400000 fill in re-entrant regions at 0.4400000 boundary points on vw surface= 247054 reading accessible surface arcs data from file ARCDAT no. of arc points read = 47709 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.540000 m= 106594 mr = 180008 m= 25601 mr = 82192 m= 3335 mr = 17884 m= 152 mr = 1908 m= 2 mr = 41 m= 0 mr = 0 time to grow re-entrant surface = 0.7000000 no. cavity mid-points inaccessible to solvent = 3470 time to turn everything in is 1.240000 number of dielectric boundary points 100705 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 65 iepsmp to db, and charging done at 1.350000 number of grid points assigned charge 43430 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.549443 object centre at (A) : 42.67200 34.19200 15.90000 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -0.3444174 -0.5456795 midg,1,midg; midg,igrid,midg 0.1870648 -5.8422860E-02 1,midg,midg; igrid,midg,midg -0.6438786 7.7081822E-02 gauss-seidel spectral radius is 0.9992204 estimated iterations to convergence 283 setup time was (sec) 1.510000 now iterating at: 08:52:49 rms-change max change #iterations 11.48599 322.0001 at 10iterations 6.750727 132.6092 at 20iterations 3.941115 80.94225 at 30iterations 2.285514 53.36290 at 40iterations 1.322040 29.21872 at 50iterations 0.7609254 15.46238 at 60iterations 0.4371502 8.153861 at 70iterations 0.2511876 4.855050 at 80iterations 0.1435149 2.336929 at 90iterations 8.2085744E-02 1.716656 at 100iterations 4.6909090E-02 0.8074231 at 110iterations 2.6740277E-02 0.4751740 at 120iterations 1.5231851E-02 0.2919269 at 130iterations 8.6751906E-03 0.1389818 at 140iterations 4.9479734E-03 8.6228371E-02 at 150iterations 2.8254460E-03 5.2762985E-02 at 160iterations 1.6118303E-03 2.8400898E-02 at 170iterations 9.2015124E-04 1.5583277E-02 at 180iterations finished qdiffx linear iterations at : 08:53:01 total time elapsed so far: 13.68000 # loops : 180 mean,max change (kT/e) : 9.2015124E-04 1.5583277E-02 energy calculations done at 13.68000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 13.82000 DelPhi exited at 08:53:01 13.819u 0.221s 0:14.32 97.9% 0+0k 0+0io 0pf+0w