Skip to content

Commit b696ced

Browse files
authored
Create cosmology-timeline.ipynb
1 parent a03626e commit b696ced

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Preliminary Cosmological Timeline Simulation\n\n",
8+
"Simple model of lattice expansion and Capotauro breaking."
9+
]
10+
},
11+
{
12+
"cell_type": "code",
13+
"execution_count": null,
14+
"metadata": {},
15+
"outputs": [],
16+
"source": [
17+
"import numpy as np\n",
18+
"\n",
19+
"phi = (1 + np.sqrt(5)) / 2\n",
20+
"N_shells = 60 # approximate e-folds\n",
21+
"scale_factor = phi ** np.arange(0, N_shells)\n",
22+
"\n",
23+
"print(f\"Inflation scale factor after {N_shells} shells: {scale_factor[-1]:.2e}\")\n",
24+
"print(f\"Equivalent e-folds: {N_shells * np.log(phi):.2f}\")\n",
25+
"\n",
26+
"# Placeholder for Capotauro time\n",
27+
"t_capotauro = 120e6 # years\n",
28+
"print(f\"Capotauro time: {t_capotauro} years post-Big Bang\")"
29+
]
30+
},
31+
{
32+
"cell_type": "markdown",
33+
"metadata": {},
34+
"source": [
35+
"## Notes\n",
36+
"- This is a simplified expansion model.\n",
37+
"- Next: full MC for defect formation and structure."
38+
]
39+
}
40+
],
41+
"metadata": {
42+
"kernelspec": {
43+
"display_name": "Python 3",
44+
"language": "python",
45+
"name": "python3"
46+
},
47+
"language_info": {
48+
"codemirror_mode": {
49+
"name": "ipython",
50+
"version": 3
51+
},
52+
"file_extension": ".py",
53+
"mimetype": "text/x-python",
54+
"name": "python",
55+
"nbconvert_exporter": "python",
56+
"pygments_lexer": "ipython3",
57+
"version": "3.10.0"
58+
}
59+
},
60+
"nbformat": 4,
61+
"nbformat_minor": 5
62+
}

0 commit comments

Comments
 (0)