Skip to content

Commit

Permalink
SOF-7323: add norm-conserving full-relativistic pseudo type
Browse files Browse the repository at this point in the history
  • Loading branch information
pranabdas committed Apr 7, 2024
1 parent 6b057c7 commit cfe9014
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
]
Expand Down
1 change: 1 addition & 0 deletions dist/js/schema/methods_category/physical/qm/wf/psp.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
],
Expand Down
2 changes: 2 additions & 0 deletions dist/js/schema/methods_directory/physical/psp.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
],
Expand Down Expand Up @@ -218,6 +219,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
]
Expand Down
1 change: 1 addition & 0 deletions dist/js/schema/methods_directory/physical/psp/file.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
]
Expand Down
2 changes: 1 addition & 1 deletion dist/js/schemas.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/js/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12489,7 +12489,7 @@ export interface PseudopotentialCategorySchema {
}
| string
) &
("us" | "nc" | "paw" | "coulomb");
("us" | "nc" | "nc-fr" | "paw" | "coulomb");
/**
* contains either object with slugified entry or slug only as a string
*/
Expand Down Expand Up @@ -14167,7 +14167,7 @@ export interface PseudopotentialFile {
* MD5 hash of the pseudopotential file
*/
hash?: string;
type: "us" | "nc" | "paw" | "coulomb";
type: "us" | "nc" | "nc-fr" | "paw" | "coulomb";
/**
* explains where this came from
*/
Expand Down Expand Up @@ -14240,7 +14240,7 @@ export interface FileDataItem {
* MD5 hash of the pseudopotential file
*/
hash?: string;
type: "us" | "nc" | "paw" | "coulomb";
type: "us" | "nc" | "nc-fr" | "paw" | "coulomb";
/**
* explains where this came from
*/
Expand Down Expand Up @@ -14337,7 +14337,7 @@ export interface UnitMethodPseudopotential {
}
| string
) &
("us" | "nc" | "paw" | "coulomb");
("us" | "nc" | "nc-fr" | "paw" | "coulomb");
/**
* contains either object with slugified entry or slug only as a string
*/
Expand Down Expand Up @@ -14399,7 +14399,7 @@ export interface UnitMethodPseudopotential {
* MD5 hash of the pseudopotential file
*/
hash?: string;
type: "us" | "nc" | "paw" | "coulomb";
type: "us" | "nc" | "nc-fr" | "paw" | "coulomb";
/**
* explains where this came from
*/
Expand Down
1 change: 1 addition & 0 deletions schema/methods_category/physical/qm/wf/enum_options.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"enum": [
"us",
"nc",
"nc-fr",
"paw",
"coulomb"
]
Expand Down
1 change: 1 addition & 0 deletions schema/methods_category/physical/qm/wf/enum_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ pseudization:
pseudoSubtypes:
- us # ultra-soft
- nc # norm-conserving
- nc-fr # norm-conserving full-relativistic
- paw # projector augmented wave
- coulomb # Coulomb potential
#
Expand Down
2 changes: 1 addition & 1 deletion src/py/mat3ra/esse/data/schemas.py

Large diffs are not rendered by default.

0 comments on commit cfe9014

Please sign in to comment.