forked from imqcam/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathct_data_schema.json
More file actions
199 lines (199 loc) · 5.42 KB
/
ct_data_schema.json
File metadata and controls
199 lines (199 loc) · 5.42 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "NASA Ti64 30um Layers Data",
"description": "Metadata associated with experimental results from NASA Ti64 30um layers study",
"type": "object",
"properties": {
"Build_ID": {
"title": "Build ID",
"description": "BLD-1: Unique identifier for the build, formatted as DATE_LOC_MAT_GEOM_PART_[###]",
"type": "string",
"format": "custom",
"template": "{{Parameter_Label}}_{{Build_Date}}_{{Location}}_{{Material}}_{{Geometry}}",
"watch": {
"Build_Date": "root.Build_Date",
"Location": "root.Location",
"Material": "root.Material",
"Geometry": "root.Geometry",
"Parameter_Label": "root.Parameter_Label"
},
"propertyOrder": 0
},
"Parameter_Label": {
"title": "Parameter Label",
"description": "",
"type": "string",
"pattern": "^[A-C][0-9]{2}$",
"propertyOrder": 1
},
"DOE_Code": {
"title": "DOE Code",
"description": "",
"type": "integer",
"readOnly": true,
"template": "{{charToOrd (firstChar Parameter_Label)}}",
"watch": {
"Parameter_Label": "root.Parameter_Label"
},
"propertyOrder": 2
},
"DOE_ID": {
"title": "DOE ID",
"description": "Derived from the Parameter_Label",
"type": "string",
"format": "custom",
"template": "{{firstChar Parameter_Label}}",
"watch": {
"Parameter_Label": "root.Parameter_Label"
},
"propertyOrder": 3
},
"Build_Date": {
"title": "Build Date",
"description": "Estimated build date of the sample",
"type": "string",
"format": "date",
"propertyOrder": 4
},
"Location": {
"title": "Build Location",
"description": "Facility where the sample was built",
"type": "string",
"const": "JHUAPL_EOSM290",
"default": "JHUAPL_EOSM290",
"propertyOrder": 5
},
"Material": {
"title": "Material",
"description": "Material used in the build",
"type": "string",
"const": "Ti64",
"default": "Ti64",
"propertyOrder": 6
},
"Geometry": {
"title": "Build Geometry",
"description": "Geometry of the sample",
"type": "string",
"const": "Cylinder",
"default": "Cylinder",
"propertyOrder": 7
},
"Specimen_Position": {
"title": "Specimen Position",
"description": "On build plate or on top of other material",
"type": "string",
"enum": [
"On Build Plate",
"On Top Of Other Material"
],
"propertyOrder": 8
},
"Orientation": {
"title": "Orientation",
"description": "Horizontal (XY plane) or Vertical (Z direction)",
"type": "string",
"enum": [
"Horizontal",
"Vertical"
],
"propertyOrder": 9
},
"Modulus_GPa": {
"title": "Elastic Modulus",
"description": "Elastic Modulus in GPa",
"type": "number",
"propertyOrder": 10
},
"Yield_Strength_MPa": {
"title": "Yield Strength",
"description": "Yield Strength in MPa (-1 if not tested)",
"type": "number",
"propertyOrder": 11
},
"Peak_Stress_MPa": {
"title": "Ultimate Tensile Strength",
"description": "Peak stress in MPa (-1 if not tested)",
"type": "number",
"propertyOrder": 12
},
"Elongation_Percent": {
"title": "Elongation %",
"description": "Engineering strain at failure in percentage (-1 if not tested)",
"type": "number",
"propertyOrder": 13
},
"Hatch_mm": {
"title": "Hatch Spacing",
"description": "PRC-3-2-6: Hatch spacing in mm",
"type": "number",
"propertyOrder": 14
},
"Speed_mm_per_s": {
"title": "Speed",
"description": "PRC-3-2-9: Laser speed in mm/s",
"type": "number",
"propertyOrder": 15
},
"Power_W": {
"title": "Power",
"description": "PRC-3-2-3:Laser Power in Watts",
"type": "number",
"propertyOrder": 16
},
"Layer_mm": {
"title": "Layer Thickness",
"description": "PRC-3-2-1:Layer thickness in mm",
"type": "number",
"propertyOrder": 17
},
"VED_J_per_mm3": {
"title": "Volumetric Energy Density",
"description": "Volumetric energy density in J/mm³",
"type": "number",
"propertyOrder": 18
},
"Porosity_percent_infill": {
"title": "Porosity Percent (Interior)",
"description": "Porosity percent in the interior region",
"type": "number",
"propertyOrder": 19
},
"Percent_Porosity_Contour": {
"title": "Porosity Percent (Contour)",
"description": "Porosity within 1mm of surface (-1 if not calculated)",
"type": "number",
"propertyOrder": 20
},
"Total_Porosity_Percent": {
"title": "Total Porosity %",
"description": "Porosity over entire volume (-1 if not calculated)",
"type": "number",
"propertyOrder": 21
}
},
"required": [
"Build_ID",
"Parameter_Label",
"DOE_Code",
"DOE_ID",
"Build_Date",
"Location",
"Material",
"Geometry",
"Specimen_Position",
"Orientation",
"Modulus_GPa",
"Yield_Strength_MPa",
"Peak_Stress_MPa",
"Elongation_Percent",
"Hatch_mm",
"Speed_mm_per_s",
"Power_W",
"Layer_mm",
"VED_J_per_mm3",
"Porosity_percent_infill",
"Percent_Porosity_Contour",
"Total_Porosity_Percent"
]
}