Commit 4a5d9eaa authored by sjplimp's avatar sjplimp Committed by GitHub
Browse files

Merge pull request #217 from akohlmey/small-fixes

Collected small changes and bugfixes
parents 4e3a5504 f8a26dd1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -924,7 +924,7 @@ KOKKOS, o = USER-OMP, t = OPT.
"tip4p/long (o)"_pair_coul.html,
"tri/lj"_pair_tri_lj.html,
"vashishta (o)"_pair_vashishta.html,
"vashishta/table (o)"_pair_vashishta_table.html,
"vashishta/table (o)"_pair_vashishta.html,
"yukawa (go)"_pair_yukawa.html,
"yukawa/colloid (go)"_pair_yukawa_colloid.html,
"zbl (go)"_pair_zbl.html :tb(c=4,ea=c)
+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ Fixes :h1
   fix_drag
   fix_drude
   fix_drude_transform
   fix_dpd_energy
   fix_dt_reset
   fix_efield
   fix_ehex
@@ -148,6 +149,7 @@ Fixes :h1
   fix_viscous
   fix_wall
   fix_wall_gran
   fix_wall_gran_region
   fix_wall_piston
   fix_wall_reflect
   fix_wall_region
+35 −35
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ enabled if LAMMPS was built with that package. See the "Making
LAMMPS"_Section_start.html#start_3 section for more info.

Pair styles {dpd/fdt} and {dpd/fdt/energy} require use of the
"communicate vel yes"_communicate.html option so that velocites are
"comm_modify vel yes"_comm_modify.html option so that velocites are
stored by ghost atoms.

Pair style {dpd/fdt/energy} requires "atom_style dpd"_atom_style.html
+2 −0
Original line number Diff line number Diff line
@@ -489,6 +489,8 @@
/fix_wall_colloid.h
/fix_wall_gran.cpp
/fix_wall_gran.h
/fix_wall_gran_region.cpp
/fix_wall_gran_region.h
/fix_wall_piston.cpp
/fix_wall_piston.h
/fix_wall_srd.cpp
+3 −3
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@
   Contributing authors: Dan Bolintineanu (SNL)
------------------------------------------------------------------------- */

#include "math.h"
#include "stdlib.h"
#include "string.h"
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "fix_wall_gran_region.h"
#include "region.h"
#include "atom.h"
Loading