Upload folder using huggingface_hub
Browse files- data/records.jsonl +3 -0
- data/structures/ABO3_0001.xyz +7 -0
- data/structures/ABO3_0002.xyz +7 -0
- data/structures/ABO3_0003.xyz +7 -0
- data/table.csv +4 -0
- metadata/schema.jsonschema +37 -0
data/records.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"id": "ABO3_0001", "formula": "SrTiO3", "system": "perovskite", "bandgap_eV": 3.2, "structure_path": "data/structures/ABO3_0001.xyz"}
|
| 2 |
+
{"id": "ABO3_0002", "formula": "BaZrO3", "system": "perovskite", "bandgap_eV": 5.0, "structure_path": "data/structures/ABO3_0002.xyz"}
|
| 3 |
+
{"id": "ABO3_0003", "formula": "LaAlO3", "system": "perovskite", "bandgap_eV": 5.6, "structure_path": "data/structures/ABO3_0003.xyz"}
|
data/structures/ABO3_0001.xyz
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
5
|
| 2 |
+
Lattice="3.905 0.0 0.0 0.0 3.905 0.0 0.0 0.0 3.905" Properties=species:S:1:pos:R:3 id=ABO3_0001 formula=SrTiO3 system=perovskite bandgap_eV=3.2 pbc="T T T"
|
| 3 |
+
Ca 0.00000000 0.00000000 0.00000000
|
| 4 |
+
Ti 1.95250000 1.95250000 1.95250000
|
| 5 |
+
O 1.95250000 0.00000000 0.00000000
|
| 6 |
+
O 0.00000000 1.95250000 0.00000000
|
| 7 |
+
O 0.00000000 0.00000000 1.95250000
|
data/structures/ABO3_0002.xyz
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
5
|
| 2 |
+
Lattice="3.905 0.0 0.0 0.0 3.905 0.0 0.0 0.0 3.905" Properties=species:S:1:pos:R:3 id=ABO3_0002 formula=BaZrO3 system=perovskite bandgap_eV=5.0 pbc="T T T"
|
| 3 |
+
Ca 0.00000000 0.00000000 0.00000000
|
| 4 |
+
Ti 1.95250000 1.95250000 1.95250000
|
| 5 |
+
O 1.95250000 0.00000000 0.00000000
|
| 6 |
+
O 0.00000000 1.95250000 0.00000000
|
| 7 |
+
O 0.00000000 0.00000000 1.95250000
|
data/structures/ABO3_0003.xyz
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
5
|
| 2 |
+
Lattice="3.905 0.0 0.0 0.0 3.905 0.0 0.0 0.0 3.905" Properties=species:S:1:pos:R:3 id=ABO3_0003 formula=LaAlO3 system=perovskite bandgap_eV=5.6 pbc="T T T"
|
| 3 |
+
Ca 0.00000000 0.00000000 0.00000000
|
| 4 |
+
Ti 1.95250000 1.95250000 1.95250000
|
| 5 |
+
O 1.95250000 0.00000000 0.00000000
|
| 6 |
+
O 0.00000000 1.95250000 0.00000000
|
| 7 |
+
O 0.00000000 0.00000000 1.95250000
|
data/table.csv
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,formula,system,bandgap_eV,structure_path
|
| 2 |
+
ABO3_0001,SrTiO3,perovskite,3.2,data/structures/ABO3_0001.xyz
|
| 3 |
+
ABO3_0002,BaZrO3,perovskite,5.0,data/structures/ABO3_0002.xyz
|
| 4 |
+
ABO3_0003,LaAlO3,perovskite,5.6,data/structures/ABO3_0003.xyz
|
metadata/schema.jsonschema
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"title": "SimpleMaterialsRow",
|
| 4 |
+
"type": "object",
|
| 5 |
+
"required": [
|
| 6 |
+
"id",
|
| 7 |
+
"formula",
|
| 8 |
+
"system",
|
| 9 |
+
"bandgap_eV",
|
| 10 |
+
"structure_path"
|
| 11 |
+
],
|
| 12 |
+
"properties": {
|
| 13 |
+
"id": {
|
| 14 |
+
"type": "string"
|
| 15 |
+
},
|
| 16 |
+
"formula": {
|
| 17 |
+
"type": "string"
|
| 18 |
+
},
|
| 19 |
+
"system": {
|
| 20 |
+
"type": "string",
|
| 21 |
+
"enum": [
|
| 22 |
+
"perovskite",
|
| 23 |
+
"spinel",
|
| 24 |
+
"rocksalt",
|
| 25 |
+
"other"
|
| 26 |
+
]
|
| 27 |
+
},
|
| 28 |
+
"bandgap_eV": {
|
| 29 |
+
"type": "number",
|
| 30 |
+
"minimum": 0
|
| 31 |
+
},
|
| 32 |
+
"structure_path": {
|
| 33 |
+
"type": "string"
|
| 34 |
+
}
|
| 35 |
+
},
|
| 36 |
+
"additionalProperties": false
|
| 37 |
+
}
|