Skip to content

Commit

Permalink
Merge pull request #44 from loriab/psimolext
Browse files Browse the repository at this point in the history
psi: initial Psi4 Mol extensions
  • Loading branch information
dgasmith authored Oct 19, 2018
2 parents 6e58439 + 9cf3dff commit cc151bc
Showing 1 changed file with 27 additions and 0 deletions.
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

0 comments on commit cc151bc

Please sign in to comment.