merge conflicts in cmakelist
This commit is contained in:
@ -29,8 +29,8 @@ if(BUILD_DOC)
|
||||
OUTPUT requirements.txt
|
||||
DEPENDS docenv
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${LAMMPS_DOC_DIR}/utils/requirements.txt requirements.txt
|
||||
COMMAND ${DOCENV_BINARY_DIR}/pip install -r requirements.txt --upgrade
|
||||
COMMAND ${DOCENV_BINARY_DIR}/pip install --upgrade ${LAMMPS_DOC_DIR}/utils/converters
|
||||
COMMAND ${DOCENV_BINARY_DIR}/pip install --use-feature=2020-resolver -r requirements.txt --upgrade
|
||||
)
|
||||
|
||||
# download mathjax distribution and unpack to folder "mathjax"
|
||||
|
||||
@ -194,7 +194,7 @@ $(VENV):
|
||||
$(VIRTUALENV) -p $(PYTHON) $(VENV); \
|
||||
. $(VENV)/bin/activate; \
|
||||
pip install --upgrade pip; \
|
||||
pip install -r requirements.txt; \
|
||||
pip install --use-feature=2020-resolver -r requirements.txt; \
|
||||
deactivate;\
|
||||
)
|
||||
|
||||
|
||||
@ -159,8 +159,8 @@ A test run is then a a collection multiple individual test runs each
|
||||
with many comparisons to reference results based on template input
|
||||
files, individual command settings, relative error margins, and
|
||||
reference data stored in a YAML format file with ``.yaml``
|
||||
suffix. Currently the programs ``pair_style``, ``bond_style``, and
|
||||
``angle_style`` are implemented. They will compare forces, energies and
|
||||
suffix. Currently the programs ``test_pair_style``, ``test_bond_style``, and
|
||||
``test_angle_style`` are implemented. They will compare forces, energies and
|
||||
(global) stress for all atoms after a ``run 0`` calculation and after a
|
||||
few steps of MD with :doc:`fix nve <fix_nve>`, each in multiple variants
|
||||
with different settings and also for multiple accelerated styles. If a
|
||||
@ -172,7 +172,7 @@ Below is an example command and output:
|
||||
|
||||
.. parsed-literal::
|
||||
|
||||
[tests]$ pair_style mol-pair-lj_cut.yaml
|
||||
[tests]$ test_pair_style mol-pair-lj_cut.yaml
|
||||
[==========] Running 6 tests from 1 test suite.
|
||||
[----------] Global test environment set-up.
|
||||
[----------] 6 tests from PairStyle
|
||||
@ -259,13 +259,61 @@ and working.
|
||||
of mis-compiled code (or an undesired large loss of precision due
|
||||
to significant reordering of operations and thus less error cancellation).
|
||||
|
||||
Unit tests for timestepping related fixes
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
A substantial subset of :doc:`fix styles <fix>` are invoked regularly
|
||||
during MD timestepping and manipulate per-atom properties like
|
||||
positions, velocities, and forces. For those fix styles, testing can be
|
||||
done in a very similar fashion as for force fields and thus there is a
|
||||
test program `test_fix_timestep` that shares a lot of code, properties,
|
||||
and command line flags with the force field style testers described in
|
||||
the previous section.
|
||||
|
||||
This tester will set up a small molecular system run with verlet run
|
||||
style for 4 MD steps, then write a binary restart and continue for
|
||||
another 4 MD steps. At this point coordinates and velocities are
|
||||
recorded and compared to reference data. Then the system is cleared,
|
||||
restarted and running the second 4 MD steps again and the data is
|
||||
compared to the same reference. That is followed by another restart
|
||||
after which per atom type masses are replaced with per-atom masses and
|
||||
the second 4 MD steps are repeated again and compared to the same
|
||||
reference. Also global scalar and vector data of the fix is recorded
|
||||
and compared. If the fix is a thermostat and thus the internal property
|
||||
``t_target`` can be extracted, then this is compared to the reference
|
||||
data. The tests are repeated with the respa run style.
|
||||
|
||||
If the fix has a multi-threaded version in the USER-OMP package, then
|
||||
the entire set of tests is repeated for that version as well.
|
||||
|
||||
For this to work, some additional conditions have to be met by the
|
||||
YAML format test inputs.
|
||||
|
||||
- The fix to be tested (and only this fix), should be listed in the
|
||||
``prerequisites:`` section
|
||||
- The fix to be tested must be specified in the ``post_commands:``
|
||||
section with the fix-ID ``test``. This section may contain other
|
||||
commands and other fixes (e.g. an instance of fix nve for testing
|
||||
a thermostat or force manipulation fix)
|
||||
- For fixes that can tally contributions to the global virial, the
|
||||
line ``fix_modify test virial yes`` should be included in the
|
||||
``post_commands:`` section of the test input.
|
||||
- For thermostat fixes the target temperature should be ramped from
|
||||
an arbitrary value (e.g. 50K) to a pre-defined target temperature
|
||||
entered as ``${t_target}``.
|
||||
- For fixes that have thermostatting support included, but do not
|
||||
have it enabled in the input (e.g. fix rigid with default settings),
|
||||
the ``post_commands:`` section should contain the line
|
||||
``variable t_target delete`` to disable the target temperature ramp
|
||||
check to avoid false positives.
|
||||
|
||||
Use custom linker for faster link times when ENABLE_TESTING is active
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
When compiling LAMMPS with enabled tests, most test executables will
|
||||
need to be linked against the LAMMPS library. Since this can be a
|
||||
large with many C++ objects when many packages are enabled, link times
|
||||
can become very long on machines that use the GNU BFD linker (e.g.
|
||||
need to be linked against the LAMMPS library. Since this can be a very
|
||||
large library with many C++ objects when many packages are enabled, link
|
||||
times can become very long on machines that use the GNU BFD linker (e.g.
|
||||
Linux systems). Alternatives like the ``lld`` linker of the LLVM project
|
||||
or the ``gold`` linker available with GNU binutils can speed up this step
|
||||
substantially. CMake will by default test if any of the two can be
|
||||
|
||||
@ -46,6 +46,7 @@ OPT.
|
||||
* :doc:`oxdna2/fene <bond_oxdna>`
|
||||
* :doc:`oxrna2/fene <bond_oxdna>`
|
||||
* :doc:`quartic (o) <bond_quartic>`
|
||||
* :doc:`special <bond_special>`
|
||||
* :doc:`table (o) <bond_table>`
|
||||
|
||||
.. _angle:
|
||||
|
||||
106
doc/src/bond_special.rst
Normal file
106
doc/src/bond_special.rst
Normal file
@ -0,0 +1,106 @@
|
||||
.. index:: bond_style special
|
||||
|
||||
bond_style special command
|
||||
=================================
|
||||
|
||||
Syntax
|
||||
""""""
|
||||
|
||||
|
||||
.. code-block:: LAMMPS
|
||||
|
||||
bond_style special
|
||||
|
||||
Examples
|
||||
""""""""
|
||||
|
||||
|
||||
.. code-block:: LAMMPS
|
||||
|
||||
bond_style special
|
||||
bond_coeff 0.5 0.5
|
||||
|
||||
Description
|
||||
"""""""""""
|
||||
|
||||
The *special* bond style can be used to create conceptual bonds which
|
||||
effectively impose weightings on the pairwise Lennard Jones and/or
|
||||
Coulombic interactions between selected pairs of particles in the
|
||||
system. The form of the pairwise interaction will be whatever is
|
||||
computed by the :doc:`pair_style <pair_style>` command defined for the
|
||||
system; this command defines the weightings for its two terms.
|
||||
|
||||
This command can thus be useful to apply weightings that cannot be
|
||||
handled by the :doc:`special_bonds <special_bonds>` command, such as
|
||||
on 1-5 or 1-6 interactions. Or it can be used to add pairwise forces
|
||||
between one or more pairs of atoms that otherwise would not be include
|
||||
in the :doc:`pair_style <pair_style>` computation.
|
||||
|
||||
The potential for this bond style has the form
|
||||
|
||||
.. math::
|
||||
|
||||
E = w_{LJ} E_{LJ} + w_{Coul} E_{Coul}
|
||||
|
||||
The following coefficients must be defined for each bond type via the
|
||||
:doc:`bond_coeff <bond_coeff>` command as in the example above, or in
|
||||
the data file or restart files read by the :doc:`read_data <read_data>`
|
||||
or :doc:`read_restart <read_restart>` commands:
|
||||
|
||||
* :math:`w_{LJ}` weight (0.0 to 1.0) on pairwise Lennard-Jones interactions
|
||||
|
||||
* :math:`w_{Coul}` weight (0.0 to 1.0) on pairwise Coulombic interactions
|
||||
|
||||
----------
|
||||
|
||||
Normally this bond style should be used in conjunction with one (or
|
||||
more) other bond styles which compute forces between atoms directly
|
||||
bonded to each other in a molecule. This means the :doc:`bond_style
|
||||
hybrid <bond_hybrid>` command should be used with bond_style special
|
||||
as one of its sub-styles.
|
||||
|
||||
Note that the same as for any other bond style, pairs of bonded atoms
|
||||
must be enumerated in the data file read by the :doc:`read_data
|
||||
<read_data>` command. Thus if this command is used to weight all 1-5
|
||||
interactions in the system, all the 1-5 pairs of atoms must be listed
|
||||
in the "Bonds" section of the data file.
|
||||
|
||||
This bond style imposes strict requirements on settings made with the
|
||||
:doc:`special_bonds <special_bonds>` command. These requirements
|
||||
ensure that the new bonds created by this style do not create spurious
|
||||
1-2, 1-3, or 1-4 interactions within the molecular topology.
|
||||
|
||||
Specifically 1-2 interactions must have weights of zero, 1-3
|
||||
interactions must either have weights of unity or :doc:`special_bonds
|
||||
angle yes <special_bonds>` must be used, and 1-4 interactions must
|
||||
have weights of unity or :doc:`special_bonds dihedral yes <special_bonds>`
|
||||
must be used.
|
||||
|
||||
If this command is used to create bonded interactions between
|
||||
particles that are further apart than usual (e.g. 1-5 or 1-6
|
||||
interactions), this style may require an increase in the communication
|
||||
cutoff via the :doc:`comm_modify cutoff <comm_modify>` command. If
|
||||
LAMMPS cannot find a partner atom in a bond, an error will be issued.
|
||||
|
||||
Restrictions
|
||||
""""""""""""
|
||||
|
||||
This bond style can only be used if LAMMPS was built with the
|
||||
USER-MISC package. See the :doc:`Build package <Build_package>` doc
|
||||
page for more info.
|
||||
|
||||
This bond style requires the use of a :doc:`pair_style <pair_style>` which
|
||||
computes a pairwise additive interaction and provides the ability to
|
||||
compute interactions for individual pairs of atoms. Manybody potentials
|
||||
are not compatible in general, but also some other pair styles are missing
|
||||
the required functionality and thus will cause an error.
|
||||
|
||||
This command is not compatible with long-range Coulombic interactions. If a
|
||||
`kspace_style <kspace_style>` is declared, an error will be issued.
|
||||
|
||||
Related commands
|
||||
""""""""""""""""
|
||||
|
||||
:doc:`bond_coeff <bond_coeff>`, :doc:`special_bonds <special_bonds>`
|
||||
|
||||
**Default:** none
|
||||
@ -119,7 +119,11 @@ thermal degrees of freedom, and the bias is added back in.
|
||||
|
||||
**Restart, fix_modify, output, run start/stop, minimize info:**
|
||||
|
||||
No information about this fix is written to :doc:`binary restart files <restart>`.
|
||||
This fix writes the cumulative global energy change to
|
||||
:doc:`binary restart files <restart>`. See the
|
||||
:doc:`read_restart <read_restart>` command for info on how to
|
||||
re-specify a fix in an input script that reads a restart file,
|
||||
so that the fix continues in an uninterrupted fashion.
|
||||
|
||||
The :doc:`fix_modify <fix_modify>` *temp* option is supported by this
|
||||
fix. You can use it to assign a temperature :doc:`compute <compute>`
|
||||
|
||||
@ -127,6 +127,14 @@ thermal degrees of freedom, and the bias is added back in.
|
||||
|
||||
**Restart, fix_modify, output, run start/stop, minimize info:**
|
||||
|
||||
These fixes write the cumulative global energy change and the
|
||||
random number generator states to :doc:`binary restart files <restart>`.
|
||||
See the :doc:`read_restart <read_restart>` command for info on how to
|
||||
re-specify a fix in an input script that reads a restart file,
|
||||
so that the selected fix continues in an uninterrupted fashion. The
|
||||
random number generator state can only be restored when the number
|
||||
of processors remains unchanged from what is recorded in the restart file.
|
||||
|
||||
No information about these fixes are written to :doc:`binary restart files <restart>`.
|
||||
|
||||
The :doc:`fix_modify <fix_modify>` *temp* option is supported by these
|
||||
|
||||
@ -260,12 +260,8 @@ of Aidan Thompson), with its 8 atom unit cell.
|
||||
variable b equal $a*sqrt(3.0)
|
||||
variable c equal $a*sqrt(8.0/3.0)
|
||||
|
||||
variable 1_3 equal 1.0/3.0
|
||||
variable 2_3 equal 2.0/3.0
|
||||
variable 1_6 equal 1.0/6.0
|
||||
variable 5_6 equal 5.0/6.0
|
||||
variable 1_12 equal 1.0/12.0
|
||||
variable 5_12 equal 5.0/12.0
|
||||
variable third equal 1.0/3.0
|
||||
variable five6 equal 5.0/6.0
|
||||
|
||||
lattice custom 1.0 &
|
||||
a1 $a 0.0 0.0 &
|
||||
@ -273,12 +269,12 @@ of Aidan Thompson), with its 8 atom unit cell.
|
||||
a3 0.0 0.0 $c &
|
||||
basis 0.0 0.0 0.0 &
|
||||
basis 0.5 0.5 0.0 &
|
||||
basis ${1_3} 0.0 0.5 &
|
||||
basis ${5_6} 0.5 0.5 &
|
||||
basis ${third} 0.0 0.5 &
|
||||
basis ${five6} 0.5 0.5 &
|
||||
basis 0.0 0.0 0.625 &
|
||||
basis 0.5 0.5 0.625 &
|
||||
basis ${1_3} 0.0 0.125 &
|
||||
basis ${5_6} 0.5 0.125
|
||||
basis ${third} 0.0 0.125 &
|
||||
basis ${five6} 0.5 0.125
|
||||
|
||||
region myreg block 0 1 0 1 0 1
|
||||
create_box 2 myreg
|
||||
|
||||
@ -161,11 +161,11 @@ Examples
|
||||
|
||||
pair_style coul/long/soft 1.0 10.0 9.5
|
||||
pair_coeff * * 1.0
|
||||
pair_coeff 1 1 1.0 9.5
|
||||
pair_coeff 1 1 1.0
|
||||
|
||||
pair_style tip4p/long/soft 1 2 7 8 0.15 2.0 0.5 10.0 9.8
|
||||
pair_coeff * * 1.0
|
||||
pair_coeff 1 1 1.0 9.5
|
||||
pair_coeff 1 1 1.0
|
||||
|
||||
pair_style morse/soft 4 0.9 10.0
|
||||
pair_coeff * * 100.0 2.0 1.5 1.0
|
||||
@ -284,7 +284,9 @@ core. Hence, if used by themselves, there will be no repulsion to keep two
|
||||
oppositely charged particles from overlapping each other. In this case, if
|
||||
:math:`\lambda = 1`, a singularity may occur. These sub-styles are suitable to
|
||||
represent charges embedded in the Lennard-Jones radius of another site (for
|
||||
example hydrogen atoms in several water models).
|
||||
example hydrogen atoms in several water models). The :math:`\lambda` must
|
||||
be defined for each pair, and *coul/cut/soft* can accept an optional cutoff as
|
||||
the second coefficient.
|
||||
|
||||
.. note::
|
||||
|
||||
|
||||
@ -60,7 +60,7 @@ For the *linear* style, the distance *R* is used to find the 2
|
||||
surrounding table values from which an energy or force is computed by
|
||||
linear interpolation.
|
||||
|
||||
For the *spline* style, a cubic spline coefficients are computed and
|
||||
For the *spline* style, cubic spline coefficients are computed and
|
||||
stored for each of the *N* values in the table, one set of splines for
|
||||
energy, another for force. Note that these splines are different than
|
||||
the ones used to pre-compute the *N* values. Those splines were fit
|
||||
|
||||
@ -1541,6 +1541,7 @@ int FixWallGran::pack_restart(int i, double *buf)
|
||||
if (!use_history) return 0;
|
||||
|
||||
int n = 0;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[n++] = size_history + 1;
|
||||
for (int m = 0; m < size_history; m++)
|
||||
buf[n++] = history_one[i][m];
|
||||
@ -1558,6 +1559,7 @@ void FixWallGran::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -479,6 +479,7 @@ int FixWallGranRegion::pack_restart(int i, double *buf)
|
||||
for (m = 0; m < size_history; m++)
|
||||
buf[n++] = history_many[i][iwall][m];
|
||||
}
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = n;
|
||||
return n;
|
||||
}
|
||||
@ -496,6 +497,7 @@ void FixWallGranRegion::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -689,7 +689,7 @@ void PairLJCharmmCoulLong::init_style()
|
||||
int irequest;
|
||||
int respa = 0;
|
||||
|
||||
if (update->whichflag == 1 && strstr(update->integrate_style,"respa")) {
|
||||
if (update->whichflag == 1 && utils::strmatch(update->integrate_style,"^respa")) {
|
||||
if (((Respa *) update->integrate)->level_inner >= 0) respa = 1;
|
||||
if (((Respa *) update->integrate)->level_middle >= 0) respa = 2;
|
||||
}
|
||||
@ -718,7 +718,7 @@ void PairLJCharmmCoulLong::init_style()
|
||||
|
||||
// set & error check interior rRESPA cutoffs
|
||||
|
||||
if (strstr(update->integrate_style,"respa") &&
|
||||
if (utils::strmatch(update->integrate_style,"^respa") &&
|
||||
((Respa *) update->integrate)->level_inner >= 0) {
|
||||
cut_respa = ((Respa *) update->integrate)->cutoff;
|
||||
cut_in_off = cut_respa[0];
|
||||
|
||||
@ -545,10 +545,7 @@ void PairLJCutCoulLong::compute_outer(int eflag, int vflag)
|
||||
}
|
||||
} else forcecoul = 0.0;
|
||||
|
||||
if (rsq <= cut_in_off_sq) {
|
||||
r6inv = r2inv*r2inv*r2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
} else if (rsq <= cut_in_on_sq) {
|
||||
if (rsq < cut_ljsq[itype][jtype]) {
|
||||
r6inv = r2inv*r2inv*r2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
}
|
||||
@ -659,7 +656,7 @@ void PairLJCutCoulLong::init_style()
|
||||
int irequest;
|
||||
int respa = 0;
|
||||
|
||||
if (update->whichflag == 1 && strstr(update->integrate_style,"respa")) {
|
||||
if (update->whichflag == 1 && utils::strmatch(update->integrate_style,"^respa")) {
|
||||
if (((Respa *) update->integrate)->level_inner >= 0) respa = 1;
|
||||
if (((Respa *) update->integrate)->level_middle >= 0) respa = 2;
|
||||
}
|
||||
@ -676,7 +673,7 @@ void PairLJCutCoulLong::init_style()
|
||||
|
||||
// set rRESPA cutoffs
|
||||
|
||||
if (strstr(update->integrate_style,"respa") &&
|
||||
if (utils::strmatch(update->integrate_style,"^respa") &&
|
||||
((Respa *) update->integrate)->level_inner >= 0)
|
||||
cut_respa = ((Respa *) update->integrate)->cutoff;
|
||||
else cut_respa = NULL;
|
||||
|
||||
@ -547,6 +547,7 @@ int FixGLD::unpack_exchange(int nlocal, double *buf)
|
||||
int FixGLD::pack_restart(int i, double *buf)
|
||||
{
|
||||
int m = 0;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[m++] = 3*prony_terms + 1;
|
||||
for (int k = 0; k < 3*prony_terms; k=k+3)
|
||||
{
|
||||
@ -566,6 +567,7 @@ void FixGLD::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to the nth set of extended variables
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i< nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -656,6 +656,7 @@ void FixTTM::restart(char *buf)
|
||||
|
||||
int FixTTM::pack_restart(int i, double *buf)
|
||||
{
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = 4;
|
||||
buf[1] = flangevin[i][0];
|
||||
buf[2] = flangevin[i][1];
|
||||
@ -672,6 +673,7 @@ void FixTTM::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -1041,7 +1041,7 @@ void FixCMAP::read_data_header(char *line)
|
||||
sscanf(line,BIGINT_FORMAT,&ncmap);
|
||||
} else error->all(FLERR,"Invalid read data header line for fix cmap");
|
||||
|
||||
// didn't set in constructor b/c this fix could be defined
|
||||
// didn't set in constructor because this fix could be defined
|
||||
// before newton command
|
||||
|
||||
newton_bond = force->newton_bond;
|
||||
@ -1291,6 +1291,7 @@ int FixCMAP::pack_restart(int i, double *buf)
|
||||
buf[n++] = ubuf(crossterm_atom4[i][m]).d;
|
||||
buf[n++] = ubuf(crossterm_atom5[i][m]).d;
|
||||
}
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = n;
|
||||
|
||||
return n;
|
||||
@ -1305,6 +1306,7 @@ void FixCMAP::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int n = 0;
|
||||
for (int i = 0; i < nth; i++) n += static_cast<int> (extra[nlocal][n]);
|
||||
|
||||
@ -579,6 +579,7 @@ void FixPeriNeigh::restart(char *buf)
|
||||
int FixPeriNeigh::pack_restart(int i, double *buf)
|
||||
{
|
||||
int m = 0;
|
||||
// pack buf[0] this way b/c other fixes unpack it
|
||||
if (isVES) buf[m++] = 4*npartner[i] + 4;
|
||||
else if (isEPS) buf[m++] = 3*npartner[i] + 5;
|
||||
else buf[m++] = 2*npartner[i] + 4;
|
||||
@ -608,6 +609,7 @@ void FixPeriNeigh::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way b/c other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -691,38 +691,20 @@ void PairLJCharmmCoulLongSoft::init_style()
|
||||
// request regular or rRESPA neighbor lists
|
||||
|
||||
int irequest;
|
||||
|
||||
if (update->whichflag == 1 && strstr(update->integrate_style,"respa")) {
|
||||
int respa = 0;
|
||||
|
||||
if (update->whichflag == 1 && utils::strmatch(update->integrate_style,"^respa")) {
|
||||
if (((Respa *) update->integrate)->level_inner >= 0) respa = 1;
|
||||
if (((Respa *) update->integrate)->level_middle >= 0) respa = 2;
|
||||
|
||||
if (respa == 0) irequest = neighbor->request(this,instance_me);
|
||||
else if (respa == 1) {
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 1;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 3;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
} else {
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 1;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 2;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respamiddle = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 3;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
}
|
||||
|
||||
} else irequest = neighbor->request(this,instance_me);
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
|
||||
if (respa >= 1) {
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
}
|
||||
if (respa == 2) neighbor->requests[irequest]->respamiddle = 1;
|
||||
|
||||
// require cut_lj_inner < cut_lj
|
||||
|
||||
@ -739,7 +721,7 @@ void PairLJCharmmCoulLongSoft::init_style()
|
||||
|
||||
// set & error check interior rRESPA cutoffs
|
||||
|
||||
if (strstr(update->integrate_style,"respa") &&
|
||||
if (utils::strmatch(update->integrate_style,"^respa") &&
|
||||
((Respa *) update->integrate)->level_inner >= 0) {
|
||||
cut_respa = ((Respa *) update->integrate)->cutoff;
|
||||
if (MIN(cut_lj,cut_coul) < cut_respa[3])
|
||||
|
||||
@ -634,44 +634,26 @@ void PairLJCutCoulLongSoft::init_style()
|
||||
// request regular or rRESPA neighbor lists
|
||||
|
||||
int irequest;
|
||||
|
||||
if (update->whichflag == 1 && strstr(update->integrate_style,"respa")) {
|
||||
int respa = 0;
|
||||
|
||||
if (update->whichflag == 1 && utils::strmatch(update->integrate_style,"^respa")) {
|
||||
if (((Respa *) update->integrate)->level_inner >= 0) respa = 1;
|
||||
if (((Respa *) update->integrate)->level_middle >= 0) respa = 2;
|
||||
|
||||
if (respa == 0) irequest = neighbor->request(this,instance_me);
|
||||
else if (respa == 1) {
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 1;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 3;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
} else {
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 1;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 2;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respamiddle = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 3;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
}
|
||||
|
||||
} else irequest = neighbor->request(this,instance_me);
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
|
||||
if (respa >= 1) {
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
}
|
||||
if (respa == 2) neighbor->requests[irequest]->respamiddle = 1;
|
||||
|
||||
cut_coulsq = cut_coul * cut_coul;
|
||||
|
||||
// set rRESPA cutoffs
|
||||
|
||||
if (strstr(update->integrate_style,"respa") &&
|
||||
if (utils::strmatch(update->integrate_style,"^respa") &&
|
||||
((Respa *) update->integrate)->level_inner >= 0)
|
||||
cut_respa = ((Respa *) update->integrate)->cutoff;
|
||||
else cut_respa = NULL;
|
||||
|
||||
@ -512,46 +512,27 @@ void PairLJCutSoft::init_style()
|
||||
// request regular or rRESPA neighbor lists
|
||||
|
||||
int irequest;
|
||||
|
||||
if (update->whichflag == 1 && strstr(update->integrate_style,"respa")) {
|
||||
int respa = 0;
|
||||
|
||||
if (update->whichflag == 1 && utils::strmatch(update->integrate_style,"^respa")) {
|
||||
if (((Respa *) update->integrate)->level_inner >= 0) respa = 1;
|
||||
if (((Respa *) update->integrate)->level_middle >= 0) respa = 2;
|
||||
|
||||
if (respa == 0) irequest = neighbor->request(this,instance_me);
|
||||
else if (respa == 1) {
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 1;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 3;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
} else {
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 1;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 2;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respamiddle = 1;
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
neighbor->requests[irequest]->id = 3;
|
||||
neighbor->requests[irequest]->half = 0;
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
}
|
||||
|
||||
} else irequest = neighbor->request(this,instance_me);
|
||||
irequest = neighbor->request(this,instance_me);
|
||||
|
||||
if (respa >= 1) {
|
||||
neighbor->requests[irequest]->respaouter = 1;
|
||||
neighbor->requests[irequest]->respainner = 1;
|
||||
}
|
||||
if (respa == 2) neighbor->requests[irequest]->respamiddle = 1;
|
||||
|
||||
// set rRESPA cutoffs
|
||||
|
||||
if (strstr(update->integrate_style,"respa") &&
|
||||
if (utils::strmatch(update->integrate_style,"^respa") &&
|
||||
((Respa *) update->integrate)->level_inner >= 0)
|
||||
cut_respa = ((Respa *) update->integrate)->cutoff;
|
||||
else cut_respa = NULL;
|
||||
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
@ -333,6 +333,37 @@ void PairMorseSoft::read_restart(FILE *fp)
|
||||
}
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
proc 0 writes to restart file
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void PairMorseSoft::write_restart_settings(FILE *fp)
|
||||
{
|
||||
fwrite(&nlambda,sizeof(double),1,fp);
|
||||
fwrite(&shift_range,sizeof(double),1,fp);
|
||||
fwrite(&cut_global,sizeof(double),1,fp);
|
||||
fwrite(&offset_flag,sizeof(int),1,fp);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
proc 0 reads from restart file, bcasts
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void PairMorseSoft::read_restart_settings(FILE *fp)
|
||||
{
|
||||
int me = comm->me;
|
||||
if (me == 0) {
|
||||
utils::sfread(FLERR,&nlambda,sizeof(double),1,fp,NULL,error);
|
||||
utils::sfread(FLERR,&shift_range,sizeof(double),1,fp,NULL,error);
|
||||
utils::sfread(FLERR,&cut_global,sizeof(double),1,fp,NULL,error);
|
||||
utils::sfread(FLERR,&offset_flag,sizeof(int),1,fp,NULL,error);
|
||||
}
|
||||
MPI_Bcast(&nlambda,1,MPI_DOUBLE,0,world);
|
||||
MPI_Bcast(&shift_range,1,MPI_DOUBLE,0,world);
|
||||
MPI_Bcast(&cut_global,1,MPI_DOUBLE,0,world);
|
||||
MPI_Bcast(&offset_flag,1,MPI_INT,0,world);
|
||||
}
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
proc 0 writes to data file
|
||||
|
||||
@ -38,6 +38,8 @@ class PairMorseSoft : public PairMorse {
|
||||
virtual double init_one(int, int);
|
||||
virtual void write_restart(FILE *);
|
||||
virtual void read_restart(FILE *);
|
||||
virtual void write_restart_settings(FILE *);
|
||||
virtual void read_restart_settings(FILE *);
|
||||
|
||||
void write_data(FILE *);
|
||||
void write_data_all(FILE *);
|
||||
|
||||
@ -26,6 +26,7 @@ angle_style dipole, Mario Orsi, orsimario at gmail.com, 10 Jan 12
|
||||
angle_style quartic, Loukas Peristeras, loukas.peristeras at scienomics.com, 27 Oct 12
|
||||
bond_style harmonic/shift, Carsten Svaneborg, science at zqex.dk, 8 Aug 11
|
||||
bond_style harmonic/shift/cut, Carsten Svaneborg, science at zqex.dk, 8 Aug 11
|
||||
bond_style special, David Nicholson, davidanich at gmail.com, 31 Jan 2020
|
||||
compute ackland/atom, Gerolf Ziegenhain, gerolf at ziegenhain.com, 4 Oct 2007
|
||||
compute basal/atom, Christopher Barrett, cdb333 at cavs.msstate.edu, 3 Mar 2013
|
||||
compute cnp/atom, Paulo Branicio (USC), branicio at usc.edu, 31 May 2017
|
||||
|
||||
222
src/USER-MISC/bond_special.cpp
Normal file
222
src/USER-MISC/bond_special.cpp
Normal file
@ -0,0 +1,222 @@
|
||||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
|
||||
Contributing Author: David Nicholson (MIT)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include "bond_special.h"
|
||||
#include "atom.h"
|
||||
#include "neighbor.h"
|
||||
#include "domain.h"
|
||||
#include "comm.h"
|
||||
#include "force.h"
|
||||
#include "pair.h"
|
||||
#include "memory.h"
|
||||
#include "error.h"
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
BondSpecial::BondSpecial(LAMMPS *lmp) : Bond(lmp) {}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
BondSpecial::~BondSpecial()
|
||||
{
|
||||
if (allocated) {
|
||||
memory->destroy(setflag);
|
||||
memory->destroy(factor_lj);
|
||||
memory->destroy(factor_coul);
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::init_style()
|
||||
{
|
||||
if (force->pair == NULL) error->all(FLERR,"No pair style defined");
|
||||
else if ((force->pair->single_enable == 0) || force->pair->manybody_flag)
|
||||
error->all(FLERR,"Pair style does not support bond style special");
|
||||
|
||||
if (force->special_lj[1] != 0.0 || force->special_coul[1] != 0)
|
||||
error->all(FLERR,"Invalid 1-2 setting for bond style special.");
|
||||
|
||||
if (force->special_angle != 1 && (force->special_lj[2] != 1.0 ||
|
||||
force->special_coul[2] != 1.0))
|
||||
error->all(FLERR,"Invalid 1-3 setting for bond style special.");
|
||||
|
||||
if (force->special_dihedral != 1 && (force->special_lj[3] != 1.0 ||
|
||||
force->special_coul[3] != 1.0))
|
||||
error->all(FLERR,"Invalid 1-4 setting for bond style special.");
|
||||
|
||||
if (force->kspace != NULL)
|
||||
error->all(FLERR,"Bond style special is not compatible with long range "
|
||||
"Coulombic interactions");
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::compute(int eflag, int vflag)
|
||||
{
|
||||
int i1,i2,i1type,i2type,n,type;
|
||||
double delx,dely,delz,ebond,fbond;
|
||||
double rsq;
|
||||
|
||||
ev_init(eflag,vflag);
|
||||
|
||||
double **x = atom->x;
|
||||
double **f = atom->f;
|
||||
int **bondlist = neighbor->bondlist;
|
||||
int nbondlist = neighbor->nbondlist;
|
||||
int nlocal = atom->nlocal;
|
||||
int newton_bond = force->newton_bond;
|
||||
|
||||
for (n = 0; n < nbondlist; n++) {
|
||||
i1 = bondlist[n][0];
|
||||
i2 = bondlist[n][1];
|
||||
type = bondlist[n][2];
|
||||
|
||||
i1type = atom->type[i1];
|
||||
i2type = atom->type[i2];
|
||||
|
||||
delx = x[i1][0] - x[i2][0];
|
||||
dely = x[i1][1] - x[i2][1];
|
||||
delz = x[i1][2] - x[i2][2];
|
||||
|
||||
rsq = delx*delx + dely*dely + delz*delz;
|
||||
|
||||
ebond = force->pair->single(i1,i2,i1type,i2type,rsq,factor_lj[type],
|
||||
factor_coul[type],fbond);
|
||||
|
||||
// apply force to each of 2 atoms
|
||||
|
||||
if (newton_bond || i1 < nlocal) {
|
||||
f[i1][0] += delx*fbond;
|
||||
f[i1][1] += dely*fbond;
|
||||
f[i1][2] += delz*fbond;
|
||||
}
|
||||
|
||||
if (newton_bond || i2 < nlocal) {
|
||||
f[i2][0] -= delx*fbond;
|
||||
f[i2][1] -= dely*fbond;
|
||||
f[i2][2] -= delz*fbond;
|
||||
}
|
||||
|
||||
if (evflag) ev_tally(i1,i2,nlocal,newton_bond,ebond,fbond,delx,dely,delz);
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::allocate()
|
||||
{
|
||||
allocated = 1;
|
||||
int n = atom->nbondtypes;
|
||||
|
||||
memory->create(factor_lj,n+1,"bond:factor_lj");
|
||||
memory->create(factor_coul,n+1,"bond:factor_coul");
|
||||
|
||||
memory->create(setflag,n+1,"bond:setflag");
|
||||
for (int i = 1; i <= n; i++) setflag[i] = 0;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
set coeffs for one or more types
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::coeff(int narg, char **arg)
|
||||
{
|
||||
if (narg != 3) error->all(FLERR,"Incorrect args for bond coefficients");
|
||||
if (!allocated) allocate();
|
||||
|
||||
int ilo,ihi;
|
||||
force->bounds(FLERR,arg[0],atom->nbondtypes,ilo,ihi);
|
||||
|
||||
double factor_lj_one = force->numeric(FLERR,arg[1]);
|
||||
double factor_coul_one = force->numeric(FLERR,arg[2]);
|
||||
|
||||
int count = 0;
|
||||
for (int i = ilo; i <= ihi; i++) {
|
||||
factor_lj[i] = factor_lj_one;
|
||||
factor_coul[i] = factor_coul_one;
|
||||
setflag[i] = 1;
|
||||
count++;
|
||||
}
|
||||
|
||||
if (count == 0) error->all(FLERR,"Incorrect args for bond coefficients");
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
return an equilbrium bond length
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
double BondSpecial::equilibrium_distance(int i)
|
||||
{
|
||||
return 0.;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
proc 0 writes out coeffs to restart file
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::write_restart(FILE *fp)
|
||||
{
|
||||
fwrite(&factor_lj[1],sizeof(double),atom->nbondtypes,fp);
|
||||
fwrite(&factor_coul[1],sizeof(double),atom->nbondtypes,fp);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
proc 0 reads coeffs from restart file, bcasts them
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::read_restart(FILE *fp)
|
||||
{
|
||||
allocate();
|
||||
|
||||
if (comm->me == 0) {
|
||||
fread(&factor_lj[1],sizeof(double),atom->nbondtypes,fp);
|
||||
fread(&factor_coul[1],sizeof(double),atom->nbondtypes,fp);
|
||||
}
|
||||
MPI_Bcast(&factor_lj[1],atom->nbondtypes,MPI_DOUBLE,0,world);
|
||||
MPI_Bcast(&factor_coul[1],atom->nbondtypes,MPI_DOUBLE,0,world);
|
||||
|
||||
for (int i = 1; i <= atom->nbondtypes; i++) setflag[i] = 1;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
proc 0 writes to data file
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void BondSpecial::write_data(FILE *fp)
|
||||
{
|
||||
for (int i = 1; i <= atom->nbondtypes; i++)
|
||||
fprintf(fp,"%d %g %g\n",i,factor_lj[i],factor_coul[i]);
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
double BondSpecial::single(int type, double rsq, int i, int j,
|
||||
double &fforce)
|
||||
{
|
||||
int itype = atom->type[i];
|
||||
int jtype = atom->type[j];
|
||||
double ebond;
|
||||
ebond = force->pair->single(i,j,itype,jtype,rsq,factor_lj[type],
|
||||
factor_coul[type],fforce);
|
||||
return ebond;
|
||||
}
|
||||
|
||||
|
||||
78
src/USER-MISC/bond_special.h
Normal file
78
src/USER-MISC/bond_special.h
Normal file
@ -0,0 +1,78 @@
|
||||
/* -*- c++ -*- ----------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
|
||||
Contributing Author: David Nicholson (MIT)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef BOND_CLASS
|
||||
|
||||
BondStyle(special,BondSpecial)
|
||||
|
||||
#else
|
||||
|
||||
#ifndef LMP_BOND_SPECIAL_H
|
||||
#define LMP_BOND_SPECIAL_H
|
||||
|
||||
#include <cstdio>
|
||||
#include "bond.h"
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class BondSpecial: public Bond {
|
||||
public:
|
||||
BondSpecial(class LAMMPS *);
|
||||
virtual ~BondSpecial();
|
||||
void init_style();
|
||||
void compute(int, int);
|
||||
void coeff(int, char **);
|
||||
double equilibrium_distance(int);
|
||||
void write_restart(FILE *);
|
||||
void read_restart(FILE *);
|
||||
void write_data(FILE *);
|
||||
double single(int, double, int, int, double &);
|
||||
|
||||
protected:
|
||||
double *factor_lj,*factor_coul;
|
||||
|
||||
void allocate();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* ERROR/WARNING messages:
|
||||
|
||||
E: Incorrect args for bond coefficients
|
||||
|
||||
Self-explanatory. Check the input script or data file.
|
||||
|
||||
E: Invalid 1-2 setting for bond style special.
|
||||
|
||||
Bond style special must be used with zero factors for 1-2 special bonds.
|
||||
|
||||
E: Invalid 1-3 setting for bond style special.
|
||||
|
||||
Bond style special must be used with 1.0 factors for 1-3 special bonds or the
|
||||
angle keyword set to yes.
|
||||
|
||||
E: Invalid 1-4 setting for bond style special.
|
||||
|
||||
Bond style special must be used with 1.0 factors for 1-4 special bonds or the
|
||||
dihedral keyword set to yes.
|
||||
|
||||
E: Bond style special is not compatible with long range Coulombic interactions.
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
*/
|
||||
@ -822,6 +822,7 @@ int FixGLE::unpack_exchange(int nlocal, double *buf)
|
||||
int FixGLE::pack_restart(int i, double *buf)
|
||||
{
|
||||
int m = 0;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[m++] = 3*ns + 1;
|
||||
for (int k = 0; k < 3*ns; k=k+3)
|
||||
{
|
||||
@ -841,6 +842,7 @@ void FixGLE::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to the nth set of extended variables
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i< nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -794,6 +794,7 @@ int FixPIMD::pack_restart(int i, double *buf)
|
||||
{
|
||||
int offset=0;
|
||||
int pos = i * 3;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[offset++] = size_peratom_cols+1;
|
||||
|
||||
memcpy(buf+offset, nhc_eta[pos], nhc_size_one_1); offset += nhc_offset_one_1;
|
||||
@ -811,6 +812,7 @@ void FixPIMD::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i=0; i<nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -114,7 +114,7 @@ void FixSRP::init()
|
||||
error->all(FLERR,"Illegal bond particle type");
|
||||
|
||||
// this fix must come before any fix which migrates atoms in its pre_exchange()
|
||||
// b/c this fix's pre_exchange() creates per-atom data structure
|
||||
// because this fix's pre_exchange() creates per-atom data structure
|
||||
// that data must be current for atom migration to carry it along
|
||||
|
||||
for (int i = 0; i < modify->nfix; i++) {
|
||||
@ -555,6 +555,7 @@ void FixSRP::post_run()
|
||||
int FixSRP::pack_restart(int i, double *buf)
|
||||
{
|
||||
int m = 0;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[m++] = 3;
|
||||
buf[m++] = array[i][0];
|
||||
buf[m++] = array[i][1];
|
||||
@ -570,9 +571,11 @@ void FixSRP::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++){
|
||||
m += extra[nlocal][m];
|
||||
m += static_cast<int> (extra[nlocal][m]);
|
||||
}
|
||||
|
||||
m++;
|
||||
|
||||
@ -315,6 +315,7 @@ int FixTISpring::unpack_exchange(int nlocal, double *buf)
|
||||
|
||||
int FixTISpring::pack_restart(int i, double *buf)
|
||||
{
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = 4;
|
||||
buf[1] = xoriginal[i][0];
|
||||
buf[2] = xoriginal[i][1];
|
||||
@ -331,6 +332,7 @@ void FixTISpring::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -980,6 +980,7 @@ void FixTTMMod::restart(char *buf)
|
||||
|
||||
int FixTTMMod::pack_restart(int i, double *buf)
|
||||
{
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = 4;
|
||||
buf[1] = flangevin[i][0];
|
||||
buf[2] = flangevin[i][1];
|
||||
@ -996,6 +997,7 @@ void FixTTMMod::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -382,8 +382,6 @@ void PairE3B::settings(int narg, char **arg)
|
||||
{
|
||||
if (narg != 1) error->all(FLERR,"Illegal pair_style command");
|
||||
typeO=force->inumeric(FLERR,arg[0]);
|
||||
if (typeO<1 || typeO>atom->ntypes)
|
||||
error->all(FLERR,"Invalid Otype: out of bounds");
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
@ -477,6 +475,8 @@ void PairE3B::init_style()
|
||||
error->all(FLERR,"Pair style E3B requires atom IDs");
|
||||
if (force->newton_pair == 0)
|
||||
error->all(FLERR,"Pair style E3B requires newton pair on");
|
||||
if (typeO<1 || typeO>atom->ntypes)
|
||||
error->all(FLERR,"Invalid Otype: out of bounds");
|
||||
|
||||
// need a half neighbor list
|
||||
neighbor->request(this,instance_me);
|
||||
|
||||
@ -51,7 +51,13 @@ using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairEDIP::PairEDIP(LAMMPS *lmp) : Pair(lmp)
|
||||
PairEDIP::PairEDIP(LAMMPS *lmp) :
|
||||
Pair(lmp), preInvR_ij(NULL), preExp3B_ij(NULL), preExp3BDerived_ij(NULL),
|
||||
preExp2B_ij(NULL), preExp2BDerived_ij(NULL), prePow2B_ij(NULL),
|
||||
preForceCoord(NULL), cutoffFunction(NULL), cutoffFunctionDerived(NULL),
|
||||
pow2B(NULL), exp2B(NULL), exp3B(NULL), qFunctionGrid(NULL),
|
||||
expMinusBetaZeta_iZeta_iGrid(NULL), tauFunctionGrid(NULL),
|
||||
tauFunctionDerivedGrid(NULL)
|
||||
{
|
||||
single_enable = 0;
|
||||
restartinfo = 0;
|
||||
@ -503,6 +509,8 @@ void PairEDIP::allocateGrids(void)
|
||||
double maxArgumentExpMinusBetaZeta_iZeta_i;
|
||||
double const leftLimitToZero = -DBL_MIN * 1000.0;
|
||||
|
||||
deallocateGrids();
|
||||
|
||||
// tauFunctionGrid
|
||||
|
||||
maxArgumentTauFunctionGrid = leadDimInteractionList;
|
||||
@ -561,6 +569,7 @@ void PairEDIP::allocatePreLoops(void)
|
||||
{
|
||||
int nthreads = comm->nthreads;
|
||||
|
||||
deallocatePreLoops();
|
||||
memory->create(preInvR_ij,nthreads*leadDimInteractionList,"edip:preInvR_ij");
|
||||
memory->create(preExp3B_ij,nthreads*leadDimInteractionList,"edip:preExp3B_ij");
|
||||
memory->create(preExp3BDerived_ij,nthreads*leadDimInteractionList,
|
||||
|
||||
@ -226,8 +226,8 @@ void PairLennardMDF::coeff(int narg, char **arg)
|
||||
cut_inner_one = force->numeric(FLERR,arg[4]);
|
||||
cut_one = force->numeric(FLERR,arg[5]);
|
||||
}
|
||||
if (cut_inner_global <= 0.0 || cut_inner_global > cut_global)
|
||||
error->all(FLERR,"Illegal pair_style command");
|
||||
if (cut_inner_one <= 0.0 || cut_inner_one > cut_one)
|
||||
error->all(FLERR,"Illegal pair_coeff command");
|
||||
|
||||
int count = 0;
|
||||
for (int i = ilo; i <= ihi; i++) {
|
||||
@ -328,6 +328,8 @@ void PairLennardMDF::read_restart(FILE *fp)
|
||||
void PairLennardMDF::write_restart_settings(FILE *fp)
|
||||
{
|
||||
fwrite(&mix_flag,sizeof(int),1,fp);
|
||||
fwrite(&cut_global,sizeof(double),1,fp);
|
||||
fwrite(&cut_inner_global,sizeof(double),1,fp);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
@ -339,8 +341,12 @@ void PairLennardMDF::read_restart_settings(FILE *fp)
|
||||
int me = comm->me;
|
||||
if (me == 0) {
|
||||
utils::sfread(FLERR,&mix_flag,sizeof(int),1,fp,NULL,error);
|
||||
utils::sfread(FLERR,&cut_global,sizeof(double),1,fp,NULL,error);
|
||||
utils::sfread(FLERR,&cut_inner_global,sizeof(double),1,fp,NULL,error);
|
||||
}
|
||||
MPI_Bcast(&mix_flag,1,MPI_INT,0,world);
|
||||
MPI_Bcast(&cut_global,1,MPI_DOUBLE,0,world);
|
||||
MPI_Bcast(&cut_inner_global,1,MPI_DOUBLE,0,world);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
@ -53,6 +53,7 @@ PairLJExpandCoulLong::PairLJExpandCoulLong(LAMMPS *lmp) : Pair(lmp)
|
||||
writedata = 1;
|
||||
ftable = NULL;
|
||||
qdist = 0.0;
|
||||
cut_respa = NULL;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
@ -167,7 +168,7 @@ void PairLJExpandCoulLong::compute(int eflag, int vflag)
|
||||
rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
forcelj = factor_lj*forcelj/rshift/r;
|
||||
forcelj *= factor_lj/rshift/r;
|
||||
} else forcelj = 0.0;
|
||||
|
||||
fpair = forcecoul*r2inv + forcelj;
|
||||
@ -276,7 +277,7 @@ void PairLJExpandCoulLong::compute_inner()
|
||||
rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
forcelj = factor_lj*forcelj/rshift/r;
|
||||
forcelj *= factor_lj/rshift/r;
|
||||
} else forcelj = 0.0;
|
||||
|
||||
fpair = forcecoul*r2inv + forcelj;
|
||||
@ -371,7 +372,7 @@ void PairLJExpandCoulLong::compute_middle()
|
||||
rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
forcelj = factor_lj*forcelj/rshift/r;
|
||||
forcelj *= factor_lj/rshift/r;
|
||||
} else forcelj = 0.0;
|
||||
|
||||
fpair = forcecoul*r2inv + forcelj;
|
||||
@ -506,7 +507,7 @@ void PairLJExpandCoulLong::compute_outer(int eflag, int vflag)
|
||||
rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
forcelj = factor_lj*forcelj/rshift/r;
|
||||
forcelj *= factor_lj/rshift/r;
|
||||
if (rsq < cut_in_on_sq) {
|
||||
rsw = (sqrt(rsq) - cut_in_off)/cut_in_diff;
|
||||
forcelj *= rsw*rsw*(3.0 - 2.0*rsw);
|
||||
@ -524,6 +525,7 @@ void PairLJExpandCoulLong::compute_outer(int eflag, int vflag)
|
||||
f[j][2] -= delz*fpair;
|
||||
}
|
||||
|
||||
if (evflag) ecoul = evdwl = 0.0;
|
||||
if (eflag) {
|
||||
if (rsq < cut_coulsq) {
|
||||
if (!ncoultablebits || rsq <= tabinnersq) {
|
||||
@ -538,14 +540,18 @@ void PairLJExpandCoulLong::compute_outer(int eflag, int vflag)
|
||||
ecoul -= (1.0-factor_coul)*prefactor;
|
||||
}
|
||||
}
|
||||
} else ecoul = 0.0;
|
||||
}
|
||||
|
||||
if (rsq < cut_ljsq[itype][jtype]) {
|
||||
r6inv = r2inv*r2inv*r2inv;
|
||||
r = sqrt(rsq);
|
||||
rshift = r - shift[itype][jtype];
|
||||
rshiftsq = rshift*rshift;
|
||||
rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
evdwl = r6inv*(lj3[itype][jtype]*r6inv-lj4[itype][jtype]) -
|
||||
offset[itype][jtype];
|
||||
evdwl *= factor_lj;
|
||||
} else evdwl = 0.0;
|
||||
}
|
||||
}
|
||||
|
||||
if (vflag) {
|
||||
@ -564,15 +570,18 @@ void PairLJExpandCoulLong::compute_outer(int eflag, int vflag)
|
||||
}
|
||||
} else forcecoul = 0.0;
|
||||
|
||||
if (rsq <= cut_in_off_sq) {
|
||||
r6inv = r2inv*r2inv*r2inv;
|
||||
if (rsq < cut_ljsq[itype][jtype]) {
|
||||
r = sqrt(rsq);
|
||||
rshift = r - shift[itype][jtype];
|
||||
rshiftsq = rshift*rshift;
|
||||
rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
} else if (rsq <= cut_in_on_sq) {
|
||||
r6inv = r2inv*r2inv*r2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
}
|
||||
fpair = (forcecoul + factor_lj*forcelj) * r2inv;
|
||||
}
|
||||
forcelj *= factor_lj/rshift/r;
|
||||
} else forcelj = 0.0;
|
||||
|
||||
fpair = forcecoul*r2inv + forcelj;
|
||||
} else fpair = 0.0;
|
||||
|
||||
if (evflag) ev_tally(i,j,nlocal,newton_pair,
|
||||
evdwl,ecoul,fpair,delx,dely,delz);
|
||||
@ -946,11 +955,16 @@ double PairLJExpandCoulLong::single(int i, int j, int itype, int jtype,
|
||||
} else forcecoul = 0.0;
|
||||
|
||||
if (rsq < cut_ljsq[itype][jtype]) {
|
||||
r6inv = r2inv*r2inv*r2inv;
|
||||
r = sqrt(rsq);
|
||||
double rshift = r - shift[itype][jtype];
|
||||
double rshiftsq = rshift*rshift;
|
||||
double rshift2inv = 1.0/rshiftsq;
|
||||
r6inv = rshift2inv*rshift2inv*rshift2inv;
|
||||
forcelj = r6inv * (lj1[itype][jtype]*r6inv - lj2[itype][jtype]);
|
||||
forcelj *= factor_lj/rshift/r;
|
||||
} else forcelj = 0.0;
|
||||
|
||||
fforce = (forcecoul + factor_lj*forcelj) * r2inv;
|
||||
fforce = forcecoul*r2inv + forcelj;
|
||||
|
||||
double eng = 0.0;
|
||||
if (rsq < cut_coulsq) {
|
||||
|
||||
@ -57,6 +57,7 @@ PairMEAMSpline::PairMEAMSpline(LAMMPS *lmp) : Pair(lmp)
|
||||
|
||||
nelements = 0;
|
||||
elements = NULL;
|
||||
map = NULL;
|
||||
|
||||
Uprime_values = NULL;
|
||||
nmax = 0;
|
||||
@ -65,6 +66,14 @@ PairMEAMSpline::PairMEAMSpline(LAMMPS *lmp) : Pair(lmp)
|
||||
|
||||
comm_forward = 1;
|
||||
comm_reverse = 0;
|
||||
|
||||
phis = NULL;
|
||||
Us = NULL;
|
||||
rhos = NULL;
|
||||
fs = NULL;
|
||||
gs = NULL;
|
||||
|
||||
zero_atom_energies = NULL;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
@ -332,6 +341,8 @@ void PairMEAMSpline::allocate()
|
||||
allocated = 1;
|
||||
int n = nelements;
|
||||
|
||||
memory->destroy(setflag);
|
||||
memory->destroy(cutsq);
|
||||
memory->create(setflag,n+1,n+1,"pair:setflag");
|
||||
memory->create(cutsq,n+1,n+1,"pair:cutsq");
|
||||
|
||||
@ -339,14 +350,21 @@ void PairMEAMSpline::allocate()
|
||||
//Change the functional form
|
||||
//f_ij->f_i
|
||||
//g_i(cos\theta_ijk)->g_jk(cos\theta_ijk)
|
||||
delete[] phis;
|
||||
delete[] Us;
|
||||
delete[] rhos;
|
||||
delete[] fs;
|
||||
delete[] gs;
|
||||
phis = new SplineFunction[nmultichoose2];
|
||||
Us = new SplineFunction[n];
|
||||
rhos = new SplineFunction[n];
|
||||
fs = new SplineFunction[n];
|
||||
gs = new SplineFunction[nmultichoose2];
|
||||
|
||||
delete[] zero_atom_energies;
|
||||
zero_atom_energies = new double[n];
|
||||
|
||||
delete[] map;
|
||||
map = new int[n+1];
|
||||
for (int i=0; i <= n; ++i) map[i] = -1;
|
||||
}
|
||||
@ -470,6 +488,9 @@ void PairMEAMSpline::read_file(const char* filename)
|
||||
if (nelements < 1)
|
||||
error->one(FLERR, "Invalid number of atomic species on"
|
||||
" meam/spline line in potential file");
|
||||
if (elements)
|
||||
for (int i = 0; i < nelements; i++) delete [] elements[i];
|
||||
delete [] elements;
|
||||
elements = new char*[nelements];
|
||||
for (int i=0; i<nelements; ++i) {
|
||||
ptr = strtok(NULL," \t\n\r\f");
|
||||
|
||||
@ -201,14 +201,6 @@ void PairMorseSmoothLinear::coeff(int narg, char **arg)
|
||||
alpha[i][j] = alpha_one;
|
||||
r0[i][j] = r0_one;
|
||||
cut[i][j] = cut_one;
|
||||
|
||||
morse1[i][j] = 2.0*d0[i][j]*alpha[i][j];
|
||||
|
||||
double alpha_dr = -alpha[i][j] * (cut[i][j] - r0[i][j]);
|
||||
|
||||
offset[i][j] = d0[i][j] * (exp(2.0*alpha_dr) - 2.0*exp(alpha_dr));
|
||||
der_at_cutoff[i][j] = -2.0*alpha[i][j]*d0[i][j] * (exp(2.0*alpha_dr) - exp(alpha_dr));
|
||||
|
||||
setflag[i][j] = 1;
|
||||
count++;
|
||||
}
|
||||
@ -227,6 +219,9 @@ double PairMorseSmoothLinear::init_one(int i, int j)
|
||||
if (setflag[i][j] == 0) error->all(FLERR,"All pair coeffs are not set");
|
||||
|
||||
morse1[i][j] = 2.0*d0[i][j]*alpha[i][j];
|
||||
double alpha_dr = -alpha[i][j] * (cut[i][j] - r0[i][j]);
|
||||
offset[i][j] = d0[i][j] * (exp(2.0*alpha_dr) - 2.0*exp(alpha_dr));
|
||||
der_at_cutoff[i][j] = -2.0*alpha[i][j]*d0[i][j] * (exp(2.0*alpha_dr) - exp(alpha_dr));
|
||||
|
||||
d0[j][i] = d0[i][j];
|
||||
alpha[j][i] = alpha[i][j];
|
||||
|
||||
@ -35,8 +35,6 @@ PairMorseSmoothLinearOMP::PairMorseSmoothLinearOMP(LAMMPS *lmp) :
|
||||
respa_enable = 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void PairMorseSmoothLinearOMP::compute(int eflag, int vflag)
|
||||
@ -76,8 +74,6 @@ void PairMorseSmoothLinearOMP::compute(int eflag, int vflag)
|
||||
} // end of omp parallel region
|
||||
}
|
||||
|
||||
|
||||
|
||||
template <int EVFLAG, int EFLAG, int NEWTON_PAIR>
|
||||
void PairMorseSmoothLinearOMP::eval(int iifrom, int iito, ThrData * const thr)
|
||||
{
|
||||
@ -129,7 +125,7 @@ void PairMorseSmoothLinearOMP::eval(int iifrom, int iito, ThrData * const thr)
|
||||
dexp = exp(-alpha[itype][jtype] * dr);
|
||||
|
||||
fpartial = morse1[itype][jtype] * (dexp*dexp - dexp) / r;
|
||||
fpair = factor_lj * ( fpartial - der_at_cutoff[itype][jtype] / r);
|
||||
fpair = factor_lj * ( fpartial + der_at_cutoff[itype][jtype] / r);
|
||||
|
||||
fxtmp += delx*fpair;
|
||||
fytmp += dely*fpair;
|
||||
@ -143,7 +139,7 @@ void PairMorseSmoothLinearOMP::eval(int iifrom, int iito, ThrData * const thr)
|
||||
if (EFLAG) {
|
||||
evdwl = d0[itype][jtype] * (dexp*dexp - 2.0*dexp) -
|
||||
offset[itype][jtype];
|
||||
evdwl += ( r - cut[itype][jtype] ) * der_at_cutoff[itype][jtype];
|
||||
evdwl -= ( r - cut[itype][jtype] ) * der_at_cutoff[itype][jtype];
|
||||
evdwl *= factor_lj;
|
||||
}
|
||||
|
||||
|
||||
@ -948,6 +948,7 @@ int FixMesoMove::unpack_exchange (int nlocal, double *buf) {
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
int FixMesoMove::pack_restart (int i, double *buf) {
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = 4;
|
||||
buf[1] = xoriginal[i][0];
|
||||
buf[2] = xoriginal[i][1];
|
||||
@ -963,6 +964,7 @@ void FixMesoMove::unpack_restart (int nlocal, int nth) {
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -450,6 +450,7 @@ int FixSMD_TLSPH_ReferenceConfiguration::unpack_exchange(int nlocal, double *buf
|
||||
|
||||
int FixSMD_TLSPH_ReferenceConfiguration::pack_restart(int i, double *buf) {
|
||||
int m = 0;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[m++] = 4 * npartner[i] + 2;
|
||||
buf[m++] = npartner[i];
|
||||
for (int n = 0; n < npartner[i]; n++) {
|
||||
@ -470,6 +471,7 @@ void FixSMD_TLSPH_ReferenceConfiguration::unpack_restart(int /*nlocal*/, int /*n
|
||||
// ipage = NULL if being called from granular pair style init()
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
// double **extra = atom->extra;
|
||||
//
|
||||
|
||||
@ -71,6 +71,20 @@ void CreateAtoms::command(int narg, char **arg)
|
||||
error->all(FLERR,"Cannot create_atoms after "
|
||||
"reading restart file with per-atom info");
|
||||
|
||||
// check for compatible lattice
|
||||
|
||||
int latsty = domain->lattice->style;
|
||||
if (domain->dimension == 2) {
|
||||
if (latsty == Lattice::SC || latsty == Lattice::BCC
|
||||
|| latsty == Lattice::FCC || latsty == Lattice::HCP
|
||||
|| latsty == Lattice::DIAMOND)
|
||||
error->all(FLERR,"Lattice style incompatible with simulation dimension");
|
||||
} else {
|
||||
if (latsty == Lattice::SQ ||latsty == Lattice::SQ2
|
||||
|| latsty == Lattice::HEX)
|
||||
error->all(FLERR,"Lattice style incompatible with simulation dimension");
|
||||
}
|
||||
|
||||
// parse arguments
|
||||
|
||||
if (narg < 2) error->all(FLERR,"Illegal create_atoms command");
|
||||
|
||||
@ -1193,6 +1193,7 @@ int FixMove::pack_restart(int i, double *buf)
|
||||
buf[n++] = qoriginal[i][2];
|
||||
buf[n++] = qoriginal[i][3];
|
||||
}
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = n;
|
||||
return n;
|
||||
}
|
||||
@ -1206,6 +1207,7 @@ void FixMove::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -149,7 +149,7 @@ void FixNeighHistory::init()
|
||||
error->all(FLERR,"Neighbor history requires atoms have IDs");
|
||||
|
||||
// this fix must come before any fix which migrates atoms in its pre_exchange()
|
||||
// b/c this fix's pre_exchange() creates per-atom data structure
|
||||
// because this fix's pre_exchange() creates per-atom data structure
|
||||
// that data must be current for atom migration to carry it along
|
||||
|
||||
for (int i = 0; i < modify->nfix; i++) {
|
||||
@ -215,7 +215,7 @@ void FixNeighHistory::setup_post_neighbor()
|
||||
called during run before atom exchanges, including for restart files
|
||||
called at end of run via post_run()
|
||||
do not call during setup of run (setup_pre_exchange)
|
||||
b/c there is no guarantee of a current NDS (even on continued run)
|
||||
because there is no guarantee of a current NDS (even on continued run)
|
||||
if run command does a 2nd run with pre = no, then no neigh list
|
||||
will be built, but old neigh list will still have the info
|
||||
onesided and newton on and newton off versions
|
||||
@ -242,7 +242,7 @@ void FixNeighHistory::pre_exchange_onesided()
|
||||
double *allvalues,*onevalues;
|
||||
|
||||
// NOTE: all operations until very end are with nlocal_neigh <= current nlocal
|
||||
// b/c previous neigh list was built with nlocal_neigh
|
||||
// because previous neigh list was built with nlocal_neigh
|
||||
// nlocal can be larger if other fixes added atoms at this pre_exchange()
|
||||
|
||||
// clear two paged data structures
|
||||
@ -335,7 +335,7 @@ void FixNeighHistory::pre_exchange_newton()
|
||||
|
||||
// NOTE: all operations until very end are with
|
||||
// nlocal_neigh <= current nlocal and nall_neigh
|
||||
// b/c previous neigh list was built with nlocal_neigh & nghost_neigh
|
||||
// because previous neigh list was built with nlocal_neigh & nghost_neigh
|
||||
// nlocal can be larger if other fixes added atoms at this pre_exchange()
|
||||
|
||||
// clear two paged data structures
|
||||
@ -430,7 +430,7 @@ void FixNeighHistory::pre_exchange_newton()
|
||||
|
||||
// perform reverse comm to augment
|
||||
// owned atom partner/valuepartner with ghost info
|
||||
// use variable variant b/c size of packed data can be arbitrarily large
|
||||
// use variable variant because size of packed data can be arbitrarily large
|
||||
// if many touching neighbors for large particle
|
||||
|
||||
commflag = PERPARTNER;
|
||||
@ -463,7 +463,7 @@ void FixNeighHistory::pre_exchange_no_newton()
|
||||
double *allvalues,*onevalues,*jvalues;
|
||||
|
||||
// NOTE: all operations until very end are with nlocal_neigh <= current nlocal
|
||||
// b/c previous neigh list was built with nlocal_neigh
|
||||
// because previous neigh list was built with nlocal_neigh
|
||||
// nlocal can be larger if other fixes added atoms at this pre_exchange()
|
||||
|
||||
// clear two paged data structures
|
||||
@ -708,10 +708,10 @@ void FixNeighHistory::grow_arrays(int nmax)
|
||||
void FixNeighHistory::copy_arrays(int i, int j, int /*delflag*/)
|
||||
{
|
||||
// just copy pointers for partner and valuepartner
|
||||
// b/c can't overwrite chunk allocation inside ipage_atom,dpage_atom
|
||||
// because can't overwrite chunk allocation inside ipage_atom,dpage_atom
|
||||
// incoming atoms in unpack_exchange just grab new chunks
|
||||
// so are orphaning chunks for migrating atoms
|
||||
// OK, b/c will reset ipage_atom,dpage_atom on next reneighboring
|
||||
// OK, because will reset ipage_atom,dpage_atom on next reneighboring
|
||||
|
||||
npartner[j] = npartner[i];
|
||||
partner[j] = partner[i];
|
||||
@ -853,6 +853,7 @@ int FixNeighHistory::pack_restart(int i, double *buf)
|
||||
memcpy(&buf[m],&valuepartner[i][dnum*n],dnumbytes);
|
||||
m += dnum;
|
||||
}
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = m;
|
||||
return m;
|
||||
}
|
||||
@ -868,6 +869,7 @@ void FixNeighHistory::unpack_restart(int nlocal, int nth)
|
||||
if (ipage_atom == NULL) allocate_pages();
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
double **extra = atom->extra;
|
||||
|
||||
|
||||
@ -192,7 +192,7 @@ int FixPropertyAtom::setmask()
|
||||
void FixPropertyAtom::init()
|
||||
{
|
||||
// error if atom style has changed since fix was defined
|
||||
// don't allow this b/c user could change to style that defines molecule,q
|
||||
// don't allow this because user could change to style that defines molecule,q
|
||||
|
||||
if (strcmp(astyle,atom->atom_style) != 0)
|
||||
error->all(FLERR,"Atom style was redefined after using fix property/atom");
|
||||
@ -579,6 +579,7 @@ int FixPropertyAtom::unpack_exchange(int nlocal, double *buf)
|
||||
|
||||
int FixPropertyAtom::pack_restart(int i, double *buf)
|
||||
{
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = nvalue+1;
|
||||
|
||||
int m = 1;
|
||||
@ -602,6 +603,7 @@ void FixPropertyAtom::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -297,8 +297,14 @@ void FixSetForce::post_force_respa(int vflag, int ilevel, int /*iloop*/)
|
||||
{
|
||||
// set force to desired value on requested level, 0.0 on other levels
|
||||
|
||||
if (ilevel == ilevel_respa) post_force(vflag);
|
||||
else {
|
||||
if (ilevel == 0) foriginal_saved[0] = foriginal_saved[1] = foriginal_saved[2] = 0.0;
|
||||
|
||||
if (ilevel == ilevel_respa) {
|
||||
post_force(vflag);
|
||||
foriginal[0] += foriginal_saved[0];
|
||||
foriginal[1] += foriginal_saved[1];
|
||||
foriginal[2] += foriginal_saved[2];
|
||||
} else {
|
||||
Region *region = NULL;
|
||||
if (iregion >= 0) {
|
||||
region = domain->regions[iregion];
|
||||
@ -313,6 +319,9 @@ void FixSetForce::post_force_respa(int vflag, int ilevel, int /*iloop*/)
|
||||
for (int i = 0; i < nlocal; i++)
|
||||
if (mask[i] & groupbit) {
|
||||
if (region && !region->match(x[i][0],x[i][1],x[i][2])) continue;
|
||||
foriginal_saved[0] += f[i][0];
|
||||
foriginal_saved[1] += f[i][1];
|
||||
foriginal_saved[2] += f[i][2];
|
||||
if (xstyle) f[i][0] = 0.0;
|
||||
if (ystyle) f[i][1] = 0.0;
|
||||
if (zstyle) f[i][2] = 0.0;
|
||||
|
||||
@ -45,7 +45,7 @@ class FixSetForce : public Fix {
|
||||
char *xstr,*ystr,*zstr;
|
||||
char *idregion;
|
||||
int xvar,yvar,zvar,xstyle,ystyle,zstyle;
|
||||
double foriginal[3],foriginal_all[3];
|
||||
double foriginal[3],foriginal_all[3],foriginal_saved[3];
|
||||
int force_flag;
|
||||
int nlevels_respa,ilevel_respa;
|
||||
|
||||
|
||||
@ -264,6 +264,7 @@ int FixSpringSelf::unpack_exchange(int nlocal, double *buf)
|
||||
|
||||
int FixSpringSelf::pack_restart(int i, double *buf)
|
||||
{
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = 4;
|
||||
buf[1] = xoriginal[i][0];
|
||||
buf[2] = xoriginal[i][1];
|
||||
@ -280,6 +281,7 @@ void FixSpringSelf::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -280,7 +280,8 @@ int FixStore::pack_restart(int i, double *buf)
|
||||
return 1;
|
||||
}
|
||||
|
||||
buf[0] = ubuf(nvalues+1).d;
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = nvalues+1;
|
||||
if (vecflag) buf[1] = vstore[i];
|
||||
else
|
||||
for (int m = 0; m < nvalues; m++)
|
||||
@ -299,9 +300,10 @@ void FixStore::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += (int) ubuf(extra[nlocal][m]).i;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
m++;
|
||||
|
||||
if (vecflag) vstore[nlocal] = extra[nlocal][m];
|
||||
|
||||
@ -611,6 +611,7 @@ int FixStoreState::unpack_exchange(int nlocal, double *buf)
|
||||
|
||||
int FixStoreState::pack_restart(int i, double *buf)
|
||||
{
|
||||
// pack buf[0] this way because other fixes unpack it
|
||||
buf[0] = nvalues+1;
|
||||
for (int m = 0; m < nvalues; m++) buf[m+1] = values[i][m];
|
||||
return nvalues+1;
|
||||
@ -625,6 +626,7 @@ void FixStoreState::unpack_restart(int nlocal, int nth)
|
||||
double **extra = atom->extra;
|
||||
|
||||
// skip to Nth set of extra values
|
||||
// unpack the Nth first values this way because other fixes pack them
|
||||
|
||||
int m = 0;
|
||||
for (int i = 0; i < nth; i++) m += static_cast<int> (extra[nlocal][m]);
|
||||
|
||||
@ -43,6 +43,7 @@ FixTempBerendsen::FixTempBerendsen(LAMMPS *lmp, int narg, char **arg) :
|
||||
|
||||
// Berendsen thermostat should be applied every step
|
||||
|
||||
restart_global = 1;
|
||||
dynamic_group_allow = 1;
|
||||
nevery = 1;
|
||||
scalar_flag = 1;
|
||||
@ -241,6 +242,34 @@ double FixTempBerendsen::compute_scalar()
|
||||
return energy;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
pack entire state of Fix into one write
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixTempBerendsen::write_restart(FILE *fp)
|
||||
{
|
||||
int n = 0;
|
||||
double list[1];
|
||||
list[n++] = energy;
|
||||
|
||||
if (comm->me == 0) {
|
||||
int size = n * sizeof(double);
|
||||
fwrite(&size,sizeof(int),1,fp);
|
||||
fwrite(list,sizeof(double),n,fp);
|
||||
}
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
use state info from restart file to restart the Fix
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixTempBerendsen::restart(char *buf)
|
||||
{
|
||||
double *list = (double *) buf;
|
||||
|
||||
energy = list[0];
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
extract thermostat properties
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
@ -34,6 +34,8 @@ class FixTempBerendsen : public Fix {
|
||||
int modify_param(int, char **);
|
||||
void reset_target(double);
|
||||
double compute_scalar();
|
||||
void write_restart(FILE *);
|
||||
void restart(char *buf);
|
||||
virtual void *extract(const char *, int &);
|
||||
|
||||
private:
|
||||
|
||||
@ -49,6 +49,7 @@ FixTempCSLD::FixTempCSLD(LAMMPS *lmp, int narg, char **arg) :
|
||||
|
||||
// CSLD thermostat should be applied every step
|
||||
|
||||
restart_global = 1;
|
||||
nevery = 1;
|
||||
scalar_flag = 1;
|
||||
global_freq = nevery;
|
||||
@ -297,6 +298,46 @@ double FixTempCSLD::compute_scalar()
|
||||
return energy;
|
||||
}
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
pack entire state of Fix into one write
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixTempCSLD::write_restart(FILE *fp)
|
||||
{
|
||||
int nsize = (98+2+3)*comm->nprocs+2; // pRNG state per proc + nprocs + energy
|
||||
double *list;
|
||||
if (comm->me == 0) list = new double[nsize];
|
||||
list[0] = energy;
|
||||
list[1] = comm->nprocs;
|
||||
double state[103];
|
||||
random->get_state(state);
|
||||
MPI_Gather(state,103,MPI_DOUBLE,list+2,103*comm->nprocs,MPI_DOUBLE,0,world);
|
||||
|
||||
if (comm->me == 0) {
|
||||
int size = nsize * sizeof(double);
|
||||
fwrite(&size,sizeof(int),1,fp);
|
||||
fwrite(list,sizeof(double),nsize,fp);
|
||||
}
|
||||
if (comm->me == 0) delete[] list;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
use state info from restart file to restart the Fix
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixTempCSLD::restart(char *buf)
|
||||
{
|
||||
double *list = (double *) buf;
|
||||
|
||||
energy = list[0];
|
||||
int nprocs = (int) list[1];
|
||||
if (nprocs != comm->nprocs) {
|
||||
if (comm->me == 0)
|
||||
error->warning(FLERR,"Different number of procs. Cannot restore RNG state.");
|
||||
} else random->set_state(list+2+comm->me*103);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
extract thermostat properties
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
@ -34,6 +34,8 @@ class FixTempCSLD : public Fix {
|
||||
int modify_param(int, char **);
|
||||
void reset_target(double);
|
||||
virtual double compute_scalar();
|
||||
void write_restart(FILE *);
|
||||
void restart(char *buf);
|
||||
virtual void *extract(const char *, int &);
|
||||
|
||||
private:
|
||||
|
||||
@ -126,6 +126,7 @@ FixTempCSVR::FixTempCSVR(LAMMPS *lmp, int narg, char **arg) :
|
||||
|
||||
// CSVR thermostat should be applied every step
|
||||
|
||||
restart_global = 1;
|
||||
nevery = 1;
|
||||
scalar_flag = 1;
|
||||
global_freq = nevery;
|
||||
@ -331,6 +332,45 @@ double FixTempCSVR::compute_scalar()
|
||||
return energy;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
pack entire state of Fix into one write
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixTempCSVR::write_restart(FILE *fp)
|
||||
{
|
||||
int nsize = (98+2+3)*comm->nprocs+2; // pRNG state per proc + nprocs + energy
|
||||
double *list;
|
||||
if (comm->me == 0) list = new double[nsize];
|
||||
list[0] = energy;
|
||||
list[1] = comm->nprocs;
|
||||
double state[103];
|
||||
random->get_state(state);
|
||||
MPI_Gather(state,103,MPI_DOUBLE,list+2,103*comm->nprocs,MPI_DOUBLE,0,world);
|
||||
|
||||
if (comm->me == 0) {
|
||||
int size = nsize * sizeof(double);
|
||||
fwrite(&size,sizeof(int),1,fp);
|
||||
fwrite(list,sizeof(double),nsize,fp);
|
||||
}
|
||||
if (comm->me == 0) delete[] list;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
use state info from restart file to restart the Fix
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixTempCSVR::restart(char *buf)
|
||||
{
|
||||
double *list = (double *) buf;
|
||||
|
||||
energy = list[0];
|
||||
int nprocs = (int) list[1];
|
||||
if (nprocs != comm->nprocs) {
|
||||
if (comm->me == 0)
|
||||
error->warning(FLERR,"Different number of procs. Cannot restore RNG state.");
|
||||
} else random->set_state(list+2+comm->me*103);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
extract thermostat properties
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
@ -34,6 +34,8 @@ class FixTempCSVR : public Fix {
|
||||
int modify_param(int, char **);
|
||||
void reset_target(double);
|
||||
virtual double compute_scalar();
|
||||
void write_restart(FILE *);
|
||||
void restart(char *buf);
|
||||
virtual void *extract(const char *, int &);
|
||||
|
||||
private:
|
||||
|
||||
@ -854,9 +854,6 @@ void LAMMPS::destroy()
|
||||
delete neighbor;
|
||||
neighbor = NULL;
|
||||
|
||||
delete comm;
|
||||
comm = NULL;
|
||||
|
||||
delete force;
|
||||
force = NULL;
|
||||
|
||||
@ -870,6 +867,10 @@ void LAMMPS::destroy()
|
||||
// since they delete fixes
|
||||
modify = NULL;
|
||||
|
||||
delete comm; // comm must come after modify
|
||||
// since fix destructors may access comm
|
||||
comm = NULL;
|
||||
|
||||
delete domain; // domain must come after modify
|
||||
// since fix destructors access domain
|
||||
domain = NULL;
|
||||
|
||||
@ -28,8 +28,6 @@ using namespace LAMMPS_NS;
|
||||
|
||||
#define BIG 1.0e30
|
||||
|
||||
enum{NONE,SC,BCC,FCC,HCP,DIAMOND,SQ,SQ2,HEX,CUSTOM};
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
Lattice::Lattice(LAMMPS *lmp, int narg, char **arg) : Pointers(lmp)
|
||||
|
||||
@ -20,6 +20,8 @@ namespace LAMMPS_NS {
|
||||
|
||||
class Lattice : protected Pointers {
|
||||
public:
|
||||
enum{NONE,SC,BCC,FCC,HCP,DIAMOND,SQ,SQ2,HEX,CUSTOM};
|
||||
|
||||
int style; // NONE,SC,FCC,etc
|
||||
double xlattice,ylattice,zlattice; // lattice scale factors in 3 dims
|
||||
double a1[3],a2[3],a3[3]; // edge vectors of unit cell
|
||||
|
||||
@ -484,7 +484,7 @@ void PairLJCut::init_style()
|
||||
int irequest;
|
||||
int respa = 0;
|
||||
|
||||
if (update->whichflag == 1 && strstr(update->integrate_style,"respa")) {
|
||||
if (update->whichflag == 1 && utils::strmatch(update->integrate_style,"^respa")) {
|
||||
if (((Respa *) update->integrate)->level_inner >= 0) respa = 1;
|
||||
if (((Respa *) update->integrate)->level_middle >= 0) respa = 2;
|
||||
}
|
||||
@ -499,7 +499,7 @@ void PairLJCut::init_style()
|
||||
|
||||
// set rRESPA cutoffs
|
||||
|
||||
if (strstr(update->integrate_style,"respa") &&
|
||||
if (utils::strmatch(update->integrate_style,"^respa") &&
|
||||
((Respa *) update->integrate)->level_inner >= 0)
|
||||
cut_respa = ((Respa *) update->integrate)->cutoff;
|
||||
else cut_respa = NULL;
|
||||
|
||||
@ -458,25 +458,25 @@ void PairTable::read_table(Table *tb, char *file, char *keyword)
|
||||
}
|
||||
|
||||
if (ferror)
|
||||
error->warning(FLERR,fmt::format("{} of {} force values in table are "
|
||||
error->warning(FLERR,fmt::format("{} of {} force values in table {} are "
|
||||
"inconsistent with -dE/dr.\n Should "
|
||||
"only be flagged at inflection points",
|
||||
ferror,tb->ninput));
|
||||
ferror,tb->ninput,keyword));
|
||||
|
||||
// warn if re-computed distance values differ from file values
|
||||
|
||||
if (rerror)
|
||||
error->warning(FLERR,fmt::format("{} of {} distance values in table with "
|
||||
"relative error\n over {} to "
|
||||
error->warning(FLERR,fmt::format("{} of {} distance values in table {} "
|
||||
"with relative error\n over {} to "
|
||||
"re-computed values",
|
||||
rerror,tb->ninput,EPSILONR));
|
||||
rerror,tb->ninput,EPSILONR,keyword));
|
||||
|
||||
// warn if data was read incompletely, e.g. columns were missing
|
||||
|
||||
if (cerror)
|
||||
error->warning(FLERR,fmt::format("{} of {} lines in table were "
|
||||
error->warning(FLERR,fmt::format("{} of {} lines in table {} were "
|
||||
"incomplete\n or could not be parsed "
|
||||
"completely",cerror,tb->ninput));
|
||||
"completely",cerror,tb->ninput,keyword));
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
@ -16,6 +16,7 @@
|
||||
|
||||
#include "random_mars.h"
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
#include "error.h"
|
||||
#include "math_const.h"
|
||||
|
||||
@ -36,6 +37,7 @@ RanMars::RanMars(LAMMPS *lmp, int seed) : Pointers(lmp),
|
||||
|
||||
save = 0;
|
||||
u = new double[97+1];
|
||||
memset(u,0,98*sizeof(double));
|
||||
|
||||
ij = (seed-1)/30082;
|
||||
kl = (seed-1) - 30082*ij;
|
||||
@ -181,7 +183,7 @@ double RanMars::besselexp(double theta, double alpha, double cp)
|
||||
void RanMars::select_subset(bigint ntarget, int nmine, int *mark, int *next)
|
||||
{
|
||||
int mode,index,oldindex,newvalue,nflip,which,niter;
|
||||
int active[2],first[2],last[2];
|
||||
int active[2],first[2];
|
||||
int newactive[2],newfirst[2],newlast[2];
|
||||
bigint nmark,nflipall;
|
||||
bigint activeall[2],bsum[3],bsumall[3];
|
||||
@ -191,8 +193,6 @@ void RanMars::select_subset(bigint ntarget, int nmine, int *mark, int *next)
|
||||
active[1] = 0;
|
||||
first[0] = 0;
|
||||
first[1] = -1;
|
||||
last[0] = nmine-1;
|
||||
last[1] = -1;
|
||||
|
||||
bigint bnmine = nmine;
|
||||
bigint bnall;
|
||||
@ -266,8 +266,6 @@ void RanMars::select_subset(bigint ntarget, int nmine, int *mark, int *next)
|
||||
active[1] = newactive[1];
|
||||
first[0] = newfirst[0];
|
||||
first[1] = newfirst[1];
|
||||
last[0] = newlast[0];
|
||||
last[1] = newlast[1];
|
||||
}
|
||||
|
||||
// update nmark and activeall
|
||||
@ -291,3 +289,31 @@ void RanMars::select_subset(bigint ntarget, int nmine, int *mark, int *next)
|
||||
// niter,nmark,nactiveall,thresh,nflipall);
|
||||
}
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
store state in buffer
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void RanMars::get_state(double *state)
|
||||
{
|
||||
for (int i=0; i < 98; ++i) state[i] = u[i];
|
||||
state[98] = i97;
|
||||
state[99] = j97;
|
||||
state[100]= c;
|
||||
state[101]= cd;
|
||||
state[102]= cm;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
restore state from buffer
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void RanMars::set_state(double *state)
|
||||
{
|
||||
for (int i=0; i < 98; ++i) u[i] = state[i];
|
||||
i97 = state[98];
|
||||
j97 = state[99];
|
||||
c = state[100];
|
||||
cd = state[101];
|
||||
cm = state[102];
|
||||
}
|
||||
|
||||
@ -28,6 +28,8 @@ class RanMars : protected Pointers {
|
||||
double rayleigh(double sigma);
|
||||
double besselexp(double theta, double alpha, double cp);
|
||||
void select_subset(bigint, int, int *, int *);
|
||||
void get_state(double *);
|
||||
void set_state(double *);
|
||||
|
||||
private:
|
||||
int save;
|
||||
|
||||
@ -67,7 +67,7 @@ void Velocity::command(int narg, char **arg)
|
||||
|
||||
// check if velocities of atoms in rigid bodies are updated
|
||||
|
||||
if (modify->check_rigid_group_overlap(groupbit))
|
||||
if (modify->check_rigid_group_overlap(groupbit) && (comm->me == 0))
|
||||
error->warning(FLERR,"Changing velocities of atoms in rigid bodies. "
|
||||
"This has no effect unless rigid bodies are rebuild");
|
||||
|
||||
@ -200,7 +200,7 @@ void Velocity::create(double t_desired, int seed)
|
||||
// initialize temperature computation(s)
|
||||
// warn if groups don't match
|
||||
|
||||
if (igroup != temperature->igroup && comm->me == 0)
|
||||
if ((igroup != temperature->igroup) && (comm->me == 0))
|
||||
error->warning(FLERR,"Mismatch between velocity and compute groups");
|
||||
temperature->init();
|
||||
temperature->setup();
|
||||
@ -596,7 +596,7 @@ void Velocity::scale(int /*narg*/, char **arg)
|
||||
// initialize temperature computation
|
||||
// warn if groups don't match
|
||||
|
||||
if (igroup != temperature->igroup && comm->me == 0)
|
||||
if ((igroup != temperature->igroup) && (comm->me == 0))
|
||||
error->warning(FLERR,"Mismatch between velocity and compute groups");
|
||||
temperature->init();
|
||||
temperature->setup();
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
include(GTest)
|
||||
|
||||
add_subdirectory(force-styles)
|
||||
add_subdirectory(utils)
|
||||
add_subdirectory(formats)
|
||||
add_subdirectory(commands)
|
||||
add_subdirectory(force-styles)
|
||||
|
||||
find_package(ClangFormat 8.0)
|
||||
|
||||
|
||||
@ -3,6 +3,10 @@ add_executable(test_simple_commands test_simple_commands.cpp)
|
||||
target_link_libraries(test_simple_commands PRIVATE lammps GTest::GMock GTest::GTest)
|
||||
add_test(NAME SimpleCommands COMMAND test_simple_commands WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
add_executable(test_lattice_region test_lattice_region.cpp)
|
||||
target_link_libraries(test_lattice_region PRIVATE lammps GTest::GMock GTest::GTest)
|
||||
add_test(NAME LatticeRegion COMMAND test_lattice_region WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
add_executable(test_kim_commands test_kim_commands.cpp)
|
||||
target_link_libraries(test_kim_commands PRIVATE lammps GTest::GMock GTest::GTest)
|
||||
add_test(NAME KimCommands COMMAND test_kim_commands WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
703
unittest/commands/test_lattice_region.cpp
Normal file
703
unittest/commands/test_lattice_region.cpp
Normal file
@ -0,0 +1,703 @@
|
||||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
certain rights in this software. This software is distributed under
|
||||
the GNU General Public License.
|
||||
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "atom.h"
|
||||
#include "domain.h"
|
||||
#include "fmt/format.h"
|
||||
#include "info.h"
|
||||
#include "input.h"
|
||||
#include "lammps.h"
|
||||
#include "lattice.h"
|
||||
#include "region.h"
|
||||
#include "utils.h"
|
||||
#include "gmock/gmock.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <mpi.h>
|
||||
|
||||
// whether to print verbose output (i.e. not capturing LAMMPS screen output).
|
||||
bool verbose = false;
|
||||
|
||||
#if defined(OMPI_MAJOR_VERSION)
|
||||
const bool have_openmpi = true;
|
||||
#else
|
||||
const bool have_openmpi = false;
|
||||
#endif
|
||||
|
||||
using LAMMPS_NS::utils::split_words;
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
using ::testing::ExitedWithCode;
|
||||
using ::testing::MatchesRegex;
|
||||
using ::testing::StrEq;
|
||||
|
||||
#define TEST_FAILURE(errmsg, ...) \
|
||||
if (Info::has_exceptions()) { \
|
||||
::testing::internal::CaptureStdout(); \
|
||||
ASSERT_ANY_THROW({__VA_ARGS__}); \
|
||||
auto mesg = ::testing::internal::GetCapturedStdout(); \
|
||||
ASSERT_THAT(mesg, MatchesRegex(errmsg)); \
|
||||
} else { \
|
||||
if (!have_openmpi) { \
|
||||
::testing::internal::CaptureStdout(); \
|
||||
ASSERT_DEATH({__VA_ARGS__}, ""); \
|
||||
auto mesg = ::testing::internal::GetCapturedStdout(); \
|
||||
ASSERT_THAT(mesg, MatchesRegex(errmsg)); \
|
||||
} \
|
||||
}
|
||||
|
||||
class LatticeRegionTest : public ::testing::Test {
|
||||
protected:
|
||||
LAMMPS *lmp;
|
||||
|
||||
void SetUp() override
|
||||
{
|
||||
const char *args[] = {"LatticeRegionTest", "-log", "none", "-echo", "screen", "-nocite"};
|
||||
char **argv = (char **)args;
|
||||
int argc = sizeof(args) / sizeof(char *);
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp = new LAMMPS(argc, argv, MPI_COMM_WORLD);
|
||||
lmp->input->one("units metal");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
}
|
||||
|
||||
void TearDown() override
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
delete lmp;
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
}
|
||||
};
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_none)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice none 2.0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::NONE);
|
||||
ASSERT_EQ(lattice->xlattice, 2.0);
|
||||
ASSERT_EQ(lattice->ylattice, 2.0);
|
||||
ASSERT_EQ(lattice->zlattice, 2.0);
|
||||
ASSERT_EQ(lattice->nbasis, 0);
|
||||
ASSERT_EQ(lattice->basis, nullptr);
|
||||
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*", lmp->input->one("lattice"););
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*", lmp->input->one("lattice xxx"););
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*", lmp->input->one("lattice none 1.0 origin"););
|
||||
TEST_FAILURE(".*ERROR: Expected floating point.*", lmp->input->one("lattice none xxx"););
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("units lj");
|
||||
lmp->input->one("lattice none 1.0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lattice->xlattice, 1.0);
|
||||
ASSERT_EQ(lattice->ylattice, 1.0);
|
||||
ASSERT_EQ(lattice->zlattice, 1.0);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_sc)
|
||||
{
|
||||
::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice sc 1.0 spacing 1.5 2.0 3.0");
|
||||
auto output = ::testing::internal::GetCapturedStdout();
|
||||
if (verbose) std::cout << output;
|
||||
ASSERT_THAT(output, MatchesRegex(".*Lattice spacing in x,y,z = 1.50* 2.0* 3.0*.*"));
|
||||
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->xlattice, 1.5);
|
||||
ASSERT_EQ(lattice->ylattice, 2.0);
|
||||
ASSERT_EQ(lattice->zlattice, 3.0);
|
||||
|
||||
::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice sc 2.0");
|
||||
output = ::testing::internal::GetCapturedStdout();
|
||||
if (verbose) std::cout << output;
|
||||
ASSERT_THAT(output, MatchesRegex(".*Lattice spacing in x,y,z = 2.0* 2.0* 2.0*.*"));
|
||||
|
||||
lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::SC);
|
||||
ASSERT_EQ(lattice->xlattice, 2.0);
|
||||
ASSERT_EQ(lattice->ylattice, 2.0);
|
||||
ASSERT_EQ(lattice->zlattice, 2.0);
|
||||
ASSERT_EQ(lattice->nbasis, 1);
|
||||
ASSERT_NE(lattice->basis, nullptr);
|
||||
ASSERT_EQ(lattice->a1[0], 1.0);
|
||||
ASSERT_EQ(lattice->a1[1], 0.0);
|
||||
ASSERT_EQ(lattice->a1[2], 0.0);
|
||||
ASSERT_EQ(lattice->a2[0], 0.0);
|
||||
ASSERT_EQ(lattice->a2[1], 1.0);
|
||||
ASSERT_EQ(lattice->a2[2], 0.0);
|
||||
ASSERT_EQ(lattice->a3[0], 0.0);
|
||||
ASSERT_EQ(lattice->a3[1], 0.0);
|
||||
ASSERT_EQ(lattice->a3[2], 1.0);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*",
|
||||
lmp->input->one("lattice sc 1.0 origin 1.0 1.0 1.0"););
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*",
|
||||
lmp->input->one("lattice sc 1.0 origin 1.0"););
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*",
|
||||
lmp->input->one("lattice sc 1.0 origin 0.0 0.0 0.0 xxx"););
|
||||
TEST_FAILURE(".*ERROR: Expected floating point.*",
|
||||
lmp->input->one("lattice sc 1.0 origin xxx 1.0 1.0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice orient vectors are not orthogonal.*",
|
||||
lmp->input->one("lattice sc 1.0 orient x 2 2 0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice orient vectors are not right-handed.*",
|
||||
lmp->input->one("lattice sc 1.0 orient y 0 -1 0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice spacings are invalid.*",
|
||||
lmp->input->one("lattice sc 1.0 spacing 0.0 1.0 1.0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice spacings are invalid.*",
|
||||
lmp->input->one("lattice sc 1.0 spacing 1.0 -0.1 1.0"););
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("units lj");
|
||||
lmp->input->one("lattice sc 2.0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, pow(0.5, 1.0 / 3.0));
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, pow(0.5, 1.0 / 3.0));
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, pow(0.5, 1.0 / 3.0));
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice sc 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_bcc)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice bcc 4.2 orient x 1 1 0 orient y -1 1 0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::BCC);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, sqrt(2.0) * 4.2);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, sqrt(2.0) * 4.2);
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 4.2);
|
||||
ASSERT_EQ(lattice->nbasis, 2);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][2], 0.5);
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice bcc 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_fcc)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 3.5 origin 0.5 0.5 0.5");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::FCC);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 3.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 3.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 3.5);
|
||||
ASSERT_EQ(lattice->nbasis, 4);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[2][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[2][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[2][2], 0.5);
|
||||
ASSERT_EQ(lattice->basis[3][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[3][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[3][2], 0.5);
|
||||
|
||||
TEST_FAILURE(".*ERROR: Invalid option in lattice command for non-custom style.*",
|
||||
lmp->input->one("lattice fcc 1.0 basis 0.0 0.0 0.0"););
|
||||
TEST_FAILURE(".*ERROR: Invalid option in lattice command for non-custom style.*",
|
||||
lmp->input->one("lattice fcc 1.0 a1 0.0 1.0 0.0"););
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*",
|
||||
lmp->input->one("lattice fcc 1.0 orient w 1 0 0"););
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice fcc 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_hcp)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice hcp 3.0 orient z 0 0 1");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::HCP);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 3.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 3.0 * sqrt(3.0));
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 2.0 * sqrt(6.0));
|
||||
ASSERT_EQ(lattice->nbasis, 4);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[2][0], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[2][1], 5.0 / 6.0);
|
||||
ASSERT_EQ(lattice->basis[2][2], 0.5);
|
||||
ASSERT_EQ(lattice->basis[3][0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[3][1], 1.0 / 3.0);
|
||||
ASSERT_EQ(lattice->basis[3][2], 0.5);
|
||||
ASSERT_EQ(lattice->a1[0], 1.0);
|
||||
ASSERT_EQ(lattice->a1[1], 0.0);
|
||||
ASSERT_EQ(lattice->a1[2], 0.0);
|
||||
ASSERT_EQ(lattice->a2[0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a2[1], sqrt(3.0));
|
||||
ASSERT_EQ(lattice->a2[2], 0.0);
|
||||
ASSERT_EQ(lattice->a3[0], 0.0);
|
||||
ASSERT_EQ(lattice->a3[1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a3[2], sqrt(8.0 / 3.0));
|
||||
|
||||
TEST_FAILURE(".*ERROR: Invalid option in lattice command for non-custom style.*",
|
||||
lmp->input->one("lattice hcp 1.0 a2 0.0 1.0 0.0"););
|
||||
TEST_FAILURE(".*ERROR: Invalid option in lattice command for non-custom style.*",
|
||||
lmp->input->one("lattice hcp 1.0 a3 0.0 1.0 0.0"););
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice hcp 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_diamond)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice diamond 4.1 orient x 1 1 2 orient y -1 1 0 orient z -1 -1 1");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::DIAMOND);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 6.6952719636073539);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 5.7982756057296889);
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 7.1014083110323973);
|
||||
ASSERT_EQ(lattice->nbasis, 8);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][2], 0.5);
|
||||
ASSERT_EQ(lattice->basis[2][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[2][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[2][2], 0.5);
|
||||
ASSERT_EQ(lattice->basis[3][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[3][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[3][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[4][0], 0.25);
|
||||
ASSERT_EQ(lattice->basis[4][1], 0.25);
|
||||
ASSERT_EQ(lattice->basis[4][2], 0.25);
|
||||
ASSERT_EQ(lattice->basis[5][0], 0.25);
|
||||
ASSERT_EQ(lattice->basis[5][1], 0.75);
|
||||
ASSERT_EQ(lattice->basis[5][2], 0.75);
|
||||
ASSERT_EQ(lattice->basis[6][0], 0.75);
|
||||
ASSERT_EQ(lattice->basis[6][1], 0.25);
|
||||
ASSERT_EQ(lattice->basis[6][2], 0.75);
|
||||
ASSERT_EQ(lattice->basis[7][0], 0.75);
|
||||
ASSERT_EQ(lattice->basis[7][1], 0.75);
|
||||
ASSERT_EQ(lattice->basis[7][2], 0.25);
|
||||
ASSERT_EQ(lattice->a1[0], 1.0);
|
||||
ASSERT_EQ(lattice->a1[1], 0.0);
|
||||
ASSERT_EQ(lattice->a1[2], 0.0);
|
||||
ASSERT_EQ(lattice->a2[0], 0.0);
|
||||
ASSERT_EQ(lattice->a2[1], 1.0);
|
||||
ASSERT_EQ(lattice->a2[2], 0.0);
|
||||
ASSERT_EQ(lattice->a3[0], 0.0);
|
||||
ASSERT_EQ(lattice->a3[1], 0.0);
|
||||
ASSERT_EQ(lattice->a3[2], 1.0);
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice diamond 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_sq)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
lmp->input->one("lattice sq 3.0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::SQ);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 3.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 3.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 3.0);
|
||||
ASSERT_EQ(lattice->nbasis, 1);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
|
||||
TEST_FAILURE(
|
||||
".*ERROR: Lattice settings are not compatible with 2d simulation.*",
|
||||
lmp->input->one("lattice sq 1.0 orient x 1 1 2 orient y -1 1 0 orient z -1 -1 1"););
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 3");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice sq 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_sq2)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
lmp->input->one("lattice sq2 2.0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::SQ2);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 2.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 2.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 2.0);
|
||||
ASSERT_EQ(lattice->nbasis, 2);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][2], 0.0);
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 3");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice sq2 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_hex)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
lmp->input->one("lattice hex 2.0");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::HEX);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 2.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 3.4641016151377544);
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 2.0);
|
||||
ASSERT_EQ(lattice->nbasis, 2);
|
||||
ASSERT_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_EQ(lattice->basis[1][0], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_EQ(lattice->basis[1][2], 0.0);
|
||||
ASSERT_EQ(lattice->a1[0], 1.0);
|
||||
ASSERT_EQ(lattice->a1[1], 0.0);
|
||||
ASSERT_EQ(lattice->a1[2], 0.0);
|
||||
ASSERT_EQ(lattice->a2[0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a2[1], sqrt(3.0));
|
||||
ASSERT_EQ(lattice->a2[2], 0.0);
|
||||
ASSERT_EQ(lattice->a3[0], 0.0);
|
||||
ASSERT_EQ(lattice->a3[1], 0.0);
|
||||
ASSERT_EQ(lattice->a3[2], 1.0);
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 3");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Lattice style incompatible with simulation dimension.*",
|
||||
lmp->input->one("lattice hex 1.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, lattice_custom)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("variable a equal 4.34");
|
||||
lmp->input->one("variable b equal $a*sqrt(3.0)");
|
||||
lmp->input->one("variable c equal $a*sqrt(8.0/3.0)");
|
||||
lmp->input->one("variable t equal 1.0/3.0");
|
||||
lmp->input->one("variable f equal 5.0/6.0");
|
||||
lmp->input->one("lattice custom 1.0 "
|
||||
"a1 $a 0.0 0.0 "
|
||||
"a2 0.0 $b 0.0 "
|
||||
"a3 0.0 0.0 $c "
|
||||
"basis 0.0 0.0 0.0 "
|
||||
"basis 0.5 0.5 0.0 "
|
||||
"basis $t 0.0 0.5 "
|
||||
"basis $f 0.5 0.5 "
|
||||
"basis 0.0 0.0 0.625 "
|
||||
"basis 0.5 0.5 0.625 "
|
||||
"basis $t 0.0 0.125 "
|
||||
"basis $f 0.5 0.125 ");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
auto lattice = lmp->domain->lattice;
|
||||
ASSERT_EQ(lattice->style, Lattice::CUSTOM);
|
||||
ASSERT_DOUBLE_EQ(lattice->xlattice, 4.34);
|
||||
ASSERT_DOUBLE_EQ(lattice->ylattice, 4.34 * sqrt(3.0));
|
||||
ASSERT_DOUBLE_EQ(lattice->zlattice, 4.34 * sqrt(8.0 / 3.0));
|
||||
ASSERT_EQ(lattice->nbasis, 8);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[0][0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[0][1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[0][2], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[1][0], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[1][1], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[1][2], 0.0);
|
||||
ASSERT_NEAR(lattice->basis[2][0], 1.0 / 3.0, 1.0e-14);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[2][1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[2][2], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[3][0], 5.0 / 6.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[3][1], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[3][2], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[4][0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[4][1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[4][2], 0.625);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[5][0], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[5][1], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[5][2], 0.625);
|
||||
ASSERT_NEAR(lattice->basis[6][0], 1.0 / 3.0, 1.0e-14);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[6][1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[6][2], 0.125);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[7][0], 5.0 / 6.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[7][1], 0.5);
|
||||
ASSERT_DOUBLE_EQ(lattice->basis[7][2], 0.125);
|
||||
ASSERT_DOUBLE_EQ(lattice->a1[0], 4.34);
|
||||
ASSERT_DOUBLE_EQ(lattice->a1[1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a1[2], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a2[0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a2[1], 4.34 * sqrt(3.0));
|
||||
ASSERT_DOUBLE_EQ(lattice->a2[2], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a3[0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a3[1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(lattice->a3[2], 4.34 * sqrt(8.0 / 3.0));
|
||||
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*",
|
||||
lmp->input->one("lattice custom 1.0 basis -0.1 0 0"););
|
||||
TEST_FAILURE(".*ERROR: Illegal lattice command.*",
|
||||
lmp->input->one("lattice custom 1.0 basis 0.0 1.0 0"););
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("dimension 2");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: No basis atoms in lattice.*", lmp->input->one("lattice custom 1.0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice settings are not compatible with 2d simulation.*",
|
||||
lmp->input->one("lattice custom 1.0 origin 0.5 0.5 0.5 basis 0.0 0.0 0.0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice settings are not compatible with 2d simulation.*",
|
||||
lmp->input->one("lattice custom 1.0 a1 1.0 1.0 1.0 basis 0.0 0.0 0.0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice settings are not compatible with 2d simulation.*",
|
||||
lmp->input->one("lattice custom 1.0 a2 1.0 1.0 1.0 basis 0.0 0.0 0.0"););
|
||||
TEST_FAILURE(".*ERROR: Lattice settings are not compatible with 2d simulation.*",
|
||||
lmp->input->one("lattice custom 1.0 a3 1.0 1.0 1.0 basis 0.0 0.0 0.0"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_fail)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice none 2.0");
|
||||
lmp->input->one("region box block 0 1 0 1 0 1");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
TEST_FAILURE(".*ERROR: Create_atoms command before simulation box is defined.*",
|
||||
lmp->input->one("create_atoms 1 box"););
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("create_box 1 box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
TEST_FAILURE(".*ERROR: Cannot create atoms with undefined lattice.*",
|
||||
lmp->input->one("create_atoms 1 box"););
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_block_lattice)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice sc 1.5");
|
||||
lmp->input->one("region box block 0 2 0 2 0 2 units lattice");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 8);
|
||||
ASSERT_DOUBLE_EQ(x[0][0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[0][1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[0][2], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[1][0], 1.5);
|
||||
ASSERT_DOUBLE_EQ(x[1][1], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[1][2], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[2][0], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[2][1], 1.5);
|
||||
ASSERT_DOUBLE_EQ(x[2][2], 0.0);
|
||||
ASSERT_DOUBLE_EQ(x[3][0], 1.5);
|
||||
ASSERT_DOUBLE_EQ(x[3][1], 1.5);
|
||||
ASSERT_DOUBLE_EQ(x[3][2], 0.0);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_block_box)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice sc 1.5 origin 0.75 0.75 0.75");
|
||||
lmp->input->one("region box block 0 2 0 2 0 2 units box");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 1);
|
||||
ASSERT_DOUBLE_EQ(x[0][0], 1.125);
|
||||
ASSERT_DOUBLE_EQ(x[0][1], 1.125);
|
||||
ASSERT_DOUBLE_EQ(x[0][2], 1.125);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_cone)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 2.5 origin 0.5 0.5 0.5");
|
||||
lmp->input->one("region box cone x 1.0 1.0 0.5 2.1 0.0 2.0");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 region box");
|
||||
lmp->input->one("write_dump all atom init.lammpstrj");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 42);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_cylinder)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 2.5 origin 0.5 0.5 0.5");
|
||||
lmp->input->one("region box cylinder z 1.0 1.0 2.1 0.0 2.0 ");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 region box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 114);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_prism)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice bcc 2.5 origin 0.75 0.75 0.75");
|
||||
lmp->input->one("region box prism 0 2 0 2 0 2 0.5 0.0 0.0");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 1);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 16);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_sphere)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 2.5 origin 0.5 0.5 0.5");
|
||||
lmp->input->one("region box sphere 1.0 1.0 1.0 1.1");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 region box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 14);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_union)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 2.5 origin 0.5 0.5 0.5");
|
||||
lmp->input->one("region part1 sphere 2.0 1.0 1.0 1.1");
|
||||
lmp->input->one("region part2 block 0.0 2.0 0.0 2.0 0.0 2.0");
|
||||
lmp->input->one("region box union 2 part1 part2");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 region box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 67);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_intersect)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 2.5 origin 0.5 0.5 0.5");
|
||||
lmp->input->one("region part1 sphere 2.0 1.0 1.0 1.8");
|
||||
lmp->input->one("region part2 block 0.0 2.0 0.0 2.0 0.0 2.0");
|
||||
lmp->input->one("region box intersect 2 part1 part2");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 region box");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 21);
|
||||
}
|
||||
|
||||
TEST_F(LatticeRegionTest, region_plane)
|
||||
{
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
lmp->input->one("lattice fcc 2.5 origin 0.5 0.5 0.5");
|
||||
lmp->input->one("region box block 0.0 2.0 0.0 2.0 0.0 2.0");
|
||||
lmp->input->one("region part1 plane 0.5 1.0 0.0 0.75 0.0 0.0");
|
||||
lmp->input->one("region part2 plane 1.5 1.0 0.0 0.75 0.0 0.0 side out");
|
||||
lmp->input->one("region atoms intersect 2 part1 part2");
|
||||
lmp->input->one("create_box 1 box");
|
||||
lmp->input->one("create_atoms 1 region atoms");
|
||||
lmp->input->one("write_dump all atom init.lammpstrj");
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
ASSERT_EQ(lmp->domain->triclinic, 0);
|
||||
|
||||
auto x = lmp->atom->x;
|
||||
ASSERT_EQ(lmp->atom->natoms, 16);
|
||||
}
|
||||
|
||||
} // namespace LAMMPS_NS
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
MPI_Init(&argc, &argv);
|
||||
::testing::InitGoogleMock(&argc, argv);
|
||||
|
||||
if (have_openmpi && !LAMMPS_NS::Info::has_exceptions())
|
||||
std::cout << "Warning: using OpenMPI without exceptions. "
|
||||
"Death tests will be skipped\n";
|
||||
|
||||
// handle arguments passed via environment variable
|
||||
if (const char *var = getenv("TEST_ARGS")) {
|
||||
std::vector<std::string> env = split_words(var);
|
||||
for (auto arg : env) {
|
||||
if (arg == "-v") {
|
||||
verbose = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ((argc > 1) && (strcmp(argv[1], "-v") == 0)) verbose = true;
|
||||
|
||||
int rv = RUN_ALL_TESTS();
|
||||
MPI_Finalize();
|
||||
return rv;
|
||||
}
|
||||
@ -660,6 +660,8 @@ TEST_F(ResetIDsTest, TopologyData)
|
||||
|
||||
TEST_F(ResetIDsTest, DeathTests)
|
||||
{
|
||||
if (lmp->atom->natoms == 0) GTEST_SKIP();
|
||||
|
||||
TEST_FAILURE(".*ERROR: Illegal reset_mol_ids command.*", lmp->input->one("reset_mol_ids"););
|
||||
TEST_FAILURE(".*ERROR: Illegal reset_mol_ids command.*",
|
||||
lmp->input->one("reset_mol_ids all offset 1 1"););
|
||||
|
||||
@ -125,3 +125,15 @@ foreach(TEST ${IMPROPER_TESTS})
|
||||
add_test(NAME ${TNAME} COMMAND test_improper_style ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}")
|
||||
endforeach()
|
||||
|
||||
# tester for timestepping fixes
|
||||
add_executable(test_fix_timestep test_fix_timestep.cpp)
|
||||
target_link_libraries(test_fix_timestep PRIVATE lammps style_tests)
|
||||
|
||||
# tests for timestep related fixes (time integration, thermostat, force manipulation, constraints/restraints)
|
||||
file(GLOB FIX_TIMESTEP_TESTS LIST_DIRECTORIES false ${TEST_INPUT_FOLDER}/fix-timestep-*.yaml)
|
||||
foreach(TEST ${FIX_TIMESTEP_TESTS})
|
||||
string(REGEX REPLACE "^.*fix-timestep-(.*)\.yaml" "FixTimestep:\\1" TNAME ${TEST})
|
||||
add_test(NAME ${TNAME} COMMAND test_fix_timestep ${TEST} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
set_tests_properties(${TNAME} PROPERTIES ENVIRONMENT "LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS_DIR};PYTHONPATH=${TEST_INPUT_FOLDER}:$ENV{PYTHONPATH}")
|
||||
endforeach()
|
||||
|
||||
@ -55,6 +55,7 @@ kspace = {}
|
||||
pair = {}
|
||||
|
||||
style_pattern = re.compile("(.+)Style\((.+),(.+)\)")
|
||||
upper = re.compile("[A-Z]+")
|
||||
gpu = re.compile("(.+)/gpu$")
|
||||
intel = re.compile("(.+)/intel$")
|
||||
kokkos = re.compile("(.+)/kk$")
|
||||
@ -85,7 +86,7 @@ for header in headers:
|
||||
for m in matches:
|
||||
# skip over internal styles w/o explicit documentation
|
||||
style = m[1]
|
||||
if style.isupper():
|
||||
if upper.match(style):
|
||||
continue
|
||||
|
||||
# detect, process, and flag suffix styles:
|
||||
@ -131,6 +132,8 @@ for header in headers:
|
||||
register_style(kspace,style,info)
|
||||
elif m[0] == 'Pair':
|
||||
register_style(pair,style,info)
|
||||
elif m[0] == 'Fix':
|
||||
register_style(fix,style,info)
|
||||
|
||||
|
||||
|
||||
@ -179,6 +182,8 @@ counter += check_tests('improper',improper,'improper-*.yaml',
|
||||
'.*improper_style:\s*((\S+).*)?')
|
||||
counter += check_tests('kspace',kspace,'kspace-*.yaml',
|
||||
'.*kspace_style\s*((\S+).*)?')
|
||||
counter += check_tests('fix',fix,'fix-*.yaml',
|
||||
' fix\s+((\S+)\s*)?')
|
||||
|
||||
total = len(pair)+len(bond)+len(angle)+len(dihedral)+len(improper)+len(kspace)
|
||||
total = len(pair)+len(bond)+len(angle)+len(dihedral)+len(improper)+len(kspace)+len(fix)
|
||||
print(f"\nTotal tests missing: {counter} of {total}")
|
||||
|
||||
@ -29,6 +29,7 @@ public:
|
||||
double dev() const;
|
||||
double max() const { return maxerr; }
|
||||
double idx() const { return maxidx; }
|
||||
bool has_data() const { return num > 0; }
|
||||
|
||||
private:
|
||||
double sum, sumsq, maxerr;
|
||||
|
||||
@ -58,15 +58,21 @@ public:
|
||||
double run_coul;
|
||||
stress_t init_stress;
|
||||
stress_t run_stress;
|
||||
double global_scalar;
|
||||
std::vector<double> global_vector;
|
||||
std::vector<coord_t> init_forces;
|
||||
std::vector<coord_t> run_forces;
|
||||
std::vector<coord_t> run_pos;
|
||||
std::vector<coord_t> restart_pos;
|
||||
std::vector<coord_t> run_vel;
|
||||
std::vector<coord_t> restart_vel;
|
||||
|
||||
TestConfig() :
|
||||
lammps_version(""), date_generated(""), basename(""), epsilon(1.0e-14), input_file(""),
|
||||
pair_style("zero"), bond_style("zero"), angle_style("zero"), dihedral_style("zero"),
|
||||
improper_style("zero"), kspace_style("none"), natoms(0), init_energy(0), run_energy(0),
|
||||
init_vdwl(0), run_vdwl(0), init_coul(0), run_coul(0), init_stress({0, 0, 0, 0, 0, 0}),
|
||||
run_stress({0, 0, 0, 0, 0, 0})
|
||||
run_stress({0, 0, 0, 0, 0, 0}), global_scalar(0)
|
||||
{
|
||||
prerequisites.clear();
|
||||
pre_commands.clear();
|
||||
@ -79,6 +85,11 @@ public:
|
||||
extract.clear();
|
||||
init_forces.clear();
|
||||
run_forces.clear();
|
||||
run_pos.clear();
|
||||
restart_pos.clear();
|
||||
run_vel.clear();
|
||||
restart_vel.clear();
|
||||
global_vector.clear();
|
||||
}
|
||||
virtual ~TestConfig(){};
|
||||
|
||||
|
||||
@ -40,6 +40,8 @@ TestConfigReader::TestConfigReader(TestConfig &config) : YamlReader(), config(co
|
||||
consumers["run_stress"] = &TestConfigReader::run_stress;
|
||||
consumers["init_forces"] = &TestConfigReader::init_forces;
|
||||
consumers["run_forces"] = &TestConfigReader::run_forces;
|
||||
consumers["run_pos"] = &TestConfigReader::run_pos;
|
||||
consumers["run_vel"] = &TestConfigReader::run_vel;
|
||||
|
||||
consumers["pair_style"] = &TestConfigReader::pair_style;
|
||||
consumers["pair_coeff"] = &TestConfigReader::pair_coeff;
|
||||
@ -48,6 +50,9 @@ TestConfigReader::TestConfigReader(TestConfig &config) : YamlReader(), config(co
|
||||
consumers["run_vdwl"] = &TestConfigReader::run_vdwl;
|
||||
consumers["run_coul"] = &TestConfigReader::run_coul;
|
||||
|
||||
consumers["global_scalar"] = &TestConfigReader::global_scalar;
|
||||
consumers["global_vector"] = &TestConfigReader::global_vector;
|
||||
|
||||
consumers["bond_style"] = &TestConfigReader::bond_style;
|
||||
consumers["bond_coeff"] = &TestConfigReader::bond_coeff;
|
||||
consumers["angle_style"] = &TestConfigReader::angle_style;
|
||||
@ -176,6 +181,36 @@ void TestConfigReader::run_forces(const yaml_event_t &event)
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::run_pos(const yaml_event_t &event)
|
||||
{
|
||||
config.run_pos.clear();
|
||||
config.run_pos.resize(config.natoms + 1);
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
|
||||
while (std::getline(data, line, '\n')) {
|
||||
int tag;
|
||||
coord_t xyz;
|
||||
sscanf(line.c_str(), "%d %lg %lg %lg", &tag, &xyz.x, &xyz.y, &xyz.z);
|
||||
config.run_pos[tag] = xyz;
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::run_vel(const yaml_event_t &event)
|
||||
{
|
||||
config.run_vel.clear();
|
||||
config.run_vel.resize(config.natoms + 1);
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
|
||||
while (std::getline(data, line, '\n')) {
|
||||
int tag;
|
||||
coord_t xyz;
|
||||
sscanf(line.c_str(), "%d %lg %lg %lg", &tag, &xyz.x, &xyz.y, &xyz.z);
|
||||
config.run_vel[tag] = xyz;
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::pair_style(const yaml_event_t &event)
|
||||
{
|
||||
config.pair_style = (char *)event.data.scalar.value;
|
||||
@ -267,3 +302,21 @@ void TestConfigReader::run_energy(const yaml_event_t &event)
|
||||
{
|
||||
config.run_energy = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::global_scalar(const yaml_event_t &event)
|
||||
{
|
||||
config.global_scalar = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::global_vector(const yaml_event_t &event)
|
||||
{
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
config.global_vector.clear();
|
||||
double value;
|
||||
std::size_t num;
|
||||
data >> num;
|
||||
for (std::size_t i = 0; i < num; ++i) {
|
||||
data >> value;
|
||||
config.global_vector.push_back(value);
|
||||
}
|
||||
}
|
||||
|
||||
@ -36,6 +36,8 @@ public:
|
||||
void run_stress(const yaml_event_t &event);
|
||||
void init_forces(const yaml_event_t &event);
|
||||
void run_forces(const yaml_event_t &event);
|
||||
void run_pos(const yaml_event_t &event);
|
||||
void run_vel(const yaml_event_t &event);
|
||||
void pair_style(const yaml_event_t &event);
|
||||
void pair_coeff(const yaml_event_t &event);
|
||||
void bond_style(const yaml_event_t &event);
|
||||
@ -49,6 +51,8 @@ public:
|
||||
void run_coul(const yaml_event_t &event);
|
||||
void init_energy(const yaml_event_t &event);
|
||||
void run_energy(const yaml_event_t &event);
|
||||
void global_scalar(const yaml_event_t &event);
|
||||
void global_vector(const yaml_event_t &event);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@ -29,12 +29,14 @@ TEST(ErrorStats, test)
|
||||
ASSERT_EQ(out.str(), "Average: 5.800e-01 StdDev: 7.305e-01 MaxErr: 2.000e+00 @ item: 3.0");
|
||||
|
||||
stats.reset();
|
||||
ASSERT_EQ(stats.has_data(), false);
|
||||
ASSERT_DOUBLE_EQ(stats.avg(), 0.0);
|
||||
ASSERT_DOUBLE_EQ(stats.dev(), 0.0);
|
||||
ASSERT_DOUBLE_EQ(stats.max(), 0.0);
|
||||
ASSERT_EQ(stats.idx(), -1);
|
||||
|
||||
stats.add(1.0);
|
||||
ASSERT_EQ(stats.has_data(), true);
|
||||
ASSERT_DOUBLE_EQ(stats.avg(), 1.0);
|
||||
ASSERT_DOUBLE_EQ(stats.dev(), 0.0);
|
||||
ASSERT_DOUBLE_EQ(stats.max(), 1.0);
|
||||
|
||||
1166
unittest/force-styles/test_fix_timestep.cpp
Normal file
1166
unittest/force-styles/test_fix_timestep.cpp
Normal file
File diff suppressed because it is too large
Load Diff
@ -102,13 +102,16 @@ int main(int argc, char **argv)
|
||||
if (strcmp(argv[iarg], "-g") == 0) {
|
||||
if (iarg + 1 < argc) {
|
||||
generate_yaml_file(argv[iarg + 1], test_config);
|
||||
MPI_Finalize();
|
||||
return 0;
|
||||
} else {
|
||||
usage(std::cerr, argv[0]);
|
||||
MPI_Finalize();
|
||||
return 1;
|
||||
}
|
||||
} else if (strcmp(argv[iarg], "-u") == 0) {
|
||||
generate_yaml_file(argv[1], test_config);
|
||||
MPI_Finalize();
|
||||
return 0;
|
||||
} else if (strcmp(argv[iarg], "-d") == 0) {
|
||||
if (iarg + 1 < argc) {
|
||||
@ -116,6 +119,7 @@ int main(int argc, char **argv)
|
||||
iarg += 2;
|
||||
} else {
|
||||
usage(std::cerr, argv[0]);
|
||||
MPI_Finalize();
|
||||
return 1;
|
||||
}
|
||||
} else if (strcmp(argv[iarg], "-s") == 0) {
|
||||
@ -127,6 +131,7 @@ int main(int argc, char **argv)
|
||||
} else {
|
||||
std::cerr << "unknown option: " << argv[iarg] << "\n\n";
|
||||
usage(std::cerr, argv[0]);
|
||||
MPI_Finalize();
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1107,8 +1107,7 @@ TEST(PairStyle, single)
|
||||
(test_config.pair_style.substr(0, 14) == "yukawa/colloid") ||
|
||||
(test_config.pair_style.substr(0, 3) == "eam") ||
|
||||
((test_config.pair_style.substr(0, 6) == "hybrid") &&
|
||||
(test_config.pair_style.find("eam") != std::string::npos))
|
||||
) {
|
||||
(test_config.pair_style.find("eam") != std::string::npos))) {
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Fri Aug 7 16:11:57 202
|
||||
epsilon: 1e-14
|
||||
epsilon: 2e-14
|
||||
prerequisites: ! |
|
||||
pair edip
|
||||
pre_commands: ! |
|
||||
|
||||
77
unittest/force-styles/tests/fix-timestep-addforce-const.yaml
Normal file
77
unittest/force-styles/tests/fix-timestep-addforce-const.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Tue Aug 11 20:56:35 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix addforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solute addforce 0.0 -0.1 0.1
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 1.48901835738129
|
||||
global_vector: ! |-
|
||||
3 0.030822392996626036 0.026014193882019754 -0.017708991389909556
|
||||
run_pos: ! |2
|
||||
1 -2.7045575291334861e-01 2.4912098953869757e+00 -1.6695239815574214e-01
|
||||
2 3.1004076900710170e-01 2.9612149597462425e+00 -8.5464329005027972e-01
|
||||
3 -7.0398549308743119e-01 1.2305439518786667e+00 -6.2776812583732400e-01
|
||||
4 -1.5818160726875390e+00 1.4837199951274893e+00 -1.2538503621778578e+00
|
||||
5 -9.0719748669903200e-01 9.2650033697311973e-01 3.9956266031649879e-01
|
||||
6 2.4831714249110262e-01 2.8312325631591767e-01 -1.2314165454625041e+00
|
||||
7 3.4143527198959711e-01 -2.2651747674360529e-02 -2.5292238033565768e+00
|
||||
8 1.1743553514271237e+00 -4.8863828453992741e-01 -6.3782817835070349e-01
|
||||
9 1.3800522445502728e+00 -2.5276822789361231e-01 2.8356018210481976e-01
|
||||
10 2.0510765111429961e+00 -1.4604133270429198e+00 -9.8323043580441027e-01
|
||||
11 1.7878031588883598e+00 -1.9922071845945071e+00 -1.8890394822792633e+00
|
||||
12 3.0063007413447411e+00 -4.9014063242955885e-01 -1.6231827019640992e+00
|
||||
13 4.0515402229636264e+00 -8.9204090546353654e-01 -1.6399797487882732e+00
|
||||
14 2.6066963018347171e+00 -4.1791325385826189e-01 -2.6633797762015425e+00
|
||||
15 2.9695287113240152e+00 5.5420546275525007e-01 -1.2341814098635149e+00
|
||||
16 2.6747030089515893e+00 -2.4124189004358674e+00 -2.3428869709464669e-02
|
||||
17 2.2153577487661584e+00 -2.0898037210104183e+00 1.1963203850079958e+00
|
||||
18 2.1369701704121455e+00 3.0158507413641966e+00 -3.5179348337229994e+00
|
||||
19 1.5355837136088100e+00 2.6255292355377717e+00 -4.2353987779882338e+00
|
||||
20 2.7727573005679371e+00 3.6923910449611110e+00 -3.9330842459134390e+00
|
||||
21 4.9040128073204006e+00 -4.0752348172958719e+00 -3.6210314709889815e+00
|
||||
22 4.3582355554440877e+00 -4.2126119427287128e+00 -4.4612844196313990e+00
|
||||
23 5.7439382849307599e+00 -3.5821957939275113e+00 -3.8766361295935736e+00
|
||||
24 2.0689243582419619e+00 3.1513346907267743e+00 3.1550389754827148e+00
|
||||
25 1.3045351331489012e+00 3.2665125705839713e+00 2.5111855257429738e+00
|
||||
26 2.5809237402711087e+00 4.0117602605482601e+00 3.2212060529089812e+00
|
||||
27 -1.9611343130352876e+00 -4.3563411931356626e+00 2.1098293115521889e+00
|
||||
28 -2.7473562684513193e+00 -4.0200819932379153e+00 1.5830052163433885e+00
|
||||
29 -1.3126000191359226e+00 -3.5962518039482334e+00 2.2746342468737333e+00
|
||||
run_vel: ! |2
|
||||
1 8.1702613218438691e-03 1.6510191351429417e-02 4.7964973237771503e-03
|
||||
2 5.4511084170875343e-03 5.1590481528437813e-03 -1.4175058774793692e-03
|
||||
3 -8.2297881733875439e-03 -1.2933678261753652e-02 -4.0910944229037285e-03
|
||||
4 -3.7701876602396953e-03 -6.5929809185369939e-03 -1.0979051123824390e-03
|
||||
5 -1.1021655940056645e-02 -9.9111987493572112e-03 -2.8208515585563172e-03
|
||||
6 -3.9676769272842236e-02 4.6810118626188314e-02 3.7155184099431124e-02
|
||||
7 9.1033245554758080e-04 -1.0133704610200299e-02 -5.1562858164992204e-02
|
||||
8 7.9067086761695892e-03 -3.3567238353401636e-03 3.4563427326757518e-02
|
||||
9 1.5640463507800002e-03 3.7153745906232053e-03 1.5067137863525135e-02
|
||||
10 2.9201431684716742e-02 -2.9256524162078218e-02 -1.5011015513636336e-02
|
||||
11 -4.7836707031183607e-03 -3.7689744526784260e-03 -2.3257693833597559e-03
|
||||
12 2.2697215661243897e-03 -3.5503408953511771e-04 -3.0568221042131718e-03
|
||||
13 2.7530266001101656e-03 5.7964078805919205e-03 -7.7394765650209171e-04
|
||||
14 3.5245514557562165e-03 -5.8145427341994562e-03 -3.9275617105511392e-03
|
||||
15 -1.8548103902428440e-03 -5.8759259808655083e-03 6.3145508812191310e-03
|
||||
16 1.8681562217261326e-02 -1.3269471066222347e-02 -4.5631826406699355e-02
|
||||
17 -1.2896316924809444e-02 9.7475788915801498e-03 3.7301887298077194e-02
|
||||
18 -8.0065794732626385e-04 -8.6270472984577718e-04 -1.4483040728194251e-03
|
||||
19 1.2452390837669909e-03 -2.5061097114590261e-03 7.2998631002926129e-03
|
||||
20 3.5930060230919166e-03 3.6938860311325015e-03 3.2322732685912069e-03
|
||||
21 -1.4689220371368486e-03 -2.7352129777820513e-04 7.0581624254054305e-04
|
||||
22 -7.0694199254559926e-03 -4.2577148925067674e-03 2.8079117615819173e-04
|
||||
23 6.0446963117369709e-03 -1.4000131614987045e-03 2.5819754847190117e-03
|
||||
24 3.1926367840560363e-04 -9.9445664816168633e-04 1.4999996925784762e-04
|
||||
25 1.3789754450351514e-04 -4.4335894890997355e-03 -8.1808136802931375e-04
|
||||
26 2.0485904034793470e-03 2.7813358633281375e-03 4.3245727149043870e-03
|
||||
27 4.5604120382313504e-04 -1.0305523020532397e-03 2.1188058344304351e-04
|
||||
28 -6.2544520861381259e-03 1.4127711176493136e-03 -1.8429821884921316e-03
|
||||
29 6.4110631547740983e-04 3.1273432720868841e-03 3.7253671104628787e-03
|
||||
...
|
||||
@ -0,0 +1,82 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Tue Aug 11 20:56:35 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix addforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix init all store/state 0 x y z
|
||||
variable xforce delete
|
||||
variable xforce atom f_init[1]
|
||||
variable zforce delete
|
||||
variable zforce equal 0.1*step/10.0
|
||||
fix move all nve
|
||||
fix test solute addforce v_xforce 0.0 v_zforce
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: -66.6128081721324
|
||||
global_vector: ! |-
|
||||
3 0.030822805860552194 0.026012717110660333 -0.017710664092739137
|
||||
run_pos: ! |2
|
||||
1 -2.7047214228789879e-01 2.4912159473897288e+00 -1.6695741351125751e-01
|
||||
2 3.1010217675350321e-01 2.9612343643897283e+00 -8.5465678502037923e-01
|
||||
3 -7.0403575539675045e-01 1.2305513713119018e+00 -6.2777371590783770e-01
|
||||
4 -1.5821400298238728e+00 1.4837402879631465e+00 -1.2538644175974110e+00
|
||||
5 -9.0738248321725767e-01 9.2652118661051119e-01 3.9954717998547740e-01
|
||||
6 2.4833938838692704e-01 2.8312848343353764e-01 -1.2314198266861847e+00
|
||||
7 3.4145305574459789e-01 -2.2646551615904693e-02 -2.5292277033981856e+00
|
||||
8 1.1744251519295958e+00 -4.8863301930795239e-01 -6.3783420180106931e-01
|
||||
9 1.3803393322923716e+00 -2.5274719088138620e-01 2.8354262280984910e-01
|
||||
10 2.0512157806659483e+00 -1.4604034995894550e+00 -9.8323457702970984e-01
|
||||
11 1.7881766053556223e+00 -1.9921867592459330e+00 -1.8890557966324570e+00
|
||||
12 3.0065163851107513e+00 -4.9013454995145816e-01 -1.6231872062008903e+00
|
||||
13 4.0523716162518593e+00 -8.9201902994109461e-01 -1.6399944550397565e+00
|
||||
14 2.6072370808739733e+00 -4.1789116991871833e-01 -2.6633963232657543e+00
|
||||
15 2.9701454639399292e+00 5.5422639267898544e-01 -1.2341975484787577e+00
|
||||
16 2.6748871049483789e+00 -2.4124111330493521e+00 -2.3431784517031026e-02
|
||||
17 2.2154747990656891e+00 -2.0897989887607591e+00 1.1963148502274976e+00
|
||||
18 2.1369701704176829e+00 3.0158507413681335e+00 -3.5179348337252407e+00
|
||||
19 1.5355837136089958e+00 2.6255292355383033e+00 -4.2353987779886255e+00
|
||||
20 2.7727573005681436e+00 3.6923910449611030e+00 -3.9330842459134483e+00
|
||||
21 4.9040128073163958e+00 -4.0752348172839117e+00 -3.6210314709779454e+00
|
||||
22 4.3582355554441445e+00 -4.2126119427283166e+00 -4.4612844196308510e+00
|
||||
23 5.7439382849302527e+00 -3.5821957939267821e+00 -3.8766361295928178e+00
|
||||
24 2.0689243582437542e+00 3.1513346907275186e+00 3.1550389754841301e+00
|
||||
25 1.3045351331496602e+00 3.2665125705847990e+00 2.5111855257446942e+00
|
||||
26 2.5809237402712069e+00 4.0117602605483258e+00 3.2212060529090598e+00
|
||||
27 -1.9611343130422572e+00 -4.3563411931406684e+00 2.1098293115555511e+00
|
||||
28 -2.7473562684515755e+00 -4.0200819932380565e+00 1.5830052163434851e+00
|
||||
29 -1.3126000191366660e+00 -3.5962518039487934e+00 2.2746342468743648e+00
|
||||
run_vel: ! |2
|
||||
1 8.1542005804048114e-03 1.6516352657195144e-02 4.7916994861873716e-03
|
||||
2 5.5108616996518527e-03 5.1769592855304752e-03 -1.4262044196006701e-03
|
||||
3 -8.2819560524694975e-03 -1.2925874484803790e-02 -4.0962172584282129e-03
|
||||
4 -4.0886380039043026e-03 -6.5733036630979845e-03 -1.1077208107759873e-03
|
||||
5 -1.1204698339013554e-02 -9.8903762469767197e-03 -2.8335724171420786e-03
|
||||
6 -3.9653324695987140e-02 4.6814090441761887e-02 3.7154219827738325e-02
|
||||
7 9.2811228899244145e-04 -1.0128521447666933e-02 -5.1566014310509153e-02
|
||||
8 7.9768414397017682e-03 -3.3521215541620886e-03 3.4557180732453542e-02
|
||||
9 1.8506084396989573e-03 3.7365307043657862e-03 1.5049937691527137e-02
|
||||
10 2.9339781785645530e-02 -2.9244335397845489e-02 -1.5013285041501756e-02
|
||||
11 -4.4111732898708574e-03 -3.7490441708152595e-03 -2.3402341830182269e-03
|
||||
12 2.4919774686993339e-03 -3.4986602016114646e-04 -3.0596868750942985e-03
|
||||
13 3.5708757570142549e-03 5.8192695094192127e-03 -7.8509643584213180e-04
|
||||
14 4.0624997491302594e-03 -5.7912127152414828e-03 -3.9424433676611033e-03
|
||||
15 -1.2427000878928462e-03 -5.8549223934944352e-03 6.3005021988472203e-03
|
||||
16 1.8865114672276220e-02 -1.3261139374878017e-02 -4.5632510336419303e-02
|
||||
17 -1.2778996290317002e-02 9.7520044246185329e-03 3.7296098445722708e-02
|
||||
18 -8.0065793587999099e-04 -8.6270472146121331e-04 -1.4483040775306573e-03
|
||||
19 1.2452390841875935e-03 -2.5061097103150493e-03 7.2998630994791933e-03
|
||||
20 3.5930060235755922e-03 3.6938860311851785e-03 3.2322732685174278e-03
|
||||
21 -1.4689220453590402e-03 -2.7352127317486851e-04 7.0581626525379880e-04
|
||||
22 -7.0694199252635138e-03 -4.2577148916858000e-03 2.8079117743316296e-04
|
||||
23 6.0446963107027478e-03 -1.4000131600045436e-03 2.5819754862959378e-03
|
||||
24 3.1926368204184148e-04 -9.9445664667548433e-04 1.4999997209784617e-04
|
||||
25 1.3789754604908935e-04 -4.4335894874218615e-03 -8.1808136451897351e-04
|
||||
26 2.0485904036966728e-03 2.7813358634892773e-03 4.3245727150655168e-03
|
||||
27 4.5604118959923195e-04 -1.0305523122762120e-03 2.1188059030274769e-04
|
||||
28 -6.2544520866959210e-03 1.4127711173635808e-03 -1.8429821883176730e-03
|
||||
29 6.4110631389697711e-04 3.1273432708352981e-03 3.7253671117315453e-03
|
||||
...
|
||||
76
unittest/force-styles/tests/fix-timestep-aveforce-const.yaml
Normal file
76
unittest/force-styles/tests/fix-timestep-aveforce-const.yaml
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Tue Aug 11 20:59:48 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix aveforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solute aveforce 0.0 -0.1 0.1
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_vector: ! |-
|
||||
3 0.030693239277496787 0.026836713504508225 -0.017872771454378267
|
||||
run_pos: ! |2
|
||||
1 -2.7837937276378577e-01 2.4738323337395633e+00 -1.7244628118937513e-01
|
||||
2 3.0739712238693778e-01 2.9607606438663985e+00 -8.4971558628080046e-01
|
||||
3 -6.9690101126084858e-01 1.2472621905952943e+00 -6.2300348438124675e-01
|
||||
4 -1.5790176115308630e+00 1.4890051885382072e+00 -1.2569330199852327e+00
|
||||
5 -8.9737740636582297e-01 9.3716922702553496e-01 4.0243602458027911e-01
|
||||
6 2.9350792503004042e-01 2.2973704675580464e-01 -1.2827110266930783e+00
|
||||
7 3.3997804713002810e-01 -1.0668179410931006e-02 -2.4648504997159280e+00
|
||||
8 1.1649000306414594e+00 -4.8538782401639990e-01 -6.7628963324595071e-01
|
||||
9 1.3802414668448064e+00 -2.5900562603021171e-01 2.7102062739419147e-01
|
||||
10 2.0194286609797985e+00 -1.4274129376624451e+00 -9.6779510337284758e-01
|
||||
11 1.7922388743932793e+00 -1.9901831169119615e+00 -1.8898772827854291e+00
|
||||
12 3.0051950803427370e+00 -4.9053937459745156e-01 -1.6214531896525444e+00
|
||||
13 4.0528786674689306e+00 -8.9433183344016831e-01 -1.6399905570763349e+00
|
||||
14 2.6030389141568233e+00 -4.1604937323184987e-01 -2.6632873866075890e+00
|
||||
15 2.9669715603426763e+00 5.5696161645207065e-01 -1.2373368321417231e+00
|
||||
16 2.6515621187465719e+00 -2.3967182309150830e+00 3.5904361799912736e-02
|
||||
17 2.2323104172823971e+00 -2.1015643262334032e+00 1.1508699165079972e+00
|
||||
18 2.1369701683126636e+00 3.0158507352292498e+00 -3.5179348302759084e+00
|
||||
19 1.5355837134891335e+00 2.6255292349555996e+00 -4.2353987775907820e+00
|
||||
20 2.7727573004960764e+00 3.6923910448057331e+00 -3.9330842458523567e+00
|
||||
21 4.9040128097611282e+00 -4.0752348192998742e+00 -3.6210314741040888e+00
|
||||
22 4.3582355555035486e+00 -4.2126119428105140e+00 -4.4612844198387114e+00
|
||||
23 5.7439382850855170e+00 -3.5821957939653362e+00 -3.8766361297558971e+00
|
||||
24 2.0689243589260014e+00 3.1513346914908205e+00 3.1550389767665203e+00
|
||||
25 1.3045351340666116e+00 3.2665125708708889e+00 2.5111855275754800e+00
|
||||
26 2.5809237403634482e+00 4.0117602606068141e+00 3.2212060530163864e+00
|
||||
27 -1.9611343134182779e+00 -4.3563411935660996e+00 2.1098293111593480e+00
|
||||
28 -2.7473562684449138e+00 -4.0200819932443128e+00 1.5830052163349162e+00
|
||||
29 -1.3126000190352287e+00 -3.5962518039727378e+00 2.2746342468394127e+00
|
||||
run_vel: ! |2
|
||||
1 7.7878588734526198e-04 5.8382345680427130e-04 -2.1588360870901697e-04
|
||||
2 2.7133298635754447e-03 4.6080941432587817e-03 3.6012143490662431e-03
|
||||
3 -1.2735533433080959e-03 1.6040104178824128e-03 -3.2928787663304100e-04
|
||||
4 -9.2790908405729388e-04 -1.2743370998098266e-03 -4.0998381156616033e-03
|
||||
5 -1.1797079389975749e-03 7.3369545190079568e-04 8.9682557646519266e-05
|
||||
6 -3.0901428918666851e-04 1.2686815717087763e-03 8.0263701588449308e-04
|
||||
7 -1.1028454231743601e-04 -7.7279598321444340e-04 -7.6700101339104750e-04
|
||||
8 3.9071065119356116e-04 -8.2032217860919109e-04 1.5725797910453806e-04
|
||||
9 1.2479299632287711e-03 -2.6813940130008974e-03 1.1324196703928796e-03
|
||||
10 4.5021559737281377e-04 4.8844497171634344e-04 -2.2646836122846916e-04
|
||||
11 -3.6939982362589797e-04 -1.5494557630536987e-03 -2.8969796085021034e-03
|
||||
12 1.0852092126307005e-03 -6.5651598379105566e-04 -1.2902212798795269e-03
|
||||
13 4.0758327867858645e-03 3.4838016716369673e-03 -7.6258549719693985e-04
|
||||
14 -1.3799533732466697e-04 -4.0861534316170862e-03 -3.9126867377128425e-03
|
||||
15 -4.3297938711093853e-03 -3.2008147343211384e-03 3.2244512840176650e-03
|
||||
16 -9.6589991406029584e-05 -5.0702273154864109e-04 1.5014598698974305e-03
|
||||
17 6.5701621273287663e-04 3.6121026772938211e-04 8.4012943587149819e-04
|
||||
18 -8.0066194144632968e-04 -8.6271665406919022e-04 -1.4482973852517659e-03
|
||||
19 1.2452388413347042e-03 -2.5061108560376941e-03 7.2998638677115694e-03
|
||||
20 3.5930058301559932e-03 3.6938856643002412e-03 3.2322734436995241e-03
|
||||
21 -1.4689171694767468e-03 -2.7352531122827996e-04 7.0581004752321775e-04
|
||||
22 -7.0694198156340390e-03 -4.2577150557873162e-03 2.8079073381937999e-04
|
||||
23 6.0446966473114254e-03 -1.4000132185293601e-03 2.5819751444891522e-03
|
||||
24 3.1926504097853274e-04 -9.9445515850083571e-04 1.5000252605154639e-04
|
||||
25 1.3789938296094050e-04 -4.4335889216404701e-03 -8.1807768663880035e-04
|
||||
26 2.0485906001141111e-03 2.7813359981121301e-03 4.3245729315533402e-03
|
||||
27 4.5604045866279167e-04 -1.0305531425500631e-03 2.1187980949232823e-04
|
||||
28 -6.2544520799773665e-03 1.4127711082282343e-03 -1.8429822100198981e-03
|
||||
29 6.4110649930657559e-04 3.1273432105699108e-03 3.7253670414334056e-03
|
||||
...
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Tue Aug 11 20:59:48 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix aveforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix init all store/state 0 x y z
|
||||
variable xforce delete
|
||||
# variable xforce atom f_init[1]
|
||||
variable zforce delete
|
||||
variable zforce equal 0.1*step/10.0
|
||||
fix move all nve
|
||||
fix test solute aveforce 0.0 0.0 v_zforce
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_vector: ! |-
|
||||
3 0.030693295891580874 0.026836837377516076 -0.017872935896505737
|
||||
run_pos: ! |2
|
||||
1 -2.7837937276374769e-01 2.4738383080233710e+00 -1.7245068722373783e-01
|
||||
2 3.0739712238707101e-01 2.9607815224227170e+00 -8.4973098421627558e-01
|
||||
3 -6.9690101126080417e-01 1.2472691577163619e+00 -6.2300862263309786e-01
|
||||
4 -1.5790176115307302e+00 1.4890260670945250e+00 -1.2569484179207073e+00
|
||||
5 -8.9737740636568974e-01 9.3719010558185345e-01 4.0242062664480416e-01
|
||||
6 2.9350792503008483e-01 2.2974401387687254e-01 -1.2827161649449292e+00
|
||||
7 3.3997804713006152e-01 -1.0662949214735505e-02 -2.4648543569856689e+00
|
||||
8 1.1649000306414976e+00 -4.8538184973259202e-01 -6.7629403928031329e-01
|
||||
9 1.3802414668449392e+00 -2.5898474747389350e-01 2.7100522945871652e-01
|
||||
10 2.0194286609798424e+00 -1.4274059705413773e+00 -9.6780024162469869e-01
|
||||
11 1.7922388743934128e+00 -1.9901622383556437e+00 -1.8898926807209038e+00
|
||||
12 3.0051950803427814e+00 -4.9053240747638371e-01 -1.6214583279043955e+00
|
||||
13 4.0528786674690629e+00 -8.9431095488385026e-01 -1.6400059550118105e+00
|
||||
14 2.6030389141569561e+00 -4.1602849467553166e-01 -2.6633027845430655e+00
|
||||
15 2.9669715603428100e+00 5.5698249500838870e-01 -1.2373522300771980e+00
|
||||
16 2.6515621187466172e+00 -2.3967112637940153e+00 3.5899223548061639e-02
|
||||
17 2.2323104172824300e+00 -2.1015590960372079e+00 1.1508660592382556e+00
|
||||
18 2.1369701683121547e+00 3.0158507352282142e+00 -3.5179348302744962e+00
|
||||
19 1.5355837134890704e+00 2.6255292349554118e+00 -4.2353987775904800e+00
|
||||
20 2.7727573004960222e+00 3.6923910448056452e+00 -3.9330842458522732e+00
|
||||
21 4.9040128097612312e+00 -4.0752348192998804e+00 -3.6210314741043286e+00
|
||||
22 4.3582355555035486e+00 -4.2126119428105113e+00 -4.4612844198387211e+00
|
||||
23 5.7439382850855214e+00 -3.5821957939653308e+00 -3.8766361297559078e+00
|
||||
24 2.0689243589262341e+00 3.1513346914910820e+00 3.1550389767665998e+00
|
||||
25 1.3045351340668496e+00 3.2665125708711558e+00 2.5111855275757544e+00
|
||||
26 2.5809237403634615e+00 4.0117602606068328e+00 3.2212060530163891e+00
|
||||
27 -1.9611343134186865e+00 -4.3563411935663874e+00 2.1098293111595283e+00
|
||||
28 -2.7473562684449337e+00 -4.0200819932443297e+00 1.5830052163349233e+00
|
||||
29 -1.3126000190352873e+00 -3.5962518039727915e+00 2.2746342468394607e+00
|
||||
run_vel: ! |2
|
||||
1 7.7878588741877761e-04 5.8979774068710158e-04 -2.1946817916036033e-04
|
||||
2 2.7133298638323611e-03 4.6289726998393786e-03 3.5886872146927650e-03
|
||||
3 -1.2735533432223637e-03 1.6109775390378514e-03 -3.3346814946816518e-04
|
||||
4 -9.2790908380037786e-04 -1.2534585432292294e-03 -4.1123652500350801e-03
|
||||
5 -1.1797079387406584e-03 7.5457400848139206e-04 7.7155423273043028e-05
|
||||
6 -3.0901428910093626e-04 1.2756486928642149e-03 7.9845674304936847e-04
|
||||
7 -1.1028454225307708e-04 -7.6756578695323120e-04 -7.7013913125426926e-04
|
||||
8 3.9071065126707630e-04 -8.1434789472636080e-04 1.5367340865319470e-04
|
||||
9 1.2479299634856876e-03 -2.6605154564203013e-03 1.1198925360194041e-03
|
||||
10 4.5021559745854603e-04 4.9541209287178283e-04 -2.3064863406359372e-04
|
||||
11 -3.6939982336898174e-04 -1.5285772064731016e-03 -2.9095067428755814e-03
|
||||
12 1.0852092127164327e-03 -6.4954886263561627e-04 -1.2944015527146522e-03
|
||||
13 4.0758327870427770e-03 3.5046802282175634e-03 -7.7511263157041598e-04
|
||||
14 -1.3799533706775074e-04 -4.0652748750364892e-03 -3.9252138720863193e-03
|
||||
15 -4.3297938708524728e-03 -3.1799361777405423e-03 3.2119241496441869e-03
|
||||
16 -9.6589991320297327e-05 -5.0005561039320170e-04 1.4972795970623052e-03
|
||||
17 6.5701621279723595e-04 3.6644046399059415e-04 8.3699131800827643e-04
|
||||
18 -8.0066194243028337e-04 -8.6271665609198686e-04 -1.4482973824143013e-03
|
||||
19 1.2452388412111663e-03 -2.5061108564126315e-03 7.2998638683177165e-03
|
||||
20 3.5930058300387754e-03 3.6938856641123463e-03 3.2322734438806778e-03
|
||||
21 -1.4689171692235884e-03 -2.7352531129250528e-04 7.0581004700135796e-04
|
||||
22 -7.0694198156331864e-03 -4.2577150557810617e-03 2.8079073379265798e-04
|
||||
23 6.0446966473247238e-03 -1.4000132185192382e-03 2.5819751444644172e-03
|
||||
24 3.1926504141381389e-04 -9.9445515800801552e-04 1.5000252615930676e-04
|
||||
25 1.3789938340469859e-04 -4.4335889211184667e-03 -8.1807768613931969e-04
|
||||
26 2.0485906001419412e-03 2.7813359981542908e-03 4.3245729315573517e-03
|
||||
27 4.5604045784400024e-04 -1.0305531431206094e-03 2.1187980985975486e-04
|
||||
28 -6.2544520800211943e-03 1.4127711081968837e-03 -1.8429822100071731e-03
|
||||
29 6.4110649918605221e-04 3.1273432104571073e-03 3.7253670415284034e-03
|
||||
...
|
||||
76
unittest/force-styles/tests/fix-timestep-nph.yaml
Normal file
76
unittest/force-styles/tests/fix-timestep-nph.yaml
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:15 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix nph
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix test solute nph aniso 1.0 1.0 100.0 ptemp ${t_target} fixedpoint 0.0 0.0 0.0 couple xy
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 157.324342558061
|
||||
global_vector: ! |-
|
||||
24 0.03782582730845563 0.03782582730845563 0.08149262752796986 0.028119558903421393 0.028119558903421393 0.0527171493109954 0.10922307816947409 0.0034329971508844604 -0.00019663936227634895 0.16528845193168182 0.011258118934021979 -0.0001767050030808935 0.002791882968285112 0.002791882968285112 0.002791882968285112 23.569551012162435 23.569551012162435 82.8396274600218 0.021704883273300262 0.000682207493931851 -3.9076305819928785e-05 27.145514121895616 0.12593449698077608 3.1024924904494816e-05
|
||||
run_pos: ! |2
|
||||
1 -2.8141343498751503e-01 2.5848081694761129e+00 -1.8309382462779311e-01
|
||||
2 3.1986473504266399e-01 3.0737731697045190e+00 -9.2489246315700946e-01
|
||||
3 -7.2998464504762772e-01 1.2804424876519276e+00 -6.7969392967526154e-01
|
||||
4 -1.6415656929067879e+00 1.5410659176204780e+00 -1.3589061356585619e+00
|
||||
5 -9.4141839987945009e-01 9.6312260928622617e-01 4.3149952164063876e-01
|
||||
6 2.6415890533356734e-01 2.8624440159113274e-01 -1.3488296480747550e+00
|
||||
7 3.5416346111915775e-01 -2.1111661328320430e-02 -2.7296432449044277e+00
|
||||
8 1.2182508251789601e+00 -5.0657947032688710e-01 -6.9723820755199561e-01
|
||||
9 1.4320842738420207e+00 -2.6376432187952137e-01 3.0159790810698617e-01
|
||||
10 2.1266127272937982e+00 -1.5127084519335181e+00 -1.0646648377240817e+00
|
||||
11 1.8573574669265760e+00 -2.0679562921583612e+00 -2.0473049081649988e+00
|
||||
12 3.1217679127666020e+00 -5.0914899507335143e-01 -1.7609081345676820e+00
|
||||
13 4.2065354355755371e+00 -9.2631553760989416e-01 -1.7790012641346209e+00
|
||||
14 2.7076396710997699e+00 -4.3370947134576809e-01 -2.8867456786331838e+00
|
||||
15 3.0841722167219512e+00 5.7477711565023792e-01 -1.3403005465619460e+00
|
||||
16 2.7732295651086272e+00 -2.5019412398023180e+00 -1.2531049629437518e-02
|
||||
17 2.3039296855901945e+00 -2.1725942389075730e+00 1.2873521944332929e+00
|
||||
18 2.2209181945709329e+00 3.1340605174203846e+00 -3.8146165368469349e+00
|
||||
19 1.5940839053517477e+00 2.7330459203977613e+00 -4.6079026877693652e+00
|
||||
20 2.8706743970762645e+00 3.8253359524627308e+00 -4.2724490374661599e+00
|
||||
21 5.0955905299128617e+00 -4.2322177666629912e+00 -3.9290467495728212e+00
|
||||
22 4.5371619238282097e+00 -4.3675476544652447e+00 -4.8442635919683950e+00
|
||||
23 5.9586750569923712e+00 -3.7142045077898977e+00 -4.2116343033854386e+00
|
||||
24 2.1481494772175012e+00 3.2733259597633184e+00 3.4233362567291898e+00
|
||||
25 1.3499472953187759e+00 3.4018249446242459e+00 2.7223516002167525e+00
|
||||
26 2.6802323872561153e+00 4.1666821913924030e+00 3.4861691609539811e+00
|
||||
27 -2.0369691930937757e+00 -4.5235410358449322e+00 2.2893092410133740e+00
|
||||
28 -2.8463050790215982e+00 -4.1757254084039737e+00 1.7172628242784782e+00
|
||||
29 -1.3613559351366451e+00 -3.7380527823491150e+00 2.4606149196874831e+00
|
||||
run_vel: ! |2
|
||||
1 7.6565961842874073e-03 1.3080850909322607e-02 1.8328859839073495e-03
|
||||
2 1.8760112180452771e-03 2.5666078592533645e-03 2.8834568739837534e-03
|
||||
3 -6.5747711080207339e-03 -9.4370588251179374e-03 -2.2745325502991423e-03
|
||||
4 -1.6365708631326022e-03 -6.6432508563253638e-03 1.1218655930945432e-03
|
||||
5 -1.0089064293266134e-02 -8.6234651250773377e-03 -6.6697198186027517e-03
|
||||
6 -3.1528934756543614e-02 3.7022817627879213e-02 2.3911067453951655e-02
|
||||
7 3.1550265512229187e-04 -7.1593752877010097e-03 -3.6173540781531920e-02
|
||||
8 6.3829935675636983e-03 -2.2482453728018686e-03 2.9450232742979827e-02
|
||||
9 -4.9925369016013505e-04 1.4791155501508453e-03 5.5387020254672173e-03
|
||||
10 2.4586222989032260e-02 -2.3830859019713581e-02 -1.2874036642974162e-02
|
||||
11 -3.7917501131674294e-03 -2.0254850167193911e-03 1.1948750164912784e-03
|
||||
12 1.6115495437094157e-03 -5.9368868615678578e-04 -3.2386570228979113e-03
|
||||
13 7.2282620116543097e-04 6.3326083256349738e-03 -4.8419465393188376e-04
|
||||
14 4.5044534232601069e-03 -5.6181937891921357e-03 4.8663106449362627e-04
|
||||
15 -1.7355580844387413e-03 -7.7347714440367385e-03 4.7018833249165889e-03
|
||||
16 1.2717480374927991e-02 -8.6072327917308192e-03 -3.1454404079186371e-02
|
||||
17 -8.8793881732904117e-03 6.9626162171521405e-03 2.5474225553719757e-02
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
76
unittest/force-styles/tests/fix-timestep-npt_aniso.yaml
Normal file
76
unittest/force-styles/tests/fix-timestep-npt_aniso.yaml
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:15 202
|
||||
epsilon: 2e-12
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix npt
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix test solute npt temp 50.0 ${t_target} 1.0 aniso 1.0 1.0 100.0 drag 0.01 flip no
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 343.095604765377
|
||||
global_vector: ! |-
|
||||
36 1.4104106041871818 5.544125660512262 27.686084418162828 0.7043226445808922 1.523498251021069 24.83175835256217 0.059984390584387294 0.05988360800662691 0.1289951938025459 0.033166868532850516 0.032616875459535025 0.060704622622279256 0.31065873375184067 0.031231059239067528 4.6799092315332296e-05 0.38632917344330703 0.08291085151805419 0.0013258269540048562 23.54333018009125 1.1017323658211893 5.501797245253877 4.140336471802744 0.230619999607791 61.267194471795534 0.004636061307993073 0.004636061307993073 0.004636061307993073 24.59260327356766 23.7837469738805 82.38328256037414 0.061734311712517385 0.006206257016797189 9.299946980294684e-06 111.22164657602883 5.122678041400132 0.0013099297283524043
|
||||
run_pos: ! |2
|
||||
1 -3.8261786782382412e-01 2.6468375260657648e+00 -1.1358866558857095e-01
|
||||
2 2.3224967663088947e-01 3.1501493306692314e+00 -8.8938943152906980e-01
|
||||
3 -8.3366821530992929e-01 1.3264564928719427e+00 -6.2955763294346134e-01
|
||||
4 -1.7674423343775008e+00 1.5903125087550638e+00 -1.3418236316520025e+00
|
||||
5 -1.0489074332732624e+00 1.0002052144490552e+00 5.3384648773294430e-01
|
||||
6 1.9734054221674935e-01 2.8196998144870555e-01 -1.3563766651121183e+00
|
||||
7 2.7036903761914299e-01 -4.1567476799251324e-03 -2.7533565699026079e+00
|
||||
8 1.1502376941366608e+00 -5.0399607836818472e-01 -6.6654239812129035e-01
|
||||
9 1.3718420832651086e+00 -2.5832522657100565e-01 3.9009271154782077e-01
|
||||
10 2.0700300827708897e+00 -1.5216420281788050e+00 -1.0290437306551272e+00
|
||||
11 1.8098806512866314e+00 -2.0999528745943206e+00 -2.0635742488483979e+00
|
||||
12 3.0991569266597043e+00 -5.0827058508447021e-01 -1.7640639194482484e+00
|
||||
13 4.2066420146963246e+00 -9.3856424824123064e-01 -1.7840739805923906e+00
|
||||
14 2.6759472966061608e+00 -4.2762484336365691e-01 -2.9425522595040681e+00
|
||||
15 3.0644364333931815e+00 6.0269974361945522e-01 -1.3287470376302002e+00
|
||||
16 2.7346344468565036e+00 -2.5388669048484944e+00 9.1894737650898506e-02
|
||||
17 2.2708153728006124e+00 -2.2142714421119205e+00 1.4105188628785896e+00
|
||||
18 2.1794689204201152e+00 3.2158613383317078e+00 -3.9193829765158155e+00
|
||||
19 1.5385898525445398e+00 2.8059029720471163e+00 -4.7512616199090179e+00
|
||||
20 2.8437834873955286e+00 3.9225541871873801e+00 -4.3994885211210937e+00
|
||||
21 5.1185508411243816e+00 -4.3147059611177010e+00 -4.0393800923294645e+00
|
||||
22 4.5476101464339607e+00 -4.4530540913972452e+00 -4.9991212202659039e+00
|
||||
23 6.0009735431459301e+00 -3.7851395291272194e+00 -4.3357152175955482e+00
|
||||
24 2.1050697553615834e+00 3.3582327972429447e+00 3.6706882025446852e+00
|
||||
25 1.2889831450571050e+00 3.4895976759629157e+00 2.9356014190165141e+00
|
||||
26 2.6490744553004415e+00 4.2715134208112495e+00 3.7365778579561546e+00
|
||||
27 -2.1738202136583933e+00 -4.6125265700961151e+00 2.4814920287454054e+00
|
||||
28 -3.0012899885135189e+00 -4.2569536621455875e+00 1.8816161875271611e+00
|
||||
29 -1.4830692409518882e+00 -3.8095196882276410e+00 2.6611315389212198e+00
|
||||
run_vel: ! |2
|
||||
1 3.3240330987135813e-03 4.3348472804384443e-03 -7.7000850356568598e-04
|
||||
2 -1.7788564989713377e-03 -1.3033340996862442e-03 3.3101416084626834e-03
|
||||
3 -2.0736106571327740e-03 -2.9833723016999126e-03 3.0677418793886486e-06
|
||||
4 7.7912294662807273e-04 -3.0921958393268071e-03 2.8549261268555064e-03
|
||||
5 -4.1587002273456653e-03 -3.6518175878378690e-03 -5.8605014494220939e-03
|
||||
6 -1.0673219518891219e-02 1.2095185080065048e-02 3.5954871446313933e-03
|
||||
7 -1.3016092142144198e-04 -1.5438536332060906e-03 -8.6626684342265125e-03
|
||||
8 2.0883538800072188e-03 -3.1837196665129652e-04 1.1801128542985692e-02
|
||||
9 -1.6065275717747234e-03 1.4851083434963298e-04 -2.5301349369061935e-03
|
||||
10 9.3031302344406246e-03 -8.6622025962185441e-03 -5.3718824903226719e-03
|
||||
11 -1.2019843168147525e-03 4.3918657625861092e-04 3.4618217803594302e-03
|
||||
12 1.7788144047621368e-04 -2.6878343649230967e-04 -1.5175167351688945e-03
|
||||
13 -1.8807030955883249e-03 2.7155375226017805e-03 9.8699039446766083e-05
|
||||
14 2.9038215261273626e-03 -1.7898438773840987e-03 3.8737544018497979e-03
|
||||
15 1.8059365653976903e-04 -4.3808636795798338e-03 7.4140416456126444e-04
|
||||
16 2.6156852337186408e-03 -1.2844226093444698e-03 -7.6689169374931799e-03
|
||||
17 -2.0276918149482290e-03 1.6195218336326309e-03 5.6072249357656126e-03
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
76
unittest/force-styles/tests/fix-timestep-npt_iso.yaml
Normal file
76
unittest/force-styles/tests/fix-timestep-npt_iso.yaml
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:15 202
|
||||
epsilon: 5e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix npt
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix test solute npt temp 50.0 ${t_target} 1.0 iso 1.0 1.0 100.0 dilate solute
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 394.052580100464
|
||||
global_vector: ! |-
|
||||
28 1.4984570204083703 5.727668251607705 30.006785365785095 0.755949606916964 1.5716837282414435 27.238363703562367 0.0887726458699618 0.04948138278794819 0.29647653888194264 0.027838608034509143 -1.2684933237431522e-05 0.39157825633023396 0.07798523077702334 0.0010654320610989716 25.013048177187418 1.1382060724972116 5.962968492435009 4.7695567904527465 0.24543888024081967 73.71826005814913 0.015019759138686235 164.21033059328448 0.058916016445900686 0.005532106840485039 -2.520758431847661e-06 114.264532425479 4.532095302918083 0.000845913261377488
|
||||
run_pos: ! |2
|
||||
1 -4.3742958268488863e-01 2.7290056618400449e+00 -1.3224678617732799e-01
|
||||
2 1.9597325096802809e-01 3.2478554682502239e+00 -8.7784983453020882e-01
|
||||
3 -9.0055445066945161e-01 1.3720443735149779e+00 -6.2790521499619167e-01
|
||||
4 -1.8618082723760274e+00 1.6425859645839189e+00 -1.3123637393385525e+00
|
||||
5 -1.1222490295586907e+00 1.0354194073199032e+00 4.9054165070391242e-01
|
||||
6 1.6122701010775931e-01 2.9524853587990840e-01 -1.3210758103362590e+00
|
||||
7 2.3528889757906057e-01 9.1838373111130522e-04 -2.6715530930497318e+00
|
||||
8 1.1409063387023277e+00 -5.1378072806790342e-01 -6.6432618849456482e-01
|
||||
9 1.3692157124421644e+00 -2.5986234125532803e-01 3.5327265979809219e-01
|
||||
10 2.0857438747825938e+00 -1.5585215733968054e+00 -1.0112652339689152e+00
|
||||
11 1.8196840501105118e+00 -2.1558284101161114e+00 -2.0059834257353772e+00
|
||||
12 3.1466020472087184e+00 -5.1749319691640405e-01 -1.7173626575793977e+00
|
||||
13 4.2857041987652043e+00 -9.6042463424053448e-01 -1.7370207501057697e+00
|
||||
14 2.7108342037702080e+00 -4.3438782450127089e-01 -2.8506568547646909e+00
|
||||
15 3.1109829403724394e+00 6.2580170772786126e-01 -1.2993853138717890e+00
|
||||
16 2.7719845783501800e+00 -2.6079945840011654e+00 6.2246330315527842e-02
|
||||
17 2.2935401732736445e+00 -2.2732303673933210e+00 1.3340886989414198e+00
|
||||
18 2.1384791188033843e+00 3.0177261773770208e+00 -3.5160827596876225e+00
|
||||
19 1.5349125211132961e+00 2.6315969880333707e+00 -4.2472859440220647e+00
|
||||
20 2.7641167828863153e+00 3.6833419064000221e+00 -3.9380850623312638e+00
|
||||
21 4.9064454390208301e+00 -4.0751205255383196e+00 -3.6215576073601046e+00
|
||||
22 4.3687453488627543e+00 -4.2054270536772504e+00 -4.4651491269372565e+00
|
||||
23 5.7374928154769504e+00 -3.5763355905184966e+00 -3.8820297194230728e+00
|
||||
24 2.0684115301174013e+00 3.1518221747664397e+00 3.1554242678474576e+00
|
||||
25 1.2998381073113014e+00 3.2755513587518097e+00 2.5092990173114837e+00
|
||||
26 2.5807438597688113e+00 4.0120175892854135e+00 3.2133398379059099e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 2.7344298948821458e-03 3.1581468104380935e-03 -7.1843120411167717e-04
|
||||
2 -1.7078379474947108e-03 -1.6409070859861360e-03 2.6128987225916729e-03
|
||||
3 -1.4420164647255642e-03 -1.7442912543734887e-03 -7.0745062575908337e-05
|
||||
4 1.3055902518738962e-03 -3.2440606689853393e-03 2.3536117576802057e-03
|
||||
5 -3.7768785005134814e-03 -3.4050691962219590e-03 -4.3060378047272488e-03
|
||||
6 -9.6303105059201439e-03 1.1636424089177611e-02 8.0882426998230839e-03
|
||||
7 -9.1197836178494661e-06 -2.0548971114176177e-03 -1.1561711720116066e-02
|
||||
8 2.3717342384511060e-03 -1.1724667732074462e-03 9.9981918637160709e-03
|
||||
9 -1.0596786897297246e-03 6.2180807146028599e-04 -1.9949136612792850e-04
|
||||
10 7.6866979670994649e-03 -6.4210563260423160e-03 -4.6594157108994479e-03
|
||||
11 -1.2201636757560200e-03 4.4492192830042360e-04 2.4485003896230857e-03
|
||||
12 2.6440970729963017e-04 -2.5426715254078699e-04 -9.8591736348869791e-04
|
||||
13 -2.9186187764568771e-03 2.9250796003296472e-03 -1.0409641755324341e-04
|
||||
14 2.7357332424176799e-03 -1.8075638409764203e-03 2.3417976176845772e-03
|
||||
15 2.7042452512660167e-04 -4.9830656916804491e-03 8.0004168431170792e-04
|
||||
16 3.2285718415043510e-03 -1.6540417724780236e-03 -1.0034443516953472e-02
|
||||
17 -2.5912230280785136e-03 1.9472241032175749e-03 7.5710821795849197e-03
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
77
unittest/force-styles/tests/fix-timestep-npt_tri.yaml
Normal file
77
unittest/force-styles/tests/fix-timestep-npt_tri.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:15 202
|
||||
epsilon: 5e-12
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix npt
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
change_box all triclinic
|
||||
fix test solute npt temp 50.0 ${t_target} 1.0 tri 1.0 1.0 100.0 nreset 2
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 354.174797856098
|
||||
global_vector: ! |-
|
||||
48 1.3901404465408471 5.463126417846173 27.522868094744837 0.6808509272696268 1.432899560678195 24.73621155835892 0.059175794171946315 0.058864829843401814 0.12700748296200176 0.02134537927441898 -0.006866713927713234 -0.03517153788806217 0.03214843910942283 0.03135716661218002 0.05847613666451851 0.010015733944968137 -0.004026286211139594 -0.020364872327366976 0.32458573874717506 0.03420953094338522 0.00010301961702814269 0.40071682483624077 0.09021935542363528 0.0016272628807846479 23.20496983817849 1.0856361420490914 5.469362788109317 3.86897924261614 0.20400675418492722 60.79661790199697 0.004555933286932949 0.004555933286932949 0.004555933286932949 0.0 0.0 0.0 23.105498800354294 21.982100664555755 76.44567329133054 2.242648057096569 0.36241390540377744 9.27169098501188 0.06450189547628359 0.006798140909455242 2.0472127318975922e-05 119.66012864844495 6.065599766319885 0.0019732846899264155
|
||||
run_pos: ! |2
|
||||
1 -8.2271095985417642e-01 2.8289040859356991e+00 -1.1444756137720979e-01
|
||||
2 -2.2035635832079414e-01 3.3160751622563218e+00 -8.8905665482321261e-01
|
||||
3 -1.2238603220542110e+00 1.4989718911440786e+00 -6.2960577288309949e-01
|
||||
4 -2.1611221536569811e+00 1.7480881759848010e+00 -1.3403837766858420e+00
|
||||
5 -1.4356691651007525e+00 1.1969702774741524e+00 5.3174391336542293e-01
|
||||
6 -1.5108221335914251e-01 4.4052153861184706e-01 -1.3548809313045158e+00
|
||||
7 -5.9343459000764653e-02 1.2678140836872487e-01 -2.7489180271273321e+00
|
||||
8 8.2373588231584893e-01 -3.3113650682317708e-01 -6.6671329415243719e-01
|
||||
9 1.0285358664778927e+00 -6.3178215420583328e-02 3.8810870422627808e-01
|
||||
10 1.7789213377484181e+00 -1.3532218104220428e+00 -1.0278171354490055e+00
|
||||
11 1.5477736014686165e+00 -1.9530744276614485e+00 -2.0605735545184318e+00
|
||||
12 2.7783142187942573e+00 -3.5681522115235254e-01 -1.7618063829238526e+00
|
||||
13 3.8999744941062673e+00 -7.8691757348410274e-01 -1.7815725217013947e+00
|
||||
14 2.3605564873379432e+00 -3.0049710242015149e-01 -2.9379309538662390e+00
|
||||
15 2.7016025982848415e+00 7.6160196277114700e-01 -1.3273631127257124e+00
|
||||
16 2.4717220178567558e+00 -2.3468671157596894e+00 9.1129832810088018e-02
|
||||
17 1.9885567143510166e+00 -1.9964324174322527e+00 1.4061647002816908e+00
|
||||
18 1.7437183504864624e+00 3.3191498740328864e+00 -3.9127655905861678e+00
|
||||
19 1.1235512691983933e+00 2.8925305004060426e+00 -4.7429923420674971e+00
|
||||
20 2.3860672377151531e+00 4.0152665693893148e+00 -4.3919177720148843e+00
|
||||
21 4.9453770477508119e+00 -4.2062128928889155e+00 -4.0325244237288675e+00
|
||||
22 4.3864597623851278e+00 -4.3641236143384550e+00 -4.9903597585314996e+00
|
||||
23 5.8105852095737784e+00 -3.6832694508636497e+00 -4.3282711054755429e+00
|
||||
24 1.6113221591166269e+00 3.6172003657621623e+00 3.6622337059457593e+00
|
||||
25 7.9642706990481837e-01 3.7333401645409854e+00 2.9286066111857547e+00
|
||||
26 2.1223957638352413e+00 4.5309037460235295e+00 3.7279925218535261e+00
|
||||
27 -2.3762434607634804e+00 -4.3698568738308285e+00 2.4753989625747312e+00
|
||||
28 -3.2113212683802930e+00 -4.0269614699099696e+00 1.8767143168008165e+00
|
||||
29 -1.7154699038294128e+00 -3.5639796658377056e+00 2.6546817559911258e+00
|
||||
run_vel: ! |2
|
||||
1 3.4379305599169844e-03 4.4303982887116036e-03 -6.5575090200992549e-04
|
||||
2 -1.1857500286034856e-03 -6.4830194142741920e-04 2.8991421024851778e-03
|
||||
3 -2.1154260546112497e-03 -3.3682136360151430e-03 -1.9294633718208677e-04
|
||||
4 7.6092841426322790e-04 -3.2320184833153956e-03 2.7687800582063332e-03
|
||||
5 -4.2732628342744957e-03 -4.1024661501998941e-03 -5.6627078010461117e-03
|
||||
6 -1.0456549709936754e-02 1.1983105787743460e-02 3.6784105742361638e-03
|
||||
7 -2.6132479696988121e-04 -1.3704375278698535e-03 -8.5781100824109287e-03
|
||||
8 2.8751673617313503e-03 -1.2411443046752859e-03 1.1404387868407946e-02
|
||||
9 -1.4768312187112003e-03 -7.1556281131933587e-05 -2.5861880084100675e-03
|
||||
10 7.9726344243349050e-03 -7.6603150802256759e-03 -4.9260913574675621e-03
|
||||
11 -1.3701886309654468e-03 5.8427841384912200e-04 3.5680693565126702e-03
|
||||
12 3.8071638085887614e-04 -1.2274982267917827e-04 -1.6378029597235305e-03
|
||||
13 -2.1573898217946193e-03 3.1719111017936398e-03 2.9806487190873061e-04
|
||||
14 2.7537600422888457e-03 -1.6565936767524096e-03 3.7884151775862789e-03
|
||||
15 5.5156122958171854e-04 -4.6689017429546913e-03 5.9598028358420622e-04
|
||||
16 2.2455587308391760e-03 -9.7951134916580778e-04 -7.0867451131982279e-03
|
||||
17 -1.7750442749204370e-03 1.3834451904214627e-03 5.2407088936868079e-03
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
73
unittest/force-styles/tests/fix-timestep-nve.yaml
Normal file
73
unittest/force-styles/tests/fix-timestep-nve.yaml
Normal file
@ -0,0 +1,73 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:15 202
|
||||
epsilon: 1e-14
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix nve
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix test solute nve
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_pos: ! |2
|
||||
1 -2.7045559764772636e-01 2.4912159908661540e+00 -1.6695851750890131e-01
|
||||
2 3.1004029572800829e-01 2.9612354631162883e+00 -8.5466363035055182e-01
|
||||
3 -7.0398551409567367e-01 1.2305509955796761e+00 -6.2777526927691529e-01
|
||||
4 -1.5818159336524433e+00 1.4837407818931854e+00 -1.2538710836034257e+00
|
||||
5 -9.0719763673143938e-01 9.2652103885754256e-01 3.9954210488744507e-01
|
||||
6 2.4831720509137747e-01 2.8313021474851946e-01 -1.2314233328432578e+00
|
||||
7 3.4143527679197477e-01 -2.2646550369995716e-02 -2.5292291416062129e+00
|
||||
8 1.1743552228749641e+00 -4.8863228576130058e-01 -6.3783432890943681e-01
|
||||
9 1.3800524229486879e+00 -2.5274721030864977e-01 2.8353985887494298e-01
|
||||
10 2.0510765219972789e+00 -1.4604063739897442e+00 -9.8323745066910395e-01
|
||||
11 1.7878031944038735e+00 -1.9921863272595286e+00 -1.8890602447323932e+00
|
||||
12 3.0063007040474412e+00 -4.9013350497870395e-01 -1.6231898104999232e+00
|
||||
13 4.0515402959329752e+00 -8.9202011603544384e-01 -1.6400005529743578e+00
|
||||
14 2.6066963345551839e+00 -4.1789253964855821e-01 -2.6634003608660097e+00
|
||||
15 2.9695287185765005e+00 5.5422613164855661e-01 -1.2342022021736101e+00
|
||||
16 2.6747029694779090e+00 -2.4124119054031508e+00 -2.3435746001955464e-02
|
||||
17 2.2153577785226939e+00 -2.0897985186816044e+00 1.1963150794967707e+00
|
||||
18 2.1384791188033843e+00 3.0177261773770208e+00 -3.5160827596876225e+00
|
||||
19 1.5349125211132961e+00 2.6315969880333707e+00 -4.2472859440220647e+00
|
||||
20 2.7641167828863153e+00 3.6833419064000221e+00 -3.9380850623312638e+00
|
||||
21 4.9064454390208301e+00 -4.0751205255383196e+00 -3.6215576073601046e+00
|
||||
22 4.3687453488627543e+00 -4.2054270536772504e+00 -4.4651491269372565e+00
|
||||
23 5.7374928154769504e+00 -3.5763355905184966e+00 -3.8820297194230728e+00
|
||||
24 2.0684115301174013e+00 3.1518221747664397e+00 3.1554242678474576e+00
|
||||
25 1.2998381073113014e+00 3.2755513587518097e+00 2.5092990173114837e+00
|
||||
26 2.5807438597688113e+00 4.0120175892854135e+00 3.2133398379059099e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 8.1705745750215355e-03 1.6516406624177568e-02 4.7902269490513868e-03
|
||||
2 5.4501493264497653e-03 5.1791699524041815e-03 -1.4372931188098787e-03
|
||||
3 -8.2298293869533436e-03 -1.2926551603583580e-02 -4.0984178763235155e-03
|
||||
4 -3.7699042632974781e-03 -6.5722892095585973e-03 -1.1184640307556036e-03
|
||||
5 -1.1021961013432620e-02 -9.8906780949598663e-03 -2.8410737767347810e-03
|
||||
6 -3.9676663388061570e-02 4.6817061143308802e-02 3.7148492456495326e-02
|
||||
7 9.1034010711748495e-04 -1.0128523385947431e-02 -5.1568251957150528e-02
|
||||
8 7.9064711492041421e-03 -3.3507255912560113e-03 3.4557098774889522e-02
|
||||
9 1.5644176103896980e-03 3.7365546026078196e-03 1.5047408831488810e-02
|
||||
10 2.9201446724707314e-02 -2.9249578666046938e-02 -1.5018077196173912e-02
|
||||
11 -4.7835962161678980e-03 -3.7481384556453390e-03 -2.3464103658842415e-03
|
||||
12 2.2696453478564904e-03 -3.4774151000032896e-04 -3.0640766808544008e-03
|
||||
13 2.7531740679274997e-03 5.8171062119749114e-03 -7.9467451203005246e-04
|
||||
14 3.5246182394862565e-03 -5.7939995493321060e-03 -3.9478430939281998e-03
|
||||
15 -1.8547943547235282e-03 -5.8554729996935272e-03 6.2938485237843443e-03
|
||||
16 1.8681499891767241e-02 -1.3262466107722061e-02 -4.5638651214503466e-02
|
||||
17 -1.2896270000483427e-02 9.7527665388161232e-03 3.7296535433762990e-02
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
76
unittest/force-styles/tests/fix-timestep-nvt.yaml
Normal file
76
unittest/force-styles/tests/fix-timestep-nvt.yaml
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:15 202
|
||||
epsilon: 5e-14
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix nvt
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix test solute nvt temp 50.0 ${t_target} 1.0 mtk no tchain 1
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 161.082193606418
|
||||
global_vector: ! |-
|
||||
4 6.3653490700601365 4.587389017747112 60.7164687353389 100.36572487107922
|
||||
run_pos: ! |2
|
||||
1 -2.7696909697757566e-01 2.4783666916735787e+00 -1.7050542371974803e-01
|
||||
2 3.0475247358534557e-01 2.9550852133930978e+00 -8.5567914575251569e-01
|
||||
3 -6.9739816438327773e-01 1.2400856795511155e+00 -6.2409863799710530e-01
|
||||
4 -1.5786703850642763e+00 1.4890498729340644e+00 -1.2508581595004804e+00
|
||||
5 -8.9877759710952576e-01 9.3309797898528990e-01 4.0148904545172498e-01
|
||||
6 2.7994521821983220e-01 2.4474061566700642e-01 -1.2668688023898995e+00
|
||||
7 3.4059860024034672e-01 -1.3530530648175014e-02 -2.4844099316976083e+00
|
||||
8 1.1674170384630289e+00 -4.8540349079508893e-01 -6.6471919231675081e-01
|
||||
9 1.3785602765851699e+00 -2.5381883183281273e-01 2.7313723672550161e-01
|
||||
10 2.0284846213605978e+00 -1.4380861607528830e+00 -9.7211494825708300e-01
|
||||
11 1.7913946552248519e+00 -1.9888180233714230e+00 -1.8859590750369315e+00
|
||||
12 3.0041472088806827e+00 -4.8958548297015908e-01 -1.6203323200317881e+00
|
||||
13 4.0473595725538498e+00 -8.9804811680951135e-01 -1.6390213905369104e+00
|
||||
14 2.6042857752267574e+00 -4.1148107203534806e-01 -2.6584020615701607e+00
|
||||
15 2.9731795843276339e+00 5.6016006278471708e-01 -1.2404481641085223e+00
|
||||
16 2.6589894088512205e+00 -2.4010363080271988e+00 1.5175729949308553e-02
|
||||
17 2.2261096224365753e+00 -2.0982906145850206e+00 1.1642076197266931e+00
|
||||
18 2.1384791188033843e+00 3.0177261773770208e+00 -3.5160827596876225e+00
|
||||
19 1.5349125211132961e+00 2.6315969880333707e+00 -4.2472859440220647e+00
|
||||
20 2.7641167828863153e+00 3.6833419064000221e+00 -3.9380850623312638e+00
|
||||
21 4.9064454390208301e+00 -4.0751205255383196e+00 -3.6215576073601046e+00
|
||||
22 4.3687453488627543e+00 -4.2054270536772504e+00 -4.4651491269372565e+00
|
||||
23 5.7374928154769504e+00 -3.5763355905184966e+00 -3.8820297194230728e+00
|
||||
24 2.0684115301174013e+00 3.1518221747664397e+00 3.1554242678474576e+00
|
||||
25 1.2998381073113014e+00 3.2755513587518097e+00 2.5092990173114837e+00
|
||||
26 2.5807438597688113e+00 4.0120175892854135e+00 3.2133398379059099e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 7.8424070606032009e-04 1.6957423585177817e-03 5.3293987045553042e-04
|
||||
2 2.8408938974665233e-04 6.3401186822596671e-05 -5.0702412121826309e-04
|
||||
3 -7.1943682951293387e-04 -1.5812016081414803e-03 -4.2848459956300902e-04
|
||||
4 -2.9398452847843030e-04 -5.5105638181201155e-04 3.0356108858991924e-04
|
||||
5 -1.0153174695903785e-03 -1.0991397270447010e-03 -2.9745984673366986e-04
|
||||
6 -4.2616664324255076e-03 4.9166230021219599e-03 3.9281549764140266e-03
|
||||
7 1.2690465637066298e-04 -1.0201658940305772e-03 -5.4345368878308906e-03
|
||||
8 8.3338080594941018e-04 -2.8041016920393470e-04 3.6768915167210169e-03
|
||||
9 1.2557498735649483e-05 6.4724399795980240e-04 1.3767564856324000e-03
|
||||
10 3.0640515606253464e-03 -3.1769374504099761e-03 -1.5482422096535847e-03
|
||||
11 -4.5803506169263681e-04 -2.2647716135831678e-04 6.0288357252089534e-05
|
||||
12 1.2114752302890638e-04 3.5392382149094706e-05 -1.8260516713062942e-04
|
||||
13 -1.2777289076283452e-04 2.4386857088712753e-04 -2.2245290738142125e-06
|
||||
14 3.7600485089664203e-04 -1.9387476208267205e-04 -1.5847965685025904e-05
|
||||
15 2.5123165119885843e-04 -2.8708143347183168e-04 3.3015492480754400e-04
|
||||
16 2.0107337298668473e-03 -1.3643226191731759e-03 -5.0826514203549545e-03
|
||||
17 -1.4578784011733559e-03 1.0116087441418126e-03 3.9228519733530611e-03
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
@ -0,0 +1,74 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:44:09 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix press/berendsen
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix all solute nve
|
||||
fix test solute press/berendsen iso 5000.0 5000.0 10000.0
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_pos: ! |2
|
||||
1 -3.6091419640167377e-01 2.6210042442829291e+00 -1.4984543782111359e-01
|
||||
2 2.4583442254128229e-01 3.1176398944387440e+00 -8.6300444750170513e-01
|
||||
3 -8.1170826716459299e-01 1.3101828007635898e+00 -6.2713226307370373e-01
|
||||
4 -1.7336960306857696e+00 1.5686697778612544e+00 -1.2852651188809725e+00
|
||||
5 -1.0267873549947240e+00 9.8546732001318738e-01 4.4606118426580821e-01
|
||||
6 2.0034867210734220e-01 2.9097282985659234e-01 -1.2794959682827871e+00
|
||||
7 2.8299304139111126e-01 -9.8971366280871109e-03 -2.6079072079700492e+00
|
||||
8 1.1567019406452035e+00 -5.0320777137791950e-01 -6.5066789277800829e-01
|
||||
9 1.3732138945027508e+00 -2.5804705857834254e-01 3.1851554818701366e-01
|
||||
10 2.0708419798525339e+00 -1.5132911463394798e+00 -9.9967437361937339e-01
|
||||
11 1.8049815045625648e+00 -2.0813005716784030e+00 -1.9515807899323248e+00
|
||||
12 3.0834039834618219e+00 -5.0557862158481992e-01 -1.6756212406218332e+00
|
||||
13 4.1783682097723682e+00 -9.2652704672170039e-01 -1.6934491042591890e+00
|
||||
14 2.6655292547319247e+00 -4.2915649775420750e-01 -2.7647457742559025e+00
|
||||
15 3.0458718015659878e+00 5.8869699617545557e-01 -1.2691368849082085e+00
|
||||
16 2.7270813732203978e+00 -2.5185818891185647e+00 2.4266264399741999e-02
|
||||
17 2.2587656442341126e+00 -2.1904173482747842e+00 1.2714909120545990e+00
|
||||
18 2.1722236548934637e+00 3.1811222422167020e+00 -3.6651558864447722e+00
|
||||
19 1.5379398556770809e+00 2.7753418525421392e+00 -4.4335720571436505e+00
|
||||
20 2.8297017791404011e+00 3.8806130275561390e+00 -4.1086350730387107e+00
|
||||
21 5.0810595653127395e+00 -4.2726993761468854e+00 -3.7759986457351467e+00
|
||||
22 4.5159944054286365e+00 -4.4096375699551125e+00 -4.6625229101194083e+00
|
||||
23 5.9544012798554879e+00 -3.7485298730844976e+00 -4.0497269160892424e+00
|
||||
24 2.0985901295728704e+00 3.3220427620224413e+00 3.3458828955531530e+00
|
||||
25 1.2909018438727013e+00 3.4520688721361132e+00 2.6668745139627088e+00
|
||||
26 2.6369964922780786e+00 4.2260159402561364e+00 3.4067459518439538e+00
|
||||
27 -2.1362659018083896e+00 -4.5674848292640569e+00 2.2474082834952522e+00
|
||||
28 -2.9552202082294778e+00 -4.2155356436588987e+00 1.6932958531971636e+00
|
||||
29 -1.4526234281463211e+00 -3.7726615685777620e+00 2.4133434299397827e+00
|
||||
run_vel: ! |2
|
||||
1 6.8612579444768231e-03 9.3588988693932805e-03 -2.4583492777823684e-04
|
||||
2 -5.0360784274195033e-04 2.9726176692813336e-04 5.5601612371459462e-03
|
||||
3 -4.7155832907463452e-03 -5.2759387113087341e-03 -1.2616380301006356e-03
|
||||
4 9.0720438238635814e-04 -7.5770223054582126e-03 2.0478412627257941e-03
|
||||
5 -9.5789948666970045e-03 -7.8707074219574475e-03 -7.9287843977473432e-03
|
||||
6 -2.5864536864176637e-02 3.1782714744452420e-02 2.5357940964759636e-02
|
||||
7 1.7503976604491542e-04 -6.5115623482965013e-03 -3.3939736089235235e-02
|
||||
8 6.1789956534982508e-03 -3.2385611493897320e-03 2.5198707320088474e-02
|
||||
9 -1.0477317219362496e-03 8.0710832498008555e-04 3.3332742003808645e-03
|
||||
10 2.0007827220591145e-02 -1.7400965483689801e-02 -1.1413325470549929e-02
|
||||
11 -3.3990745583665129e-03 -7.3619037098941514e-04 2.4449145139565686e-03
|
||||
12 1.3760114048527200e-03 -8.1425901890779418e-04 -2.9046493957496202e-03
|
||||
13 -2.5828376034205732e-03 7.7834697286519742e-03 -6.8243437049079190e-04
|
||||
14 5.4336022535973862e-03 -6.1421574327034621e-03 1.3592225966609420e-03
|
||||
15 -1.7549740615613416e-03 -1.1133323565619430e-02 4.2071260576439420e-03
|
||||
16 1.0367443974825941e-02 -6.4589866626159186e-03 -2.8766731056347843e-02
|
||||
17 -7.5963042220266912e-03 6.0593621716489411e-03 2.3127705683585555e-02
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
77
unittest/force-styles/tests/fix-timestep-rattle_angle.yaml
Normal file
77
unittest/force-styles/tests/fix-timestep-rattle_angle.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:21 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix rattle
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solvent rattle 1.0e-5 20 4 b 5 a 1
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |-
|
||||
-6.7489444076122581e+01 -3.6466857275816793e+01 -4.1453650662488030e+01 -3.0881715538687999e+01 -2.8271646386126275e+01 1.8512924155867125e-01
|
||||
run_pos: ! |2
|
||||
1 -2.7045559935221097e-01 2.4912159904412490e+00 -1.6695851634760922e-01
|
||||
2 3.1004029578877490e-01 2.9612354630874571e+00 -8.5466363025011627e-01
|
||||
3 -7.0398551512563201e-01 1.2305509950678348e+00 -6.2777526850896104e-01
|
||||
4 -1.5818159336526965e+00 1.4837407818978032e+00 -1.2538710835933191e+00
|
||||
5 -9.0719763671886688e-01 9.2652103888784798e-01 3.9954210492830977e-01
|
||||
6 2.4831720377219527e-01 2.8313021315702186e-01 -1.2314233326160173e+00
|
||||
7 3.4143527702622734e-01 -2.2646549532188382e-02 -2.5292291427264142e+00
|
||||
8 1.1743552220275317e+00 -4.8863228684188359e-01 -6.3783432829693443e-01
|
||||
9 1.3800524229360562e+00 -2.5274721027441394e-01 2.8353985886396749e-01
|
||||
10 2.0510765212518995e+00 -1.4604063737408786e+00 -9.8323745028431875e-01
|
||||
11 1.7878031941850188e+00 -1.9921863270751916e+00 -1.8890602447198563e+00
|
||||
12 3.0063007040149974e+00 -4.9013350636226771e-01 -1.6231898103008302e+00
|
||||
13 4.0515402958586257e+00 -8.9202011560301075e-01 -1.6400005529400123e+00
|
||||
14 2.6066963345427290e+00 -4.1789253956770167e-01 -2.6634003609341543e+00
|
||||
15 2.9695287185432337e+00 5.5422613169503154e-01 -1.2342022022205887e+00
|
||||
16 2.6747029683763714e+00 -2.4124119045309693e+00 -2.3435744689915886e-02
|
||||
17 2.2153577782070029e+00 -2.0897985186673269e+00 1.1963150798970605e+00
|
||||
18 2.1373900776464936e+00 3.0170538457970628e+00 -3.5215797395725530e+00
|
||||
19 1.5430025676651555e+00 2.6303296449949269e+00 -4.2266668834718990e+00
|
||||
20 2.7636622208420851e+00 3.6827879501178424e+00 -3.9272659545237363e+00
|
||||
21 4.9052192222681876e+00 -4.0732760101811269e+00 -3.6279255237131718e+00
|
||||
22 4.3519818207040561e+00 -4.2184829355532472e+00 -4.4481958001084010e+00
|
||||
23 5.7453761098416072e+00 -3.5841442260372478e+00 -3.8622042082027339e+00
|
||||
24 2.0680414913289775e+00 3.1533722552525343e+00 3.1535500327643740e+00
|
||||
25 1.3065720083112300e+00 3.2620808683235558e+00 2.5145299517967921e+00
|
||||
26 2.5824112033661786e+00 4.0080581544027423e+00 3.2238053751629132e+00
|
||||
27 -1.9611343130357310e+00 -4.3563411931359832e+00 2.1098293115523683e+00
|
||||
28 -2.7473562684513424e+00 -4.0200819932379339e+00 1.5830052163433954e+00
|
||||
29 -1.3126000191366676e+00 -3.5962518039489830e+00 2.2746342468733833e+00
|
||||
run_vel: ! |2
|
||||
1 8.1705729507146642e-03 1.6516406093744641e-02 4.7902279090199888e-03
|
||||
2 5.4501493276694407e-03 5.1791698760542655e-03 -1.4372929651720373e-03
|
||||
3 -8.2298303446991499e-03 -1.2926552110646281e-02 -4.0984171815350119e-03
|
||||
4 -3.7699042793691621e-03 -6.5722892086671888e-03 -1.1184640147877227e-03
|
||||
5 -1.1021961023179821e-02 -9.8906780808723574e-03 -2.8410737186752391e-03
|
||||
6 -3.9676664596302022e-02 4.6817059618450917e-02 3.7148492579484563e-02
|
||||
7 9.1034031301509934e-04 -1.0128522664904629e-02 -5.1568252954671358e-02
|
||||
8 7.9064703413713518e-03 -3.3507265483952130e-03 3.4557099321061970e-02
|
||||
9 1.5644176069499445e-03 3.7365546445246702e-03 1.5047408832397751e-02
|
||||
10 2.9201446099433200e-02 -2.9249578511256979e-02 -1.5018076911020584e-02
|
||||
11 -4.7835964007472438e-03 -3.7481383012996799e-03 -2.3464103653896319e-03
|
||||
12 2.2696453008391368e-03 -3.4774279616439630e-04 -3.0640765817961158e-03
|
||||
13 2.7531739986205606e-03 5.8171065863360273e-03 -7.9467449090663456e-04
|
||||
14 3.5246182341718787e-03 -5.7939994947008291e-03 -3.9478431580931327e-03
|
||||
15 -1.8547943904014324e-03 -5.8554729842982909e-03 6.2938484741557809e-03
|
||||
16 1.8681498891538882e-02 -1.3262465322856017e-02 -4.5638650127800932e-02
|
||||
17 -1.2896270312366209e-02 9.7527665732632350e-03 3.7296535866542128e-02
|
||||
18 3.6201701458125901e-04 -3.1019809770901913e-04 8.1201763681395124e-04
|
||||
19 8.5112360015621527e-04 -1.4603353796945311e-03 1.0305254865262262e-03
|
||||
20 -6.5417978223454955e-04 4.4256253979791337e-04 4.7856455882856112e-04
|
||||
21 -1.3982465853051491e-03 -3.2420187158416122e-04 1.1419970014906219e-03
|
||||
22 -1.5884120818688635e-03 -1.5258102513021705e-03 1.4829681808138718e-03
|
||||
23 2.8156640545678882e-04 -3.9296161403347832e-03 -3.6141019321529006e-04
|
||||
24 8.5788311101024021e-04 -9.4446252118115083e-04 5.5288135210022535e-04
|
||||
25 1.6004033600709000e-03 -2.2093786373070566e-03 -5.4710565574674660e-04
|
||||
26 -1.5640453234916207e-03 3.5755082486241615e-04 2.4453236849039262e-03
|
||||
27 4.5604120291777391e-04 -1.0305523027099432e-03 2.1188058380935704e-04
|
||||
28 -6.2544520861865490e-03 1.4127711176129324e-03 -1.8429821884795277e-03
|
||||
29 6.4110631474916110e-04 3.1273432713407900e-03 3.7253671102111473e-03
|
||||
...
|
||||
77
unittest/force-styles/tests/fix-timestep-rattle_bond.yaml
Normal file
77
unittest/force-styles/tests/fix-timestep-rattle_bond.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:21 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix rattle
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solute rattle 1.0e-5 20 4 m 4.00794
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |2-
|
||||
3.9891557115890999e+00 3.7983351717152480e+00 7.6152694943743228e+01 5.7163462651523300e-01 3.0839737670745507e+01 3.0066936263232019e+01
|
||||
run_pos: ! |2
|
||||
1 -2.6863205200662160e-01 2.4924200251053037e+00 -1.6940797171640173e-01
|
||||
2 3.0314855494325726e-01 2.9555142432096928e+00 -8.4661597718762538e-01
|
||||
3 -7.0471630526135653e-01 1.2320076232474173e+00 -6.3059972306932599e-01
|
||||
4 -1.5777965340711875e+00 1.4826179820456016e+00 -1.2510232575394136e+00
|
||||
5 -9.0838614372574067e-01 9.2479324973625643e-01 4.0580653202950134e-01
|
||||
6 2.4793967906065856e-01 2.8343287430301523e-01 -1.2316652319085841e+00
|
||||
7 3.4143850947000237e-01 -2.2651528366236746e-02 -2.5292473574049552e+00
|
||||
8 1.1730749609547400e+00 -4.9001540353149170e-01 -6.4332649946665266e-01
|
||||
9 1.3845859932368008e+00 -2.4786933347311196e-01 3.0357812296279735e-01
|
||||
10 2.0524841105948015e+00 -1.4583699771496379e+00 -9.7983952239393757e-01
|
||||
11 1.7850840352923341e+00 -1.9987544346588606e+00 -1.8998839983899072e+00
|
||||
12 3.0095045212033247e+00 -4.8782153578035059e-01 -1.6261252340942491e+00
|
||||
13 4.0351185088311556e+00 -8.8522351740509708e-01 -1.6398224375630548e+00
|
||||
14 2.6123239686628956e+00 -4.1890190267120403e-01 -2.6495985815028571e+00
|
||||
15 2.9701534707934725e+00 5.4105345536479910e-01 -1.2389976744608262e+00
|
||||
16 2.6747027555918970e+00 -2.4124113563394012e+00 -2.3415671532678806e-02
|
||||
17 2.2153595673079209e+00 -2.0898013762372751e+00 1.1963177401330007e+00
|
||||
18 2.1369701694435119e+00 3.0158507393675174e+00 -3.5179348311269880e+00
|
||||
19 1.5355837135166919e+00 2.6255292354443638e+00 -4.2353987776659867e+00
|
||||
20 2.7727573004750279e+00 3.6923910448253729e+00 -3.9330842457663850e+00
|
||||
21 4.9040128074584084e+00 -4.0752348173558683e+00 -3.6210314712921452e+00
|
||||
22 4.3582355554470675e+00 -4.2126119427230533e+00 -4.4612844196479138e+00
|
||||
23 5.7439382849367417e+00 -3.5821957939146403e+00 -3.8766361296113812e+00
|
||||
24 2.0689243589978767e+00 3.1513346914192564e+00 3.1550389757754025e+00
|
||||
25 1.3045351338498816e+00 3.2665125711118623e+00 2.5111855260643079e+00
|
||||
26 2.5809237403158591e+00 4.0117602606099725e+00 3.2212060529034496e+00
|
||||
27 -1.9611343131186747e+00 -4.3563411932863181e+00 2.1098293116020814e+00
|
||||
28 -2.7473562684591109e+00 -4.0200819932508631e+00 1.5830052163456609e+00
|
||||
29 -1.3126000191565619e+00 -3.5962518039874860e+00 2.2746342468906682e+00
|
||||
run_vel: ! |2
|
||||
1 7.7370763703885981e-03 1.5916623177089917e-02 5.0460584330822480e-03
|
||||
2 6.5186940562006425e-03 6.0087223948100997e-03 -2.7579528931744326e-03
|
||||
3 -7.3639039999207805e-03 -1.2783111443358818e-02 -3.3210723356919430e-03
|
||||
4 -5.8962208660568623e-03 -5.9658659155316252e-03 -2.6327244609218236e-03
|
||||
5 -1.0929657512764205e-02 -9.6585946726249240e-03 -3.0956201839590124e-03
|
||||
6 -4.0123707366837992e-02 4.7187394112882822e-02 3.6871538264127757e-02
|
||||
7 9.1133487010599461e-04 -1.0132608633652495e-02 -5.1595915280728183e-02
|
||||
8 7.0088514431851422e-03 -4.2477252839068919e-03 3.0986345119599783e-02
|
||||
9 4.6374036922998555e-03 7.0470301756850907e-03 2.8627719728916035e-02
|
||||
10 3.0611231933355295e-02 -2.7617219870000733e-02 -1.2129568539940891e-02
|
||||
11 -7.2060626580151164e-03 -9.4599495517301499e-03 -1.1803018293165211e-02
|
||||
12 1.5103726570079637e-03 -8.6499790408050452e-04 -2.9343732292293413e-03
|
||||
13 4.0387984545004179e-03 5.5920103447542734e-03 -9.5141435774168603e-04
|
||||
14 3.7449566583612186e-03 -5.7205267373051458e-03 -4.1285172459609044e-03
|
||||
15 -1.6192412735192771e-03 -4.5860921043834090e-03 6.6371157403290462e-03
|
||||
16 1.8683716258419525e-02 -1.3263096088946387e-02 -4.5607321000772597e-02
|
||||
17 -1.2893753425925242e-02 9.7485795481257100e-03 3.7300775385778646e-02
|
||||
18 -8.0065894051881104e-04 -8.6270684963651997e-04 -1.4483015146944853e-03
|
||||
19 1.2452389852680510e-03 -2.5061098313021958e-03 7.2998634573395622e-03
|
||||
20 3.5930058838403115e-03 3.6938858373569165e-03 3.2322734729320975e-03
|
||||
21 -1.4689219027528956e-03 -2.7352134530947029e-04 7.0581593448005339e-04
|
||||
22 -7.0694199260273143e-03 -4.2577148857392598e-03 2.8079115157198279e-04
|
||||
23 6.0446963222438397e-03 -1.4000131442962716e-03 2.5819754631691500e-03
|
||||
24 3.1926442964369685e-04 -9.9445591935644600e-04 1.5000033448111914e-04
|
||||
25 1.3789825021844792e-04 -4.4335889596263511e-03 -8.1808100227326449e-04
|
||||
26 2.0485904735292599e-03 2.7813359659683385e-03 4.3245727170611618e-03
|
||||
27 4.5604110580961207e-04 -1.0305524671180935e-03 2.1188063421234097e-04
|
||||
28 -6.2544520944132998e-03 1.4127711036803850e-03 -1.8429821866102578e-03
|
||||
29 6.4110628696208052e-04 3.1273432221612541e-03 3.7253671295737062e-03
|
||||
...
|
||||
78
unittest/force-styles/tests/fix-timestep-rigid-group.yaml
Normal file
78
unittest/force-styles/tests/fix-timestep-rigid-group.yaml
Normal file
@ -0,0 +1,78 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:21 202
|
||||
epsilon: 2.5e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix rigid
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
variable t_target delete
|
||||
fix test all rigid group 2 solute solvent
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |-
|
||||
-1.4245356937318927e+03 -1.4496493315649675e+03 -3.6144360984224963e+03 8.4840626828643849e+02 2.0318336761611764e+02 -6.0622397707969685e+02
|
||||
global_scalar: 15.7115214231781
|
||||
run_pos: ! |2
|
||||
1 -2.7899546863891622e-01 2.4731857340328216e+00 -1.7290667740241872e-01
|
||||
2 3.0296221610264007e-01 2.9517129916957545e+00 -8.5798904387772823e-01
|
||||
3 -6.9368802364134852e-01 1.2445115421754183e+00 -6.2281111198650230e-01
|
||||
4 -1.5764879647103172e+00 1.4919714415841274e+00 -1.2492069414674600e+00
|
||||
5 -8.9434512967430013e-01 9.3651699743510730e-01 4.0191726558261431e-01
|
||||
6 2.9454439634451690e-01 2.2724545792544065e-01 -1.2845195053960263e+00
|
||||
7 3.4049112903270062e-01 -9.4655678322440595e-03 -2.4634480020857059e+00
|
||||
8 1.1644354555804877e+00 -4.8367776650961369e-01 -6.7663643940735896e-01
|
||||
9 1.3781717822696469e+00 -2.5332509530010827e-01 2.6864954436590061e-01
|
||||
10 2.0186368606041905e+00 -1.4285861423625792e+00 -9.6712491252780297e-01
|
||||
11 1.7929137227577470e+00 -1.9875455388407410e+00 -1.8836565352266557e+00
|
||||
12 3.0032775230399604e+00 -4.8983022415173838e-01 -1.6190248017343647e+00
|
||||
13 4.0448964162125947e+00 -9.0213155122390720e-01 -1.6385398399479572e+00
|
||||
14 2.6035151245015831e+00 -4.0874995493218902e-01 -2.6555999074786611e+00
|
||||
15 2.9761196776172314e+00 5.6287237454108840e-01 -1.2442626196083382e+00
|
||||
16 2.6517373021566191e+00 -2.3957035508393720e+00 3.3389262100689376e-02
|
||||
17 2.2311114924744988e+00 -2.1018393228798540e+00 1.1496088522377521e+00
|
||||
18 2.1390642573201788e+00 3.0164773560693772e+00 -3.5143984803853874e+00
|
||||
19 1.5353246655146275e+00 2.6305911186316124e+00 -4.2455871034737074e+00
|
||||
20 2.7649421538938386e+00 3.6818603528430827e+00 -3.9364115785985558e+00
|
||||
21 4.9043112657298868e+00 -4.0774268210397873e+00 -3.6200836396129810e+00
|
||||
22 4.3665322424283302e+00 -4.2075138112953594e+00 -4.4636587264885854e+00
|
||||
23 5.7355405581985170e+00 -3.5789558641908905e+00 -3.8805763324089964e+00
|
||||
24 2.0692780332810123e+00 3.1504920436416004e+00 3.1571131300668775e+00
|
||||
25 1.3007297593169085e+00 3.2745259354179486e+00 2.5110163874103657e+00
|
||||
26 2.5819416446099748e+00 4.0104903120756585e+00 3.2150249624526013e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 4.7093289825842518e-04 2.6351122778447999e-04 -4.4905093064114991e-04
|
||||
2 4.9594625316470484e-04 9.4561370489631939e-05 -5.4581359894047949e-04
|
||||
3 3.3306085115756087e-04 2.3224943880673381e-04 -2.3659455671746045e-04
|
||||
4 3.3692327392261114e-04 2.1926810694051279e-04 -2.4716631558862527e-04
|
||||
5 3.3642542694186013e-04 4.1797578013265895e-04 -1.8011341766657651e-04
|
||||
6 2.0926869754934733e-04 2.6449308951578761e-05 -1.0508938983871863e-04
|
||||
7 1.4629043007907862e-04 -1.6873376665350138e-04 -6.8354048774351599e-05
|
||||
8 1.5844101624224864e-04 3.7728761274000492e-05 -1.9162715667091517e-05
|
||||
9 2.1299362072601976e-04 1.6917140529157604e-04 -6.3528165037846039e-05
|
||||
10 5.4261629412254251e-05 -9.4655528376811197e-05 1.0511362869146629e-04
|
||||
11 -3.2194160796503320e-05 -2.2025095264758748e-04 2.0300202946212385e-04
|
||||
12 1.2640586304750342e-04 -2.9851080445665075e-04 -7.9476371818247547e-05
|
||||
13 8.4523575162142323e-05 -4.0583135407330540e-04 -4.7551111331702706e-05
|
||||
14 9.9954050381270240e-05 -4.2610816481298321e-04 -7.9255633594381333e-05
|
||||
15 2.4417481119789840e-04 -2.3521002264677917e-04 -2.4875318161049140e-04
|
||||
16 -9.0958138549664179e-06 3.7774817121227626e-06 2.4035199548835075e-04
|
||||
17 5.7507224523612718e-05 2.2629217444843883e-04 2.0686920072684827e-04
|
||||
18 2.9220264989359676e-04 -6.2478376436796309e-04 8.4222594596602344e-04
|
||||
19 2.0572616567799036e-04 -5.0334424271726705e-04 8.4953929443210658e-04
|
||||
20 4.1224811789512805e-04 -7.4115205416011576e-04 8.3678612337507888e-04
|
||||
21 -1.0671858777656380e-03 -1.1531171045499509e-03 7.3720674900162192e-04
|
||||
22 -1.1066511338291703e-03 -1.0433933757600456e-03 7.4544544325708616e-04
|
||||
23 -9.7629260480941438e-04 -1.3100872491594094e-03 7.2687284219704804e-04
|
||||
24 4.3308126651259334e-04 -6.6527658087322747e-04 8.4451298670663595e-04
|
||||
25 4.4565811905442911e-04 -5.1298436273584274e-04 8.5878867884521559e-04
|
||||
26 5.9865972692022798e-04 -7.6385263287080316e-04 8.4259943226842134e-04
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
78
unittest/force-styles/tests/fix-timestep-rigid-molecule.yaml
Normal file
78
unittest/force-styles/tests/fix-timestep-rigid-molecule.yaml
Normal file
@ -0,0 +1,78 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:21 202
|
||||
epsilon: 2.5e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix rigid
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
variable t_target delete
|
||||
fix test solvent rigid molecule
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |-
|
||||
-4.9200116134790363e+01 -2.6907707565987732e+01 -6.0080860422282560e+00 -2.5620423972101747e+01 -1.3450224059984075e+01 -1.4947288487004844e+00
|
||||
global_scalar: 18.3405601674144
|
||||
run_pos: ! |2
|
||||
1 -2.7993683669226832e-01 2.4726588069312840e+00 -1.7200860244148433e-01
|
||||
2 3.0197083955402204e-01 2.9515239068888608e+00 -8.5689735572907566e-01
|
||||
3 -6.9435377880558602e-01 1.2440473127136711e+00 -6.2233801468892025e-01
|
||||
4 -1.5771614164685133e+00 1.4915333140468066e+00 -1.2487126845040522e+00
|
||||
5 -8.9501761359359255e-01 9.3568128743071344e-01 4.0227731871484346e-01
|
||||
6 2.9412607937706009e-01 2.2719282656652909e-01 -1.2843094067857870e+00
|
||||
7 3.4019871062879609e-01 -9.1277350075786561e-03 -2.4633113224304561e+00
|
||||
8 1.1641187171852805e+00 -4.8375305955385234e-01 -6.7659823767368688e-01
|
||||
9 1.3777459838125838e+00 -2.5366338669522998e-01 2.6877644730326306e-01
|
||||
10 2.0185283555536988e+00 -1.4283966846517357e+00 -9.6733527271133024e-01
|
||||
11 1.7929780509347666e+00 -1.9871047540768743e+00 -1.8840626643185674e+00
|
||||
12 3.0030247876861225e+00 -4.8923319967572748e-01 -1.6188658531537248e+00
|
||||
13 4.0447273787895934e+00 -9.0131998547446246e-01 -1.6384447268320836e+00
|
||||
14 2.6033152817257075e+00 -4.0789761505963579e-01 -2.6554413538823063e+00
|
||||
15 2.9756315249791303e+00 5.6334269722969288e-01 -1.2437650754599008e+00
|
||||
16 2.6517554244980306e+00 -2.3957110424978438e+00 3.2908335999178327e-02
|
||||
17 2.2309964792710639e+00 -2.1022918943319384e+00 1.1491948328949437e+00
|
||||
18 2.1392027588271301e+00 3.0171068018412783e+00 -3.5144628518856349e+00
|
||||
19 1.5366124997074573e+00 2.6286809834111744e+00 -4.2452547844370221e+00
|
||||
20 2.7628161763455852e+00 3.6842251687634779e+00 -3.9370881219352558e+00
|
||||
21 4.9036621347791245e+00 -4.0757648442838548e+00 -3.6192617654515908e+00
|
||||
22 4.3655322291888483e+00 -4.2084949965552561e+00 -4.4622011117402334e+00
|
||||
23 5.7380414793463101e+00 -3.5841969195032672e+00 -3.8827839830470219e+00
|
||||
24 2.0701314765323930e+00 3.1499370533342330e+00 3.1565324852522938e+00
|
||||
25 1.3030170721374783e+00 3.2711173927682244e+00 2.5081940917429759e+00
|
||||
26 2.5776230782480041e+00 4.0127347068243884e+00 3.2182355138709284e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 7.7867804888392077e-04 5.8970331623292821e-04 -2.2179517633030531e-04
|
||||
2 2.7129529964126462e-03 4.6286427111164284e-03 3.5805549693846352e-03
|
||||
3 -1.2736791029204805e-03 1.6108674226414498e-03 -3.3618185901550799e-04
|
||||
4 -9.2828595122009308e-04 -1.2537885319521818e-03 -4.1204974953432108e-03
|
||||
5 -1.1800848061603740e-03 7.5424401975844038e-04 6.9023177964912290e-05
|
||||
6 -3.0914004879905335e-04 1.2755385764678133e-03 7.9574303350202582e-04
|
||||
7 -1.1037894966874103e-04 -7.6764845099077425e-04 -7.7217630460203659e-04
|
||||
8 3.9060281273221989e-04 -8.1444231918053418e-04 1.5134641148324972e-04
|
||||
9 1.2475530960659720e-03 -2.6608454451432528e-03 1.1117602907112732e-03
|
||||
10 4.5008983776042893e-04 4.9530197647538077e-04 -2.3336234361093645e-04
|
||||
11 -3.6977669078869707e-04 -1.5289071951960539e-03 -2.9176389881837113e-03
|
||||
12 1.0850834530183159e-03 -6.4965897903201833e-04 -1.2971152622619948e-03
|
||||
13 4.0754559196230639e-03 3.5043502394946119e-03 -7.8324487687854666e-04
|
||||
14 -1.3837220448746613e-04 -4.0656048637594394e-03 -3.9333461173944500e-03
|
||||
15 -4.3301707382721859e-03 -3.1802661664634938e-03 3.2037919043360571e-03
|
||||
16 -9.6715751018414326e-05 -5.0016572678960377e-04 1.4945658875149626e-03
|
||||
17 6.5692180538157174e-04 3.6635779995305095e-04 8.3495414466050911e-04
|
||||
18 3.6149625095704870e-04 -3.1032459262908302e-04 8.1043030117346052e-04
|
||||
19 8.5103884665345441e-04 -1.4572280596788099e-03 1.0163621287634116e-03
|
||||
20 -6.5204659278590758e-04 4.3989037444289831e-04 4.9909839028507966e-04
|
||||
21 -1.3888125881903919e-03 -3.1978049143082570e-04 1.1455681499836646e-03
|
||||
22 -1.6084223477729497e-03 -1.5355394240821158e-03 1.4772010826232373e-03
|
||||
23 2.6392672378804886e-04 -3.9375414431174760e-03 -3.6991583139728127e-04
|
||||
24 8.6062827067890290e-04 -9.4179873474469259e-04 5.5396395550012367e-04
|
||||
25 1.5933645477487557e-03 -2.2139156625681682e-03 -5.5078029695647412e-04
|
||||
26 -1.5679561743998888e-03 3.5146224354725948e-04 2.4446924193334482e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
78
unittest/force-styles/tests/fix-timestep-rigid-single.yaml
Normal file
78
unittest/force-styles/tests/fix-timestep-rigid-single.yaml
Normal file
@ -0,0 +1,78 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:21 202
|
||||
epsilon: 2.5e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix rigid
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
variable t_target delete
|
||||
fix test solute rigid single
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |-
|
||||
-1.3754817466835852e+03 -1.4228425246165939e+03 -3.6087196201913630e+03 8.7407043149698166e+02 2.1665316519768876e+02 -6.0480791462031175e+02
|
||||
global_scalar: 4.53142303857031
|
||||
run_pos: ! |2
|
||||
1 -2.7899546859693181e-01 2.4731857340428789e+00 -1.7290667720876129e-01
|
||||
2 3.0296221616793595e-01 2.9517129917211555e+00 -8.5798904365355089e-01
|
||||
3 -6.9368802362166315e-01 1.2445115422149753e+00 -6.2281111185285432e-01
|
||||
4 -1.5764879646739509e+00 1.4919714416722003e+00 -1.2492069413381559e+00
|
||||
5 -8.9434512967954460e-01 9.3651699743538708e-01 4.0191726569957620e-01
|
||||
6 2.9454439635065854e-01 2.2724545796943085e-01 -1.2845195052894232e+00
|
||||
7 3.4049112905311674e-01 -9.4655677385591108e-03 -2.4634480019885245e+00
|
||||
8 1.1644354555589662e+00 -4.8367776651302741e-01 -6.7663643931660777e-01
|
||||
9 1.3781717822376685e+00 -2.5332509534947545e-01 2.6864954447021527e-01
|
||||
10 2.0186368605645773e+00 -1.4285861423742925e+00 -9.6712491246325638e-01
|
||||
11 1.7929137227200924e+00 -1.9875455388074488e+00 -1.8836565351900403e+00
|
||||
12 3.0032775230343129e+00 -4.8983022415935262e-01 -1.6190248016126150e+00
|
||||
13 4.0448964161972292e+00 -9.0213155125606903e-01 -1.6385398398262687e+00
|
||||
14 2.6035151245155346e+00 -4.0874995488538102e-01 -2.6555999073602141e+00
|
||||
15 2.9761196776308703e+00 5.6287237451798355e-01 -1.2442626194416762e+00
|
||||
16 2.6517373020764223e+00 -2.3957035509096416e+00 3.3389262134315478e-02
|
||||
17 2.2311114923824862e+00 -2.1018393229879826e+00 1.1496088522768946e+00
|
||||
18 2.1384791188033843e+00 3.0177261773770208e+00 -3.5160827596876225e+00
|
||||
19 1.5349125211132961e+00 2.6315969880333707e+00 -4.2472859440220647e+00
|
||||
20 2.7641167828863153e+00 3.6833419064000221e+00 -3.9380850623312638e+00
|
||||
21 4.9064454390208301e+00 -4.0751205255383196e+00 -3.6215576073601046e+00
|
||||
22 4.3687453488627543e+00 -4.2054270536772504e+00 -4.4651491269372565e+00
|
||||
23 5.7374928154769504e+00 -3.5763355905184966e+00 -3.8820297194230728e+00
|
||||
24 2.0684115301174013e+00 3.1518221747664397e+00 3.1554242678474576e+00
|
||||
25 1.2998381073113014e+00 3.2755513587518097e+00 2.5092990173114837e+00
|
||||
26 2.5807438597688113e+00 4.0120175892854135e+00 3.2133398379059099e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 4.7093296226165759e-04 2.6351124312057328e-04 -4.4905063547614815e-04
|
||||
2 4.9594635271877263e-04 9.4561409237138648e-05 -5.4581325723053584e-04
|
||||
3 3.3306088119083106e-04 2.3224949911015489e-04 -2.3659435306900921e-04
|
||||
4 3.3692332940286711e-04 2.1926824120529708e-04 -2.4716611858556546e-04
|
||||
5 3.3642541894624088e-04 4.1797578053943778e-04 -1.8011323945929135e-04
|
||||
6 2.0926870695908297e-04 2.6449376032441632e-05 -1.0508922741401441e-04
|
||||
7 1.4629046128362895e-04 -1.6873362379723160e-04 -6.8353900724071678e-05
|
||||
8 1.5844098346817962e-04 3.7728756087619151e-05 -1.9162577392849499e-05
|
||||
9 2.1299357198253027e-04 1.6917133003966806e-04 -6.3528006071200595e-05
|
||||
10 5.4261569071246100e-05 -9.4655546204698788e-05 1.0511372702289762e-04
|
||||
11 -3.2194218121523160e-05 -2.2025090185602363e-04 2.0300208519292848e-04
|
||||
12 1.2640585449263567e-04 -2.9851081600946788e-04 -7.9476186245575856e-05
|
||||
13 8.4523551795102534e-05 -4.0583140303608248e-04 -4.7550925831931509e-05
|
||||
14 9.9954071734163638e-05 -4.2610809338913916e-04 -7.9255453072662124e-05
|
||||
15 2.4417483202630001e-04 -2.3521005781669064e-04 -2.4875292755152092e-04
|
||||
16 -9.0959360838833471e-06 3.7773746063198897e-06 2.4035204669042528e-04
|
||||
17 5.7507084250808007e-05 2.2629200960629450e-04 2.0686926033794596e-04
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
76
unittest/force-styles/tests/fix-timestep-setforce-const.yaml
Normal file
76
unittest/force-styles/tests/fix-timestep-setforce-const.yaml
Normal file
@ -0,0 +1,76 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:16 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix setforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solute setforce 0.0 NULL 0.1
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_vector: ! |-
|
||||
3 0.031196595768662405 0.027176378299685666 -0.018248127488959653
|
||||
run_pos: ! |2
|
||||
1 -2.7837948059450057e-01 2.4915057595127261e+00 -1.7244621851040967e-01
|
||||
2 3.0739674554684748e-01 2.9612812082059410e+00 -8.4971536723424157e-01
|
||||
3 -6.9690113701142686e-01 1.2299989573015675e+00 -6.2300341128596803e-01
|
||||
4 -1.5790179883709534e+00 1.4836808443213463e+00 -1.2569328009386738e+00
|
||||
5 -8.9737778320591355e-01 9.2644076771112371e-01 4.0243624362683811e-01
|
||||
6 2.9350779927946186e-01 2.9015340694208497e-01 -1.2827109535977994e+00
|
||||
7 3.3997795272945847e-01 -2.6300572624749590e-02 -2.4648504448435284e+00
|
||||
8 1.1648999228107455e+00 -4.8865966236488045e-01 -6.7628957056698502e-01
|
||||
9 1.3802410900047160e+00 -2.5301023044453536e-01 2.7102084644075047e-01
|
||||
10 2.0194285352292209e+00 -1.4622480415421317e+00 -9.6779503027756864e-01
|
||||
11 1.7922384975531884e+00 -1.9922212161152444e+00 -1.8898770637388704e+00
|
||||
12 3.0051949545921595e+00 -4.9025758702939209e-01 -1.6214531165572654e+00
|
||||
13 4.0528782906288381e+00 -8.9202906696376694e-01 -1.6399903380297762e+00
|
||||
14 2.6030385373167326e+00 -4.1792037250958114e-01 -2.6632871675610303e+00
|
||||
15 2.9669711835025847e+00 5.5426020373538232e-01 -1.2373366130951635e+00
|
||||
16 2.6515619929959935e+00 -2.4164580153507993e+00 3.5904434895191586e-02
|
||||
17 2.2323103228818271e+00 -2.0866200178232570e+00 1.1508699713803967e+00
|
||||
18 2.1369701651509190e+00 3.0158507318424936e+00 -3.5179348274555937e+00
|
||||
19 1.5355837133081183e+00 2.6255292347922397e+00 -4.2353987772399497e+00
|
||||
20 2.7727573004039123e+00 3.6923910447382959e+00 -3.9330842457623234e+00
|
||||
21 4.9040128090518982e+00 -4.0752348190254066e+00 -3.6210314733741300e+00
|
||||
22 4.3582355554811203e+00 -4.2126119427992510e+00 -4.4612844197913537e+00
|
||||
23 5.7439382850543934e+00 -3.5821957939727862e+00 -3.8766361297296963e+00
|
||||
24 2.0689243587550665e+00 3.1513346917712659e+00 3.1550389764758857e+00
|
||||
25 1.3045351337111810e+00 3.2665125710954817e+00 2.5111855269473398e+00
|
||||
26 2.5809237403311265e+00 4.0117602606155351e+00 3.2212060529773248e+00
|
||||
27 -1.9611343135760269e+00 -4.3563411936812422e+00 2.1098293111769051e+00
|
||||
28 -2.7473562684448014e+00 -4.0200819932539504e+00 1.5830052163387485e+00
|
||||
29 -1.3126000190074181e+00 -3.5962518039956493e+00 2.2746342468316909e+00
|
||||
run_vel: ! |2
|
||||
1 7.7867804888392077e-04 1.7047228530841809e-02 -2.1582089259505630e-04
|
||||
2 2.7129529964126462e-03 5.2784482698423644e-03 3.6014335254494771e-03
|
||||
3 -1.2736791029204805e-03 -1.3974541598892314e-02 -3.2921473803217605e-04
|
||||
4 -9.2828595122009308e-04 -6.6991688238371011e-03 -4.0996189392783757e-03
|
||||
5 -1.1800848061603740e-03 -1.0047153968619136e-02 8.9901734029750995e-05
|
||||
6 -3.0914004879905335e-04 5.9226312312574469e-02 8.0271015448535863e-04
|
||||
7 -1.1037894966874103e-04 -1.6457202942861592e-02 -7.6694610847002475e-04
|
||||
8 3.9060281273221989e-04 -3.3092081140500625e-03 1.5732069521849873e-04
|
||||
9 1.2475530960659720e-03 3.1932872333445845e-03 1.1326388467761117e-03
|
||||
10 4.5008983776042893e-04 -3.2706161456987362e-02 -2.2639522262760407e-04
|
||||
11 -3.6977669078869707e-04 -3.8208979405711181e-03 -2.8967604321188693e-03
|
||||
12 1.0850834530183159e-03 -5.9865405325318095e-04 -1.2901481412786638e-03
|
||||
13 4.0754559196230639e-03 5.8000556188644737e-03 -7.6236632081370817e-04
|
||||
14 -1.3837220448746613e-04 -5.8513645592199954e-03 -3.9124675613296149e-03
|
||||
15 -4.3301707382721859e-03 -5.7874916835632612e-03 3.2246704604008991e-03
|
||||
16 -9.6715751018414326e-05 -2.0337180407622942e-02 1.5015330084982936e-03
|
||||
17 6.5692180538157174e-04 1.5347761197837848e-02 8.4018434079252094e-04
|
||||
18 -8.0066836980328829e-04 -8.6272352268198973e-04 -1.4482916287850436e-03
|
||||
19 1.2452384523271498e-03 -2.5061112055692661e-03 7.2998645869741070e-03
|
||||
20 3.5930056005389279e-03 3.6938854790338886e-03 3.2322736694535342e-03
|
||||
21 -1.4689186150745120e-03 -2.7352475069894054e-04 7.0581153530664112e-04
|
||||
22 -7.0694198605565570e-03 -4.2577150334417316e-03 2.8079083578864353e-04
|
||||
23 6.0446965741464556e-03 -1.4000132401387128e-03 2.5819752034683392e-03
|
||||
24 3.1926469085296537e-04 -9.9445460268275231e-04 1.5000192558511910e-04
|
||||
25 1.3789867280959912e-04 -4.4335884662300897e-03 -8.1807894939305860e-04
|
||||
26 2.0485905358907184e-03 2.7813360186345780e-03 4.3245728521738580e-03
|
||||
27 4.5604013457189150e-04 -1.0305533784689190e-03 2.1187984562018490e-04
|
||||
28 -6.2544520812349144e-03 1.4127710889363602e-03 -1.8429822031806322e-03
|
||||
29 6.4110655335636812e-04 3.1273431604200374e-03 3.7253670254479500e-03
|
||||
...
|
||||
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 15:15:21 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix setforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
region half block 0 EDGE EDGE EDGE EDGE EDGE
|
||||
fix move all nve
|
||||
fix test solute setforce 0.0 0.0 0.0 region half
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_vector: ! |-
|
||||
3 30.2599905309868 33.68278530642225 -29.246531241430393
|
||||
run_pos: ! |2
|
||||
1 -2.7049035247384523e-01 2.4911810898708389e+00 -1.6691641634960069e-01
|
||||
2 3.0739674554684748e-01 2.9607811923110940e+00 -8.4973624579030649e-01
|
||||
3 -7.0353916519192539e-01 1.2301035175216133e+00 -6.2811850060979157e-01
|
||||
4 -1.5818280599335734e+00 1.4837673105082276e+00 -1.2538397846300477e+00
|
||||
5 -9.0717031790556124e-01 9.2648976564062635e-01 3.9953566633035209e-01
|
||||
6 2.9350779927946186e-01 2.2974390371946465e-01 -1.2827179207187822e+00
|
||||
7 3.3997795272945847e-01 -1.0663031909560207e-02 -2.4648556750396611e+00
|
||||
8 1.1648999228107455e+00 -4.8538194419221331e-01 -6.7629554485072030e-01
|
||||
9 1.3802410900047160e+00 -2.5898507758551664e-01 2.7099996788468578e-01
|
||||
10 2.0194285352292209e+00 -1.4274060806987843e+00 -9.6780199739855188e-01
|
||||
11 1.7922384975531884e+00 -1.9901625684672659e+00 -1.8898979422949340e+00
|
||||
12 3.0051949545921595e+00 -4.9053251763379130e-01 -1.6214600836782489e+00
|
||||
13 4.0528782906288381e+00 -8.9431128499547308e-01 -1.6400112165858416e+00
|
||||
14 2.6030385373167326e+00 -4.1602882478715481e-01 -2.6633080461170948e+00
|
||||
15 2.9669711835025847e+00 5.5698216489676589e-01 -1.2373574916512289e+00
|
||||
16 2.6515619929959935e+00 -2.3967113739514225e+00 3.5897467774208235e-02
|
||||
17 2.2323103228818271e+00 -2.1015591787320327e+00 1.1508647411842645e+00
|
||||
18 2.1369701686610401e+00 3.0158507356865694e+00 -3.5179348303585480e+00
|
||||
19 1.5355837135232193e+00 2.6255292349839952e+00 -4.2353987776244075e+00
|
||||
20 2.7727573004961963e+00 3.6923910448188275e+00 -3.9330842458397517e+00
|
||||
21 4.9040128097611619e+00 -4.0752348192998085e+00 -3.6210314741042802e+00
|
||||
22 4.3582355555035459e+00 -4.2126119428105069e+00 -4.4612844198387185e+00
|
||||
23 5.7439382850855170e+00 -3.5821957939653286e+00 -3.8766361297559051e+00
|
||||
24 2.0689243586287684e+00 3.1513346918425076e+00 3.1550389761993376e+00
|
||||
25 1.3045351332139172e+00 3.2665125707733642e+00 2.5111855259275875e+00
|
||||
26 2.5809237402965892e+00 4.0117602605909184e+00 3.2212060529312576e+00
|
||||
27 -1.9611343134166486e+00 -4.3563411935496905e+00 2.1098293111410187e+00
|
||||
28 -2.7473562684439594e+00 -4.0200819932414040e+00 1.5830052163325192e+00
|
||||
29 -1.3126000190355391e+00 -3.5962518039701115e+00 2.2746342468355896e+00
|
||||
run_vel: ! |2
|
||||
1 8.0968238327908306e-03 1.6439353504426914e-02 4.8774271710863440e-03
|
||||
2 2.7129529964126462e-03 4.6286427111164284e-03 3.5805549693846352e-03
|
||||
3 -7.3249068559002473e-03 -1.3819430195421816e-02 -4.7723976289498213e-03
|
||||
4 -3.7880669939802302e-03 -6.5262112276744154e-03 -1.0623014289922296e-03
|
||||
5 -1.0968756474139221e-02 -9.9481298518413509e-03 -2.8555668881870850e-03
|
||||
6 -3.0914004879905335e-04 1.2755385764678133e-03 7.9574303350202582e-04
|
||||
7 -1.1037894966874103e-04 -7.6764845099077425e-04 -7.7217630460203659e-04
|
||||
8 3.9060281273221989e-04 -8.1444231918053418e-04 1.5134641148324972e-04
|
||||
9 1.2475530960659720e-03 -2.6608454451432528e-03 1.1117602907112732e-03
|
||||
10 4.5008983776042893e-04 4.9530197647538077e-04 -2.3336234361093645e-04
|
||||
11 -3.6977669078869707e-04 -1.5289071951960539e-03 -2.9176389881837113e-03
|
||||
12 1.0850834530183159e-03 -6.4965897903201833e-04 -1.2971152622619948e-03
|
||||
13 4.0754559196230639e-03 3.5043502394946119e-03 -7.8324487687854666e-04
|
||||
14 -1.3837220448746613e-04 -4.0656048637594394e-03 -3.9333461173944500e-03
|
||||
15 -4.3301707382721859e-03 -3.1802661664634938e-03 3.2037919043360571e-03
|
||||
16 -9.6715751018414326e-05 -5.0016572678960377e-04 1.4945658875149626e-03
|
||||
17 6.5692180538157174e-04 3.6635779995305095e-04 8.3495414466050911e-04
|
||||
18 -8.0066124075139065e-04 -8.6271573462520822e-04 -1.4482975502198103e-03
|
||||
19 1.2452389135116637e-03 -2.5061107963827616e-03 7.2998638022685452e-03
|
||||
20 3.5930058351021075e-03 3.6938856958711494e-03 3.2322734653392029e-03
|
||||
21 -1.4689171694079451e-03 -2.7352531109399892e-04 7.0581004713133645e-04
|
||||
22 -7.0694198156406830e-03 -4.2577150557698900e-03 2.8079073380301450e-04
|
||||
23 6.0446966473130361e-03 -1.4000132185117897e-03 2.5819751444708279e-03
|
||||
24 3.1926444029166840e-04 -9.9445445081424041e-04 1.5000138266644348e-04
|
||||
25 1.3789768148904548e-04 -4.4335891153916762e-03 -8.1808099807448656e-04
|
||||
26 2.0485904659168050e-03 2.7813359700824256e-03 4.3245727588882886e-03
|
||||
27 4.5604046194129701e-04 -1.0305531094668544e-03 2.1187977265303768e-04
|
||||
28 -6.2544520782408771e-03 1.4127711142458772e-03 -1.8429822149784341e-03
|
||||
29 6.4110649875996400e-04 3.1273432160629365e-03 3.7253670337420121e-03
|
||||
...
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:31:40 202
|
||||
epsilon: 2e-13
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix setforce
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix init all store/state 0 x y z
|
||||
variable xforce delete
|
||||
variable xforce atom f_init[1]
|
||||
variable zforce delete
|
||||
variable zforce equal 0.1*step/10.0
|
||||
fix move all nve
|
||||
fix test solute setforce v_xforce NULL v_zforce
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_vector: ! |-
|
||||
3 0.031197043446070438 0.027174896355546707 -0.0182497728803952
|
||||
run_pos: ! |2
|
||||
1 -2.7839620481540395e-01 2.4915057673839494e+00 -1.7245062454466442e-01
|
||||
2 3.0745979269788315e-01 2.9612799003321073e+00 -8.4973076516933943e-01
|
||||
3 -6.9694951347924872e-01 1.2299993897604549e+00 -6.2300854953769325e-01
|
||||
4 -1.5793472769015238e+00 1.4836803404053602e+00 -1.2569481988737716e+00
|
||||
5 -8.9756464996015772e-01 9.2644083748828165e-01 4.0242084569174030e-01
|
||||
6 2.9352829139925574e-01 2.9015145323915886e-01 -1.2827160918495246e+00
|
||||
7 3.3999574578926306e-01 -2.6300640916517719e-02 -2.4648543021131757e+00
|
||||
8 1.1649694705659248e+00 -4.8866051448760073e-01 -6.7629397660123991e-01
|
||||
9 1.3805287434723772e+00 -2.5300998557235649e-01 2.7100544850565261e-01
|
||||
10 2.0195691685418340e+00 -1.4622448609143475e+00 -9.6780016852929396e-01
|
||||
11 1.7926128454807839e+00 -1.9922215118728828e+00 -1.8898924616739676e+00
|
||||
12 3.0054041789622765e+00 -4.9025864489097593e-01 -1.6214582548089909e+00
|
||||
13 4.0537227713022892e+00 -8.9202793537180580e-01 -1.6400057359648736e+00
|
||||
14 2.6035820719573719e+00 -4.1791903022039290e-01 -2.6633025654961284e+00
|
||||
15 2.9675924523988120e+00 5.5426053668143505e-01 -1.2373520110302618e+00
|
||||
16 2.6517467440046008e+00 -2.4164567727480781e+00 3.5899296643466388e-02
|
||||
17 2.2324270083733913e+00 -2.0866208488166604e+00 1.1508661141107490e+00
|
||||
18 2.1369701651563577e+00 3.0158507318463847e+00 -3.5179348274587312e+00
|
||||
19 1.5355837133083070e+00 2.6255292347928294e+00 -4.2353987772404720e+00
|
||||
20 2.7727573004041375e+00 3.6923910447383275e+00 -3.9330842457623802e+00
|
||||
21 4.9040128090474138e+00 -4.0752348190131000e+00 -3.6210314733626974e+00
|
||||
22 4.3582355554811585e+00 -4.2126119427988371e+00 -4.4612844197907773e+00
|
||||
23 5.7439382850538623e+00 -3.5821957939720512e+00 -3.8766361297289245e+00
|
||||
24 2.0689243587569925e+00 3.1513346917721052e+00 3.1550389764777305e+00
|
||||
25 1.3045351337120681e+00 3.2665125710962655e+00 2.5111855269493146e+00
|
||||
26 2.5809237403312411e+00 4.0117602606156098e+00 3.2212060529774256e+00
|
||||
27 -1.9611343135827304e+00 -4.3563411936860819e+00 2.1098293111801389e+00
|
||||
28 -2.7473562684450474e+00 -4.0200819932540828e+00 1.5830052163388388e+00
|
||||
29 -1.3126000190081526e+00 -3.5962518039961902e+00 2.2746342468323033e+00
|
||||
run_vel: ! |2
|
||||
1 7.6195382798044376e-04 1.7047294266563661e-02 -2.1940546283620574e-04
|
||||
2 2.7760001474483962e-03 5.2757744130340666e-03 3.5889063918105712e-03
|
||||
3 -1.3220555707422056e-03 -1.3973728740579328e-02 -3.3339501062217507e-04
|
||||
4 -1.2575744817904762e-03 -6.7002024022163554e-03 -4.1121460729172752e-03
|
||||
5 -1.3669515604046946e-03 -1.0047013360250249e-02 7.7374600390847764e-05
|
||||
6 -2.8864792900532157e-04 5.9222680386688660e-02 7.9852988189535858e-04
|
||||
7 -9.2585889864279630e-05 -1.6457340485619719e-02 -7.7008422614923192e-04
|
||||
8 4.6015056791200718e-04 -3.3109316498999594e-03 1.5373612497734929e-04
|
||||
9 1.5352065637273457e-03 3.1937624988604553e-03 1.1201117131372088e-03
|
||||
10 5.9072315037472388e-04 -3.2700043246480542e-02 -2.3057549521760353e-04
|
||||
11 4.5712368059701517e-06 -3.8214916428847890e-03 -2.9092875657577752e-03
|
||||
12 1.2943078231358680e-03 -6.0079494716434921e-04 -1.2943284138686624e-03
|
||||
13 4.9199365930735345e-03 5.8023312918586692e-03 -7.7489345445261120e-04
|
||||
14 4.0516243615214899e-04 -5.8486182036653431e-03 -3.9249946949685144e-03
|
||||
15 -3.7089018420464036e-03 -5.7868019097368261e-03 3.2121433267619931e-03
|
||||
16 8.8035257588441089e-05 -2.0334633672149962e-02 1.4973527359082950e-03
|
||||
17 7.7360729694572576e-04 1.5346061058559362e-02 8.3704622311331378e-04
|
||||
18 -8.0066835867995026e-04 -8.6272351468143541e-04 -1.4482916352603645e-03
|
||||
19 1.2452384527498459e-03 -2.5061112043225221e-03 7.2998645858971855e-03
|
||||
20 3.5930056010593471e-03 3.6938854791676847e-03 3.2322736692798068e-03
|
||||
21 -1.4689186242560829e-03 -2.7352472551473247e-04 7.0581155868180371e-04
|
||||
22 -7.0694198604028301e-03 -4.2577150325890274e-03 2.8079083711864800e-04
|
||||
23 6.0446965730643750e-03 -1.4000132386422566e-03 2.5819752050698025e-03
|
||||
24 3.1926469474555008e-04 -9.9445460100738717e-04 1.5000192930508560e-04
|
||||
25 1.3789867459853888e-04 -4.4335884646610046e-03 -8.1807894538992332e-04
|
||||
26 2.0485905361409002e-03 2.7813360188135763e-03 4.3245728523802927e-03
|
||||
27 4.5604012089853278e-04 -1.0305533883296402e-03 2.1187985225197545e-04
|
||||
28 -6.2544520817733613e-03 1.4127710886673889e-03 -1.8429822030169415e-03
|
||||
29 6.4110655177640171e-04 3.1273431592077948e-03 3.7253670266864263e-03
|
||||
...
|
||||
77
unittest/force-styles/tests/fix-timestep-shake_angle.yaml
Normal file
77
unittest/force-styles/tests/fix-timestep-shake_angle.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:22 202
|
||||
epsilon: 2e-12
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix shake
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solvent shake 1.0e-5 20 4 b 5 a 1
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |-
|
||||
-6.7489461181454146e+01 -3.6466852749734755e+01 -4.1453635345326461e+01 -3.0881721833345594e+01 -2.8271651455044346e+01 1.8512237607314627e-01
|
||||
run_pos: ! |2
|
||||
1 -2.7045559935221097e-01 2.4912159904412490e+00 -1.6695851634760922e-01
|
||||
2 3.1004029578877490e-01 2.9612354630874571e+00 -8.5466363025011627e-01
|
||||
3 -7.0398551512563190e-01 1.2305509950678348e+00 -6.2777526850896104e-01
|
||||
4 -1.5818159336526965e+00 1.4837407818978032e+00 -1.2538710835933191e+00
|
||||
5 -9.0719763671886688e-01 9.2652103888784798e-01 3.9954210492830977e-01
|
||||
6 2.4831720377219527e-01 2.8313021315702191e-01 -1.2314233326160173e+00
|
||||
7 3.4143527702622728e-01 -2.2646549532188483e-02 -2.5292291427264142e+00
|
||||
8 1.1743552220275317e+00 -4.8863228684188353e-01 -6.3783432829693443e-01
|
||||
9 1.3800524229360562e+00 -2.5274721027441394e-01 2.8353985886396749e-01
|
||||
10 2.0510765212518995e+00 -1.4604063737408786e+00 -9.8323745028431875e-01
|
||||
11 1.7878031941850188e+00 -1.9921863270751916e+00 -1.8890602447198563e+00
|
||||
12 3.0063007040149974e+00 -4.9013350636226771e-01 -1.6231898103008302e+00
|
||||
13 4.0515402958586257e+00 -8.9202011560301075e-01 -1.6400005529400123e+00
|
||||
14 2.6066963345427290e+00 -4.1789253956770167e-01 -2.6634003609341543e+00
|
||||
15 2.9695287185432337e+00 5.5422613169503154e-01 -1.2342022022205887e+00
|
||||
16 2.6747029683763714e+00 -2.4124119045309693e+00 -2.3435744689915879e-02
|
||||
17 2.2153577782070029e+00 -2.0897985186673269e+00 1.1963150798970605e+00
|
||||
18 2.1373900776598025e+00 3.0170538458090777e+00 -3.5215797395691513e+00
|
||||
19 1.5430025676356878e+00 2.6303296449526830e+00 -4.2266668834026815e+00
|
||||
20 2.7636622208184249e+00 3.6827879501121257e+00 -3.9272659546065309e+00
|
||||
21 4.9052192222610893e+00 -4.0732760101838785e+00 -3.6279255237118848e+00
|
||||
22 4.3519818207211687e+00 -4.2184829355408970e+00 -4.4481958001387492e+00
|
||||
23 5.7453761098528204e+00 -3.5841442260386134e+00 -3.8622042081775270e+00
|
||||
24 2.0680414913305336e+00 3.1533722552494279e+00 3.1535500327659949e+00
|
||||
25 1.3065720083048245e+00 3.2620808683257665e+00 2.5145299517926252e+00
|
||||
26 2.5824112033663726e+00 4.0080581544129315e+00 3.2238053751606111e+00
|
||||
27 -1.9611343130357310e+00 -4.3563411931359832e+00 2.1098293115523683e+00
|
||||
28 -2.7473562684513424e+00 -4.0200819932379339e+00 1.5830052163433954e+00
|
||||
29 -1.3126000191366676e+00 -3.5962518039489830e+00 2.2746342468733833e+00
|
||||
run_vel: ! |2
|
||||
1 8.1705729507146694e-03 1.6516406093744648e-02 4.7902279090199758e-03
|
||||
2 5.4501493276694424e-03 5.1791698760542673e-03 -1.4372929651720338e-03
|
||||
3 -8.2298303446991464e-03 -1.2926552110646276e-02 -4.0984171815350275e-03
|
||||
4 -3.7699042793691569e-03 -6.5722892086671888e-03 -1.1184640147877201e-03
|
||||
5 -1.1021961023179821e-02 -9.8906780808723557e-03 -2.8410737186752395e-03
|
||||
6 -3.9676664596302008e-02 4.6817059618450937e-02 3.7148492579484528e-02
|
||||
7 9.1034031301506118e-04 -1.0128522664904683e-02 -5.1568252954671344e-02
|
||||
8 7.9064703413713640e-03 -3.3507265483952125e-03 3.4557099321061942e-02
|
||||
9 1.5644176069499448e-03 3.7365546445246702e-03 1.5047408832397751e-02
|
||||
10 2.9201446099433169e-02 -2.9249578511256962e-02 -1.5018076911020577e-02
|
||||
11 -4.7835964007472464e-03 -3.7481383012996786e-03 -2.3464103653896310e-03
|
||||
12 2.2696453008391230e-03 -3.4774279616438269e-04 -3.0640765817961284e-03
|
||||
13 2.7531739986205606e-03 5.8171065863360308e-03 -7.9467449090663456e-04
|
||||
14 3.5246182341718778e-03 -5.7939994947008274e-03 -3.9478431580931327e-03
|
||||
15 -1.8547943904014333e-03 -5.8554729842982909e-03 6.2938484741557809e-03
|
||||
16 1.8681498891538875e-02 -1.3262465322856009e-02 -4.5638650127800932e-02
|
||||
17 -1.2896270312366209e-02 9.7527665732632315e-03 3.7296535866542121e-02
|
||||
18 3.6201702653131140e-04 -3.1019808758173800e-04 8.1201764037217537e-04
|
||||
19 8.5112357208489992e-04 -1.4603354100514621e-03 1.0305255073350999e-03
|
||||
20 -6.5417980186682713e-04 4.4256252972757129e-04 4.7856452381576193e-04
|
||||
21 -1.3982466143572327e-03 -3.2420186877161783e-04 1.1419969006099733e-03
|
||||
22 -1.5884121227847409e-03 -1.5258103137919276e-03 1.4829684065368715e-03
|
||||
23 2.8156656234650006e-04 -3.9296160890725804e-03 -3.6141001623026133e-04
|
||||
24 8.5788312813832768e-04 -9.4446247923316430e-04 5.5288134920163914e-04
|
||||
25 1.6004032839658105e-03 -2.2093787045529070e-03 -5.4710568918423246e-04
|
||||
26 -1.5640453157606073e-03 3.5755072465497545e-04 2.4453237299123754e-03
|
||||
27 4.5604120291777391e-04 -1.0305523027099432e-03 2.1188058380935704e-04
|
||||
28 -6.2544520861865490e-03 1.4127711176129324e-03 -1.8429821884795277e-03
|
||||
29 6.4110631474916110e-04 3.1273432713407900e-03 3.7253671102111473e-03
|
||||
...
|
||||
77
unittest/force-styles/tests/fix-timestep-shake_bond.yaml
Normal file
77
unittest/force-styles/tests/fix-timestep-shake_bond.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 16:30:22 202
|
||||
epsilon: 2e-12
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix shake
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix move all nve
|
||||
fix test solute shake 1.0e-5 20 4 m 4.00794
|
||||
fix_modify test virial yes
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
run_stress: ! |2-
|
||||
4.1327164284089424e+00 4.1298776885725212e+00 7.7065049821613400e+01 7.3427739401911385e-01 3.1021321349896283e+01 3.0482918118325731e+01
|
||||
run_pos: ! |2
|
||||
1 -2.6863205200661111e-01 2.4924200251053290e+00 -1.6940797171639235e-01
|
||||
2 3.0314855494326542e-01 2.9555142432097057e+00 -8.4661597718762593e-01
|
||||
3 -7.0471630526064610e-01 1.2320076232474950e+00 -6.3059972306981116e-01
|
||||
4 -1.5777965340724665e+00 1.4826179820449468e+00 -1.2510232575370359e+00
|
||||
5 -9.0838614372668147e-01 9.2479324973660515e-01 4.0580653202856448e-01
|
||||
6 2.4793967906067266e-01 2.8343287430300662e-01 -1.2316652319085906e+00
|
||||
7 3.4143850947000215e-01 -2.2651528366236535e-02 -2.5292473574049557e+00
|
||||
8 1.1730749609547342e+00 -4.9001540353149414e-01 -6.4332649946665554e-01
|
||||
9 1.3845859932367997e+00 -2.4786933347311280e-01 3.0357812296279302e-01
|
||||
10 2.0524841105947438e+00 -1.4583699771497181e+00 -9.7983952239384009e-01
|
||||
11 1.7850840352923725e+00 -1.9987544346588086e+00 -1.8998839983899150e+00
|
||||
12 3.0095045212031324e+00 -4.8782153578051046e-01 -1.6261252340943422e+00
|
||||
13 4.0351185088311912e+00 -8.8522351740468841e-01 -1.6398224375628421e+00
|
||||
14 2.6123239686636546e+00 -4.1890190267071897e-01 -2.6495985815032790e+00
|
||||
15 2.9701534707934574e+00 5.4105345536459837e-01 -1.2389976744606215e+00
|
||||
16 2.6747027555918814e+00 -2.4124113563394083e+00 -2.3415671532674848e-02
|
||||
17 2.2153595673079205e+00 -2.0898013762372747e+00 1.1963177401330016e+00
|
||||
18 2.1369701694435119e+00 3.0158507393675174e+00 -3.5179348311269880e+00
|
||||
19 1.5355837135166919e+00 2.6255292354443638e+00 -4.2353987776659867e+00
|
||||
20 2.7727573004750279e+00 3.6923910448253729e+00 -3.9330842457663850e+00
|
||||
21 4.9040128074584084e+00 -4.0752348173558683e+00 -3.6210314712921452e+00
|
||||
22 4.3582355554470675e+00 -4.2126119427230533e+00 -4.4612844196479138e+00
|
||||
23 5.7439382849367417e+00 -3.5821957939146403e+00 -3.8766361296113812e+00
|
||||
24 2.0689243589978767e+00 3.1513346914192564e+00 3.1550389757754025e+00
|
||||
25 1.3045351338498816e+00 3.2665125711118623e+00 2.5111855260643079e+00
|
||||
26 2.5809237403158591e+00 4.0117602606099725e+00 3.2212060529034496e+00
|
||||
27 -1.9611343131186747e+00 -4.3563411932863181e+00 2.1098293116020814e+00
|
||||
28 -2.7473562684591109e+00 -4.0200819932508631e+00 1.5830052163456609e+00
|
||||
29 -1.3126000191565619e+00 -3.5962518039874860e+00 2.2746342468906682e+00
|
||||
run_vel: ! |2
|
||||
1 7.7374089697702340e-03 1.5916892554636120e-02 5.0456645075959315e-03
|
||||
2 6.5175317085631830e-03 6.0077809909591315e-03 -2.7565762268061691e-03
|
||||
3 -7.3639495008649726e-03 -1.2783103383496114e-02 -3.3210885167291849e-03
|
||||
4 -5.8960928588029050e-03 -5.9659026594337371e-03 -2.6326334955469629e-03
|
||||
5 -1.0929649166221467e-02 -9.6585820819745337e-03 -3.0956626591882317e-03
|
||||
6 -4.0123707366825134e-02 4.7187394112873600e-02 3.6871538264118715e-02
|
||||
7 9.1133487010605738e-04 -1.0132608633652593e-02 -5.1595915280729321e-02
|
||||
8 7.0089143878456980e-03 -4.2476532224071028e-03 3.0986626913844219e-02
|
||||
9 4.6371837171993438e-03 7.0467783396206997e-03 2.8626734931872490e-02
|
||||
10 3.0610207065038343e-02 -2.7619291009667819e-02 -1.2133094808158711e-02
|
||||
11 -7.2029914080563463e-03 -9.4537429127199805e-03 -1.1792451031601467e-02
|
||||
12 1.5104136100256851e-03 -8.6488026266383442e-04 -2.9343726025856101e-03
|
||||
13 4.0386002756917826e-03 5.5920871347548079e-03 -9.5141171089924864e-04
|
||||
14 3.7450160863088276e-03 -5.7205370491546937e-03 -4.1283641103704487e-03
|
||||
15 -1.6192252475286013e-03 -4.5865111215587151e-03 6.6369580798579545e-03
|
||||
16 1.8683716258411448e-02 -1.3263096088951513e-02 -4.5607321000770314e-02
|
||||
17 -1.2893753425925471e-02 9.7485795481259876e-03 3.7300775385779875e-02
|
||||
18 -8.0065894051881148e-04 -8.6270684963651867e-04 -1.4483015146944855e-03
|
||||
19 1.2452389852680510e-03 -2.5061098313021958e-03 7.2998634573395622e-03
|
||||
20 3.5930058838403115e-03 3.6938858373569165e-03 3.2322734729320975e-03
|
||||
21 -1.4689219027528956e-03 -2.7352134530947056e-04 7.0581593448005328e-04
|
||||
22 -7.0694199260273143e-03 -4.2577148857392598e-03 2.8079115157198279e-04
|
||||
23 6.0446963222438397e-03 -1.4000131442962716e-03 2.5819754631691500e-03
|
||||
24 3.1926442964369691e-04 -9.9445591935644600e-04 1.5000033448111903e-04
|
||||
25 1.3789825021844792e-04 -4.4335889596263511e-03 -8.1808100227326449e-04
|
||||
26 2.0485904735292599e-03 2.7813359659683385e-03 4.3245727170611618e-03
|
||||
27 4.5604110580961207e-04 -1.0305524671180935e-03 2.1188063421234097e-04
|
||||
28 -6.2544520944132998e-03 1.4127711036803850e-03 -1.8429821866102578e-03
|
||||
29 6.4110628696208052e-04 3.1273432221612541e-03 3.7253671295737062e-03
|
||||
...
|
||||
75
unittest/force-styles/tests/fix-timestep-temp_berendsen.yaml
Normal file
75
unittest/force-styles/tests/fix-timestep-temp_berendsen.yaml
Normal file
@ -0,0 +1,75 @@
|
||||
---
|
||||
lammps_version: 21 Jul 2020
|
||||
date_generated: Sun Aug 9 07:12:16 202
|
||||
epsilon: 1e-14
|
||||
prerequisites: ! |
|
||||
atom full
|
||||
fix temp/berendsen
|
||||
pre_commands: ! ""
|
||||
post_commands: ! |
|
||||
fix all solute nve
|
||||
fix test solute temp/berendsen 50.0 ${t_target} 1.0
|
||||
input_file: in.fourmol
|
||||
natoms: 29
|
||||
global_scalar: 140.500399901528
|
||||
run_pos: ! |2
|
||||
1 -2.7309636642471763e-01 2.4861645745691683e+00 -1.6828848361402490e-01
|
||||
2 3.0754156828804369e-01 2.9580811430810168e+00 -8.5566344544442696e-01
|
||||
3 -7.0122770940380430e-01 1.2339445479551032e+00 -6.2630377656128777e-01
|
||||
4 -1.5804472514360892e+00 1.4859973441832681e+00 -1.2520124052982806e+00
|
||||
5 -9.0374947361394331e-01 9.2892484821615950e-01 4.0028294365544248e-01
|
||||
6 2.6054522561991372e-01 2.6809488486741462e-01 -1.2454390553490415e+00
|
||||
7 3.4113678304929385e-01 -1.8979558589829474e-02 -2.5116522993743571e+00
|
||||
8 1.1716199786283663e+00 -4.8725335288759802e-01 -6.4822281049325703e-01
|
||||
9 1.3792620285766666e+00 -2.5270770981342516e-01 2.7933353973879949e-01
|
||||
10 2.0422906283128670e+00 -1.4518843639641870e+00 -9.7890931987345720e-01
|
||||
11 1.7892476580970549e+00 -1.9906322518767001e+00 -1.8873753918956127e+00
|
||||
12 3.0052861385021128e+00 -4.8980879715968567e-01 -1.6218666251486527e+00
|
||||
13 4.0492389166811398e+00 -8.9494016256557662e-01 -1.6394908431361932e+00
|
||||
14 2.6057881176374380e+00 -4.1473486027171080e-01 -2.6608124094383205e+00
|
||||
15 2.9716736613290236e+00 5.5705022673260141e-01 -1.2371490367526674e+00
|
||||
16 2.6686127048309953e+00 -2.4079062466699259e+00 -8.6769783148858658e-03
|
||||
17 2.2194270729627537e+00 -2.0931602868129722e+00 1.1836986021579625e+00
|
||||
18 2.1384791188033843e+00 3.0177261773770208e+00 -3.5160827596876225e+00
|
||||
19 1.5349125211132961e+00 2.6315969880333707e+00 -4.2472859440220647e+00
|
||||
20 2.7641167828863153e+00 3.6833419064000221e+00 -3.9380850623312638e+00
|
||||
21 4.9064454390208301e+00 -4.0751205255383196e+00 -3.6215576073601046e+00
|
||||
22 4.3687453488627543e+00 -4.2054270536772504e+00 -4.4651491269372565e+00
|
||||
23 5.7374928154769504e+00 -3.5763355905184966e+00 -3.8820297194230728e+00
|
||||
24 2.0684115301174013e+00 3.1518221747664397e+00 3.1554242678474576e+00
|
||||
25 1.2998381073113014e+00 3.2755513587518097e+00 2.5092990173114837e+00
|
||||
26 2.5807438597688113e+00 4.0120175892854135e+00 3.2133398379059099e+00
|
||||
27 -1.9613581876744359e+00 -4.3556300596085160e+00 2.1101467673534788e+00
|
||||
28 -2.7406520384725965e+00 -4.0207251278130975e+00 1.5828689861678511e+00
|
||||
29 -1.3108232656499081e+00 -3.5992986322410760e+00 2.2680459788743503e+00
|
||||
run_vel: ! |2
|
||||
1 4.4822485045367504e-03 9.2630275931323714e-03 2.7690954442220936e-03
|
||||
2 2.5115450429997297e-03 1.9432770966180499e-03 -1.6028636434240902e-03
|
||||
3 -4.3937474121539854e-03 -7.7137150893059059e-03 -2.2604818247973606e-03
|
||||
4 -1.9476891076786384e-03 -3.4752865444196575e-03 2.5858331694165467e-04
|
||||
5 -6.0140772566964372e-03 -5.8056118324908155e-03 -1.6285179811875374e-03
|
||||
6 -2.2469338308920575e-02 2.6184066673584038e-02 2.0084128049821442e-02
|
||||
7 5.5310241062432727e-04 -5.4895662329791485e-03 -2.8451095082690465e-02
|
||||
8 4.3820080553155973e-03 -1.7125373775392955e-03 1.9574889525765377e-02
|
||||
9 6.1123931362892586e-04 2.7099585868545638e-03 8.3091915039055237e-03
|
||||
10 1.6488027562775176e-02 -1.6715055435345464e-02 -8.4916986007994542e-03
|
||||
11 -2.6493638654309275e-03 -1.8108088716662662e-03 -7.1397665423713101e-04
|
||||
12 1.0553014594281446e-03 -4.9095325173559483e-05 -1.4582671613828872e-03
|
||||
13 6.8186312546743191e-04 2.5433794096564773e-03 -2.8303405188633229e-04
|
||||
14 2.0318309992730424e-03 -2.4195214229911048e-03 -1.4031089865427190e-03
|
||||
15 -1.0420290545722850e-04 -2.6462739410254661e-03 2.8946287413495492e-03
|
||||
16 1.0435719112539276e-02 -7.2849035729913086e-03 -2.5728092378723793e-02
|
||||
17 -7.3214526097835405e-03 5.3566310662169067e-03 2.0611725900352998e-02
|
||||
18 -6.0936815808025862e-04 -9.3774557532468582e-04 -3.3558072507805731e-04
|
||||
19 -6.9919768291957119e-04 -3.6060777270430031e-03 4.2833405289822791e-03
|
||||
20 4.7777805013736515e-03 5.1003745845520452e-03 1.8002873923729241e-03
|
||||
21 -9.5568188553430398e-04 1.6594630943762931e-04 -1.8199788009966615e-04
|
||||
22 -3.3137518957653462e-03 -2.8683968287936054e-03 3.6384389958326871e-03
|
||||
23 2.4209481134686401e-04 -4.5457709985051130e-03 2.7663581642115042e-03
|
||||
24 2.5447450568861086e-04 4.8412447786110117e-04 -4.8021914527341357e-04
|
||||
25 4.3722771097312743e-03 -4.5184411669545515e-03 2.5200952006556795e-03
|
||||
26 -1.9250110555001179e-03 -3.0342169883610837e-03 3.5062814567984532e-03
|
||||
27 -2.6510179146429716e-04 3.6306203629019116e-04 -5.6235585400647747e-04
|
||||
28 -2.3068708109787484e-04 -8.5663070212203200e-04 2.1302563179109169e-03
|
||||
29 -2.5054744388303732e-03 -1.6773997805290820e-04 2.8436699761004796e-03
|
||||
...
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user