Skip to content

Commit 0129bd7

Browse files
committed
finish first cut for CCA talk
1 parent a0eff30 commit 0129bd7

3 files changed

Lines changed: 31 additions & 22 deletions

File tree

presentations/custom.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ font-size: 80%;
44
}
55

66

7+
em {
8+
color: blue;
9+
}
10+
11+
712
.reveal p {
813
margin-bottom: 0.25em;
914
margin-top: 0.5em;
@@ -20,5 +25,5 @@ font-family: carlito;
2025
}
2126

2227
div.output pre {
23-
font-size: 60%;
28+
font-size: 65%;
2429
}

presentations/docs.png

191 KB
Loading

presentations/pyro_intro.ipynb

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@
6969
"source": [
7070
"## History:\n",
7171
"\n",
72-
" * First version in 2003: python + Numeric + C extensions\n",
72+
" - _First version in 2003_: python + Numeric + C extensions\n",
7373
" \n",
74-
" * May 2004: switch to python + numarray + C extensions\n",
74+
" - _May 2004_: switch to python + numarray + C extensions\n",
7575
" \n",
76-
" cvs commit:\n",
76+
" - cvs commit:\n",
7777
" \n",
78-
" > convert from Numeric to numarray, since numarray seems to be the future.\n",
78+
" > convert from Numeric to numarray, since numarray seems to be the future.\n",
7979
" \n",
80-
" * May 2012: revived, rewritten in python + NumPy + f2py\n",
80+
" - _May 2012_: revived, rewritten in python + NumPy + f2py\n",
8181
" \n",
82-
" * Nov 2018: python + NumPy + Numba"
82+
" - _Nov 2018_: python + NumPy + Numba"
8383
]
8484
},
8585
{
@@ -92,21 +92,21 @@
9292
"source": [
9393
"## Current Solvers\n",
9494
"\n",
95-
" * linear advection (2nd and 4th order FV, WENO; CTU, RK, and SDC time integration)\n",
95+
" * *linear advection*: 2nd and 4th order FV, WENO; CTU, RK, and SDC time integration\n",
9696
" \n",
97-
" * compressible hydrodynamics (2nd order CTU PLM, 2nd order MOL RK, 4th order FV solver with RK or SDC integration)\n",
97+
" * *compressible hydrodynamics*: 2nd order CTU PLM, 2nd order MOL RK, 4th order FV solver with RK or SDC integration\n",
9898
" \n",
99-
" * shallow water hydrodynamics\n",
99+
" * *shallow water hydrodynamics*\n",
100100
" \n",
101-
" * multigrid\n",
101+
" * *multigrid*: force non-constant coefficient general elliptic equations\n",
102102
" \n",
103-
" * implicit thermal diffusion (using multigrid)\n",
103+
" * *implicit thermal diffusion*: using multigrid\n",
104104
" \n",
105-
" * incompressible hydrodynamics (approximate projection method)\n",
105+
" * *incompressible hydrodynamics*: 2nd order accurate approximate projection method\n",
106106
" \n",
107-
" * low Mach number atmospheric hydrodynamics (pseudo-imcompressible method)\n",
107+
" * *low Mach number atmospheric hydrodynamics*: pseudo-imcompressible method\n",
108108
" \n",
109-
" * special relativistic compressible hydrodynamics"
109+
" * *special relativistic compressible hydrodynamics*"
110110
]
111111
},
112112
{
@@ -213,13 +213,13 @@
213213
"\u001b[33mparameter vis.store_images never used\u001b[0m\n",
214214
"\u001b[33mparameter particles.n_particles never used\u001b[0m\n",
215215
"\u001b[33mparameter particles.particle_generator never used\u001b[0m\n",
216-
"main: 0.08763742446899414\n"
216+
"main: 0.08537530899047852\n"
217217
]
218218
},
219219
{
220220
"data": {
221221
"text/plain": [
222-
"<advection.simulation.Simulation at 0x7f75b1772a90>"
222+
"<advection.simulation.Simulation at 0x7f9c1829df10>"
223223
]
224224
},
225225
"execution_count": 1,
@@ -482,11 +482,15 @@
482482
]
483483
},
484484
{
485-
"cell_type": "code",
486-
"execution_count": null,
487-
"metadata": {},
488-
"outputs": [],
489-
"source": []
485+
"cell_type": "markdown",
486+
"metadata": {
487+
"slideshow": {
488+
"slide_type": "slide"
489+
}
490+
},
491+
"source": [
492+
"![docs](docs.png)"
493+
]
490494
}
491495
],
492496
"metadata": {

0 commit comments

Comments
 (0)