@@ -16,12 +16,6 @@ simulation resemble the Monte Carlo move from :ref:`chapter6-label`:
16
16
- 4) We then decide to keep or reject the move by calculating
17
17
the difference in energy between the trial and the initial configurations:
18
18
:math: `\Delta E = E_\text {pot}^\text {trial} - E_\text {pot}^\text {initial}`.
19
-
20
- - If :math: `\Delta E < 0 `, then the move is automatically accepted.
21
- - If :math: `\Delta E > 0 `, then the move is accepted with a probability given
22
- by the Boltzmann factor :math: `\exp {- \beta \Delta E}`, where
23
- :math: `\beta = 1 / k_\text {B} T` and :math: `T` is the imposed temperature.
24
-
25
19
- 5) Steps 1-4 are repeated a large number of times, generating a broad range of
26
20
possible configurations.
27
21
@@ -38,7 +32,7 @@ Let us add the following method called *monte_carlo_exchange* to the *MonteCarlo
38
32
# The first step is to make a copy of the previous state
39
33
# Since atoms numbers are evolving, its also important to store the
40
34
# neighbor, sigma, and epsilon lists
41
- self .Epot = self .compute_potential()
35
+ self .Epot = self .compute_potential() # TOFIX: not necessary every time
42
36
initial_positions = copy.deepcopy(self .atoms_positions)
43
37
initial_number_atoms = copy.deepcopy(self .number_atoms)
44
38
initial_neighbor_lists = copy.deepcopy(self .neighbor_lists)
@@ -72,15 +66,15 @@ Let us add the following method called *monte_carlo_exchange* to the *MonteCarlo
72
66
.. label :: end_MonteCarlo_class
73
67
74
68
First, the potential energy is calculated, and the current state of the
75
- simulations , such as positions and atom numbers, are saved. Then, an insertion
76
- try or a deletion trial is made, each with a probability of 0.5. The
77
- *monte_carlo_insert * and *monte_carlo_delete *, that are implemented here below,
78
- are both calculting the *acceptation_probability *. A random number is again selected,
79
- and if that number is larger than the acceptation probability, then the system
80
- revert to its previous position. If the random number is lower than the acceptation
81
- probability, nothing appends, which means that the last trial is accepted.
69
+ simulation , such as positions and atom numbers, is saved. Then, an insertion
70
+ trial or a deletion trial is made, each with a probability of 0.5. The
71
+ *monte_carlo_insert * and *monte_carlo_delete * methods, which are implemented
72
+ below, both calculate the *acceptance_probability *. A random number is selected,
73
+ and if that number is larger than the acceptance probability, the system reverts
74
+ to its previous position. If the random number is lower than the acceptance
75
+ probability, nothing happens, meaning that the last trial is accepted.
82
76
83
- Then, let us write the *monte_carlo_insert * method:
77
+ Then, let us write the *monte_carlo_insert() * method:
84
78
85
79
.. label :: start_MonteCarlo_class
86
80
@@ -96,7 +90,6 @@ Then, let us write the *monte_carlo_insert* method:
96
90
self .atoms_positions = np.vstack([self .atoms_positions[:shift_id],
97
91
new_atom_position,
98
92
self .atoms_positions[shift_id:]])
99
- self .total_number_atoms = np.sum(self .number_atoms)
100
93
self .update_neighbor_lists()
101
94
self .identify_atom_properties()
102
95
self .update_cross_coefficients()
@@ -111,7 +104,10 @@ Then, let us write the *monte_carlo_insert* method:
111
104
112
105
.. label :: end_MonteCarlo_class
113
106
114
- as well as the *monte_carlo_delete * method:
107
+ After trying to insert a new particle, neighbor lists and cross coefficients
108
+ must be re-evaluated. Then, the acceptance probability is calculated.
109
+
110
+ Let us add the very similar *monte_carlo_delete() * method:
115
111
116
112
.. label :: start_MonteCarlo_class
117
113
@@ -192,7 +188,7 @@ Let us also normalised the "desired_mu":
192
188
193
189
.. label :: end_MonteCarlo_class
194
190
195
- Finally, the *monte_carlo_insert_delete () * method must be included in the run:
191
+ Finally, the *monte_carlo_exchange () * method must be included in the run:
196
192
197
193
.. label :: start_MonteCarlo_class
198
194
@@ -207,7 +203,7 @@ Finally, the *monte_carlo_insert_delete()* method must be included in the run:
207
203
208
204
.. label :: end_MonteCarlo_class
209
205
210
- We need to calculate Lambda:
206
+ We need to calculate :math: ` \ Lambda` :
211
207
212
208
.. label :: start_MonteCarlo_class
213
209
@@ -228,6 +224,7 @@ To output the density, let us add the following method to the *Measurements* cla
228
224
229
225
def calculate_density (self ):
230
226
""" Calculate the mass density."""
227
+ # TOFIX: not used yet
231
228
volume = np.prod(self .box_size[:3 ]) # Unitless
232
229
total_mass = np.sum(self .atoms_mass) # Unitless
233
230
return total_mass/ volume # Unitless
@@ -237,8 +234,8 @@ To output the density, let us add the following method to the *Measurements* cla
237
234
Test the code
238
235
-------------
239
236
240
- One can use a similar test as previously. Let us use a displace distance of
241
- 0.5 Angstrom, and make 1000 steps.
237
+ One can use a similar test as previously, but with an imposed chemical
238
+ potential * desired_mu *:
242
239
243
240
.. label :: start_test_8a_class
244
241
@@ -287,8 +284,10 @@ One can use a similar test as previously. Let us use a displace distance of
287
284
288
285
# Test function using pytest
289
286
def test_output_files ():
290
- assert os.path.exists(" Outputs/dump.mc.lammpstrj" ), " Test failed: dump file was not created"
291
- assert os.path.exists(" Outputs/simulation.log" ), " Test failed: log file was not created"
287
+ assert os.path.exists(" Outputs/dump.mc.lammpstrj" ), \
288
+ " Test failed: dump file was not created"
289
+ assert os.path.exists(" Outputs/simulation.log" ), \
290
+ " Test failed: log file was not created"
292
291
print (" Test passed" )
293
292
294
293
# If the script is run directly, execute the tests
@@ -300,5 +299,4 @@ One can use a similar test as previously. Let us use a displace distance of
300
299
.. label :: end_test_8a_class
301
300
302
301
The evolution of the potential energy as a function of the
303
- number of steps are written in the *Outputs/Epot.dat * file
304
- and can be plotted.
302
+ number of steps are written in the *Outputs/Epot.dat *.
0 commit comments