Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jorgensd/fenics22-tutorial
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: mikics/gsoc-jupyterbook
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 8,365 additions and 70,840 deletions.
  1. +3 −6 .github/workflows/build_and_publish.yml
  2. +0 −38 .github/workflows/test-build.yml
  3. +8 −0 .gitignore
  4. +0 −1,072 Abs(u).html
  5. +2 −2 Dockerfile
  6. +1 −1 LICENSE
  7. +20 −13 README.md
  8. +15 −9 _config.yml
  9. +19 −7 _toc.yml
  10. +0 −33 access.md
  11. +38 −0 auto.txt
  12. +0 −1,219 beam.html
  13. +159 −0 chapter1/analytical_efficiencies_wire.ipynb
  14. +119 −0 chapter1/analytical_efficiencies_wire.py
  15. +863 −0 chapter1/demo_scattering_boundary_conditions.ipynb
  16. +591 −0 chapter1/demo_scattering_boundary_conditions.py
  17. +132 −0 chapter1/mesh_wire.ipynb
  18. +81 −0 chapter1/mesh_wire.py
  19. +159 −0 chapter2/analytical_efficiencies_wire.ipynb
  20. +119 −0 chapter2/analytical_efficiencies_wire.py
  21. +925 −0 chapter2/demo_pml.ipynb
  22. +623 −0 chapter2/demo_pml.py
  23. +191 −0 chapter2/mesh_wire_pml.ipynb
  24. +148 −0 chapter2/mesh_wire_pml.py
  25. +161 −0 chapter3/analytical_modes.ipynb
  26. +104 −0 chapter3/analytical_modes.py
  27. +617 −0 chapter3/demo_half_loaded_waveguide.ipynb
  28. +360 −0 chapter3/demo_half_loaded_waveguide.py
  29. +900 −0 chapter4/demo_axis.ipynb
  30. +687 −0 chapter4/demo_axis.py
  31. +144 −0 chapter4/mesh_sphere_axis.ipynb
  32. +91 −0 chapter4/mesh_sphere_axis.py
  33. +0 −1,257 comparing_elements.ipynb
  34. +0 −322 example.ipynb
  35. +0 −943 heat_eq.ipynb
  36. +0 −783 helmholtz.ipynb
  37. BIN images/animation_pml.gif
  38. BIN images/animation_sbc.gif
  39. BIN images/axis.png
  40. BIN images/error.png
  41. BIN img/element-Crouzeix-Raviart-triangle-1-dofs-large.png
  42. BIN img/element-Lagrange-triangle-0-dofs-large.png
  43. BIN img/element-Lagrange-triangle-1-dofs-large.png
  44. BIN img/element-Lagrange-triangle-2-dofs-large.png
  45. BIN img/element-Lagrange-triangle-3-dofs-large.png
  46. BIN img/element-bubble-enriched-Lagrange-triangle-2-dofs-large.png
  47. BIN img/element-bubble-enriched-Lagrange-triangle-3-dofs-large.png
  48. BIN img/vtx.png
  49. BIN img/xdmf.png
  50. +0 −31 intro.md
  51. +22 −0 jupyter_metadata.txt
  52. BIN logo.jpeg
  53. BIN logo.png
  54. +0 −1,218 mesh.html
  55. +0 −47 mesh_generation.py
  56. +0 −15,536 presentation-comparing_elements.html
  57. +0 −15,028 presentation-example.html
  58. +0 −15,589 presentation-heat_eq.html
  59. +0 −15,216 presentation-helmholtz.html
  60. +1,063 −0 submission.md
  61. BIN u_time.gif
  62. +0 −1,251 w.html
  63. BIN wave.gif
  64. +0 −1,219 wavenumber.html
9 changes: 3 additions & 6 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
@@ -10,17 +10,14 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Weekly build on Mondays at 8 am
schedule:
- cron: "0 8 * * 1"

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container: dolfinx/lab:v0.5.0
container: dolfinx/lab:v0.5.1

env:
HDF5_MPI: "ON"
@@ -35,13 +32,13 @@ jobs:
- uses: actions/checkout@v2

- name: Install dependencies
run: pip3 install notebook nbconvert==6.5.3 jupyter-book --upgrade
run: pip3 install notebook ipywidgets==7.7.2 nbconvert==6.5.3 jupyter-book --upgrade

# Runs a single command using the runners shell
- name: Build the book
run: |
PYVISTA_JUPYTER_BACKEND=static PYVISTA_OFF_SCREEN=false jupyter-book build --all .
# Push book to HTML to github pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3.5.9
38 changes: 0 additions & 38 deletions .github/workflows/test-build.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -139,3 +139,11 @@ _build/*
*.h5
*.xdmf
*.bp

# additional stuffs
.bash_history
.gitconfig
.jupyter/
.ssh/
.vscode-server/

Loading