In Polymer AM JSON-LD template, the sample information (sample id) is related to printing parameters to produce the part, the build geometry of the part, material properties of the part and the characterization techniques (in-situ and ex-situ) performed on the part. More detailed structure is shown in the schema diagram below.
library(FAIRmaterials)
# An example data frame for polymer AM
<- data.frame(
polymerAM_data 'sampleID' = c('sa12345', 'sa24682'),
'printMethod' = c('FDM', 'FDM'),
'manufacturer' = c('A', 'B'),
'material' = c('ABS', 'PLA'),
'surfaceRoughness' = c(10, 5),
'flowRate' = c(8, 12)
)
# This will generate json-ld files for the example data
# Be sure to put in exact domain name as shown in fairify_data documentation.
# See ?fairify_data for domain names.
<- fairify_data(polymerAM_data, domain = 'PolymerAM') polymer_output
Polymer AM schema diagram
This material is based upon work supported by the Department of Energy (National Nuclear Security Administration) under Award Number(s) DE-NA0004104.