forked from lijiext/lammps
98 lines
3.7 KiB
Plaintext
98 lines
3.7 KiB
Plaintext
"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
|
|
|
|
compute pressure command :h3
|
|
|
|
[Syntax:]
|
|
|
|
compute ID group-ID pressure temp-ID keyword ... :pre
|
|
|
|
ID, group-ID are documented in "compute"_compute.html command
|
|
pressure = style name of this compute command
|
|
temp-ID = ID of compute that calculates temperature
|
|
zero or more keywords may be appended
|
|
keyword = {ke} or {pair} or {bond} or {angle} or {dihedral} or {improper} or {kspace} or {fix} :ul
|
|
|
|
[Examples:]
|
|
|
|
compute 1 all pressure myTemp
|
|
compute 1 all pressure thermo_temp pair bond :pre
|
|
|
|
[Description:]
|
|
|
|
Define a computation that calculates the pressure of the entire system
|
|
of atoms. The specified group must be "all". See the "compute
|
|
stress/atom"_compute_stress_atom.html command if you want per-atom
|
|
pressure (stress). These per-atom values could be summed for a group
|
|
of atoms via the "compute reduce"_compute_reduce.html command.
|
|
|
|
The pressure is computed by the formula
|
|
|
|
:c,image(Eqs/pressure.jpg)
|
|
|
|
where N is the number of atoms in the system (see discussion of DOF
|
|
below), Kb is the Boltzmann constant, T is the temperature, d is the
|
|
dimensionality of the system (2 or 3 for 2d/3d), V is the system
|
|
volume (or area in 2d), and the second term is the virial, computed
|
|
within LAMMPS for all pairwise as well as 2-body, 3-body, and 4-body,
|
|
and long-range interactions. "Fixes"_fix.html that impose constraints
|
|
(e.g. the "fix shake"_fix_shake.html command) also contribute to the
|
|
virial term.
|
|
|
|
A 6-component pressure tensor is also calculated by this compute whose
|
|
components can be output by the "thermo_style
|
|
custom"_thermo_style.html command or accessed by other
|
|
"compute"_compute.html and "fix"_fix.html commands. The equation for
|
|
the components of the tensor is the same as in above formula, except
|
|
that the first term uses the components of the kinetic energy tensor
|
|
(vx * vy instead of v^2 for temperature) and the second term uses Rx *
|
|
Fy for the Wxy component of the virial tensor, etc.
|
|
|
|
If no extra keywords are listed, the entire equation above is
|
|
calculated which includes a temperature term (or kinetic energy
|
|
tensor) and the virial as the sum of pair, bond, angle, dihedral,
|
|
improper, kspace (long-range), and fix contributions. If any extra
|
|
keywords are listed, then only those components are summed to compute
|
|
ke and/or the virial.
|
|
|
|
The temperature and kinetic energy tensor is not calculated by this
|
|
compute, but rather by the temperature compute specified with the
|
|
command. Normally this compute should calculate the temperature of
|
|
all atoms for consistency with the virial term, but any compute style
|
|
that calculates temperature can be used, e.g. one that excludes frozen
|
|
atoms or other degrees of freedom.
|
|
|
|
Note that the N is the above formula is really degrees-of-freedom
|
|
where the DOF is specified by the temperature compute. See the
|
|
various "compute temperature"_compute.html styles for details.
|
|
|
|
A compute of this style with the ID of "thermo_press" is created when
|
|
LAMMPS starts up, as if this command were in the input script:
|
|
|
|
compute thermo_press all pressure thermo_temp :pre
|
|
|
|
where "thermo_temp" is the ID of a similarly defined compute of style
|
|
"temp". See the "thermo_style" command for more details.
|
|
|
|
[Output info:]
|
|
|
|
The scalar value calculated by this compute is "intensive", meaning it
|
|
is independent of the number of atoms in the simulation. The vector
|
|
values are "extensive", meaning they scale with the number of atoms in
|
|
the simulation.
|
|
|
|
[Restrictions:] none
|
|
|
|
[Related commands:]
|
|
|
|
"compute temp"_compute_temp.html, "compute
|
|
stress/atom"_compute_stress_atom.html,
|
|
"thermo_style"_thermo_style.html,
|
|
|
|
[Default:] none
|