Skip to content
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

psi: initial Psi4 Mol extensions #44

Merged
merged 2 commits into from
Oct 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 27 additions & 0 deletions qcschema/dev/molecule.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,29 @@
"type": "number"
}
},
"atomic_number": {
"description": "(nat, ) atomic numbers, nuclear charge for atoms.",
"type": "array",
"items": {
"type": "number",
"multipleOf": 1.0
}
},
"mass_numbers": {
"description": "(nat, ) mass numbers for atoms, if known isotope, else -1.",
"type": "array",
"items": {
"type": "number",
"multipleOf": 1.0
}
},
"atom_labels": {
"description": "(nat, ) atom labels with any user tagging information.",
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"description": "The name of the molecule.",
"type": "string"
Expand Down Expand Up @@ -106,6 +129,10 @@
"type": "boolean",
"default": False
},
"fix_symmetry":{
"description": "Maximal point group symmetry which `geometry` should be treated. Lowercase.",
"type": "string"
},
"provenance": {
"type": "object",
"$ref": "#/definitions/provenance"
Expand Down