-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsimulation-data.jsonld
More file actions
37 lines (37 loc) · 1.1 KB
/
simulation-data.jsonld
File metadata and controls
37 lines (37 loc) · 1.1 KB
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
{
"@context": {
"m4i": "http://w3id.org/nfdi4ing/metadata4ing#",
"schema": "https://schema.org/",
"unit": "http://qudt.org/vocab/unit/",
"local": "https://www.example.org/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#"
},
"@graph": [
{
"@id": "local:run_fenics_simulation",
"@type": "m4i:Method",
"m4i:hasParameter": { "@id": "local:variable_element_size" },
"m4i:investigates": { "@id": "local:variable_max_von_mises_stress" }
},
{
"@id": "local:variable_element_size",
"@type": "schema:PropertyValue",
"rdfs:label": "element_size",
"schema:unitCode": { "@id": "unit:M" },
"schema:value": {
"@type": "http://www.w3.org/2001/XMLSchema#double",
"@value": "2.5E-2"
}
},
{
"@id": "local:variable_max_von_mises_stress",
"@type": "schema:PropertyValue",
"rdfs:label": "max_von_mises_stress",
"schema:unitCode": { "@id": "unit:MegaPA" },
"schema:value": {
"@type": "http://www.w3.org/2001/XMLSchema#double",
"@value": "2.997915075586333E8"
}
}
]
}