[lammps-users] Missing fike 1 Dec patch

Hi,

Does the file src/compute_ebond_atom.h is missing from the 1 Dec patch? I tried to apply this patch to the 05 Oct version (all other patches worked without problems) and I get an error complaining about this file.

Thanks

Marcio

The patch should delete that file. In other
words, a fully patched 1 Dec 07 version of
LAMMPS should make no reference to that
file. After applying the patch, I would do a

make clean-all

and try building LAMMPS from scratch.

Steve

The issue with the file src/compute_ebond_atom.h was solved. Thanks.

Now I am having another problem. Using these commands to patch the code:

patch -bp1 < patch.1Dec07
cd src
make package-update
make
make clean-all
make

I get this error:

icc -O -I/home/vernieri/src/lammps-05Oct07/lib/poems -DFFT_FFTW -DGZIP -DMPICH_IGNORE_CXX_SEEK -I/usr/include/mpi/ -c pair_meam.cpp
pair_meam.cpp(125): error: identifier “evdwl” is undefined
evdwl = 0.0;
^

pair_meam.cpp(297): error: identifier “newton_pair” is undefined
if (evflag) ev_tally(0,0,nlocal,newton_pair,evdwl,0.0,0.0,0.0,0.0);
^

pair_meam.cpp(297): error #165: too few arguments in function call
if (evflag) ev_tally(0,0,nlocal,newton_pair,evdwl,0.0,0.0,0.0,0.0);
^

compilation aborted for pair_meam.cpp (code 2)
make[1]: ** [pair_meam.o] Erro 2
make[1]: Leaving `/home/vernieri/src/teste/src/Obj_debian.2’
make: ** [debian.2] Error 2

Can someone please help?

Thanks

Marcio

Steve Plimpton wrote:

Pair meam lacks a couple variable declarations. I'll
post a patch this AM.

Steve