Mon Oct 10 09:43:37 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 Mon Oct 10 2011 at 09:43:37 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 = 2889 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 5.9999999E-02 grid size : 179 scale,in grids/A, set to be: 0.5759213 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): 111.1450 172.9590 ymin,ymax (A): -43.87000 10.82100 zmin,zma (A): 48.96400 101.9140 x,y,z range (A): 61.81400 54.69100 52.95000 scale (grids/A): 0.5759213 object centre (A): 142.0520 -16.52450 75.43900 number of atom coordinates read : 2889 total number of charged atoms : 2740 net assigned charge : 5.500018 assigned positive charge : 421.4028 centred at (gu) : 90.04650 89.29198 88.99281 assigned negative charge : -415.9034 centred at (gu) : 90.11556 89.33722 88.82414 start vw surface at 0.1000000 fill in re-entrant regions at 0.1100000 boundary points on vw surface= 6578 nv = 96 ne = 84 npr = 55999 no. pairs analyzed = 55999 no. exposed pairs = 4451 no. arc points = 32086 no. surface atoms = 1475 nbur = 1414 mkacc time = 9.9999994E-02 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.484000 m= 310 mr = 2864 m= 0 mr = 19 time to grow re-entrant surface = 0.1100000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.2300000 number of dielectric boundary points 4005 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 3089 ## 330 charges are in solution ## iepsmp to db, and charging done at 0.3000000 number of grid points assigned charge 8165 setting boundary conditions some initial phi values: midg,midg,1; midg,midg,igrid -2.5895126E-09 3.1871497E-09 midg,1,midg; midg,igrid,midg 2.2196809E-09 2.2347668E-10 1,midg,midg; igrid,midg,midg 2.2769151E-09 -1.8001794E-10 gauss-seidel spectral radius is 0.9844530 estimated iterations to convergence 66 setup time was (sec) 0.4300000 now iterating at: 09:43:37 rms-change max change #iterations 9.1469795E-02 14.28239 at 10iterations 6.8152952E-03 1.076847 at 20iterations 5.1755132E-04 8.4192276E-02 at 30iterations 4.6267320E-05 7.1754456E-03 at 40iterations 6.0248617E-06 6.6280365E-04 at 50iterations finished qdiffx linear iterations at : 09:43:40 total time elapsed so far: 3.340000 # loops : 50 mean,max change (kT/e) : 6.0248617E-06 6.6280365E-04 energy calculations done at 3.340000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 3.470000 DelPhi exited at 09:43:41 3.472u 0.201s 0:04.17 88.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 Mon Oct 10 2011 at 09:43:41 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 = 2889 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 5.0000001E-02 grid size : 179 scale,in grids/A, set to be: 1.727764 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): 111.1450 172.9590 ymin,ymax (A): -43.87000 10.82100 zmin,zma (A): 48.96400 101.9140 x,y,z range (A): 61.81400 54.69100 52.95000 scale (grids/A): 1.727764 object centre (A): 142.0520 -16.52450 75.43900 number of atom coordinates read : 2889 total number of charged atoms : 2740 net assigned charge : 5.500018 assigned positive charge : 421.4028 centred at (gu) : 90.13932 87.87543 86.97809 assigned negative charge : -415.9034 centred at (gu) : 90.34637 88.01129 86.47203 start vw surface at 0.1000000 fill in re-entrant regions at 0.1700000 boundary points on vw surface= 69709 reading accessible surface arcs data from file ARCDAT no. of arc points read = 32086 grid for indexing accessible points = 1.400000 m= 22184 mr = 42479 m= 2850 mr = 14035 m= 108 mr = 1236 m= 0 mr = 2 time to grow re-entrant surface = 0.1700000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.3700000 number of dielectric boundary points 37099 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 277 ## 1 charges are in solution ## iepsmp to db, and charging done at 0.4500000 number of grid points assigned charge 21281 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.5759213 object centre at (A) : 142.0520 -16.52450 75.43900 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -5.8677238E-03 2.3774317E-02 midg,1,midg; midg,igrid,midg 8.8117318E-03 6.7679668E-03 1,midg,midg; igrid,midg,midg 1.4998464E-02 2.2263152E-03 gauss-seidel spectral radius is 0.9984056 estimated iterations to convergence 199 setup time was (sec) 0.6000000 now iterating at: 09:43:42 rms-change max change #iterations 3.633930 162.3394 at 10iterations 1.596707 68.07651 at 20iterations 0.7030868 25.79748 at 30iterations 0.3095628 11.72837 at 40iterations 0.1359780 4.582012 at 50iterations 5.9588060E-02 2.161307 at 60iterations 2.6230549E-02 0.9667282 at 70iterations 1.1539293E-02 0.4252586 at 80iterations 5.0644041E-03 0.1953773 at 90iterations 2.2359847E-03 8.5708618E-02 at 100iterations 9.8564930E-04 3.9052010E-02 at 110iterations 4.3359728E-04 1.4410496E-02 at 120iterations finished qdiffx linear iterations at : 09:43:49 total time elapsed so far: 7.720000 # loops : 120 mean,max change (kT/e) : 4.3359728E-04 1.4410496E-02 energy calculations done at 7.720000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 7.860000 DelPhi exited at 09:43:50 7.866u 0.315s 0:08.70 93.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 Mon Oct 10 2011 at 09:43:50 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 = 2889 atomic coordinates, charges and radii written to file fort.19 time to read in and/or assign rad/chrg= 5.9999999E-02 grid size : 179 scale,in grids/A, set to be: 2.591646 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): 111.1450 172.9590 ymin,ymax (A): -43.87000 10.82100 zmin,zma (A): 48.96400 101.9140 x,y,z range (A): 61.81400 54.69100 52.95000 scale (grids/A): 2.591646 object centre (A): 142.0520 -16.52450 75.43900 number of atom coordinates read : 2889 total number of charged atoms : 2740 net assigned charge : 5.500018 assigned positive charge : 421.4028 centred at (gu) : 90.20891 86.81295 85.46693 assigned negative charge : -415.9034 centred at (gu) : 90.51944 87.01679 84.70807 start vw surface at 9.0000004E-02 fill in re-entrant regions at 0.2900000 boundary points on vw surface= 161173 reading accessible surface arcs data from file ARCDAT no. of arc points read = 32086 grid for indexing accessible points = 1.400000 m= 73006 mr = 105212 m= 23496 mr = 54179 m= 4421 mr = 16691 m= 444 mr = 2632 m= 18 mr = 163 m= 0 mr = 0 time to grow re-entrant surface = 0.4900000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.8700000 number of dielectric boundary points 83681 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 6 iepsmp to db, and charging done at 0.9600000 number of grid points assigned charge 21911 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.727764 object centre at (A) : 142.0520 -16.52450 75.43900 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -5.3977955E-02 0.3468691 midg,1,midg; midg,igrid,midg 0.1240892 0.1196598 1,midg,midg; igrid,midg,midg 0.2112015 6.4377703E-02 gauss-seidel spectral radius is 0.9992294 estimated iterations to convergence 284 setup time was (sec) 1.110000 now iterating at: 09:43:51 rms-change max change #iterations 9.370541 322.7789 at 10iterations 5.538247 171.0321 at 20iterations 3.230504 86.00389 at 30iterations 1.872022 49.01136 at 40iterations 1.079758 23.66265 at 50iterations 0.6197782 14.40027 at 60iterations 0.3555073 8.721008 at 70iterations 0.2027493 5.632762 at 80iterations 0.1157581 2.526661 at 90iterations 6.6152751E-02 1.476597 at 100iterations 3.7600603E-02 0.8339691 at 110iterations 2.1431373E-02 0.5167561 at 120iterations 1.2148835E-02 0.2531854 at 130iterations 6.9090319E-03 0.1449142 at 140iterations 3.9280877E-03 7.7070236E-02 at 150iterations 2.2325660E-03 4.5730829E-02 at 160iterations 1.2661528E-03 2.5918007E-02 at 170iterations 7.1848073E-04 1.4235020E-02 at 180iterations finished qdiffx linear iterations at : 09:44:04 total time elapsed so far: 12.62000 # loops : 180 mean,max change (kT/e) : 7.1848073E-04 1.4235020E-02 energy calculations done at 12.62000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 12.77000 DelPhi exited at 09:44:04 12.770u 0.985s 0:14.13 97.3% 0+0k 0+0io 0pf+0w