@@ -660,9 +660,8 @@ \subsubsection{My first input}
660660
661661At this point, you can create a snapshot image of the
662662current system using the \guicmd {Image Viewer} window, which can be
663- accessed by clicking the \guicmd {Create snapshot image} button at the
664- bottom of the LAMMPS-GUI. The image viewer
665- works by instructing LAMMPS to render an image of the current system using
663+ accessed by clicking the \guicmd {Create Image} button in the \guicmd {Run} menu.
664+ The image viewer works by instructing LAMMPS to render an image of the current system using
666665its internal rendering library via the \lmpcmd {dump image} command. The
667666resulting image is then displayed, and various buttons allow you to adjust
668667the view and rendering style. The image of
@@ -900,22 +899,22 @@ \subsubsection{Improving the script}
900899is placed \emph {after } the \lmpcmd {minimize} command):
901900\ begin{lstlisting}
902901# 6) Save system
903- write_data minimized_coordinates .data
902+ write_data min_coords .data
904903\end {lstlisting }
905904
906905A key improvement to the input is the addition of the
907906\lmpcmd {write\_ data} command. This command writes the state
908- of the system to a text file called \flecmd {minimized \_ coordinates .data}.
907+ of the system to a text file called \flecmd {min \_ coords .data}.
909908This \flecmd {.data} file will be used later
910909to restart the simulation from the final state of the energy
911910minimization step without having to repeat the system creation and
912911minimization.
913912
914913Run the \flecmd {improved.min.lmp} file using LAMMPS. At the end of the simulation, a file
915- called \flecmd {minimized \_ coordinates .data} is created. You can view the contents
914+ called \flecmd {min \_ coords .data} is created. You can view the contents
916915of the file with the file view feature of LAMMPS--GUI, e.g.~from the
917916\guicmd {File} menu or by right-clicking on the file name in the editor
918- and selecting the entry \guicmd {View file `minimized \_ coordinates .data'}.
917+ and selecting the entry \guicmd {View file `min \_ coords .data'}.
919918
920919The created \flecmd {.data} file contains all the information necessary to
921920restart the simulation, such as the number of atoms, the box size, the
@@ -967,7 +966,7 @@ \subsubsection{Improving the script}
967966\ begin{lstlisting}
968967# 2) System definition
969968pair_style lj/cut 4.0
970- read_data minimized_coordinates .data
969+ read_data min_coords .data
971970\end {lstlisting }
972971
973972By visualizing the system (see figure \ref {fig:improved-min }), you may
0 commit comments