| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| img/ | H | - | - | 846 | 845 | |
| qfunctions/ | H | - | - | 404 | 229 | |
| Makefile | H A D | 30-Dec-2025 | 516 | 21 | 9 | |
| README.md | H A D | 16-Jul-2025 | 658 | 26 | 15 | |
| conftest.py | H A D | 30-Dec-2025 | 819 | 26 | 7 | |
| ex1_volume.py | H A D | 30-Dec-2025 | 6.7 KiB | 182 | 115 | |
| ex2_surface.py | H A D | 30-Dec-2025 | 7 KiB | 187 | 118 | |
| ex3_volume.py | H A D | 30-Dec-2025 | 6.8 KiB | 179 | 109 | |
| ex_common.py | H A D | 30-Dec-2025 | 8.3 KiB | 256 | 197 | |
| ex_test.py | H A D | 30-Dec-2025 | 6.1 KiB | 270 | 200 | |
| setup_qfunctions.py | H A D | 17-Jun-2025 | 962 | 33 | 18 | |
| tutorial-0-ceed.ipynb | H A D | 05-Jan-2026 | 3 KiB | 128 | 127 | |
| tutorial-1-vector.ipynb | H A D | 15-Mar-2022 | 6.4 KiB | 252 | 251 | |
| tutorial-2-elemrestriction.ipynb | H A D | 27-Feb-2025 | 12.5 KiB | 366 | 365 | |
| tutorial-3-basis.ipynb | H A D | 27-Feb-2025 | 10.7 KiB | 337 | 336 | |
| tutorial-4-qfunction.ipynb | H A D | 27-Feb-2025 | 6.2 KiB | 212 | 211 | |
| tutorial-5-operator.ipynb | H A D | 27-Feb-2025 | 8.6 KiB | 244 | 243 | |
| tutorial-6-shell.ipynb | H A D | 15-Mar-2022 | 10 KiB | 324 | 323 |
README.md
1## libCEED Python Examples 2 3These examples are written using libCEED's Python interface. 4 5### Tutorials 6 7These Jupyter notebooks explore the concepts of the libCEED API, including how to install the Python interface and the usage of each API object, with interactive examples. 8 9### Basic Examples 10 11The basic libCEED C examples in the folder `/examples/ceed` are also available as Python examples. 12 13To build the QFunctions into a shared library that the Python examples use, run 14 15```bash 16make setup 17``` 18 19To execute the examples, run: 20 21``` 22python ex1_volume.py 23``` 24 25A full list of command-line arguments are shown by adding the command-line argument "--help". 26