Commit b015f751 authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4745 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 3d066848
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ void DihedralClass2::compute(int eflag, int vflag)
	sprintf(str,"Dihedral problem: %d %d %d %d %d %d",
		me,update->ntimestep,
		atom->tag[i1],atom->tag[i2],atom->tag[i3],atom->tag[i4]);
	error->warning(str);
	error->warning(str,0);
	fprintf(screen,"  1st atom: %d %g %g %g\n",
		me,x[i1][0],x[i1][1],x[i1][2]);
	fprintf(screen,"  2nd atom: %d %g %g %g\n",
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ void ImproperClass2::compute(int eflag, int vflag)
	  sprintf(str,"Improper problem: %d %d %d %d %d %d",
		  me,update->ntimestep,
		  atom->tag[i1],atom->tag[i2],atom->tag[i3],atom->tag[i4]);
	  error->warning(str);
	  error->warning(str,0);
	  fprintf(screen,"  1st atom: %d %g %g %g\n",
		  me,x[i1][0],x[i1][1],x[i1][2]);
	  fprintf(screen,"  2nd atom: %d %g %g %g\n",
+2 −2
Original line number Diff line number Diff line
@@ -158,9 +158,9 @@ void PairDSMC::compute(int eflag, int vflag)
	  convert_double_to_equivalent_int(num_of_collisions_double);

        if (num_of_collisions > number_of_A) 
	  error->warning("Pair dsmc: num_of_collisions > number_of_A");
	  error->warning("Pair dsmc: num_of_collisions > number_of_A",0);
        if (num_of_collisions > number_of_B) 
	  error->warning("Pair dsmc: num_of_collisions > number_of_B");
	  error->warning("Pair dsmc: num_of_collisions > number_of_B",0);

        // perform collisions on pairs of particles in icell

+1 −1
Original line number Diff line number Diff line
@@ -416,7 +416,7 @@ void FixPour::pre_exchange()

  ninserted += nnear-nprevious;
  if (nnear - nprevious < nnew && me == 0)
    error->warning("Less insertions than requested");
    error->warning("Less insertions than requested",0);

  // check if new atom is in my sub-box or above it if I'm highest proc
  // if so, add to my list via create_atom()
+2 −2
Original line number Diff line number Diff line
@@ -1781,14 +1781,14 @@ double PairComb::qfo_self(Param *param, double qi, double selfpot)
   char str[128];
   sprintf(str,"Pair COMB charge %.10f with force %.10f hit min barrier",
	   qi,self_d);
   error->warning(str);
   error->warning(str,0);
   self_d += 4.0 * cmin * pow((qi-qmin),3);
 }
 if (qi > qmax) {
   char str[128];
   sprintf(str,"Pair COMB charge %.10f with force %.10f hit max barrier",
	   qi,self_d);
   error->warning(str);
   error->warning(str,0);
   self_d += 4.0 * cmax * pow((qi-qmax),3);
 }
 */
Loading