diff --git a/book/_config.yml b/book/_config.yml index ca70bd6..cfa4fb7 100644 --- a/book/_config.yml +++ b/book/_config.yml @@ -39,6 +39,7 @@ execute: sphinx: config: + html_static_path: ["images"] html_last_updated_fmt: "%b %d, %Y" suppress_warnings: - "mystnb.unknown_mime_type" @@ -68,7 +69,6 @@ sphinx: - "sphinx.ext.autodoc" - "sphinx.ext.intersphinx" - "sphinx_codeautolink" - # - "sphinx_design" parse: myst_enable_extensions: diff --git a/book/images/fitting_tds.png b/book/images/fitting_tds.png new file mode 100644 index 0000000..3c968db Binary files /dev/null and b/book/images/fitting_tds.png differ diff --git a/book/images/microstructure.png b/book/images/microstructure.png new file mode 100644 index 0000000..35564dd Binary files /dev/null and b/book/images/microstructure.png differ diff --git a/book/images/ml.png b/book/images/ml.png new file mode 100644 index 0000000..2f05819 Binary files /dev/null and b/book/images/ml.png differ diff --git a/book/images/monoblock.png b/book/images/monoblock.png new file mode 100644 index 0000000..9c1f058 Binary files /dev/null and b/book/images/monoblock.png differ diff --git a/book/images/permeation.png b/book/images/permeation.png new file mode 100644 index 0000000..18cea45 Binary files /dev/null and b/book/images/permeation.png differ diff --git a/book/images/tds.png b/book/images/tds.png new file mode 100644 index 0000000..0971946 Binary files /dev/null and b/book/images/tds.png differ diff --git a/book/intro.md b/book/intro.md index 5641e04..b098817 100644 --- a/book/intro.md +++ b/book/intro.md @@ -19,6 +19,117 @@ Welcome to the FESTIM tutorial! 🎉 Here you can learn to run FESTIM simulations from complete application cases and from the fundamental building blocks of the code! +```{code-cell} ipython3 +:tags: [remove-input] +from IPython.display import HTML + +# Developers! Add new cards to this list. +cards_data = [ + {"title": "Microstructure", "text": "Learn about capturing microstructural effects.", "link": "content/applications/microstructure.html", "image": "_static/microstructure.png"}, + {"title": "Plasma Facing Components", "text": "", "link": "#", "image": "_static/monoblock.png"}, + {"title": "TDS analysis", "text": "Simulate thermo-desorption experiments.", "link": "content/applications/task02.html", "image": "_static/tds.png"}, + {"title": "TDS fit", "text": "Automatically fit a TDS", "link": "content/applications/task10.html", "image": "_static/fitting_tds.png"}, + {"title": "Machine Learning", "text": "Machine learning applications in FESTIM.", "link": "content/applications/ml.html", "image": "_static/ml.png"}, +] + +# Standard formatting for the carousel and cards +cards_per_slide = 3 + +html = ''' + + + + +''' + +HTML(html) +``` + Comments and corrections to this webpage should be submitted to the issue tracker by going to the relevant page in the tutorial, then click the {fab}`github` repository symbol in the top right corner and either {fas}`lightbulb` “open issue” or {fas}`pencil` "suggest edit". ## Interactive tutorials