diff --git a/src/.gitignore b/src/.gitignore index 5699a87089cea119b080ce2b67a223fcf67ff45f..4f517af3af41e9dbe020a7c0be3dd0d58fe6405b 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -269,6 +269,8 @@ /compute_dpd.h /compute_dpd_atom.cpp /compute_dpd_atom.h +/compute_entropy_atom.cpp +/compute_entropy_atom.h /compute_erotate_asphere.cpp /compute_erotate_asphere.h /compute_erotate_rigid.cpp @@ -311,8 +313,8 @@ /compute_spec_atom.h /compute_stress_mop.cpp /compute_stress_mop.h -/compute_stress_mop.profile.cpp -/compute_stress_mop.profile.h +/compute_stress_mop_profile.cpp +/compute_stress_mop_profile.h /compute_stress_tally.cpp /compute_stress_tally.h /compute_temp_asphere.cpp @@ -746,6 +748,8 @@ /pair_eam_cd.h /pair_eam_fs.cpp /pair_eam_fs.h +/pair_lj_expand_coul_long.cpp +/pair_lj_expand_coul_long.h /pair_edip.cpp /pair_edip.h /pair_edip_multi.cpp diff --git a/src/Makefile b/src/Makefile index eefc64b274b1e9226f27456da78976f4e126ce4b..7d31c81c75d79d644f45d70365658cf1be8a2b4d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -74,7 +74,7 @@ PACKSYS = compress mpiio python user-lb PACKINT = gpu kokkos meam message poems reax user-atc user-awpmd user-colvars -PACKEXT = kim mscg voronoi \ +PACKEXT = kim latte mscg voronoi \ user-h5md user-molfile user-netcdf user-qmmm user-quip \ user-smd user-vtk diff --git a/src/USER-MISC/compute_stress_mop.cpp b/src/USER-MISC/compute_stress_mop.cpp index f764e0ee7e9ca85410db98cb613e0fea98d130f0..e63dff507f4aab135d8d4db7a6749033ca9262ac 100644 --- a/src/USER-MISC/compute_stress_mop.cpp +++ b/src/USER-MISC/compute_stress_mop.cpp @@ -397,13 +397,13 @@ void ComputeStressMop::compute_pairs() // at each timestep, must check atoms going through the // image of the plane that is closest to the box - double pos_temp = pos+copysign(1,domain->prd_half[dir]-pos)*domain->prd[dir]; + double pos_temp = pos+copysign(1.0,domain->prd_half[dir]-pos)*domain->prd[dir]; if (fabs(xi[dir]-pos)<fabs(xi[dir]-pos_temp)) pos_temp = pos; if (((xi[dir]-pos_temp)*(xj[dir]-pos_temp)<0)){ - //sgn = copysign(1,vi[dir]-vcm[dir]); - sgn = copysign(1,vi[dir]); + //sgn = copysign(1.0,vi[dir]-vcm[dir]); + sgn = copysign(1.0,vi[dir]); //approximate crossing velocity by v(t-dt/2) (based on Velocity-Verlet alg.) double vcross[3]; diff --git a/src/USER-MISC/compute_stress_mop_profile.cpp b/src/USER-MISC/compute_stress_mop_profile.cpp index 7ba0622aa45d0d8dac1b3e30d4f2763c34cc2a39..02ad3ea453971f27092266e90857d535f7da79a4 100644 --- a/src/USER-MISC/compute_stress_mop_profile.cpp +++ b/src/USER-MISC/compute_stress_mop_profile.cpp @@ -422,7 +422,7 @@ void ComputeStressMopProfile::compute_pairs() if (((xi[dir]-pos)*(xj[dir]-pos)*(xi[dir]-pos1)*(xj[dir]-pos1)<0)){ - sgn = copysign(1,vi[dir]); + sgn = copysign(1.0,vi[dir]); //approximate crossing velocity by v(t-dt/2) (based on Velocity-Verlet alg.) double vcross[3]; diff --git a/src/USER-SMD/smd_math.h b/src/USER-SMD/smd_math.h index 23d76f0fdb2bfc58984e1344755d8db413f9e826..cea9e9dbc71430713b72a530c6daaebfc0fa2c66 100644 --- a/src/USER-SMD/smd_math.h +++ b/src/USER-SMD/smd_math.h @@ -24,7 +24,7 @@ static inline void LimitDoubleMagnitude(double &x, const double limit) { * if |x| exceeds limit, set x to limit with the sign of x */ if (fabs(x) > limit) { // limit delVdotDelR to a fraction of speed of sound - x = limit * copysign(1, x); + x = limit * copysign(1.0, x); } }