problem in relaxation of crystal

how about the structure data ,( psf file ) ??
How can VMD identify your structure data ( bond , angle ,torsional ,…) ???

VMD can visualize atoms and bonds in a LAMMPS trajectory. It can also
wrap the coordinates of molecules in the unit cell. (However you
might need to include extra information in your dump file. See the
"dump" command example below.) The only limitations are: I don't
think VMD can visualize trajectories if the number of atoms is
changing throughout the simulation, and the topology of your bond
network throughout the trajectory must be constant. (I don't think
there is a way to visualize simulations using "fix bond/create" or
"fix bond/break",)

You must first create a PSF file for your system. If you don't have
one, then topotools (the VMD plugin by Axel) can generate a PSF file
for you, but you must have a LAMMPS DATA file.

Below I pasted the README file I've been distributing with moltemplate
into this email. I hope it will get you started. Read the VMD,
topotools plugin, and pbc plugin documentation for more details.
https://sites.google.com/site/akohlmey/software/topotools
http://www.ks.uiuc.edu/Research/vmd/plugins/pbctools/
Cheers!

------- README_visualize.txt --------
------- To view a lammps trajectory in VMD --------

1) Build a PSF file for use in viewing with VMD.

This step works with VMD 1.9 and topotools 1.2.
(Older versions, like VMD 1.8.6, don't support this.)

a) Start VMD
b) Menu Extensions->Tk Console
c) Enter:

(I assume that the the DATA file is called "system.data")

   topo readlammpsdata system.data full
   animate write psf system.psf

2)

Later, to Load a trajectory in VMD:

  Start VMD
  Select menu: File->New Molecule
-Browse to select the PSF file you created above, and load it.
  (Don't close the window yet.)
-Browse to select the trajectory file.
  If necessary, for "file type" select: "LAMMPS Trajectory"
  Load it.

   ---- A note on trajectory format: -----
If the trajectory is a DUMP file, then make sure the it contains the
information you need for pbctools (see below. I've been using this
command in my LAMMPS scripts to create the trajectories:

  dump 1 all custom 5000 DUMP_FILE.lammpstrj id mol type x y z ix iy iz

It's a good idea to use an atom_style which supports molecule-ID numbers
so that you can assign a molecule-ID number to each atom. (I think this
is needed to wrap atom coordinates without breaking molecules in half.)

Of course, you don't have to save your trajectories in DUMP format,
(other formats like DCD work fine) I just mention dump files
because these are the files I'm familiar with.

3) ----- Wrap the coordinates to the unit cell
          (without cutting the molecules in half)

a) Start VMD
b) Load the trajectory in VMD (see above)
c) Menu Extensions->Tk Console
d) Try entering these commands:

    pbc wrap -compound res -all
    pbc box

    ----- Optional ----
    Sometimes the solvent or membrane obscures the view of the solute.
    It can help to shift the location of the periodic boundary box
    To shift the box in the y direction (for example) do this:

    pbc wrap -compound res -all -shiftcenterrel {0.0 0.15 0.0}
    pbc box -shiftcenterrel {0.0 0.15 0.0}

    Distances are measured in units of box-length fractions, not Angstroms.

    Alternately if you have a solute whose atoms are all of type 1,
    then you can also try this to center the box around it:

    pbc wrap -sel type=1 -all -centersel type=2 -center com

4)
    You should check if your periodic boundary conditions are too small.
    To do that:
       select Graphics->Representations menu option
       click on the "Periodic" tab, and
       click on the "+x", "-x", "+y", "-y", "+z", "-z" checkboxes.

5) Optional: If you like, change the atom types in the PSF file so
   that VMD recognizes the atom types, use something like:

sed -e 's/ 1 1 / C C /g' < system.psf > temp1.psf
sed -e 's/ 2 2 / H H /g' < temp1.psf > temp2.psf
sed -e 's/ 3 3 / P P /g' < temp2.psf > system.psf

(If you do this, it might effect step 2 above.)