Sat Oct 8 18:26:50 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 18:26: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 = 3526 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.5719243 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): 50.07200 108.7600 ymin,ymax (A): 10.30100 72.34800 zmin,zma (A): 38.43500 100.6810 x,y,z range (A): 58.68800 62.04700 62.24600 scale (grids/A): 0.5719243 object centre (A): 79.41600 41.32450 69.55800 number of atom coordinates read : 3526 total number of charged atoms : 3382 net assigned charge : 5.000020 assigned positive charge : 526.7371 centred at (gu) : 89.26501 89.82783 89.78337 assigned negative charge : -521.7386 centred at (gu) : 89.38631 89.71409 89.75962 start vw surface at 0.1700000 fill in re-entrant regions at 0.1800000 boundary points on vw surface= 7717 nv = 96 ne = 84 npr = 69652 no. pairs analyzed = 69652 no. exposed pairs = 4804 no. arc points = 33901 no. surface atoms = 1595 nbur = 1931 mkacc time = 0.2400000 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.512000 m= 332 mr = 3824 m= 2 mr = 17 m= 0 mr = 0 time to grow re-entrant surface = 0.3000000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.4900000 number of dielectric boundary points 4210 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 3398 ## 356 charges are in solution ## iepsmp to db, and charging done at 0.6000000 number of grid points assigned charge 9836 setting boundary conditions some initial phi values: midg,midg,1; midg,midg,igrid 3.5720149E-10 1.2139217E-09 midg,1,midg; midg,igrid,midg -1.5255486E-09 2.8995462E-09 1,midg,midg; igrid,midg,midg 3.7746353E-09 -1.3470800E-09 gauss-seidel spectral radius is 0.9842792 estimated iterations to convergence 66 setup time was (sec) 0.7700000 now iterating at: 18:26:51 rms-change max change #iterations 0.1012783 17.09324 at 10iterations 8.0427462E-03 1.119915 at 20iterations 9.3324896E-04 0.1481094 at 30iterations 2.2609354E-04 3.2718658E-02 at 40iterations 6.6771536E-05 9.7026825E-03 at 50iterations finished qdiffx linear iterations at : 18:26:54 total time elapsed so far: 4.440000 # loops : 50 mean,max change (kT/e) : 6.6771536E-05 9.7026825E-03 energy calculations done at 4.440000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 4.660000 DelPhi exited at 18:26:55 4.662u 0.426s 0:05.37 94.5% 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 18:26:55 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 = 3526 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.715773 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): 50.07200 108.7600 ymin,ymax (A): 10.30100 72.34800 zmin,zma (A): 38.43500 100.6810 x,y,z range (A): 58.68800 62.04700 62.24600 scale (grids/A): 1.715773 object centre (A): 79.41600 41.32450 69.55800 number of atom coordinates read : 3526 total number of charged atoms : 3382 net assigned charge : 5.000020 assigned positive charge : 526.7371 centred at (gu) : 87.79349 89.48262 89.34912 assigned negative charge : -521.7386 centred at (gu) : 88.15833 89.14200 89.27798 start vw surface at 0.1800000 fill in re-entrant regions at 0.3500000 boundary points on vw surface= 84006 reading accessible surface arcs data from file ARCDAT no. of arc points read = 33901 grid for indexing accessible points = 1.400000 m= 27067 mr = 55487 m= 3334 mr = 18286 m= 117 mr = 1635 m= 0 mr = 7 time to grow re-entrant surface = 0.4500000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 0.8700000 number of dielectric boundary points 39109 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 272 iepsmp to db, and charging done at 1.000000 number of grid points assigned charge 26173 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.5719243 object centre at (A) : 79.41600 41.32450 69.55800 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid 3.9734766E-03 5.4935417E-03 midg,1,midg; midg,igrid,midg -1.6219791E-02 2.4921138E-02 1,midg,midg; igrid,midg,midg 8.1767896E-03 -6.6948617E-03 gauss-seidel spectral radius is 0.9984319 estimated iterations to convergence 200 setup time was (sec) 1.210000 now iterating at: 18:26:57 rms-change max change #iterations 4.054194 186.0471 at 10iterations 1.788858 56.35408 at 20iterations 0.7924378 26.85125 at 30iterations 0.3519276 12.37976 at 40iterations 0.1564339 4.909634 at 50iterations 6.9298133E-02 2.102545 at 60iterations 3.0760489E-02 0.9375801 at 70iterations 1.3721251E-02 0.4212761 at 80iterations 6.1139301E-03 0.2073078 at 90iterations 2.7258042E-03 8.2700729E-02 at 100iterations 1.2334355E-03 4.2152405E-02 at 110iterations 5.6846696E-04 1.7309308E-02 at 120iterations finished qdiffx linear iterations at : 18:27:08 total time elapsed so far: 13.01000 # loops : 120 mean,max change (kT/e) : 5.6846696E-04 1.7309308E-02 energy calculations done at 13.01000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 13.22000 DelPhi exited at 18:27:09 13.220u 0.468s 0:13.97 97.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 18:27:09 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 = 3526 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: 2.573659 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): 50.07200 108.7600 ymin,ymax (A): 10.30100 72.34800 zmin,zma (A): 38.43500 100.6810 x,y,z range (A): 58.68800 62.04700 62.24600 scale (grids/A): 2.573659 object centre (A): 79.41600 41.32450 69.55800 number of atom coordinates read : 3526 total number of charged atoms : 3382 net assigned charge : 5.000020 assigned positive charge : 526.7371 centred at (gu) : 86.69016 89.22378 89.02336 assigned negative charge : -521.7386 centred at (gu) : 87.23722 88.71280 88.91697 start vw surface at 0.1900000 fill in re-entrant regions at 0.6900000 boundary points on vw surface= 194986 reading accessible surface arcs data from file ARCDAT no. of arc points read = 33901 grid for indexing accessible points = 1.400000 m= 90832 mr = 136356 m= 28294 mr = 70619 m= 5406 mr = 21037 m= 477 mr = 3527 m= 18 mr = 173 m= 2 mr = 0 m= 0 mr = 0 time to grow re-entrant surface = 1.300000 no. cavity mid-points inaccessible to solvent = 0 time to turn everything in is 2.170000 number of dielectric boundary points 88303 no. dielectric boundary points in salt = 0 no. grid points charged and at boundary= 14 iepsmp to db, and charging done at 2.330000 number of grid points assigned charge 27040 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.715773 object centre at (A) : 79.41600 41.32450 69.55800 pulling boundary values out of old potential map... some initial phi values: midg,midg,1; midg,midg,igrid -3.4616984E-02 -4.3568563E-02 midg,1,midg; midg,igrid,midg -0.2011479 0.3394231 1,midg,midg; igrid,midg,midg -8.0162828E-04 8.7388875E-03 gauss-seidel spectral radius is 0.9992315 estimated iterations to convergence 285 setup time was (sec) 2.550000 now iterating at: 18:27:12 rms-change max change #iterations 10.27512 309.5347 at 10iterations 6.047055 140.6583 at 20iterations 3.522686 85.96284 at 30iterations 2.043895 40.88522 at 40iterations 1.179610 26.70124 at 50iterations 0.6780199 12.73808 at 60iterations 0.3900865 7.419331 at 70iterations 0.2231036 4.254660 at 80iterations 0.1278327 3.256195 at 90iterations 7.2906651E-02 1.587761 at 100iterations 4.1652314E-02 0.7640324 at 110iterations 2.3855334E-02 0.4593954 at 120iterations 1.3572567E-02 0.2863655 at 130iterations 7.7360766E-03 0.1483841 at 140iterations 4.4176239E-03 8.2050323E-02 at 150iterations 2.5169090E-03 5.3495407E-02 at 160iterations 1.4411827E-03 3.3996582E-02 at 170iterations 8.2720700E-04 1.5646935E-02 at 180iterations finished qdiffx linear iterations at : 18:27:32 total time elapsed so far: 22.25000 # loops : 180 mean,max change (kT/e) : 8.2720700E-04 1.5646935E-02 energy calculations done at 22.25000 writing potential map in DELPHI format potential map written to file fort.14 total cpu time was (sec) 22.46000 DelPhi exited at 18:27:32 22.461u 0.481s 0:23.23 98.7% 0+0k 0+0io 0pf+0w