sdf-xarray 0.6.0__tar.gz → 0.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/.readthedocs.yaml +1 -1
  2. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/CONTRIBUTING.md +47 -23
  3. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/PKG-INFO +51 -23
  4. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/README.md +50 -22
  5. sdf_xarray-0.7.1/docs/_static/sdf-xarray-logo-dark.svg +103 -0
  6. sdf_xarray-0.7.1/docs/_static/sdf-xarray-logo-light.svg +91 -0
  7. sdf_xarray-0.7.1/docs/animation.md +251 -0
  8. sdf_xarray-0.6.0/docs/api.rst → sdf_xarray-0.7.1/docs/api.md +2 -4
  9. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/docs/conf.py +13 -5
  10. sdf_xarray-0.7.1/docs/contributing.md +2 -0
  11. sdf_xarray-0.7.1/docs/index.md +46 -0
  12. sdf_xarray-0.7.1/docs/installation.md +135 -0
  13. sdf_xarray-0.7.1/docs/known_issues.md +15 -0
  14. sdf_xarray-0.7.1/docs/loading_data.md +222 -0
  15. sdf_xarray-0.7.1/docs/understanding_datasets.md +157 -0
  16. sdf_xarray-0.7.1/docs/unit_conversion.md +206 -0
  17. sdf_xarray-0.7.1/docs/why_sdf_xarray.md +13 -0
  18. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/pyproject.toml +4 -3
  19. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/src/sdf_xarray/__init__.py +46 -13
  20. sdf_xarray-0.7.1/src/sdf_xarray/_version.py +24 -0
  21. sdf_xarray-0.7.1/src/sdf_xarray/dataarray_accessor.py +74 -0
  22. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/src/sdf_xarray/plotting.py +2 -39
  23. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/tests/test_dataset.py +53 -16
  24. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/tests/test_epoch_dataarray_accessor.py +101 -0
  25. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/uv.lock +385 -154
  26. sdf_xarray-0.6.0/docs/_static/jupyter_padding.css +0 -3
  27. sdf_xarray-0.6.0/docs/animation.rst +0 -261
  28. sdf_xarray-0.6.0/docs/contributing.rst +0 -4
  29. sdf_xarray-0.6.0/docs/getting_started.rst +0 -75
  30. sdf_xarray-0.6.0/docs/index.rst +0 -33
  31. sdf_xarray-0.6.0/docs/key_functionality.rst +0 -335
  32. sdf_xarray-0.6.0/docs/known_issues.rst +0 -9
  33. sdf_xarray-0.6.0/docs/unit_conversion.rst +0 -217
  34. sdf_xarray-0.6.0/src/sdf_xarray/_version.py +0 -34
  35. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/.github/workflows/build_publish.yml +0 -0
  36. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/.github/workflows/lint.yml +0 -0
  37. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/.github/workflows/tests.yml +0 -0
  38. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/.gitignore +0 -0
  39. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/.gitmodules +0 -0
  40. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/CITATION.cff +0 -0
  41. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/CMakeLists.txt +0 -0
  42. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/LICENCE +0 -0
  43. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/docs/.gitignore +0 -0
  44. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1/docs/_static}/BEAM.png +0 -0
  45. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1/docs/_static}/PlasmaFAIR.svg +0 -0
  46. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/docs/_static/force_render_dark_xarray_objects.css +0 -0
  47. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/docs/_templates/custom-class-template.rst +0 -0
  48. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/docs/_templates/custom-module-template.rst +0 -0
  49. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/docs/make.bat +0 -0
  50. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/src/sdf_xarray/csdf.pxd +0 -0
  51. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/src/sdf_xarray/dataset_accessor.py +0 -0
  52. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/src/sdf_xarray/download.py +0 -0
  53. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/src/sdf_xarray/sdf_interface.pyx +0 -0
  54. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/tests/test_cython.py +0 -0
  55. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/tests/test_datatree.py +0 -0
  56. {sdf_xarray-0.6.0 → sdf_xarray-0.7.1}/tests/test_epoch_dataset_accessor.py +0 -0
@@ -7,7 +7,7 @@ version: 2
7
7
 
8
8
  # Set the version of Python and other tools you might need
9
9
  build:
10
- os: ubuntu-20.04
10
+ os: ubuntu-24.04
11
11
  tools:
12
12
  python: "3.12"
13
13
 
@@ -85,54 +85,78 @@ uv run pytest
85
85
 
86
86
  ## Documentation
87
87
 
88
- ### Style
89
-
90
- When contributing to the documentation:
91
-
92
- - Wrap lines at 80 characters.
93
- - Follow the format of existing `.rst` files.
94
- - Link to external functions or tools when possible.
95
-
96
- ### Compiling and adding documentation
97
-
88
+ ```{note}
98
89
  When compiling the documentation for the first time you will need an internet
99
90
  connection in order to download the datasets.
91
+ ```
92
+
93
+ The documentation is stored under the `/docs` folder and is written in Markdown
94
+ files following the [MyST-NB](https://myst-nb.readthedocs.io/en/latest/index.html)
95
+ format.
100
96
 
101
97
  To build the documentation locally, first install the required packages:
102
98
 
103
99
  ```bash
104
100
  pip install --group docs
105
- cd docs
106
- make html
107
101
  ```
108
102
 
109
- The documentation can be updated by changing any of the `*.rst` files located
103
+ The documentation can be updated by changing any of the `*.md` files located
110
104
  in the main `docs` directory. The existing documentation hopefully includes most
111
105
  of the snippets you'd need to write or update it, however if you are stuck
112
106
  please don't hesitate to reach out.
113
107
 
114
- Every time you make changes to the documentation or add a new page, you must
115
- re-run the `make html` command to regenerate the HTML files.
108
+ ### Building the documentation
109
+
110
+ You can build the documentation using either auto-building (recommended for
111
+ active development) or manual building.
116
112
 
117
- ### Previewing documentation
113
+ #### Auto-building
118
114
 
119
- #### Using VS Code extensions
115
+ Run the following command from the `docs` folder in order to auto-rebuild the
116
+ documentation when you save changes in any of the `docs/*.md`, `src/sdf_xarray/*.py`
117
+ or update the `CONTRIBUTING.md` file:
118
+
119
+ ```bash
120
+ make livehtml
121
+ ```
120
122
 
121
- Once the html web pages have been made you can review them installing the
123
+ This should spin up a local server for the documentation which you can open in your
124
+ browser. Example output including what changing a file should produce in the terminal:
125
+
126
+ ```bash
127
+ [sphinx-autobuild] Starting initial build
128
+ [sphinx-autobuild] > python -m sphinx build . _build/html --builder html --quiet
129
+ [sphinx-autobuild] Serving on http://127.0.0.1:8000
130
+ [sphinx-autobuild] Waiting to detect changes...
131
+ [sphinx-autobuild] Detected changes (key_functionality.md)
132
+ [sphinx-autobuild] Rebuilding...
133
+ [sphinx-autobuild] > python -m sphinx build . _build/html --builder html --quiet
134
+ [sphinx-autobuild] Serving on http://127.0.0.1:8000
135
+ ```
136
+
137
+ #### Manual building
138
+
139
+ If you prefer to rebuild the documentation manually, run the following
140
+ command from the `docs` folder:
141
+
142
+ ```bash
143
+ make html
144
+ ```
145
+
146
+ Once the html web pages have been made you can review them by installing the
122
147
  [Live Server](https://marketplace.visualstudio.com/items/?itemName=ritwickdey.LiveServer)
123
- VS Code extension. Navigate to the `_build/html` folder, right-click the
148
+ VS Code extension. Navigate to the `docs/_build/html` folder, right-click the
124
149
  `index.html`, and select **"Open with Live Server"**. This
125
150
  will open a live preview of the documentation in your web browser.
126
151
 
127
- #### Using a simple python server
128
-
129
- Alternatively, if you're not using VS Code, you can start a simple local server with Python:
152
+ Alternatively if you do not wish to install a VS Code extension run the following
153
+ command from the `docs` folder:
130
154
 
131
155
  ```bash
132
156
  python -m http.server -d _build/html
133
157
  ```
134
158
 
135
- Then open http://localhost:8000 in your browser to view the documentation.
159
+ Then open the link it gives you in the browser to view the documentation.
136
160
 
137
161
  ## Continuous integration
138
162
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sdf-xarray
3
- Version: 0.6.0
3
+ Version: 0.7.1
4
4
  Summary: Provides a backend for xarray to read SDF files as created by the EPOCH plasma PIC code.
5
5
  Author-Email: Peter Hill <peter.hill@york.ac.uk>, Joel Adams <joel.adams@york.ac.uk>, Shaun Doherty <shaun.doherty@york.ac.uk>, Chris Herdman <chris.herdman@york.ac.uk>, Liam Pattinson <liam.pattinson@york.ac.uk>, Sviatoslav Shekhanov <sviatoslav.shekhanov@york.ac.uk>
6
6
  License-Expression: BSD-3-Clause
@@ -27,7 +27,13 @@ Requires-Dist: pint; extra == "pint"
27
27
  Requires-Dist: pint-xarray; extra == "pint"
28
28
  Description-Content-Type: text/markdown
29
29
 
30
- # sdf-xarray
30
+ <h1 align="center">
31
+ <picture>
32
+ <source media="(prefers-color-scheme: dark)" srcset="docs/_static/sdf-xarray-logo-dark.svg">
33
+ <source media="(prefers-color-scheme: light)" srcset="docs/_static/sdf-xarray-logo-light.svg">
34
+ <img alt="sdf-xarray logo" src="docs/_static/sdf-xarray-logo-dark.svg" width="400">
35
+ </picture>
36
+ </h1><br>
31
37
 
32
38
  ![Dynamic TOML Badge](https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2Fepochpic%2Fsdf-xarray%2Frefs%2Fheads%2Fmain%2Fpyproject.toml&query=%24.project.requires-python&label=python&logo=python)
33
39
  [![Available on PyPI](https://img.shields.io/pypi/v/sdf-xarray?color=blue&logo=pypi)](https://pypi.org/project/sdf-xarray/)
@@ -37,10 +43,10 @@ Description-Content-Type: text/markdown
37
43
  [![Read the Docs](https://img.shields.io/readthedocs/sdf-xarray?logo=readthedocs&link=https%3A%2F%2Fsdf-xarray.readthedocs.io%2F)](https://sdf-xarray.readthedocs.io)
38
44
  [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
39
45
 
40
-
41
- sdf-xarray provides a backend for [xarray](https://xarray.dev) to read SDF files as created by
42
- [EPOCH](https://epochpic.github.io) using the [SDF-C](https://github.com/epochpic/SDF_C) library.
43
- Part of [BEAM](#broad-epoch-analysis-modules-beam) (Broad EPOCH Analysis Modules).
46
+ sdf-xarray provides a backend for [xarray](https://xarray.dev) to read SDF files
47
+ as created by [EPOCH](https://epochpic.github.io) using the
48
+ [SDF-C](https://github.com/epochpic/SDF_C) library. Part of
49
+ [BEAM](#broad-epoch-analysis-modules-beam) (Broad EPOCH Analysis Modules).
44
50
 
45
51
  ## Installation
46
52
 
@@ -88,9 +94,9 @@ print(df["Electric_Field_Ex"])
88
94
 
89
95
  ### Multi-file loading
90
96
 
91
- You can open all the SDF files for a given simulation by calling the `open_mfdataset`
92
- function from `sdf_xarray`. This will additionally add a time dimension using the `"time"`
93
- value stored in each files attributes.
97
+ You can open all the SDF files for a given simulation by calling the
98
+ `open_mfdataset` function from `sdf_xarray`. This will additionally add
99
+ a time dimension using the `"time"` value stored in each files attributes.
94
100
 
95
101
  > [!IMPORTANT]
96
102
  > If your simulation has multiple `output` blocks so that not all variables are
@@ -115,37 +121,59 @@ print(ds)
115
121
 
116
122
  ## Citing
117
123
 
118
- If sdf-xarray contributes to a project that leads to publication, please acknowledge this by citing sdf-xarray. This can be done by clicking the "cite this repository" button located near the top right of this page.
124
+ If sdf-xarray contributes to a project that leads to publication, please acknowledge
125
+ this by citing sdf-xarray. This can be done by clicking the "cite this repository"
126
+ button located near the top right of this page.
119
127
 
120
128
  ## Contributing
121
129
 
122
- We welcome contributions to the BEAM ecosystem! Whether it's reporting issues, suggesting features, or submitting pull requests, your input helps improve these tools for the community.
130
+ We welcome contributions to the BEAM ecosystem! Whether it's reporting issues,
131
+ suggesting features, or submitting pull requests, your input helps improve these
132
+ tools for the community.
123
133
 
124
134
  ### How to Contribute
125
135
 
126
136
  There are many ways to get involved:
127
- - **Report bugs**: Found something not working as expected? Open an issue with as much detail as possible.
128
- - **Request a feature**: Got an idea for a new feature or enhancement? Open a feature request on [GitHub Issues](https://github.com/epochpic/sdf-xarray/issues)!
129
- - **Improve the documentation**: We aim to keep our docs clear and helpful—if something's missing or unclear, feel free to suggest edits.
130
- - **Submit code changes**: Bug fixes, refactoring, or new features are welcome.
131
137
 
138
+ - **Report bugs**: Found something not working as expected? Open an issue with as
139
+ much detail as possible.
140
+ - **Request a feature**: Got an idea for a new feature or enhancement? Open a feature
141
+ request on [GitHub Issues](https://github.com/epochpic/sdf-xarray/issues)!
142
+ - **Improve the documentation**: We aim to keep our docs clear and helpful—if
143
+ something's missing or unclear, feel free to suggest edits.
144
+ - **Submit code changes**: Bug fixes, refactoring, or new features are welcome.
132
145
 
133
146
  All code is automatically linted, formatted, and tested via GitHub Actions.
134
147
 
135
- To run checks locally before opening a pull request, see [CONTRIBUTING.md](CONTRIBUTING.md) or [readthedocs documentation](https://sdf-xarray.readthedocs.io/en/latest/contributing.html)
148
+ To run checks locally before opening a pull request, see
149
+ [CONTRIBUTING.md](CONTRIBUTING.md) or [readthedocs documentation](https://sdf-xarray.readthedocs.io/en/latest/contributing.html)
136
150
 
137
151
  ## Broad EPOCH Analysis Modules (BEAM)
138
152
 
139
- ![BEAM logo](./BEAM.png)
140
-
141
- **BEAM** is a collection of independent yet complementary open-source tools for analysing EPOCH simulations, designed to be modular so researchers can adopt only the components they require without being constrained by a rigid framework. In line with the **FAIR principles — Findable**, **Accessible**, **Interoperable**, and **Reusable** — each package is openly published with clear documentation and versioning (Findable), distributed via public repositories (Accessible), designed to follow common standards for data structures and interfaces (Interoperable), and includes licensing and metadata to support long-term use and adaptation (Reusable). The packages are as follows:
142
-
143
- - [sdf-xarray](https://github.com/epochpic/sdf-xarray): Reading and processing SDF files and converting them to [xarray](https://docs.xarray.dev/en/stable/).
153
+ <h1 align="center">
154
+ <img src="docs/_static/BEAM.png" width="400">
155
+ </h1>
156
+
157
+ **BEAM** is a collection of independent yet complementary open-source tools for
158
+ analysing EPOCH simulations, designed to be modular so researchers can adopt only
159
+ the components they require without being constrained by a rigid framework. In
160
+ line with the **FAIR principles — Findable**, **Accessible**, **Interoperable**,
161
+ and **Reusable** — each package is openly published with clear documentation and
162
+ versioning (Findable), distributed via public repositories (Accessible), designed
163
+ to follow common standards for data structures and interfaces (Interoperable), and
164
+ includes licensing and metadata to support long-term use and adaptation (Reusable).
165
+ The packages are as follows:
166
+
167
+ - [sdf-xarray](https://github.com/epochpic/sdf-xarray): Reading and processing SDF
168
+ files and converting them to [xarray](https://docs.xarray.dev/en/stable/).
144
169
  - [epydeck](https://github.com/epochpic/epydeck): Input deck reader and writer.
145
- - [epyscan](https://github.com/epochpic/epyscan): Create campaigns over a given parameter space using various sampling methods.
170
+ - [epyscan](https://github.com/epochpic/epyscan): Create campaigns over a given
171
+ parameter space using various sampling methods.
146
172
 
147
173
  ## PlasmaFAIR
148
174
 
149
- ![PlasmaFAIR logo](PlasmaFAIR.svg)
175
+ <h1 align="left">
176
+ <img src="docs/_static/PlasmaFAIR.svg" width="400">
177
+ </h1>
150
178
 
151
179
  Originally developed by [PlasmaFAIR](https://plasmafair.github.io), EPSRC Grant EP/V051822/1
@@ -1,4 +1,10 @@
1
- # sdf-xarray
1
+ <h1 align="center">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="docs/_static/sdf-xarray-logo-dark.svg">
4
+ <source media="(prefers-color-scheme: light)" srcset="docs/_static/sdf-xarray-logo-light.svg">
5
+ <img alt="sdf-xarray logo" src="docs/_static/sdf-xarray-logo-dark.svg" width="400">
6
+ </picture>
7
+ </h1><br>
2
8
 
3
9
  ![Dynamic TOML Badge](https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2Fepochpic%2Fsdf-xarray%2Frefs%2Fheads%2Fmain%2Fpyproject.toml&query=%24.project.requires-python&label=python&logo=python)
4
10
  [![Available on PyPI](https://img.shields.io/pypi/v/sdf-xarray?color=blue&logo=pypi)](https://pypi.org/project/sdf-xarray/)
@@ -8,10 +14,10 @@
8
14
  [![Read the Docs](https://img.shields.io/readthedocs/sdf-xarray?logo=readthedocs&link=https%3A%2F%2Fsdf-xarray.readthedocs.io%2F)](https://sdf-xarray.readthedocs.io)
9
15
  [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
10
16
 
11
-
12
- sdf-xarray provides a backend for [xarray](https://xarray.dev) to read SDF files as created by
13
- [EPOCH](https://epochpic.github.io) using the [SDF-C](https://github.com/epochpic/SDF_C) library.
14
- Part of [BEAM](#broad-epoch-analysis-modules-beam) (Broad EPOCH Analysis Modules).
17
+ sdf-xarray provides a backend for [xarray](https://xarray.dev) to read SDF files
18
+ as created by [EPOCH](https://epochpic.github.io) using the
19
+ [SDF-C](https://github.com/epochpic/SDF_C) library. Part of
20
+ [BEAM](#broad-epoch-analysis-modules-beam) (Broad EPOCH Analysis Modules).
15
21
 
16
22
  ## Installation
17
23
 
@@ -59,9 +65,9 @@ print(df["Electric_Field_Ex"])
59
65
 
60
66
  ### Multi-file loading
61
67
 
62
- You can open all the SDF files for a given simulation by calling the `open_mfdataset`
63
- function from `sdf_xarray`. This will additionally add a time dimension using the `"time"`
64
- value stored in each files attributes.
68
+ You can open all the SDF files for a given simulation by calling the
69
+ `open_mfdataset` function from `sdf_xarray`. This will additionally add
70
+ a time dimension using the `"time"` value stored in each files attributes.
65
71
 
66
72
  > [!IMPORTANT]
67
73
  > If your simulation has multiple `output` blocks so that not all variables are
@@ -86,37 +92,59 @@ print(ds)
86
92
 
87
93
  ## Citing
88
94
 
89
- If sdf-xarray contributes to a project that leads to publication, please acknowledge this by citing sdf-xarray. This can be done by clicking the "cite this repository" button located near the top right of this page.
95
+ If sdf-xarray contributes to a project that leads to publication, please acknowledge
96
+ this by citing sdf-xarray. This can be done by clicking the "cite this repository"
97
+ button located near the top right of this page.
90
98
 
91
99
  ## Contributing
92
100
 
93
- We welcome contributions to the BEAM ecosystem! Whether it's reporting issues, suggesting features, or submitting pull requests, your input helps improve these tools for the community.
101
+ We welcome contributions to the BEAM ecosystem! Whether it's reporting issues,
102
+ suggesting features, or submitting pull requests, your input helps improve these
103
+ tools for the community.
94
104
 
95
105
  ### How to Contribute
96
106
 
97
107
  There are many ways to get involved:
98
- - **Report bugs**: Found something not working as expected? Open an issue with as much detail as possible.
99
- - **Request a feature**: Got an idea for a new feature or enhancement? Open a feature request on [GitHub Issues](https://github.com/epochpic/sdf-xarray/issues)!
100
- - **Improve the documentation**: We aim to keep our docs clear and helpful—if something's missing or unclear, feel free to suggest edits.
101
- - **Submit code changes**: Bug fixes, refactoring, or new features are welcome.
102
108
 
109
+ - **Report bugs**: Found something not working as expected? Open an issue with as
110
+ much detail as possible.
111
+ - **Request a feature**: Got an idea for a new feature or enhancement? Open a feature
112
+ request on [GitHub Issues](https://github.com/epochpic/sdf-xarray/issues)!
113
+ - **Improve the documentation**: We aim to keep our docs clear and helpful—if
114
+ something's missing or unclear, feel free to suggest edits.
115
+ - **Submit code changes**: Bug fixes, refactoring, or new features are welcome.
103
116
 
104
117
  All code is automatically linted, formatted, and tested via GitHub Actions.
105
118
 
106
- To run checks locally before opening a pull request, see [CONTRIBUTING.md](CONTRIBUTING.md) or [readthedocs documentation](https://sdf-xarray.readthedocs.io/en/latest/contributing.html)
119
+ To run checks locally before opening a pull request, see
120
+ [CONTRIBUTING.md](CONTRIBUTING.md) or [readthedocs documentation](https://sdf-xarray.readthedocs.io/en/latest/contributing.html)
107
121
 
108
122
  ## Broad EPOCH Analysis Modules (BEAM)
109
123
 
110
- ![BEAM logo](./BEAM.png)
111
-
112
- **BEAM** is a collection of independent yet complementary open-source tools for analysing EPOCH simulations, designed to be modular so researchers can adopt only the components they require without being constrained by a rigid framework. In line with the **FAIR principles — Findable**, **Accessible**, **Interoperable**, and **Reusable** — each package is openly published with clear documentation and versioning (Findable), distributed via public repositories (Accessible), designed to follow common standards for data structures and interfaces (Interoperable), and includes licensing and metadata to support long-term use and adaptation (Reusable). The packages are as follows:
113
-
114
- - [sdf-xarray](https://github.com/epochpic/sdf-xarray): Reading and processing SDF files and converting them to [xarray](https://docs.xarray.dev/en/stable/).
124
+ <h1 align="center">
125
+ <img src="docs/_static/BEAM.png" width="400">
126
+ </h1>
127
+
128
+ **BEAM** is a collection of independent yet complementary open-source tools for
129
+ analysing EPOCH simulations, designed to be modular so researchers can adopt only
130
+ the components they require without being constrained by a rigid framework. In
131
+ line with the **FAIR principles — Findable**, **Accessible**, **Interoperable**,
132
+ and **Reusable** — each package is openly published with clear documentation and
133
+ versioning (Findable), distributed via public repositories (Accessible), designed
134
+ to follow common standards for data structures and interfaces (Interoperable), and
135
+ includes licensing and metadata to support long-term use and adaptation (Reusable).
136
+ The packages are as follows:
137
+
138
+ - [sdf-xarray](https://github.com/epochpic/sdf-xarray): Reading and processing SDF
139
+ files and converting them to [xarray](https://docs.xarray.dev/en/stable/).
115
140
  - [epydeck](https://github.com/epochpic/epydeck): Input deck reader and writer.
116
- - [epyscan](https://github.com/epochpic/epyscan): Create campaigns over a given parameter space using various sampling methods.
141
+ - [epyscan](https://github.com/epochpic/epyscan): Create campaigns over a given
142
+ parameter space using various sampling methods.
117
143
 
118
144
  ## PlasmaFAIR
119
145
 
120
- ![PlasmaFAIR logo](PlasmaFAIR.svg)
146
+ <h1 align="left">
147
+ <img src="docs/_static/PlasmaFAIR.svg" width="400">
148
+ </h1>
121
149
 
122
150
  Originally developed by [PlasmaFAIR](https://plasmafair.github.io), EPSRC Grant EP/V051822/1
@@ -0,0 +1,103 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="2135.4312"
4
+ height="300.29999"
5
+ xml:space="preserve"
6
+ overflow="hidden"
7
+ version="1.1"
8
+ id="svg4"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
11
+ id="defs4" /><g
12
+ transform="translate(-1398.0891,-1539.0948)"
13
+ id="g4-4"
14
+ style="display:inline"><g
15
+ id="g7-5"
16
+ style="display:inline"><g
17
+ id="text5-1"
18
+ style="font-weight:500;font-size:330px;font-family:'JetBrainsMonoNL NF Medium', 'JetBrainsMonoNL NF Medium_MSFontService', sans-serif;fill:#4983c0"
19
+ transform="translate(1371.97,1780)"
20
+ aria-label="sdf xarray"><path
21
+ d="M 91.74,2.64 Q 60.72,2.64 43.56,-11.22 26.4,-25.08 26.4,-50.16 h 32.34 q 0,11.88 8.58,18.81 8.91,6.6 24.42,6.6 h 14.52 q 16.17,0 24.75,-6.93 8.91,-6.93 8.91,-19.47 0,-22.11 -21.78,-24.75 L 69.3,-82.83 q -19.47,-2.97 -30.03,-15.84 -10.56,-13.2 -10.56,-33.99 0,-24.42 16.5,-37.95 16.5,-13.53 46.2,-13.53 h 14.52 q 27.72,0 44.88,13.2 17.16,13.2 18.15,34.98 h -33 q -0.66,-9.24 -8.58,-15.18 -7.92,-6.27 -21.45,-6.27 H 91.41 q -14.85,0 -23.1,6.6 -7.92,6.6 -7.92,17.82 0,18.15 18.15,20.46 l 45.87,6.6 q 47.19,6.27 47.19,54.78 0,25.74 -17.16,39.93 Q 137.61,2.64 106.26,2.64 Z M 285.12012,3.3 q -27.39,0 -43.56,-18.15 -16.17,-18.48 -16.17,-49.83 v -52.14 q 0,-31.35 16.17,-49.5 16.17,-18.48 43.56,-18.48 20.13,0 33.33,10.23 13.53,10.23 16.5,28.05 v 0 l -0.66,-42.24 v -52.14 h 32.67 V 0 h -32.34 v -35.31 0 q -2.97,18.15 -16.17,28.38 -13.2,10.23 -33.33,10.23 z m 11.22,-28.38 q 17.49,0 27.72,-10.89 10.23,-10.89 10.23,-30.69 v -48.18 q 0,-19.8 -10.23,-30.69 -10.23,-10.89 -27.72,-10.89 -18.15,0 -28.38,9.57 -9.9,9.24 -9.9,30.36 v 51.48 q 0,21.12 9.9,30.69 10.23,9.24 28.38,9.24 z M 465.63024,0 v -127.05 h -52.14 v -29.7 h 52.14 v -36.63 q 0,-21.78 14.19,-34.65 14.19,-12.87 38.61,-12.87 h 53.13 v 29.37 h -53.13 q -20.13,0 -20.13,18.48 v 36.3 h 73.26 v 29.7 h -73.26 V 0 Z"
22
+ id="path13" /><path
23
+ style="fill:#cfd6dc;fill-opacity:1"
24
+ d="m 1005.1806,0 64.35,-93.39 -60.06,-88.11 h 37.95 l 33.99,53.13 q 2.31,3.96 4.29,8.25 2.31,4.29 3.63,6.93 0.99,-2.64 2.97,-6.93 2.31,-4.29 4.62,-8.25 l 33.99,-53.13 h 37.95 l -60.06,88.44 64.02,93.06 h -38.28 l -36.96,-57.09 q -2.31,-3.63 -4.62,-8.25 -2.31,-4.95 -3.63,-7.92 -1.65,2.97 -3.96,7.92 -2.31,4.62 -4.95,8.25 L 1043.4606,0 Z m 264.9901,3.3 q -28.05,0 -44.55,-15.51 -16.17,-15.84 -16.17,-41.25 0,-25.41 16.83,-40.92 17.16,-15.51 44.88,-15.51 h 53.13 v -13.86 q 0,-33.33 -36.96,-33.33 -16.5,0 -26.73,6.27 -9.9,5.94 -10.56,16.83 h -32.34 q 1.65,-22.11 20.13,-36.3 18.48,-14.52 49.5,-14.52 33.33,0 51.48,15.84 18.15,15.84 18.15,44.55 V 0 h -32.01 v -33.33 h -0.66 q -2.31,16.83 -16.83,26.73 -14.19,9.9 -37.29,9.9 z m 8.58,-27.39 q 20.79,0 33,-9.9 12.54,-10.23 12.54,-27.72 V -85.8 h -50.16 q -14.19,0 -23.1,8.58 -8.58,8.25 -8.58,22.11 0,14.19 9.57,22.77 9.57,8.25 26.73,8.25 z M 1421.6409,0 v -181.5 h 32.34 v 34.98 h 0.33 q 2.64,-17.82 15.18,-28.05 12.87,-10.23 33.99,-10.23 28.05,0 43.56,17.49 15.51,17.16 15.51,48.51 v 15.84 h -32.67 v -15.51 q 0,-37.95 -37.29,-37.95 -18.81,0 -28.71,10.89 -9.57,10.89 -9.57,31.02 V 0 Z m 198.0001,0 v -181.5 h 32.34 v 34.98 h 0.33 q 2.64,-17.82 15.18,-28.05 12.87,-10.23 33.99,-10.23 28.05,0 43.56,17.49 15.51,17.16 15.51,48.51 v 15.84 h -32.67 v -15.51 q 0,-37.95 -37.29,-37.95 -18.81,0 -28.71,10.89 -9.57,10.89 -9.57,31.02 V 0 Z m 244.5301,3.3 q -28.05,0 -44.55,-15.51 -16.17,-15.84 -16.17,-41.25 0,-25.41 16.83,-40.92 17.16,-15.51 44.88,-15.51 h 53.13 v -13.86 q 0,-33.33 -36.96,-33.33 -16.5,0 -26.73,6.27 -9.9,5.94 -10.56,16.83 h -32.34 q 1.65,-22.11 20.13,-36.3 18.48,-14.52 49.5,-14.52 33.33,0 51.48,15.84 18.15,15.84 18.15,44.55 V 0 h -32.01 v -33.33 h -0.66 q -2.31,16.83 -16.83,26.73 -14.19,9.9 -37.29,9.9 z m 8.58,-27.39 q 20.79,0 33,-9.9 12.54,-10.23 12.54,-27.72 V -85.8 h -50.16 q -14.19,0 -23.1,8.58 -8.58,8.25 -8.58,22.11 0,14.19 9.57,22.77 9.57,8.25 26.73,8.25 z m 165.0001,83.49 26.4,-70.29 -67.65,-170.61 h 34.65 l 40.92,107.25 q 2.64,6.93 5.28,14.85 2.64,7.92 3.63,13.86 0.99,-5.94 3.3,-13.86 2.31,-7.92 4.95,-14.85 l 37.95,-107.25 h 34.65 l -90.09,240.9 z"
25
+ id="path14" /></g><path
26
+ class="gaussian_pulse"
27
+ style="fill:#000000;fill-opacity:0;stroke:#e38017;stroke-width:16.147;stroke-opacity:1"
28
+ d="m 1988.4924,1675.0809 c 0.943,0 1.8861,0 2.8291,0 0.9431,-0.01 1.8861,-0.019 2.8291,-0.038 0.9431,-0.019 1.8861,-0.045 2.8292,-0.081 0.943,-0.034 1.8861,-0.077 2.8291,-0.1296 0.943,-0.051 1.8861,-0.1126 2.8291,-0.1806 0.9431,-0.068 1.8861,-0.1423 2.8292,-0.2209 0.943,-0.081 1.886,-0.1636 2.8291,-0.2464 0.943,-0.083 1.8861,-0.1636 2.8291,-0.2379 0.943,-0.072 1.8861,-0.1381 2.8291,-0.1891 0.9431,-0.051 1.8861,-0.083 2.8292,-0.093 0.943,-0.01 1.886,0.01 2.8291,0.057 0.943,0.049 1.8861,0.1317 2.8291,0.2528 0.943,0.1211 1.8861,0.2825 2.8291,0.4822 0.9431,0.2018 1.8861,0.444 2.8292,0.7244 0.943,0.2804 1.886,0.5969 2.8291,0.941 0.943,0.342 1.8861,0.7138 2.8291,1.0919 0.943,0.3781 1.8861,0.7647 2.8291,1.1344 0.9431,0.3675 1.8861,0.7201 2.8292,1.0239 0.943,0.3016 1.886,0.5565 2.8291,0.7307 0.943,0.1721 1.8861,0.2634 2.8291,0.2422 0.943,-0.021 1.8861,-0.1572 2.8291,-0.4291 0.9431,-0.274 1.8861,-0.684 2.8292,-1.2406 0.943,-0.5587 1.886,-1.2661 2.8291,-2.1136 0.943,-0.8476 1.8861,-1.8375 2.8291,-2.94 0.9431,-1.1004 1.8861,-2.3155 2.8291,-3.5879 0.9431,-1.2725 1.8861,-2.6065 2.8292,-3.9236 0.943,-1.3191 1.886,-2.6213 2.8291,-3.8194 0.943,-1.2002 1.8861,-2.2921 2.8291,-3.18 0.9431,-0.8901 1.8861,-1.5762 2.8291,-1.9671 0.9431,-0.3887 1.8861,-0.4822 2.8292,-0.2061 0.943,0.2762 1.886,0.922 2.8291,1.9777 0.943,1.0537 1.8861,2.5194 2.8291,4.3867 0.9431,1.8672 1.8861,4.138 2.8291,6.7488 0.9431,2.6128 1.8861,5.5656 2.8292,8.7413 0.943,3.1758 1.886,6.5747 2.8291,10.0245 0.943,3.4519 1.8861,6.9527 2.8291,10.3006 0.9431,3.3478 1.8861,6.5385 2.8291,9.351 0.9431,2.8125 1.8861,5.2406 2.8292,7.0781 0.943,1.8396 1.886,3.0802 2.8291,3.5581 0.943,0.478 1.8861,0.187 2.8291,-0.9686 0.9431,-1.1556 1.8861,-3.1822 2.8291,-6.0818 0.9431,-2.8996 1.8861,-6.6766 2.8292,-11.2247 0.943,-4.548 1.8861,-9.8736 2.8291,-15.7578 0.943,-5.8864 1.8861,-12.3357 2.8291,-19.0399 0.9431,-6.702 1.8861,-13.659 2.8291,-20.4971 0.9431,-6.8359 1.8861,-13.5486 2.8292,-19.7366 0.943,-6.188 1.8861,-11.8449 2.8291,-16.5948 0.943,-4.7498 1.8861,-8.5841 2.8291,-11.1991 0.9431,-2.6129 1.8861,-3.9979 2.8291,-3.966 0.9431,0.03 1.8861,1.4848 2.8292,4.3972 0.943,2.9145 1.8861,7.2926 2.8291,13.0005 0.943,5.708 1.8861,12.752 2.8291,20.8307 0.9431,8.0764 1.8861,17.1917 2.8291,26.8996 0.9431,9.7079 1.8861,20.0128 2.8292,30.3728 0.943,10.3601 1.8861,20.7754 2.8291,30.6724 0.943,9.897 1.8861,19.2714 2.8291,27.5836 0.9431,8.3144 1.8861,15.5561 2.8291,21.2959 0.9431,5.7398 1.8861,9.9607 2.8292,12.3908 0.943,2.4323 1.8861,3.059 2.8291,1.8036 0.943,-1.2534 1.8861,-4.4015 2.8291,-9.3044 0.9431,-4.9049 1.8861,-11.5751 2.8292,-19.6728 0.943,-8.0999 1.886,-17.6315 2.8291,-28.0956 0.943,-10.4642 1.8861,-21.8609 2.8291,-33.5848 0.943,-11.7217 1.8861,-23.7663 2.8291,-35.4881 0.9431,-11.7238 1.8861,-23.1184 2.8292,-33.5847 0.943,-10.4663 1.886,-19.9936 2.8291,-28.0956 0.943,-8.0998 1.8861,-14.7637 2.8291,-19.6707 0.943,-4.9092 1.8861,-8.0489 2.8291,-9.3065 0.9431,-1.2575 1.8861,-0.6245 2.8292,1.8035 0.943,2.4259 1.886,6.6554 2.8291,12.3909 0.943,5.7355 1.8861,12.9835 2.8291,21.2958 0.943,8.3123 1.8861,17.6888 2.8291,27.5837 0.9431,9.897 1.8861,20.3123 2.8292,30.6723 0.943,10.3622 1.886,20.6628 2.8291,30.3729 0.943,9.71 1.8861,18.821 2.8291,26.8996 0.943,8.0807 1.8861,15.1206 2.8291,20.8306 0.9431,5.7101 1.8861,10.0839 2.8292,13.0006 0.943,2.9145 1.886,4.3653 2.8291,4.3993 0.943,0.032 1.8861,-1.3574 2.8291,-3.9681 0.9431,-2.6107 1.8861,-6.4493 2.8291,-11.197 0.9431,-4.7499 1.8861,-10.409 2.8292,-16.597 0.943,-6.1859 1.886,-12.9007 2.8291,-19.7366 0.943,-6.8359 1.8861,-13.7929 2.8291,-20.4971 0.9431,-6.7042 1.8861,-13.1513 2.8291,-19.0377 0.9431,-5.8885 1.8861,-11.2098 2.8292,-15.76 0.943,-4.5502 1.886,-8.3229 2.8291,-11.2246 0.943,-2.8996 1.8861,-4.9241 2.8291,-6.0818 0.9431,-1.1577 1.8861,-1.4445 2.8291,-0.9687 0.9431,0.478 1.8861,1.7207 2.8292,3.5582 0.943,1.8354 1.886,4.2676 2.8291,7.0781 0.943,2.8125 1.8861,6.0031 2.8291,9.351 0.9431,3.3478 1.8861,6.8508 2.8291,10.3006 0.9431,3.4519 1.8861,6.8486 2.8292,10.0244 0.943,3.1758 1.886,6.1285 2.8291,8.7414 0.943,2.6107 1.8861,4.8816 2.8291,6.7488 0.9431,1.8694 1.8861,3.333 2.8291,4.3888 0.9431,1.0557 1.8861,1.6994 2.8292,1.9755 0.943,0.2762 1.8861,0.1827 2.8291,-0.206 0.943,-0.3909 1.8861,-1.077 2.8291,-1.965 0.9431,-0.89 1.8861,-1.9819 2.8291,-3.18 0.9431,-1.1981 1.8861,-2.5024 2.8292,-3.8195 0.943,-1.3191 1.8861,-2.651 2.8291,-3.9256 0.943,-1.2724 1.8861,-2.4875 2.8291,-3.5879 0.9431,-1.1025 1.8861,-2.0903 2.8291,-2.94 0.9431,-0.8476 1.8861,-1.555 2.8292,-2.1115 0.943,-0.5587 1.8861,-0.9687 2.8291,-1.2406 0.943,-0.274 1.8861,-0.4079 2.8291,-0.4312 0.9431,-0.021 1.8861,0.07 2.8291,0.2421 0.9431,0.1742 1.8861,0.4292 2.8292,0.7329 0.943,0.3017 1.8861,0.6543 2.8291,1.0239 0.943,0.3675 1.8861,0.7541 2.8291,1.1323 0.9431,0.3781 1.8861,0.7498 2.8292,1.0918 0.943,0.3442 1.886,0.6607 2.8291,0.9411 0.943,0.2804 1.8861,0.5226 2.8291,0.7244 0.943,0.2018 1.8861,0.3611 2.8291,0.4822 0.9431,0.1232 1.8861,0.2039 2.8292,0.2528 0.943,0.051 1.886,0.066 2.8291,0.057 0.943,-0.01 1.8861,-0.043 2.8291,-0.093 0.943,-0.049 1.8861,-0.1148 2.8291,-0.1891 0.9431,-0.074 1.8861,-0.1551 2.8292,-0.2379 0.943,-0.083 1.886,-0.1657 2.8291,-0.2443 0.943,-0.081 1.8861,-0.1551 2.8291,-0.2231 0.943,-0.068 1.8861,-0.1274 2.8291,-0.1805 0.9431,-0.051 1.8861,-0.096 2.8292,-0.1296 0.943,-0.036 1.886,-0.062 2.8291,-0.081 0.943,-0.019 1.8861,-0.032 2.8291,-0.038 0.943,0 1.8861,-0.01 2.8291,0"
29
+ title="2*sin(2*x)*exp(-pow((x/4),2))"
30
+ id="path9-3" /></g></g><style
31
+ type="text/css"
32
+ id="style1">
33
+ .st0{fill:#216C89;}
34
+ .st1{fill:#4993AA;}
35
+ .st2{fill:#0F4565;}
36
+ .st3{fill:#6BE8E8;}
37
+ .st4{fill:#9DEEF4;}
38
+ .st5{fill:#4ACFDD;}
39
+ .st6{fill:#E38017;}
40
+ .st7{fill:#16AFB5;}
41
+ </style>
42
+ <style
43
+ type="text/css"
44
+ id="style1-2">
45
+ .st0{fill:#216C89;}
46
+ .st1{fill:#4993AA;}
47
+ .st2{fill:#0F4565;}
48
+ .st3{fill:#6BE8E8;}
49
+ .st4{fill:#9DEEF4;}
50
+ .st5{fill:#4ACFDD;}
51
+ .st6{fill:#E38017;}
52
+ .st7{fill:#16AFB5;}
53
+ .st8{fill:#494949;}
54
+ </style>
55
+
56
+ <style
57
+ type="text/css"
58
+ id="style1-24">
59
+ .st0{fill:#216C89;}
60
+ .st1{fill:#4993AA;}
61
+ .st2{fill:#0F4565;}
62
+ .st3{fill:#6BE8E8;}
63
+ .st4{fill:#9DEEF4;}
64
+ .st5{fill:#4ACFDD;}
65
+ .st6{fill:#E38017;}
66
+ .st7{fill:#16AFB5;}
67
+ .st8{fill:#FFFFFF;}
68
+ </style>
69
+ <style>
70
+ .gaussian_pulse {
71
+ stroke-dasharray: none;
72
+ stroke-dashoffset: 0;
73
+ animation: gaussian-pulse-ramp-load 4.8s cubic-bezier(.25,.1,.25,1) 0.1s forwards;
74
+ }
75
+
76
+ @keyframes gaussian-pulse-ramp-load {
77
+ 0% {
78
+ stroke-dasharray: 3000;
79
+ stroke-dashoffset: 3000;
80
+ }
81
+ 55% {
82
+ stroke-dasharray: 3000;
83
+ stroke-dashoffset: 900;
84
+ }
85
+ 75% {
86
+ stroke-dasharray: 3000;
87
+ stroke-dashoffset: 350;
88
+ }
89
+ 88% {
90
+ stroke-dasharray: 3000;
91
+ stroke-dashoffset: 110;
92
+ }
93
+ 96% {
94
+ stroke-dasharray: 3000;
95
+ stroke-dashoffset: 25;
96
+ }
97
+ 100% {
98
+ stroke-dasharray: 3000;
99
+ stroke-dashoffset: 0;
100
+ }
101
+ }
102
+ </style>
103
+ </svg>
@@ -0,0 +1,91 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="2135.4312"
4
+ height="300.29999"
5
+ xml:space="preserve"
6
+ overflow="hidden"
7
+ version="1.1"
8
+ id="svg4"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
11
+ id="defs4" /><g
12
+ transform="translate(-1398.37,-1539.1)"
13
+ id="g4"
14
+ style="display:inline"><g
15
+ id="g7"
16
+ style="display:inline"><g
17
+ id="text5"
18
+ style="font-weight:500;font-size:330px;font-family:'JetBrainsMonoNL NF Medium', 'JetBrainsMonoNL NF Medium_MSFontService', sans-serif;fill:#4983c0"
19
+ transform="translate(1371.97,1780)"
20
+ aria-label="sdf xarray"><path
21
+ d="M 91.74,2.64 Q 60.72,2.64 43.56,-11.22 26.4,-25.08 26.4,-50.16 h 32.34 q 0,11.88 8.58,18.81 8.91,6.6 24.42,6.6 h 14.52 q 16.17,0 24.75,-6.93 8.91,-6.93 8.91,-19.47 0,-22.11 -21.78,-24.75 L 69.3,-82.83 q -19.47,-2.97 -30.03,-15.84 -10.56,-13.2 -10.56,-33.99 0,-24.42 16.5,-37.95 16.5,-13.53 46.2,-13.53 h 14.52 q 27.72,0 44.88,13.2 17.16,13.2 18.15,34.98 h -33 q -0.66,-9.24 -8.58,-15.18 -7.92,-6.27 -21.45,-6.27 H 91.41 q -14.85,0 -23.1,6.6 -7.92,6.6 -7.92,17.82 0,18.15 18.15,20.46 l 45.87,6.6 q 47.19,6.27 47.19,54.78 0,25.74 -17.16,39.93 Q 137.61,2.64 106.26,2.64 Z M 285.12012,3.3 q -27.39,0 -43.56,-18.15 -16.17,-18.48 -16.17,-49.83 v -52.14 q 0,-31.35 16.17,-49.5 16.17,-18.48 43.56,-18.48 20.13,0 33.33,10.23 13.53,10.23 16.5,28.05 v 0 l -0.66,-42.24 v -52.14 h 32.67 V 0 h -32.34 v -35.31 0 q -2.97,18.15 -16.17,28.38 -13.2,10.23 -33.33,10.23 z m 11.22,-28.38 q 17.49,0 27.72,-10.89 10.23,-10.89 10.23,-30.69 v -48.18 q 0,-19.8 -10.23,-30.69 -10.23,-10.89 -27.72,-10.89 -18.15,0 -28.38,9.57 -9.9,9.24 -9.9,30.36 v 51.48 q 0,21.12 9.9,30.69 10.23,9.24 28.38,9.24 z M 465.63024,0 v -127.05 h -52.14 v -29.7 h 52.14 v -36.63 q 0,-21.78 14.19,-34.65 14.19,-12.87 38.61,-12.87 h 53.13 v 29.37 h -53.13 q -20.13,0 -20.13,18.48 v 36.3 h 73.26 v 29.7 h -73.26 V 0 Z"
22
+ id="path11" /><path
23
+ style="fill:#4a4a4a"
24
+ d="m 1005.1806,0 64.35,-93.39 -60.06,-88.11 h 37.95 l 33.99,53.13 q 2.31,3.96 4.29,8.25 2.31,4.29 3.63,6.93 0.99,-2.64 2.97,-6.93 2.31,-4.29 4.62,-8.25 l 33.99,-53.13 h 37.95 l -60.06,88.44 64.02,93.06 h -38.28 l -36.96,-57.09 q -2.31,-3.63 -4.62,-8.25 -2.31,-4.95 -3.63,-7.92 -1.65,2.97 -3.96,7.92 -2.31,4.62 -4.95,8.25 L 1043.4606,0 Z m 264.9901,3.3 q -28.05,0 -44.55,-15.51 -16.17,-15.84 -16.17,-41.25 0,-25.41 16.83,-40.92 17.16,-15.51 44.88,-15.51 h 53.13 v -13.86 q 0,-33.33 -36.96,-33.33 -16.5,0 -26.73,6.27 -9.9,5.94 -10.56,16.83 h -32.34 q 1.65,-22.11 20.13,-36.3 18.48,-14.52 49.5,-14.52 33.33,0 51.48,15.84 18.15,15.84 18.15,44.55 V 0 h -32.01 v -33.33 h -0.66 q -2.31,16.83 -16.83,26.73 -14.19,9.9 -37.29,9.9 z m 8.58,-27.39 q 20.79,0 33,-9.9 12.54,-10.23 12.54,-27.72 V -85.8 h -50.16 q -14.19,0 -23.1,8.58 -8.58,8.25 -8.58,22.11 0,14.19 9.57,22.77 9.57,8.25 26.73,8.25 z M 1421.6409,0 v -181.5 h 32.34 v 34.98 h 0.33 q 2.64,-17.82 15.18,-28.05 12.87,-10.23 33.99,-10.23 28.05,0 43.56,17.49 15.51,17.16 15.51,48.51 v 15.84 h -32.67 v -15.51 q 0,-37.95 -37.29,-37.95 -18.81,0 -28.71,10.89 -9.57,10.89 -9.57,31.02 V 0 Z m 198.0001,0 v -181.5 h 32.34 v 34.98 h 0.33 q 2.64,-17.82 15.18,-28.05 12.87,-10.23 33.99,-10.23 28.05,0 43.56,17.49 15.51,17.16 15.51,48.51 v 15.84 h -32.67 v -15.51 q 0,-37.95 -37.29,-37.95 -18.81,0 -28.71,10.89 -9.57,10.89 -9.57,31.02 V 0 Z m 244.5301,3.3 q -28.05,0 -44.55,-15.51 -16.17,-15.84 -16.17,-41.25 0,-25.41 16.83,-40.92 17.16,-15.51 44.88,-15.51 h 53.13 v -13.86 q 0,-33.33 -36.96,-33.33 -16.5,0 -26.73,6.27 -9.9,5.94 -10.56,16.83 h -32.34 q 1.65,-22.11 20.13,-36.3 18.48,-14.52 49.5,-14.52 33.33,0 51.48,15.84 18.15,15.84 18.15,44.55 V 0 h -32.01 v -33.33 h -0.66 q -2.31,16.83 -16.83,26.73 -14.19,9.9 -37.29,9.9 z m 8.58,-27.39 q 20.79,0 33,-9.9 12.54,-10.23 12.54,-27.72 V -85.8 h -50.16 q -14.19,0 -23.1,8.58 -8.58,8.25 -8.58,22.11 0,14.19 9.57,22.77 9.57,8.25 26.73,8.25 z m 165.0001,83.49 26.4,-70.29 -67.65,-170.61 h 34.65 l 40.92,107.25 q 2.64,6.93 5.28,14.85 2.64,7.92 3.63,13.86 0.99,-5.94 3.3,-13.86 2.31,-7.92 4.95,-14.85 l 37.95,-107.25 h 34.65 l -90.09,240.9 z"
25
+ id="path12" /></g><path
26
+ class="gaussian_pulse"
27
+ style="fill:#000000;fill-opacity:0;stroke:#e38017;stroke-width:16.147;stroke-opacity:1"
28
+ d="m 1988.4924,1675.0809 c 0.943,0 1.8861,0 2.8291,0 0.9431,-0.01 1.8861,-0.019 2.8291,-0.038 0.9431,-0.019 1.8861,-0.045 2.8292,-0.081 0.943,-0.034 1.8861,-0.077 2.8291,-0.1296 0.943,-0.051 1.8861,-0.1126 2.8291,-0.1806 0.9431,-0.068 1.8861,-0.1423 2.8292,-0.2209 0.943,-0.081 1.886,-0.1636 2.8291,-0.2464 0.943,-0.083 1.8861,-0.1636 2.8291,-0.2379 0.943,-0.072 1.8861,-0.1381 2.8291,-0.1891 0.9431,-0.051 1.8861,-0.083 2.8292,-0.093 0.943,-0.01 1.886,0.01 2.8291,0.057 0.943,0.049 1.8861,0.1317 2.8291,0.2528 0.943,0.1211 1.8861,0.2825 2.8291,0.4822 0.9431,0.2018 1.8861,0.444 2.8292,0.7244 0.943,0.2804 1.886,0.5969 2.8291,0.941 0.943,0.342 1.8861,0.7138 2.8291,1.0919 0.943,0.3781 1.8861,0.7647 2.8291,1.1344 0.9431,0.3675 1.8861,0.7201 2.8292,1.0239 0.943,0.3016 1.886,0.5565 2.8291,0.7307 0.943,0.1721 1.8861,0.2634 2.8291,0.2422 0.943,-0.021 1.8861,-0.1572 2.8291,-0.4291 0.9431,-0.274 1.8861,-0.684 2.8292,-1.2406 0.943,-0.5587 1.886,-1.2661 2.8291,-2.1136 0.943,-0.8476 1.8861,-1.8375 2.8291,-2.94 0.9431,-1.1004 1.8861,-2.3155 2.8291,-3.5879 0.9431,-1.2725 1.8861,-2.6065 2.8292,-3.9236 0.943,-1.3191 1.886,-2.6213 2.8291,-3.8194 0.943,-1.2002 1.8861,-2.2921 2.8291,-3.18 0.9431,-0.8901 1.8861,-1.5762 2.8291,-1.9671 0.9431,-0.3887 1.8861,-0.4822 2.8292,-0.2061 0.943,0.2762 1.886,0.922 2.8291,1.9777 0.943,1.0537 1.8861,2.5194 2.8291,4.3867 0.9431,1.8672 1.8861,4.138 2.8291,6.7488 0.9431,2.6128 1.8861,5.5656 2.8292,8.7413 0.943,3.1758 1.886,6.5747 2.8291,10.0245 0.943,3.4519 1.8861,6.9527 2.8291,10.3006 0.9431,3.3478 1.8861,6.5385 2.8291,9.351 0.9431,2.8125 1.8861,5.2406 2.8292,7.0781 0.943,1.8396 1.886,3.0802 2.8291,3.5581 0.943,0.478 1.8861,0.187 2.8291,-0.9686 0.9431,-1.1556 1.8861,-3.1822 2.8291,-6.0818 0.9431,-2.8996 1.8861,-6.6766 2.8292,-11.2247 0.943,-4.548 1.8861,-9.8736 2.8291,-15.7578 0.943,-5.8864 1.8861,-12.3357 2.8291,-19.0399 0.9431,-6.702 1.8861,-13.659 2.8291,-20.4971 0.9431,-6.8359 1.8861,-13.5486 2.8292,-19.7366 0.943,-6.188 1.8861,-11.8449 2.8291,-16.5948 0.943,-4.7498 1.8861,-8.5841 2.8291,-11.1991 0.9431,-2.6129 1.8861,-3.9979 2.8291,-3.966 0.9431,0.03 1.8861,1.4848 2.8292,4.3972 0.943,2.9145 1.8861,7.2926 2.8291,13.0005 0.943,5.708 1.8861,12.752 2.8291,20.8307 0.9431,8.0764 1.8861,17.1917 2.8291,26.8996 0.9431,9.7079 1.8861,20.0128 2.8292,30.3728 0.943,10.3601 1.8861,20.7754 2.8291,30.6724 0.943,9.897 1.8861,19.2714 2.8291,27.5836 0.9431,8.3144 1.8861,15.5561 2.8291,21.2959 0.9431,5.7398 1.8861,9.9607 2.8292,12.3908 0.943,2.4323 1.8861,3.059 2.8291,1.8036 0.943,-1.2534 1.8861,-4.4015 2.8291,-9.3044 0.9431,-4.9049 1.8861,-11.5751 2.8292,-19.6728 0.943,-8.0999 1.886,-17.6315 2.8291,-28.0956 0.943,-10.4642 1.8861,-21.8609 2.8291,-33.5848 0.943,-11.7217 1.8861,-23.7663 2.8291,-35.4881 0.9431,-11.7238 1.8861,-23.1184 2.8292,-33.5847 0.943,-10.4663 1.886,-19.9936 2.8291,-28.0956 0.943,-8.0998 1.8861,-14.7637 2.8291,-19.6707 0.943,-4.9092 1.8861,-8.0489 2.8291,-9.3065 0.9431,-1.2575 1.8861,-0.6245 2.8292,1.8035 0.943,2.4259 1.886,6.6554 2.8291,12.3909 0.943,5.7355 1.8861,12.9835 2.8291,21.2958 0.943,8.3123 1.8861,17.6888 2.8291,27.5837 0.9431,9.897 1.8861,20.3123 2.8292,30.6723 0.943,10.3622 1.886,20.6628 2.8291,30.3729 0.943,9.71 1.8861,18.821 2.8291,26.8996 0.943,8.0807 1.8861,15.1206 2.8291,20.8306 0.9431,5.7101 1.8861,10.0839 2.8292,13.0006 0.943,2.9145 1.886,4.3653 2.8291,4.3993 0.943,0.032 1.8861,-1.3574 2.8291,-3.9681 0.9431,-2.6107 1.8861,-6.4493 2.8291,-11.197 0.9431,-4.7499 1.8861,-10.409 2.8292,-16.597 0.943,-6.1859 1.886,-12.9007 2.8291,-19.7366 0.943,-6.8359 1.8861,-13.7929 2.8291,-20.4971 0.9431,-6.7042 1.8861,-13.1513 2.8291,-19.0377 0.9431,-5.8885 1.8861,-11.2098 2.8292,-15.76 0.943,-4.5502 1.886,-8.3229 2.8291,-11.2246 0.943,-2.8996 1.8861,-4.9241 2.8291,-6.0818 0.9431,-1.1577 1.8861,-1.4445 2.8291,-0.9687 0.9431,0.478 1.8861,1.7207 2.8292,3.5582 0.943,1.8354 1.886,4.2676 2.8291,7.0781 0.943,2.8125 1.8861,6.0031 2.8291,9.351 0.9431,3.3478 1.8861,6.8508 2.8291,10.3006 0.9431,3.4519 1.8861,6.8486 2.8292,10.0244 0.943,3.1758 1.886,6.1285 2.8291,8.7414 0.943,2.6107 1.8861,4.8816 2.8291,6.7488 0.9431,1.8694 1.8861,3.333 2.8291,4.3888 0.9431,1.0557 1.8861,1.6994 2.8292,1.9755 0.943,0.2762 1.8861,0.1827 2.8291,-0.206 0.943,-0.3909 1.8861,-1.077 2.8291,-1.965 0.9431,-0.89 1.8861,-1.9819 2.8291,-3.18 0.9431,-1.1981 1.8861,-2.5024 2.8292,-3.8195 0.943,-1.3191 1.8861,-2.651 2.8291,-3.9256 0.943,-1.2724 1.8861,-2.4875 2.8291,-3.5879 0.9431,-1.1025 1.8861,-2.0903 2.8291,-2.94 0.9431,-0.8476 1.8861,-1.555 2.8292,-2.1115 0.943,-0.5587 1.8861,-0.9687 2.8291,-1.2406 0.943,-0.274 1.8861,-0.4079 2.8291,-0.4312 0.9431,-0.021 1.8861,0.07 2.8291,0.2421 0.9431,0.1742 1.8861,0.4292 2.8292,0.7329 0.943,0.3017 1.8861,0.6543 2.8291,1.0239 0.943,0.3675 1.8861,0.7541 2.8291,1.1323 0.9431,0.3781 1.8861,0.7498 2.8292,1.0918 0.943,0.3442 1.886,0.6607 2.8291,0.9411 0.943,0.2804 1.8861,0.5226 2.8291,0.7244 0.943,0.2018 1.8861,0.3611 2.8291,0.4822 0.9431,0.1232 1.8861,0.2039 2.8292,0.2528 0.943,0.051 1.886,0.066 2.8291,0.057 0.943,-0.01 1.8861,-0.043 2.8291,-0.093 0.943,-0.049 1.8861,-0.1148 2.8291,-0.1891 0.9431,-0.074 1.8861,-0.1551 2.8292,-0.2379 0.943,-0.083 1.886,-0.1657 2.8291,-0.2443 0.943,-0.081 1.8861,-0.1551 2.8291,-0.2231 0.943,-0.068 1.8861,-0.1274 2.8291,-0.1805 0.9431,-0.051 1.8861,-0.096 2.8292,-0.1296 0.943,-0.036 1.886,-0.062 2.8291,-0.081 0.943,-0.019 1.8861,-0.032 2.8291,-0.038 0.943,0 1.8861,-0.01 2.8291,0"
29
+ title="2*sin(2*x)*exp(-pow((x/4),2))"
30
+ id="path9" /></g></g><style
31
+ type="text/css"
32
+ id="style1">
33
+ .st0{fill:#216C89;}
34
+ .st1{fill:#4993AA;}
35
+ .st2{fill:#0F4565;}
36
+ .st3{fill:#6BE8E8;}
37
+ .st4{fill:#9DEEF4;}
38
+ .st5{fill:#4ACFDD;}
39
+ .st6{fill:#E38017;}
40
+ .st7{fill:#16AFB5;}
41
+ </style>
42
+ <style
43
+ type="text/css"
44
+ id="style1-2">
45
+ .st0{fill:#216C89;}
46
+ .st1{fill:#4993AA;}
47
+ .st2{fill:#0F4565;}
48
+ .st3{fill:#6BE8E8;}
49
+ .st4{fill:#9DEEF4;}
50
+ .st5{fill:#4ACFDD;}
51
+ .st6{fill:#E38017;}
52
+ .st7{fill:#16AFB5;}
53
+ .st8{fill:#494949;}
54
+ </style>
55
+
56
+ <style>
57
+ .gaussian_pulse {
58
+ stroke-dasharray: none;
59
+ stroke-dashoffset: 0;
60
+ animation: gaussian-pulse-ramp-load 4.8s cubic-bezier(.25,.1,.25,1) 0.1s forwards;
61
+ }
62
+
63
+ @keyframes gaussian-pulse-ramp-load {
64
+ 0% {
65
+ stroke-dasharray: 3000;
66
+ stroke-dashoffset: 3000;
67
+ }
68
+ 55% {
69
+ stroke-dasharray: 3000;
70
+ stroke-dashoffset: 900;
71
+ }
72
+ 75% {
73
+ stroke-dasharray: 3000;
74
+ stroke-dashoffset: 350;
75
+ }
76
+ 88% {
77
+ stroke-dasharray: 3000;
78
+ stroke-dashoffset: 110;
79
+ }
80
+ 96% {
81
+ stroke-dasharray: 3000;
82
+ stroke-dashoffset: 25;
83
+ }
84
+ 100% {
85
+ stroke-dasharray: 3000;
86
+ stroke-dashoffset: 0;
87
+ }
88
+ }
89
+ </style>
90
+
91
+ </svg>