-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathJ2_plasticity_voce_hardening_constitutive_model_metadata_schema.json
More file actions
84 lines (84 loc) · 2.83 KB
/
Copy pathJ2_plasticity_voce_hardening_constitutive_model_metadata_schema.json
File metadata and controls
84 lines (84 loc) · 2.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.com/Ronakshoghi/MiMeDat/blob/main/J2_plasticity_voce_hardening_constitutive_model_metadata_schema.json",
"version": "1.0.0",
"type": "object",
"description": "Schema for J2 plasticity model with Voce hardening. Inherits from the general constitutive model schema.",
"allOf": [
{
"$ref":"https://raw.githubusercontent.com/Ronakshoghi/MetadataSchema/main/general_constitutive_model_metadata_schema.json"
}
],
"properties": {
"$schema": {
"type": "string",
"description": "Reference to the schema used for this crystal plasticity model."
},
"elastic_model_name": {
"type": "string",
"description": "Name of the elastic model.",
"const": "Linear Elasticity"
},
"elastic_parameters": {
"type": "object",
"description": "Elastic properties of the material.",
"properties": {
"youngs_modulus": {
"type": "number",
"description": "Young's modulus of the material.",
"property": "Stiffness"
},
"poissons_ratio": {
"type": "number",
"description": "Poisson's ratio of the material."
}
},
"required": ["youngs_modulus", "poissons_ratio"]
},
"plastic_model_name": {
"type": "string",
"description": "Name of the plasticity model",
"const": "J2 Plasticity with Voce Hardening"
},
"plastic_parameters": {
"type": "object",
"description": "Parameters specific to the plasticity model, including J2 plasticity and Voce hardening.",
"properties": {
"initial_yield_stress": {
"type": "number",
"description": "Initial yield stress for J2 plasticity.",
"property": "Stress"
},
"voce_saturation_stress": {
"type": "number",
"description": "Saturation stress for Voce hardening.",
"property": "Stress"
},
"voce_hardening_rate": {
"type": "number",
"description": "Hardening rate for Voce hardening.",
"property": "Stiffness"
}
},
"required": ["initial_yield_stress", "voce_saturation_stress", "voce_hardening_rate"]
}
},
"required": ["elastic_parameters", "plastic_model_name", "plastic_parameters"],
"units": {
"type": "object",
"description": "Units for different physical properties.",
"properties": {
"Stress": {
"type": "string",
"enum": ["MPa"],
"description": "Unit of stress, default is MPa."
},
"Stiffness": {
"type": "string",
"enum": ["MPa"],
"description": "Unit of stiffness, default is MPa."
}
},
"required": ["Stress", "Stiffness"]
}
}