Skip to content

Commit

Permalink
Merge pull request #2428 from thepith/fix_nacl_script
Browse files Browse the repository at this point in the history
fix nacl.py tutorial script
  • Loading branch information
RudolfWeeber authored Jan 7, 2019
2 parents 4f41ee8 + 0a3380e commit 2e5bf53
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions doc/tutorials/02-charged_system/scripts/nacl.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import espressomd
from espressomd import assert_features, electrostatics
import numpy

Expand Down Expand Up @@ -52,7 +53,7 @@
# Setup System
box_l = (n_part / density)**(1. / 3.)
system = espressomd.System(box_l=[box_l] * 3)
system.seed  = system.cell_system.get_state()['n_nodes'] * [1234]
system.seed = system.cell_system.get_state()['n_nodes'] * [1234]
system.periodicity = [1, 1, 1]
system.time_step = time_step
system.cell_system.skin = 0.3
Expand Down Expand Up @@ -102,8 +103,8 @@ def combination_rule_sigma(rule, sig1, sig2):

while min_dist < max_sigma:
# Warmup Helper: Cap max. force, increase slowly for overlapping particles
min_dist = system.analysis.mindist([types["Anion"], types["Cation"]], [
types["Anion"], types["Cation"]])
min_dist = system.analysis.min_dist([types["Anion"], types["Cation"]], [
types["Anion"], types["Cation"]])
cap += min_dist
# print min_dist, cap
system.force_cap = cap
Expand All @@ -114,7 +115,7 @@ def combination_rule_sigma(rule, sig1, sig2):
system.force_cap = 0

print("\n--->Tuning Electrostatics")
p3m = electrostatics.P3M(bjerrum_length=l_bjerrum, accuracy=1e-3)
p3m = electrostatics.P3M(prefactor=l_bjerrum, accuracy=1e-3)
system.actors.add(p3m)

print("\n--->Temperature Equilibration")
Expand All @@ -125,9 +126,9 @@ def combination_rule_sigma(rule, sig1, sig2):
print(
"t={0:.1f}, E_total={1:.2f}, E_coulomb={2:.2f}, T_cur={3:.4f}".format(system.time,
system.analysis.energy()[
'total'],
'total'],
system.analysis.energy()[
'coulomb'],
'coulomb'],
temp_measured))
system.integrator.run(100)

Expand All @@ -140,9 +141,9 @@ def combination_rule_sigma(rule, sig1, sig2):
print(
"t={0:.1f}, E_total={1:.2f}, E_coulomb={2:.2f}, T_cur={3:.4f}".format(system.time,
system.analysis.energy()[
'total'],
'total'],
system.analysis.energy()[
'coulomb'],
'coulomb'],
temp_measured[-1]))
system.integrator.run(integ_steps_per_config)

Expand Down

0 comments on commit 2e5bf53

Please sign in to comment.