2006-09-22 00:22:34 +08:00
|
|
|
"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c
|
|
|
|
|
|
|
|
:link(lws,http://lammps.sandia.gov)
|
|
|
|
:link(ld,Manual.html)
|
|
|
|
:link(lc,Section_commands.html#comm)
|
|
|
|
|
|
|
|
:line
|
|
|
|
|
|
|
|
print command :h3
|
|
|
|
|
|
|
|
[Syntax:]
|
|
|
|
|
2007-12-13 22:33:12 +08:00
|
|
|
print string :pre
|
2006-09-22 00:22:34 +08:00
|
|
|
|
2008-01-03 03:25:15 +08:00
|
|
|
string = text string to print. may contain variables :ul
|
2006-09-22 00:22:34 +08:00
|
|
|
|
|
|
|
[Examples:]
|
|
|
|
|
2007-12-13 22:33:12 +08:00
|
|
|
print "Done with equilibration"
|
|
|
|
print "The system volume is now $v" :pre
|
2006-09-22 00:22:34 +08:00
|
|
|
|
|
|
|
[Description:]
|
|
|
|
|
2007-12-13 22:33:12 +08:00
|
|
|
Print a text string to the screen and logfile. The text string must
|
|
|
|
be a single argument, so it should be enclosed in double quotes if it
|
|
|
|
is more than one word. If variables are included in the string, they
|
|
|
|
will be evaluated and their current values printed.
|
2007-02-10 05:37:30 +08:00
|
|
|
|
|
|
|
If you want the print command to be executed multiple times (with
|
|
|
|
changing variable values), there are 3 options. First, consider using
|
2008-01-03 03:25:15 +08:00
|
|
|
the "fix print"_fix_print.html command, which will print a string
|
2007-02-10 05:37:30 +08:00
|
|
|
periodically during a simulation. Second, the print command can be
|
|
|
|
used as an argument to the {every} option of the "run"_run.html
|
|
|
|
command. Third, the print command could appear in a section of the
|
2008-01-03 03:25:15 +08:00
|
|
|
input script that is looped over (see the "jump"_jump.html and
|
|
|
|
"next"_next.html commands).
|
2007-02-10 05:37:30 +08:00
|
|
|
|
|
|
|
See the "variable"_variable.html command for a description of {equal}
|
|
|
|
style variables which are typically the most useful ones to use with
|
2007-12-13 22:33:12 +08:00
|
|
|
the print command. Equal-style variables can calculate formulas
|
|
|
|
involving mathematical operations, atom properties, group properties,
|
|
|
|
thermodyanimc properties, global values calculated by a
|
|
|
|
"compute"_compute.html or "fix"_fix.html, or references to other
|
|
|
|
"variables"_variable.html.
|
2006-09-22 00:22:34 +08:00
|
|
|
|
|
|
|
[Restrictions:] none
|
|
|
|
|
|
|
|
[Related commands:]
|
|
|
|
|
|
|
|
"fix print"_fix_print.html, "variable"_variable.html
|
|
|
|
|
|
|
|
[Default:] none
|