I am trying to get one of the test cases to work with a manual invocation.
the JSON I am using is (straight from https://github.com/psi4/psi4/blob/master/tests/json/schema-1-energy/input.py)
the invocation is:
psi4 --json input.json
{
“schema_name”: “qc_schema_input”,
“schema_version”: 1,
“molecule”: {
“geometry”: [
0.0,
0.0,
-0.1294769411935893,
0.0,
-1.494187339479985,
1.0274465079245698,
0.0,
1.494187339479985,
1.0274465079245698
],
“symbols”: [
“O”,
“H”,
“H”
]
},
“driver”: “energy”,
“model”: {
“method”: “MP2”,
“basis”: “cc-pVDZ”
},
“keywords”: {“scf_type”: “df”,
“mp2_type”: “df”}
}
It provides a failure output (surprisingly overwrites the input file):
{“schema_name”: “qc_schema_input”, “schema_version”: 1, “molecule”: {“geometry”: [0.0, 0.0, -0.1294769411935893, 0.0, -1.494187339479985, 1.0274465079245698, 0.0, 1.494187339479985, 1.0274465079245698], “symbols”: [“O”, “H”, “H”]}, “driver”: “energy”, “model”: {“method”: “MP2”, “basis”: “cc-pVDZ”}, “keywords”: {“scf_type”: “df”, “mp2_type”: “df”}, “raw_output”: null, “success”: false}
Any insight into what I am doing wrong will be much appreciated.