-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SOF-6892: reusable atomic_per_orbital and _per_orbital_pair, unify hu…
…bbard u and v
- Loading branch information
Showing
4 changed files
with
99 additions
and
26 deletions.
There are no files selected for viewing
35 changes: 26 additions & 9 deletions
35
example/properties_directory/non-scalar/hubbard_parameters.json
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 |
---|---|---|
@@ -1,20 +1,37 @@ | ||
{ | ||
"name": "hubbard_parameters", | ||
"units": "eV", | ||
"category": "hubbard_u", | ||
"headers": ["Site no.", "Atomic species", "Orbital/manifold", "U (eV)"], | ||
"values": [ | ||
{ | ||
"siteNumber": 1, | ||
"atomicSpecies": "Co1", | ||
"orbitalName": "3d", | ||
"category": "hubbard_u", | ||
"headers": ["Site no.", "Atomic species", "Orbital/manifold", "U (eV)"], | ||
"siteProperty": { | ||
"id": 1, | ||
"siteName": "Co1", | ||
"orbitalName": "3d" | ||
}, | ||
"value": 6.7553 | ||
}, | ||
{ | ||
"siteNumber": 2, | ||
"atomicSpecies": "Co2", | ||
"orbitalName": "3d", | ||
"value": 6.7553 | ||
"category": "hubbard_v", | ||
"headers": [ | ||
"Site no. 1", | ||
"Site no. 2", | ||
"Atomic species1", | ||
"Atomic species2", | ||
"Orbital1", | ||
"Orbital2", | ||
"V (eV)" | ||
], | ||
"siteProperty": { | ||
"id": 1, | ||
"id2": 2, | ||
"siteName": "Co1", | ||
"siteName2": "O", | ||
"orbitalName": "3d", | ||
"orbitalName2": "3p" | ||
}, | ||
"value": 8.3245 | ||
} | ||
] | ||
} |
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,22 @@ | ||
{ | ||
"$id": "core/reusable/atomic-data-per-orbital", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Atomic data per orbital", | ||
"description": "Atomic properties per orbital e.g., Hubbard U parameters.", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "number", | ||
"description": "Site number or index in the lattice" | ||
}, | ||
"siteName": { | ||
"type": "string", | ||
"description": "Example: Co, Ni1, O" | ||
}, | ||
"orbitalName": { | ||
"type": "string", | ||
"pattern": "^[1-7][sSpPdDfF]$" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} |
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,34 @@ | ||
{ | ||
"$id": "core/reusable/atomic-data-per-orbital-pair", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Atomic data per orbital pair", | ||
"description": "Atomic properties per orbital pair e.g., Hubbard V parameters.", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "number", | ||
"description": "Site number or index in the lattice" | ||
}, | ||
"id2": { | ||
"type": "number", | ||
"description": "Site number or index in the lattice of second site" | ||
}, | ||
"siteName": { | ||
"type": "string", | ||
"description": "Example: Co1" | ||
}, | ||
"siteName2": { | ||
"type": "string", | ||
"description": "Example: O" | ||
}, | ||
"orbitalName": { | ||
"type": "string", | ||
"pattern": "^[1-7][sSpPdDfF]$" | ||
}, | ||
"orbitalName2": { | ||
"type": "string", | ||
"pattern": "^[1-7][sSpPdDfF]$" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} |
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