wall/colloid

Hi,

For some reason this lines is giving me the error “invalid fix style”

fix topWall all wall/colloid zhi EDGE 2 1.0 1.0

I already recompiled the latest lammps source (1-jul11) and used make yes-colloid to include the proper packages, the code works when i swap that wall out with a reflective wall.

~Nickhil Rokkam

Is the file fix_wall_colloid.cpp in your src dir? Is the *.h listed
in style_fix.h? If not, you somehow didn't build with it.

Steve

I checked before I compiled it and they were there in the src directory.

~Nickhil Rokkam

The script below runs fine with your command in the
current version.

Steve

# 3d Lennard-Jones melt

units lj
atom_style sphere
boundary s s s

lattice sc 1.0
region box block -0.7 10.7 -0.7 10.7 -0.7 10.7
create_box 1 box
create_atoms 1 box
#mass 1 1.0

velocity all create 1.44 87287 loop geom

pair_style lj/cut 2.5
pair_coeff 1 1 1.0 1.0 2.5

neighbor 0.3 bin
neigh_modify delay 0 every 20 check no

fix 1 all nve

fix topWall all wall/colloid zhi EDGE 2 1.0 1.0

run 100