-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Extension: SpeciesType #180
Merged
RemiLehe
merged 12 commits into
openPMD:upcoming-2.0.0
from
DavidSagan:New-ParticleID-Standard
Apr 3, 2018
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c4b9e04
Added ParticleSpeciesNames.md
DavidSagan 9fb0a59
Update Draft of SpeciesType Extension
DavidSagan 7a2756d
EXT SpeciesType: Reference in Std
ax3l a676245
EXT SpeciesType: Update
ax3l b6b32d8
Remove Prefixes
ax3l 6935749
Fix Typos
ax3l 585537b
Clarification Charge State
DavidSagan 734da1c
Elementary Particles & Gauge+Higgs Bosons
ax3l 8467f34
Format, Proton, No Ext-ID
ax3l c5c4733
Location of SpeciesType Attribute
ax3l a7711ee
Neutron: Common Particle :)
ax3l 161956f
`speciesType`: lower case
ax3l File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
Convention for Specifying Particle Species | ||
========================================== | ||
|
||
openPMD extension name: `SpeciesType` | ||
|
||
|
||
Introduction | ||
------------ | ||
|
||
This convention is for standardizing the names of particle species, e.g. in | ||
particle physics. | ||
|
||
|
||
Additional Record Attribute | ||
--------------------------- | ||
|
||
The following additional attribute for openPMD `mesh records` and | ||
`particle groups` is defined in this extension: | ||
|
||
- `speciesType` | ||
- type: *(string)* | ||
- scope: *optional* | ||
- description: particle species in this record. If there are multiple | ||
species to be specified, they can be specified using a | ||
semicolon separated list. | ||
- allowed values: | ||
- *see the lists below* and additionally | ||
- `other` if none of the ones below applies, user are free to append a | ||
free text after a colon, e.g. `other:neutralino` or `other:cherry` | ||
- examples: | ||
- `electron` (e.g. on an electron `particle record` or an electron | ||
density `mesh record`) | ||
- `electron;proton;#12C` (e.g. on a `mesh record` for a plasma's | ||
local charge density) | ||
- `other:apple;other:orange` (for a `record` mixing apples & oranges) | ||
|
||
This attribute can be used with any `record` (including `mesh records`). | ||
|
||
### Elementary Particles | ||
|
||
Namings for fundamental fermions and their anti-matter particles. | ||
|
||
Quarks: | ||
- `up`, `anti-up` | ||
- `down`, `anti-down` | ||
- `charm`, `anti-charm` | ||
- `strange`, `anti-strange` | ||
- `top`, `anti-top` | ||
- `bottom`, `anti-bottom` | ||
|
||
Leptons: | ||
- `electron`, `positron` | ||
- `electron-neutrino`, `anti-electron-neutrino` | ||
- `muon`, `anti-muon` | ||
- `muon-neutrino`, `anti-muon-neutrino` | ||
- `tau`, `anti-tau` | ||
- `tau-neutrino`, `anti-tau-neutrino` | ||
|
||
Gauge & Higgs Bosons: | ||
- `photon` | ||
- `gluon` | ||
- `w-boson` | ||
- `z-boson` | ||
- `higgs` | ||
|
||
### Hadrons and Jets | ||
|
||
We currently do not define spellings of hadrons besides the commonly used ones | ||
below and suggest for this version to use `other:` with namings from the | ||
[particle data group (PDG)](http://pdg.lbl.gov/). Other means of grouping e.g. | ||
jets can be used, e.g. additional attributes outside of the definition of this | ||
extension. | ||
|
||
Examples: | ||
- `proton`, `anti-proton` | ||
- `neutron`, `anti-neutron` | ||
- `other:sigma`, `other:anti-sigma` | ||
- `other:kaon`, ... | ||
|
||
### Atoms & Isotopes | ||
|
||
Element namings follow the abbreviated namings of the periodic table, defined | ||
by *The International Union of Pure and Applied Chemistry* (IUPAC). | ||
An example would be `Si` for silicon. | ||
|
||
Specifications of isotopes are denoted by a pound symbol `#` followed | ||
by the isotopic number followed by the chemical symbol, e.g.: `#3He` | ||
for Helium-3. | ||
|
||
The charge state is not encoded by the `speciesType` attribute. | ||
Any extension using this standard can define how to specify the charge state. | ||
|
||
### Molecules | ||
|
||
Use standard chemical notation, e.g.: `H20`. | ||
|
||
The isotope prefix can be used with molecules as well. | ||
Examples for heavy water: `#2H2O` for two deuterium and `#2HHO` for one | ||
deuterium. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we add a mention on how to mention
#2H2#15O
? It isn't fully clear how this works in this flow?