-
Notifications
You must be signed in to change notification settings - Fork 4
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
SOF-6892: include new hubbard parameters property #277
Changes from 2 commits
7f1c15e
0871d75
1f4124e
801f39f
ce6b2d9
176ec74
6bab86c
84c77d6
c08e946
e0cefa4
1f8d90f
d837293
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "hubbard_parameters", | ||
"units": "eV", | ||
"category": "hubbard_u", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we return to reusable # Reusable: atomic_properties_per_orbital
{
"name": "ANY",
"values":
[
{
"id": 1,
"atomicOrbital": {
// reusing the content of "atomicOrbital" here, maybe not all of it
"orbitalName": "3S",
"orbitalIndex": 1,
"principalNumber": 3,
"angularMomentum": 0,
"occupation": 2
},
"value": 6.3
},
{
"id": 1,
"orbitalName": "3S",
"value": 3.3
},
{
"id": 2,
"orbitalName": "3P",
"value": 6.3
}
]
} Then There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to decide. Few things to note:
|
||
"headers": ["Site no.", "Atomic species", "Orbital/manifold", "U (eV)"], | ||
"values": [ | ||
{ | ||
"siteNumber": 1, | ||
"atomicSpecies": "Co1", | ||
"orbitalName": "3d", | ||
"value": 6.7553 | ||
}, | ||
{ | ||
"siteNumber": 2, | ||
"atomicSpecies": "Co2", | ||
"orbitalName": "3d", | ||
"value": 6.7553 | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"$id": "properties-directory/non-scalar/hubbard-parameters", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Hubbard parameters", | ||
"description": "Values of Hubbard U, V parameters in eV", | ||
"properties": { | ||
"name": { | ||
"enum": ["hubbard_parameters"] | ||
}, | ||
"units": { | ||
"enum": ["eV"] | ||
}, | ||
"headers": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"category": { | ||
"enum": ["hubbard_u", "hubbard_v"] | ||
}, | ||
"values": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"siteNumber": { | ||
"type": "number" | ||
}, | ||
"atomicSpecies": { | ||
"type": "string" | ||
}, | ||
"orbitalName": { | ||
"type": "string", | ||
"pattern": "^[1-7][sSpPdDfF]$" | ||
}, | ||
"value": { | ||
"type": "number", | ||
"description": "Hubbard U values in eV" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"required": ["name"] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we extract hubbard_u and hubbard_v separately as two different properties? Do we ever need to store both together?
And what about J?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hubbard_u, hubbard_v and hubbard_v_nn (add description full name - nearest neighbors)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reference, currently hp.x does not support calculating Hubbard parameters based on DFT+U+J.