-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema_prototype
59 lines (54 loc) · 1.87 KB
/
schema_prototype
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# CP corrected Helium dimer energy in the STO-3G basis.
>>> json_data = {}
>>> json_data["molecule"] = "He 0 0 0\n--\nHe 0 0 1" # JSON format
>>> json_data["driver"] = "energy" # Can be anything (5 specified)
>>> json_data["method"] = "SCF" # SCF/cc-pvdz, SCF/key=mybasis
>>> json_data["options"] = {"BASIS": "STO-3G"} # Generic options
# optional specs
>>> json_data["horton_options"] = {"BASIS": "STO-3G"} # Pass through options
# Results
# return_value, variables, link_to_spec
# Other results
# success, error, provenance, raw_output
>>> run_json(json_data)
{
"raw_output": "Output storing was not requested.",
"options": {
"BASIS": "STO-3G"
},
"driver": "energy",
"molecule": "He 0 0 0\n--\nHe 0 0 1",
"method": "SCF",
"variables": {
"SCF N ITERS": 2.0,
"SCF DIPOLE Y": 0.0,
"CURRENT DIPOLE Y": 0.0,
"CP-CORRECTED 2-BODY INTERACTION ENERGY": 0.1839360538612116,
"HF TOTAL ENERGY": -5.433191881443323,
"SCF TOTAL ENERGY": -5.433191881443323,
"TWO-ELECTRON ENERGY": 4.124089347186247,
"SCF ITERATION ENERGY": -5.433191881443323,
"CURRENT DIPOLE X": 0.0,
"CURRENT DIPOLE Z": 0.0,
"CURRENT REFERENCE ENERGY": -5.433191881443323,
"CURRENT ENERGY": 0.1839360538612116,
"COUNTERPOISE CORRECTED TOTAL ENERGY": -5.433191881443323,
"SCF DIPOLE Z": 0.0,
"COUNTERPOISE CORRECTED INTERACTION ENERGY": 0.1839360538612116,
"NUCLEAR REPULSION ENERGY": 2.11670883436,
"SCF DIPOLE X": 0.0,
"ONE-ELECTRON ENERGY": -11.67399006298957
},
"return_value": 0.1839360538612116,
"error": "",
"success": true,
"provenance": {
"creator": "Psi4",
"routine": "psi4.run_json",
"version": "1.1a1"
},
"kwargs": {
"bsse_type": "cp"
}
}
"""