Sun Oct 9 23:03:45 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+sph2.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 = amb2.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 23:03:45 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: 304 assigning charges and radii... opening formatted file:fort.13 number of atoms read in = 4786 !!! WARNING: SEP 105 has a net charge of -0.4750 !!! WARNING: GLM 297 has a net charge of -0.6000 !!! WARNING: HIZ 301 has a net charge of 0.2000 !!! WARNING: SEP 472 has a net charge of -0.4750 !!! WARNING: ZN7 776 has a net charge of 1.4000 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 0.1100000 grid size : 179 scale,in grids/A, set to be: 0.5200876 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.071000 46.53000 ymin,ymax (A): -30.17800 38.27200 zmin,zma (A): -0.1610000 65.46000 x,y,z range (A): 54.60100 68.45000 65.62100 scale (grids/A): 0.5200876 object centre (A): 19.22950 4.047002 32.64950 number of atom coordinates read : 4786 total number of charged atoms : 4620 net assigned charge : 12.55001 assigned positive charge : 733.4659 centred at (gu) : 89.56460 89.83497 88.27766 assigned negative charge : -720.9214 centred at (gu) : 89.48100 89.76775 88.10568 start vw surface at 0.1900000 fill in re-entrant regions at 0.2000000 boundary points on vw surface= 7300 nv = 96 ne = 84 npr = 102489 no. pairs analyzed = 102489 no. exposed pairs = 5661 no. arc points = 39493 no. surface atoms = 1901 nbur = 2885 mkacc time = 0.2200000 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.680000 m= 281 mr = 3612 m= 1 mr = 6 m= 0 mr = 0 time to grow re-entrant surface = 0.2400000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.4400000 number of dielectric boundary points 3964 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 3998 ## 604 charges are in solution ## iepsmp to db, and charging done at 0.5500000 number of grid points assigned charge 10582 setting boundary conditions some initial phi values: midg,midg,1; midg,midg,igrid -6.3874517E-10 6.0220740E-10 midg,1,midg; midg,igrid,midg 2.1923697E-11 5.2083365E-10 1,midg,midg; igrid,midg,midg -5.0150797E-11 5.4153304E-10 gauss-seidel spectral radius is 0.9810729 estimated iterations to convergence 60 setup time was (sec) 0.6500000 now iterating at: 23:03:46 rms-change max change #iterations 7.6095805E-02 11.53115 at 10iterations 4.3859477E-03 0.7254021 at 20iterations 3.2739027E-04 6.1126709E-02 at 30iterations 6.6408720E-05 1.5142441E-02 at 40iterations 2.1300859E-05 5.0458908E-03 at 50iterations finished qdiffx linear iterations at : 23:03:48 total time elapsed so far: 3.070000 # loops : 50 mean,max change (kT/e) : 2.1300859E-05 5.0458908E-03 energy calculations done at 3.070000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 3.240000 DelPhi exited at 23:03:48 3.245u 0.138s 0:03.65 92.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 23:03:48 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: 304 assigning charges and radii... opening formatted file:fort.13 number of atoms read in = 4786 !!! WARNING: SEP 105 has a net charge of -0.4750 !!! WARNING: GLM 297 has a net charge of -0.6000 !!! WARNING: HIZ 301 has a net charge of 0.2000 !!! WARNING: SEP 472 has a net charge of -0.4750 !!! WARNING: ZN7 776 has a net charge of 1.4000 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 0.1100000 grid size : 179 scale,in grids/A, set to be: 1.560263 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.071000 46.53000 ymin,ymax (A): -30.17800 38.27200 zmin,zma (A): -0.1610000 65.46000 x,y,z range (A): 54.60100 68.45000 65.62100 scale (grids/A): 1.560263 object centre (A): 19.22950 4.047002 32.64950 number of atom coordinates read : 4786 total number of charged atoms : 4620 net assigned charge : 12.55001 assigned positive charge : 733.4659 centred at (gu) : 88.69193 89.50296 84.83111 assigned negative charge : -720.9214 centred at (gu) : 88.44266 89.30301 84.31690 start vw surface at 0.1900000 fill in re-entrant regions at 0.3000000 boundary points on vw surface= 83673 reading accessible surface arcs data from file ARCDAT no. of arc points read = 39493 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.568000 m= 20381 mr = 56071 m= 1732 mr = 12189 m= 30 mr = 593 m= 0 mr = 0 time to grow re-entrant surface = 0.2400000 no. cavity mid-points inaccessible to solvent = 144 time to turn everything in is 0.5700000 number of dielectric boundary points 36963 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 558 ## 3 charges are in solution ## iepsmp to db, and charging done at 0.6900000 number of grid points assigned charge 34909 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.5200876 object centre at (A) : 19.22950 4.047002 32.64950 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid 2.6816102E-02 2.8808139E-02 midg,1,midg; midg,igrid,midg 2.0613973E-03 1.7894477E-02 1,midg,midg; igrid,midg,midg -6.9856830E-03 3.8305470E-03 gauss-seidel spectral radius is 0.9981627 estimated iterations to convergence 185 setup time was (sec) 0.8400000 now iterating at: 23:03:49 rms-change max change #iterations 3.941478 170.1731 at 10iterations 1.628077 62.84534 at 20iterations 0.6759369 23.10679 at 30iterations 0.2800670 8.455936 at 40iterations 0.1160825 3.624643 at 50iterations 4.7934521E-02 1.581849 at 60iterations 1.9969251E-02 0.7614994 at 70iterations 8.3095180E-03 0.2796044 at 80iterations 3.4480798E-03 0.1181021 at 90iterations 1.4417872E-03 5.0354004E-02 at 100iterations 6.1032211E-04 1.9775391E-02 at 110iterations 2.6326484E-04 9.7360611E-03 at 120iterations finished qdiffx linear iterations at : 23:03:56 total time elapsed so far: 6.900000 # loops : 120 mean,max change (kT/e) : 2.6326484E-04 9.7360611E-03 energy calculations done at 6.900000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 7.100000 DelPhi exited at 23:03:56 7.102u 0.166s 0:07.56 96.0% 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 23:03: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: 304 assigning charges and radii... opening formatted file:fort.13 number of atoms read in = 4786 !!! WARNING: SEP 105 has a net charge of -0.4750 !!! WARNING: GLM 297 has a net charge of -0.6000 !!! WARNING: HIZ 301 has a net charge of 0.2000 !!! WARNING: SEP 472 has a net charge of -0.4750 !!! WARNING: ZN7 776 has a net charge of 1.4000 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 0.1200000 grid size : 179 scale,in grids/A, set to be: 2.340394 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.071000 46.53000 ymin,ymax (A): -30.17800 38.27200 zmin,zma (A): -0.1610000 65.46000 x,y,z range (A): 54.60100 68.45000 65.62100 scale (grids/A): 2.340394 object centre (A): 19.22950 4.047002 32.64950 number of atom coordinates read : 4786 total number of charged atoms : 4620 net assigned charge : 12.55001 assigned positive charge : 733.4659 centred at (gu) : 88.03751 89.25402 82.24613 assigned negative charge : -720.9214 centred at (gu) : 87.66374 88.95433 81.47514 start vw surface at 0.1900000 fill in re-entrant regions at 0.5100000 boundary points on vw surface= 196236 reading accessible surface arcs data from file ARCDAT no. of arc points read = 39493 initial cube size too small, in assigning accessible points to a grid therefore rescaling... grid for indexing accessible points = 1.540000 m= 75438 mr = 139497 m= 16819 mr = 55901 m= 2205 mr = 10898 m= 89 mr = 1142 m= 2 mr = 15 m= 0 mr = 0 time to grow re-entrant surface = 0.7400000 no. cavity mid-points inaccessible to solvent = 444 time to turn everything in is 1.380000 number of dielectric boundary points 83336 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 52 iepsmp to db, and charging done at 1.510000 number of grid points assigned charge 36863 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.560263 object centre at (A) : 19.22950 4.047002 32.64950 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid 0.7324061 0.3990287 midg,1,midg; midg,igrid,midg 0.1231384 0.2774810 1,midg,midg; igrid,midg,midg -0.1286114 4.1859698E-02 gauss-seidel spectral radius is 0.9991716 estimated iterations to convergence 274 setup time was (sec) 1.680000 now iterating at: 23:03:58 rms-change max change #iterations 10.71985 316.8839 at 10iterations 6.204358 171.1012 at 20iterations 3.547816 86.95141 at 30iterations 2.027277 45.79716 at 40iterations 1.146710 26.17651 at 50iterations 0.6481133 12.34045 at 60iterations 0.3651452 6.996857 at 70iterations 0.2048372 3.837092 at 80iterations 0.1147754 2.242534 at 90iterations 6.4274810E-02 1.400349 at 100iterations 3.5971034E-02 0.6901035 at 110iterations 2.0105032E-02 0.4186873 at 120iterations 1.1231655E-02 0.2205086 at 130iterations 6.2768147E-03 0.1231766 at 140iterations 3.5096800E-03 6.7871094E-02 at 150iterations 1.9610804E-03 3.3741355E-02 at 160iterations 1.1018990E-03 2.0139694E-02 at 170iterations 6.1998272E-04 1.1787415E-02 at 180iterations finished qdiffx linear iterations at : 23:04:08 total time elapsed so far: 12.09000 # loops : 180 mean,max change (kT/e) : 6.1998272E-04 1.1787415E-02 energy calculations done at 12.09000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 12.26000 DelPhi exited at 23:04:09 12.265u 0.204s 0:12.74 97.8% 0+0k 0+0io 0pf+0w