fenicsx-plotly
is package for plotting FEniCSx objects using plotly. It is a successor of fenics-plotly
.
- Documentation: https://finsberg.github.io/fenicsx-plotly/
- Source code: https://github.com/finsberg/fenicsx-plotly
To install fenicsx-plotly
you need to first install FEniCSx. Next you can install fenicsx-plotly
via pip
python3 -m pip install fenicsx-plotly
We also provide a pre-built docker image with FEniCSx and fenicsx-plotly
installed. You pull this image using the command
docker pull ghcr.io/finsberg/fenicsx-plotly:v0.3.0
import dolfinx
from mpi4py import MPI
from fenicsx_plotly import plot
mesh = dolfinx.mesh.create_unit_cube(MPI.COMM_WORLD, 3, 3, 3)
plot(mesh)
- dolfinx.mesh.Mesh
- dolfinx.mesh.MeshTagsMetaClass
- dolfinx.fem.FunctionSpace
- dolfinx.fem.Function
- Scalar
- Vector
- dolfinx.fem.bcs.DirichletBCMetaClass
- Scalar
- Vector
If you want to embed the visualizations generated by fenicsx-plotly
into a webpage generated by JupyterBook such as the documentation for fenicsx-plotly
you need to add the following configuration in your _config.yml
sphinx:
config:
html_js_files:
- https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js
See https://jupyterbook.org/en/stable/interactive/interactive.html#plotly for more information.
Contributions are welcomed!
See https://finsberg.github.io/fenicsx-plotly/CONTRIBUTING.html for more info.