Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 49 additions & 27 deletions ct_data_schema.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,38 @@
{
"$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",
"description": "Metadata associated with experimental results from NASA Ti64 30um layers study (POC: Brendan Croom)",
"type": "object",
"definitions": {
"laserSpeed": {
"type": "number",
"title": "Laser Speed",
"description": "Laser speed in mm/s",
"minimum": 0,
"unit": "mm/s"
},
"hatchSpacing": {
"type": "number",
"title": "Hatch Spacing",
"description": "Hatch spacing in mm",
"minimum": 0,
"unit": "mm"
},
"laserPower": {
"type": "number",
"title": "Laser Power",
"description": "Laser Power in Watts",
"minimum": 0,
"unit": "W"
},
"layerThickness": {
"type": "number",
"title": "Layer Thickness",
"description": "Layer thickness in mm",
"minimum": 0,
"unit": "mm"
}
},
"properties": {
"Build_ID": {
"title": "Build ID",
Expand Down Expand Up @@ -49,11 +79,11 @@
"propertyOrder": 3
},
"Build_Date": {
"title": "Build Date",
"description": "Estimated build date of the sample",
"type": "string",
"format": "date",
"propertyOrder": 4
"title": "Build Date",
"description": "Estimated build date of the sample",
"type": "string",
"format": "date",
"propertyOrder": 4
},
"Location": {
"title": "Build Location",
Expand Down Expand Up @@ -123,28 +153,20 @@
"type": "number",
"propertyOrder": 13
},
"Hatch_mm": {
"title": "Hatch Spacing",
"description": "Hatch spacing in mm",
"type": "number",
"HatchSpacing": {
"$ref": "#/definitions/hatchSpacing",
"propertyOrder": 14
},
"Speed_mm_per_s": {
"title": "Speed",
"description": "Laser speed in mm/s",
"type": "number",
"laserSpeed": {
"$ref": "#/definitions/laserSpeed",
"propertyOrder": 15
},
"Power_W": {
"title": "Power",
"description": "Laser Power in Watts",
"type": "number",
"laserPower": {
"$ref": "#/definitions/laserPower",
"propertyOrder": 16
},
"Layer_mm": {
"title": "Layer Thickness",
"description": "Layer thickness in mm",
"type": "number",
"layerThickness": {
"$ref": "#/definitions/layerThickness",
"propertyOrder": 17
},
"VED_J_per_mm3": {
Expand Down Expand Up @@ -187,13 +209,13 @@
"Yield_Strength_MPa",
"Peak_Stress_MPa",
"Elongation_Percent",
"Hatch_mm",
"Speed_mm_per_s",
"Power_W",
"Layer_mm",
"HatchSpacing",
"laserSpeed",
"laserPower",
"layerThickness",
"VED_J_per_mm3",
"Porosity_percent_infill",
"Percent_Porosity_Contour",
"Total_Porosity_Percent"
]
}
}
56 changes: 36 additions & 20 deletions printer_build_schema.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,36 @@
{
"title": "Printer Build",
"description": "Metadata for a single build using a metals additive manufacturing printer",
"description": "Metadata for a single build using a metals additive manufacturing printer (POC: Katie O'Donnell and Sierra Green)",
"type": "object",
"definitions": {
"laserSpeed": {
"type": "number",
"title": "Laser Speed",
"description": "Laser speed in mm/s",
"minimum": 0,
"unit": "mm/s"
},
"hatchSpacing": {
"type": "number",
"title": "Hatch Spacing",
"description": "Hatch spacing in µm",
"minimum": 0,
"unit": "µm"
},
"laserPower": {
"type": "number",
"title": "Laser Power",
"description": "Laser Power in Watts",
"minimum": 0,
"unit": "W"
},
"layerThickness": {
"type": "number",
"title": "Layer Thickness",
"description": "Layer thickness in µm",
"minimum": 0,
"unit": "µm"
},
"igsnMetadata": {
"id": "igsnMetadata",
"type": "object",
Expand Down Expand Up @@ -345,33 +373,21 @@
"type": "object",
"properties": {
"laserPower": {
"title": "Laser Power (W)",
"type": "number",
"minimum": 0,
"maximum": 370
"$ref": "#/definitions/laserPower"
},
"laserVelocity": {
"title": "Laser Velocity (mm/s)",
"type": "number",
"minimum": 0,
"maximum": 10000
"laserSpeed": {
"$ref": "#/definitions/laserSpeed"
},
"hatchSpacing": {
"title": "Hatch Spacing (µm)",
"type": "number",
"minimum": 0,
"maximum": 300
"$ref": "#/definitions/hatchSpacing"
},
"layerThickness": {
"title": "Layer Thickness (µm)",
"type": "number",
"minimum": 0,
"maximum": 100
"$ref": "#/definitions/layerThickness"
}
},
"required": [
"laserPower",
"laserVelocity",
"laserSpeed",
"hatchSpacing",
"layerThickness"
]
Expand Down Expand Up @@ -764,4 +780,4 @@
}
}
}
}
}
Loading