-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_H_iDynamic.py
64 lines (50 loc) · 2.1 KB
/
plot_H_iDynamic.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
import numpy as np
from causalsetfunctions import find_entropy, find_entropy_1molecule, convert_Harray_1molecule
import pandas as pd
import matplotlib.pyplot as plt
from scipy.optimize import curve_fit
def linear(x, m, c):
return m*x + c
rho_array = [0.03, 0.1, 0.3, 1]
df = pd.read_csv('H_iDynamiccsv', index_col=0)
# This script creates a plot and fits parameters for Dynamic Horizon
# that checks that the scaling power is 1/2
#%%
# Obtaining entropy assuming counting the full range of moleules
plt.figure(figsize = (12,8))
S = [find_entropy(df[str(rho)].to_list()) for rho in rho_array]
plt.plot(rho_array, S, '.')
params, cov = curve_fit(linear, np.log10(rho_array), np.log10(S))
Nlinspace = np.linspace(min(rho_array), max(rho_array), 100)
plt.plot(Nlinspace, 10 ** linear(np.log10(Nlinspace), *params), label = 'Fit')
print(params)
print('err:', np.sqrt(np.diagonal(cov)))
plt.xscale('log')
plt.yscale('log')
plt.xlabel(r'Sprinkling Density, $\rho$', fontsize = 20)
plt.ylabel('Entropy, s', fontsize = 20)
plt.xticks(fontsize = 15)
plt.yticks(fontsize = 15)
plt.title('Counting molecules around Dynamic Horizon (30 realisations)', fontsize = 20 )
plt.savefig('Plots/ Entropy_DynamicHorizon_Rel30_Molecules.png')
plt.show()
plt.clf()
#%%
# Obtaining entropy assuming counting 1-molecules only
plt.figure(figsize = (12,8))
S = [find_entropy_1molecule(convert_Harray_1molecule(df[str(rho)])) for rho in rho_array]
plt.plot(rho_array, S, '.')
params, cov = curve_fit(linear, np.log10(rho_array), np.log10(S))
Nlinspace = np.linspace(min(rho_array), max(rho_array), 100)
plt.plot(Nlinspace, 10 ** linear(np.log10(Nlinspace), *params), label = 'Fit')
print(params)
print('err:', np.sqrt(np.diagonal(cov)))
plt.xscale('log')
plt.yscale('log')
plt.xlabel(r'Sprinkling Density, $\rho$', fontsize = 20)
plt.ylabel('Entropy, s', fontsize = 20)
plt.xticks(fontsize = 15)
plt.yticks(fontsize = 15)
plt.title('Counting 1-molecules around Dynamic Horizon (30 realisations)', fontsize = 20 )
plt.savefig('Plots/ Entropy_DynamicHorizon_Rel30_1Molecules.png')
plt.show()