[lammps-users] perhaps mistake

hello,i find there are mistake in the example of the command computer
tem/ramp. when i use this command for compute or temperature ,it says
the command can not find ,why? is it nor work?

The appended script (from bench/lj) works fine with
the compute temp/ramp command.

Steve

# 3d Lennard-Jones melt

variable x index 1
variable y index 1
variable z index 1

variable xx equal 20*$x
variable yy equal 20*$y
variable zz equal 20*$z

units lj
atom_style atomic

lattice fcc 0.8442
region box block 0 \{xx\} 0 {yy} 0 ${zz}
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

compute 1 all temp/ramp vx 0 0 y 0 10
thermo_style custom step temp c_1
thermo 10

run 100

2008/12/12 H.Q. Lu <[email protected]...>: