forked from stephen70/2D-Ising-Model-Package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathising2D.py
957 lines (746 loc) · 36.6 KB
/
ising2D.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
import matplotlib.pyplot as plt
import numpy as np
import math
from matplotlib import colors
import copy
class IsingSquare:
# initialise a spin lattice and populate with random spins
def __init__(self, order, interactionVal=1, magMoment=1):
if order < 3:
raise ValueError('Order number needs to be greater than 2.')
self.temp = 0.0
self.beta = 0.0
self.boltzmann = 1.38064852 * (10 ** -23)
self.order = order
self.J = float(interactionVal)
self.h = float(magMoment)
self.magList = []
self.specHeatList = []
self.energyList = []
self.suscepList = []
self.spins = []
self.resetSpins()
# reset the spin lattice to a random configuration
def resetSpins(self):
vals = np.array([-1, 1])
self.spins = np.random.choice(vals, size=(self.order, self.order))
# returns an array of an atom's 4 nearest neighbours
def neighbours(self, row, col):
return np.asarray([self.spins[row][col - 1], #left
self.spins[row][(col + 1) % self.order], #right
self.spins[row - 1][col], #up
self.spins[(row + 1) % self.order][col]]) #down
# calculates the energy of a single atom, using the Hamiltonian
def singleEnergy(self, row, col):
neighbours = self.neighbours(row, col)
selfSpin = self.spins[row][col]
return self.J * selfSpin * np.sum(np.sum(neighbours)) - self.h * selfSpin
# calculates the magnitude of the entire energy of the lattice
def totalEnergy(self):
energy = 0.0
for i in np.arange(self.order):
for j in np.arange(self.order):
energy += self.singleEnergy(i, j)
# to avoid counting pairs twice, divide by two
# divide by maximum possible energy to normalise
return math.fabs(energy) / (self.order * self.order * (-4 * self.J - self.h) )
# calculates the magnitude of the residual magnetic spin of the lattice
# normalise by dividing by order of lattice squared
def totalMag(self):
return math.fabs(np.sum(np.sum(self.spins)) / (self.order ** 2))
def specHeat(self, energy, energySquared, temp):
return (energySquared - energy ** 2) * (1 / (self.order * self.order * 2 * temp * temp))
def suscep(self, mag, magSquared, temp):
return self.J * (magSquared - mag ** 2) * (1 / (self.order * self.order * 2 * temp))
# attempts to flip a random spin using the metropolis algorithm and the Boltzmann distribution
def tryFlip(self, row, col):
# energy change = -2 * E_initial
# so accept change if E_initial >= 0
energy = self.singleEnergy(row, col)
if energy <= 0 or np.random.random() <= math.exp(-self.beta * 2 * energy):
self.spins[row][col] *= -1
# closes plot window
def close_event(self):
plt.close() # timer calls this function after 3 seconds and closes the window
# plots a meshgrid of the initial and final spin lattices
def plotStartEndSpins(self, spinsList, iters=1000000):
cmap = colors.ListedColormap(['red', 'yellow'])
bounds = [-1, 0, 1]
norm = colors.BoundaryNorm(bounds, cmap.N)
plt.subplots(nrows=1, ncols=2)
plt.tight_layout()
plt.subplot(1,2,1)
plt.imshow(spinsList[0], cmap=cmap, norm=norm)
plt.xticks([], [])
plt.yticks([], [])
plt.title('Initial Configuration')
plt.subplot(1, 2, 2)
plt.imshow(spinsList[1], cmap=cmap, norm=norm)
plt.xticks([], [])
plt.yticks([], [])
plt.title('Final Configuration')
title = "Temperature (J/K_B) = {0}, J = {1}, h = {2}, Iterations = {3}".format(self.temp, self.J, self.h, iters) + "\n" + "Order: {0} x {1}".format(self.order, self.order)
plt.suptitle(title)
# timer = fig.canvas.new_timer(
# interval=graphInterval) # creating a timer object and setting an interval of 3000 milliseconds
# timer.add_callback(self.close_event)
# timer.start()
plt.show()
# simulates the lattice at a constant temperature temp, for iters iterations, plots the resulting lattices, and returns the spin configurations
def basicIter(self, iters=1000000, temp=1, plot=False):
self.resetSpins()
spinsList = [copy.deepcopy(self.spins)]
self.temp = temp
self.beta = 1.0 / self.temp
for i in np.arange(iters + 1):
row, col = np.random.randint(self.order), np.random.randint(self.order)
self.tryFlip(row, col)
spinsList.append(self.spins)
if plot:
self.plotStartEndSpins(spinsList, iters)
else:
for i in np.arange(len(spinsList[0])):
spinsList[0][i] = np.asarray(spinsList[0][i])
for i in np.arange(len(spinsList[1])):
spinsList[1][i] = np.asarray(spinsList[1][i])
spinsList = np.array(spinsList)
return spinsList
# simulates the lattice oer a temperature range tempRange, with itersPerTemp iterations per temperature
# plotProperties: plot the residual spin, total energy, susceptibility and specific heat
def tempRangeIter(self, tempRange=np.arange(start=0.8, stop=3.2, step=0.05), itersPerTemp=100000, plotProperties=False):
self.resetSpins()
# store the averages here
energyList = []
magList = []
specHeatList = []
suscepList = []
for temp in tempRange:
self.beta = 1.0 / temp
print("Calculating temp:", temp)
# allow to reach equilibrium
for i in np.arange(itersPerTemp + 1):
row, col = np.random.randint(0, self.order), np.random.randint(0, self.order)
self.tryFlip(row, col)
#do a further thousand iterations to get average, and every hundred iterations, store the properties
if plotProperties:
#store the values used to calculate averages here
magListEquilib = []
energyListEquilib = []
for i in np.arange(500000):
if i % 5000 == 0:
energy = self.totalEnergy()
mag = self.totalMag()
energyListEquilib.append(energy)
magListEquilib.append(mag)
row, col = np.random.randint(0, self.order), np.random.randint(0, self.order)
self.tryFlip(row, col)
energyAvg = np.average(energyListEquilib)
energySquaredAvg = np.average(np.square(energyListEquilib))
magAvg = np.average(magListEquilib)
magSquaredAvg = np.average(np.square(magListEquilib))
energyList.append(energyAvg)
magList.append(magAvg)
specHeatList.append(self.specHeat(energyAvg, energySquaredAvg, temp))
suscepList.append(self.suscep(magAvg, magSquaredAvg, temp))
# reset the spins for the next temperature
self.resetSpins()
if plotProperties:
plt.tight_layout()
plt.subplot(2, 2, 1)
plt.plot(tempRange, energyList)
plt.title("Total Energy")
plt.axvline(x=2.269185, c='r', linestyle='--')
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.subplot(2, 2, 2)
plt.plot(tempRange, magList)
plt.title("Residual Spin")
plt.axvline(x=2.269185, c='r', linestyle='--')
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.subplot(2, 2, 3)
plt.plot(tempRange, specHeatList)
plt.title("Specific Heat Capacity")
plt.axvline(x=2.269185, c='r', linestyle='--')
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.subplot(2, 2, 4)
plt.plot(tempRange, suscepList)
plt.title("Susceptibility")
plt.axvline(x=2.269185, c='r', linestyle='--')
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.show()
class IsingTriangle:
# initialise a spin lattice and populate with random spins
def __init__(self, order, interactionVal=1, magMoment=1):
if order < 4:
raise ValueError('Order number needs to be greater than 3.')
self.temp = 0.0
self.beta = 0.0
self.boltzmann = 1.38064852 * (10 ** -23)
self.order = order
self.J = float(interactionVal)
self.h = float(magMoment)
self.magList = []
self.specHeatList = []
self.energyList = []
self.suscepList = []
self.spins = []
self.resetSpins()
# reset the spin lattice to a random configuration
def resetSpins(self):
self.spins = []
vals = np.array([1, -1])
for i in np.arange(self.order):
self.spins.append(list(np.random.choice(vals, size=i + 1)))
# returns an array of an atom's 6 nearest neighbours
def neighbours(self, row, col):
# centre atoms
if 1 < row < self.order - 1 and 0 < col < row:
return np.asarray([self.spins[row - 1][col - 1],
self.spins[row - 1][col],
self.spins[row][col - 1],
self.spins[row][col + 1],
self.spins[row + 1][col],
self.spins[row + 1][col + 1]])
# left side central
elif 0 < row < self.order - 1 and col == 0:
return np.asarray([self.spins[row - 1][0],
self.spins[row][1],
self.spins[row + 1][0],
self.spins[row + 1][1],
self.spins[row][row],
self.spins[row - 1][row - 1]])
# right side central
elif 0 < row < self.order - 1 and col == row:
return np.asarray([self.spins[row - 1][row - 1],
self.spins[row - 1][0],
self.spins[row][row - 1],
self.spins[row][0],
self.spins[row + 1][row],
self.spins[row + 1][row + 1]])
# bottom side central
elif row == self.order - 1 and 0 < col < row:
return np.asarray([self.spins[row - 1][col - 1],
self.spins[row - 1][col],
self.spins[row][col - 1],
self.spins[row][col + 1],
self.spins[0][0],
self.spins[0][0]])
# very top
elif row == 0:
return np.asarray([self.spins[1][0],
self.spins[1][1],
self.spins[self.order - 1][0],
self.spins[self.order - 1][self.order - 1],
self.spins[self.order - 1][1],
self.spins[self.order - 1][self.order - 2]])
# bottom left
elif row == self.order - 1 and col == 0:
return np.asarray([self.spins[row - 1][0],
self.spins[row - 1][row - 1],
self.spins[row][1],
self.spins[row][row],
self.spins[0][0],
self.spins[0][0]])
# bottom right
elif row == self.order - 1 and (col == row):
return np.asarray([self.spins[row - 1][0],
self.spins[row - 1][row - 1],
self.spins[row][0],
self.spins[row][row - 1],
self.spins[0][0],
self.spins[0][0]])
# calculates the energy of a single atom, using the Hamiltonian
def singleEnergy(self, row, col):
neighbours = self.neighbours(row, col)
selfSpin = self.spins[row][col]
return self.J * selfSpin * np.sum(np.sum(neighbours)) - self.h * selfSpin
# calculates the magnitude of the entire energy of the lattice
def totalEnergy(self):
energy = 0.0
for i in np.arange(self.order):
for j in np.arange(len(self.spins[i])):
energy += self.singleEnergy(i, j)
# to avoid counting pairs twice, divide by two
# divide by maximum possible energy to normalise
return -math.fabs(energy / ((-6 * self.J - self.h) * ((self.order ** 2 + self.order) / 2)))
# calculates the magnitude of the residual magnetic spin of the lattice
# normalise by dividing by order of lattice squared
def totalMag(self):
return math.fabs((np.sum(np.sum(self.spins)) * 2) / (self.order ** 2 + self.order))
def specHeat(self, energy, energySquared, temp):
return (energySquared - energy ** 2) * (1 / (self.order * self.order * 2 * temp * temp))
def suscep(self, mag, magSquared, temp):
return self.J * (magSquared - mag ** 2) * (1 / (self.order * self.order * 2 * temp))
# attempts to flip a random spin using the metropolis algorithm and the Boltzmann distribution
def tryFlip(self, row, col):
# energy change = -2 * E_initial
# so accept change if E_initial <= 0
energy = self.singleEnergy(row, col)
if energy <= 0 or np.random.random() <= math.exp(-self.beta * 2 * energy):
self.spins[row][col] *= -1
# closes plot window
def close_event(self):
plt.close() # timer calls this function after 3 seconds and closes the window
# plots a meshgrid of the initial and final spin lattices
def plotStartEndSpins(self, spinsList, iters=1000000):
for i in np.arange(self.order):
for j in np.arange(self.order - i - 1):
spinsList[0][i].append(8)
spinsList[1][i].append(8)
cmap = colors.ListedColormap(['red', 'yellow', 'white'])
bounds = [-1, 0, 2, 10]
norm = colors.BoundaryNorm(bounds, cmap.N)
plt.subplots(nrows=1, ncols=2)
plt.tight_layout()
for i in np.arange(len(spinsList[0])):
spinsList[0][i] = np.asarray(spinsList[0][i])
for i in np.arange(len(spinsList[1])):
spinsList[1][i] = np.asarray(spinsList[1][i])
spinsList = np.array(spinsList)
plt.subplot(1,2,1)
plt.imshow(spinsList[0], cmap=cmap, norm=norm)
plt.xticks([], [])
plt.yticks([], [])
plt.title('Initial Configuration')
plt.subplot(1, 2, 2)
plt.imshow(spinsList[1], cmap=cmap, norm=norm)
plt.xticks([], [])
plt.yticks([], [])
plt.title('Final Configuration')
title = "Temperature (J/K_B) = {0}, J = {1}, h = {2}, Iterations = {3}".format(self.temp, self.J, self.h, iters) + "\n" + "Order: {0}".format(self.order,)
plt.suptitle(title)
# timer = fig.canvas.new_timer(
# interval=graphInterval) # creating a timer object and setting an interval of 3000 milliseconds
# timer.add_callback(self.close_event)
# timer.start()
plt.show()
# simulates the lattice at a constant temperature temp, for iters iterations, and returns the spin configurations
def basicIter(self, iters=1000000, temp=1, plot=False):
self.resetSpins()
spinsList = [copy.deepcopy(self.spins)]
self.temp = temp
self.beta = 1.0 / self.temp
for i in np.arange(iters + 1):
row = np.random.randint(self.order)
col = np.random.randint(row + 1)
self.tryFlip(row, col)
spinsList.append(self.spins)
print(spinsList[0])
print(spinsList[1])
if plot:
self.plotStartEndSpins(spinsList, iters)
else:
for i in np.arange(len(spinsList[0])):
spinsList[0][i] = np.asarray(spinsList[0][i])
for i in np.arange(len(spinsList[1])):
spinsList[1][i] = np.asarray(spinsList[1][i])
spinsList = np.array(spinsList)
return spinsList
# simulates the lattice oer a temperature range tempRange, with itersPerTemp iterations per temperature
# plotProperties: plot the residual spin, total energy, susceptibility and specific heat
def tempRangeIter(self, tempRange=np.arange(start=1, stop=5, step=0.2), itersPerTemp=100000, plotProperties=False):
self.resetSpins()
# store the averages here
energyList = []
magList = []
specHeatList = []
suscepList = []
for temp in tempRange:
self.beta = 1.0 / temp
print("Calculating temp:", temp)
# allow to reach equilibrium
for i in np.arange(itersPerTemp + 1):
row = np.random.randint(self.order)
col = np.random.randint(row + 1)
self.tryFlip(row, col)
#do a further ten thousand iterations to get average, and every two hundred iterations, store the properties
if plotProperties:
#store the values used to calculate averages here
magListEquilib = []
energyListEquilib = []
for i in np.arange(10000):
if i % 200 == 0:
energy = self.totalEnergy()
mag = self.totalMag()
energyListEquilib.append(energy)
magListEquilib.append(mag)
row = np.random.randint(self.order)
col = np.random.randint(row + 1)
self.tryFlip(row, col)
energyAvg = np.average(energyListEquilib)
energySquaredAvg = np.average(np.square(energyListEquilib))
magAvg = np.average(magListEquilib)
magSquaredAvg = np.average(np.square(magListEquilib))
energyList.append(energyAvg)
magList.append(magAvg)
specHeatList.append(self.specHeat(energyAvg, energySquaredAvg, temp))
suscepList.append(self.suscep(magAvg, magSquaredAvg, temp))
# reset the spins for the next temperature
self.resetSpins()
if plotProperties:
plt.tight_layout()
plt.subplot(2, 2, 1)
plt.plot(tempRange, energyList)
plt.title("Total Energy")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.subplot(2, 2, 2)
plt.plot(tempRange, magList)
plt.title("Residual Spin")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.subplot(2, 2, 3)
plt.plot(tempRange, specHeatList)
plt.title("Specific Heat Capacity")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.subplot(2, 2, 4)
plt.plot(tempRange, suscepList)
plt.title("Susceptibility")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.show()
class IsingHexagon:
# initialise a spin lattice and populate with random spins
def __init__(self, order, interactionVal=1, magMoment=1):
if order < 2:
raise ValueError('Order number needs to be greater than 3.')
self.temp = 0.0
self.beta = 0.0
self.boltzmann = 1.38064852 * (10 ** -23)
self.order = order
self.J = float(interactionVal)
self.h = float(magMoment)
self.magList = []
self.specHeatList = []
self.energyList = []
self.suscepList = []
self.resetSpins()
# reset the spin lattice to a random configuration
def resetSpins(self):
self.spins = []
vals = np.array([1, -1])
if self.order == 1:
self.spins.append(list(np.random.choice(vals, size=2)))
self.spins.append(list(np.random.choice(vals, size=2)))
self.spins.append(list(np.random.choice(vals, size=2)))
self.spins = np.array(self.spins)
return
# top layers
iter = 2
while self.order >= iter / 2.0 and not iter == 2 * self.order:
self.spins.append(list(np.random.choice(vals, size=iter)))
iter += 2
# middle layers
for i in np.arange(5 + 2 * (self.order - 2)):
self.spins.append(list(np.random.choice(vals, size=2 * self.order)))
# bottom layers
iter = 2 * self.order - 2
while iter > 0:
self.spins.append(list(np.random.choice(vals, size= iter)))
iter -= 2
# returns the nearest neighbours for centre atoms, used in the main nearest neighbour function
def centreReturn(self, left, row, col): # left is boolean, when true, use atom to left, otherwise, use atom to right
if left:
return np.asarray([self.spins[row - 1][col],
self.spins[row][col - 1],
self.spins[row + 1][col]])
else:
return np.asarray([self.spins[row - 1][col],
self.spins[row][col + 1],
self.spins[row + 1][col]])
# returns an array of an atom's 3 nearest neighbours
def neighbours(self, row, col):
# centre atoms
if 1 < row < 4 * self.order - 3:
if self.order - 1 < row < 3 * self.order - 1 and 0 < col < len(self.spins[row]) - 1:
# handles centre atoms
if self.order % 2 == 0:
if (row - col) % 2 == 0:
return self.centreReturn(True, row, col)
else:
return self.centreReturn(False, row, col)
else:
if (row - col) % 2 == 0:
return self.centreReturn(False, row, col)
else:
return self.centreReturn(True, row, col)
elif (row < self.order or row > 3 * self.order - 2) and 1 < col < len(self.spins[row]) - 2:
# handles centre atoms
if self.order % 2 == 0:
if (row - col) % 2 == 0:
return self.centreReturn(True, row, col)
else:
return self.centreReturn(False, row, col)
else:
if (row - col) % 2 == 0:
return self.centreReturn(False, row, col)
else:
return self.centreReturn(True, row, col)
# left
# incorrect but works
if self.order - 1 < row < (3 * self.order - 1) and col < 2:
return np.asarray([self.spins[row - 1][0],
self.spins[row + 1][0],
self.spins[row][len(self.spins[row]) - 1]])
# right
# incorrect but works
elif self.order - 1 < row < (3 * self.order - 1) and col > len(self.spins[row]) - 3:
return np.asarray([self.spins[row - 1][col],
self.spins[row + 1][col],
self.spins[row][0]])
# annoying left corner atoms
elif (row < self.order or row > 3 * self.order - 2) and col < 2 and len(self.spins[row]) > 2:
if col == 0:
# top left corner
if row < 2 * (self.order - 1):
return np.asarray([self.spins[row + 1][1],
self.spins[row][1],
self.spins[row][len(self.spins[row]) - 1]])
# bottom left corner
else:
return np.asarray([self.spins[row - 1][1],
self.spins[row][1],
self.spins[row][len(self.spins[row]) - 1]])
else:
# top left corner
if row < 2 * (self.order - 1):
return np.asarray([self.spins[row][0],
self.spins[row - 1][0],
self.spins[row + 1][2]])
# bottom left corner
else:
return np.asarray([self.spins[row][0],
self.spins[row - 1][2],
self.spins[row + 1][0]])
# annoying right corner atoms
elif (row < self.order or row > 3 * self.order - 2) and col > len(self.spins[row]) - 3 and len(self.spins[row]) > 2:
if not col % 2 == 0:
# top right corner
if row < 2 * (self.order - 1):
try:
return np.asarray([self.spins[row + 1][col + 1],
self.spins[row][col - 1],
self.spins[row][0]])
except IndexError:
return np.asarray([self.spins[row + 1][col],
self.spins[row][col - 1],
self.spins[row][0]])
# bottom right corner
else:
try:
return np.asarray([self.spins[row - 1][col + 1],
self.spins[row][col - 1],
self.spins[row][0]])
except IndexError:
return np.asarray([self.spins[row - 1][col],
self.spins[row][col - 1],
self.spins[row][0]])
else:
# top right corner
if row < 2 * (self.order - 1):
return np.asarray([self.spins[row][col + 1],
self.spins[row - 1][col - 1],
self.spins[row + 1][col]])
# bottom right corner
else:
return np.asarray([self.spins[row][col + 1],
self.spins[row - 1][col + 1],
self.spins[row + 1][col - 1]])
# top
elif row == 0:
if col == 0:
return np.asarray([self.spins[0][1],
self.spins[1][1],
self.spins[4 * self.order - 2][0]])
else:
return np.asarray([self.spins[0][0],
self.spins[1][2],
self.spins[4 * self.order - 2][1]])
# bottom
# don't have to check for anything, only option remaining
elif col == 0:
return np.asarray([self.spins[row][1],
self.spins[row - 1][1],
self.spins[0][0]])
else:
return np.asarray([self.spins[row][0],
self.spins[1][2],
self.spins[0][1]])
# calculates the energy of a single atom, using the Hamiltonian
def singleEnergy(self, row, col):
neighbours = self.neighbours(row, col)
selfSpin = self.spins[row][col]
return self.J * selfSpin * np.sum(np.sum(neighbours)) - self.h * selfSpin
# calculates the magnitude of the entire energy of the lattice
def totalEnergy(self):
energy = 0.0
for i in np.arange(len(self.spins)):
for j in np.arange(len(self.spins[i])):
energy += self.singleEnergy(i, j)
# to avoid counting pairs twice, divide by two
# divide by maximum possible energy to normalise
return -math.fabs(energy / ((3 * self.J + self.h) * (6 * self.order * self.order))) #( * (-3 * self.J - self.h)
# calculates the magnitude of the residual magnetic spin of the lattice
# normalise by dividing by order of lattice squared
def totalMag(self):
sum = 0
for i in np.arange(len(self.spins)):
sum += np.sum(self.spins[i])
return math.fabs(float(sum) / (6 * self.order ** 2))
def specHeat(self, energy, energySquared, temp):
return (energySquared - energy ** 2) * (1 / (self.order * self.order * 2 * temp * temp))
def suscep(self, mag, magSquared, temp):
return self.J * (magSquared - mag ** 2) * (1 / (self.order * self.order * 2 * temp))
# attempts to flip a random spin using the metropolis algorithm and the Boltzmann distribution
def tryFlip(self, row, col):
# energy change = -2 * E_initial
# so accept change if E_initial <= 0
energy = self.singleEnergy(row, col)
if energy <= 0 or np.random.random() <= math.exp(-self.beta * 2 * energy):
self.spins[row][col] *= -1
# closes plot window
def close_event(self):
plt.close() # timer calls this function after 3 seconds and closes the window
# plots a meshgrid of the initial and final spin lattices
def plotStartEndSpins(self, spinsList, iters=1000000):
for i in np.arange(2):
for j in spinsList[i]:
while len(j) < 2 * self.order:
j.insert(0, 8)
j.append(8)
cmap = colors.ListedColormap(['red', 'yellow', 'white'])
bounds = [-1, 0, 2, 10]
norm = colors.BoundaryNorm(bounds, cmap.N)
plt.subplots(nrows=1, ncols=2)
plt.tight_layout()
for i in np.arange(len(spinsList[0])):
spinsList[0][i] = np.asarray(spinsList[0][i])
for i in np.arange(len(spinsList[1])):
spinsList[1][i] = np.asarray(spinsList[1][i])
spinsList = np.array(spinsList)
plt.subplot(1,2,1)
plt.imshow(spinsList[0], cmap=cmap, norm=norm)
plt.xticks([], [])
plt.yticks([], [])
plt.title('Initial Configuration')
plt.subplot(1, 2, 2)
plt.imshow(spinsList[1], cmap=cmap, norm=norm)
plt.xticks([], [])
plt.yticks([], [])
plt.title('Final Configuration')
title = "Temperature (J/K_B) = {0}, J = {1}, h = {2}, Iterations = {3}".format(self.temp, self.J, self.h, iters) + "\n" + "Order: {0}".format(self.order,)
plt.suptitle(title)
# timer = fig.canvas.new_timer(
# interval=graphInterval) # creating a timer object and setting an interval of 3000 milliseconds
# timer.add_callback(self.close_event)
# timer.start()
plt.show()
# simulates the lattice at a constant temperature temp, for iters iterations, and returns the spin configurations
def basicIter(self, iters=1000000, temp=1, plot=False):
self.resetSpins()
spinsList = [copy.deepcopy(self.spins)]
self.temp = temp
self.beta = 1.0 / self.temp
for i in np.arange(iters + 1):
row = np.random.randint(4 * self.order - 1)
col = np.random.randint(len(self.spins[row]))
self.tryFlip(row, col)
spinsList.append(self.spins)
if plot:
self.plotStartEndSpins(spinsList, iters)
else:
for i in np.arange(len(spinsList[0])):
spinsList[0][i] = np.asarray(spinsList[0][i])
for i in np.arange(len(spinsList[1])):
spinsList[1][i] = np.asarray(spinsList[1][i])
spinsList = np.array(spinsList)
return spinsList
# simulates the lattice oer a temperature range tempRange, with itersPerTemp iterations per temperature
# plotProperties: plot the residual spin, total energy, susceptibility and specific heat
def tempRangeIter(self, tempRange=np.arange(start=1, stop=5, step=0.2), itersPerTemp=100000, plotProperties=False):
self.resetSpins()
# store the averages here
energyList = []
magList = []
specHeatList = []
suscepList = []
for temp in tempRange:
self.beta = 1.0 / temp
print("Calculating temp:", temp)
# allow to reach equilibrium
for i in np.arange(itersPerTemp + 1):
row = np.random.randint(4 * self.order - 1)
col = np.random.randint(len(self.spins[row]))
self.tryFlip(row, col)
#do a further thousand iterations to get average, and every hundred iterations, store the properties
if plotProperties:
#store the values used to calculate averages here
magListEquilib = []
energyListEquilib = []
for i in np.arange(20000):
if i % 400 == 0:
energy = self.totalEnergy()
mag = self.totalMag()
energyListEquilib.append(energy)
magListEquilib.append(mag)
row = np.random.randint(4 * self.order - 1)
col = np.random.randint(len(self.spins[row]))
self.tryFlip(row, col)
energyAvg = np.average(energyListEquilib)
energySquaredAvg = np.average(np.square(energyListEquilib))
magAvg = np.average(magListEquilib)
magSquaredAvg = np.average(np.square(magListEquilib))
energyList.append(energyAvg)
magList.append(magAvg)
specHeatList.append(self.specHeat(energyAvg, energySquaredAvg, temp))
suscepList.append(self.suscep(magAvg, magSquaredAvg, temp))
# reset the spins for the next temperature
self.resetSpins()
if plotProperties:
plt.tight_layout()
plt.subplot(2, 2, 1)
plt.plot(tempRange, energyList)
plt.title("Total Energy")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.subplot(2, 2, 2)
plt.plot(tempRange, magList)
plt.title("Residual Spin")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.subplot(2, 2, 3)
plt.plot(tempRange, specHeatList)
plt.title("Specific Heat Capacity")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.subplot(2, 2, 4)
plt.plot(tempRange, suscepList)
plt.title("Susceptibility")
plt.tick_params(axis="x", direction="in")
plt.tick_params(axis="y", direction="in")
plt.xlim(tempRange[0], tempRange[len(tempRange) - 1])
plt.legend()
plt.show()