Datasets:
sample
unknown |
---|
"gASVZkABAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVBmIBAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVtl4BAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVNk0BAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVVkYBAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVVlMBAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVZl0BAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVJjUBAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASVZicBAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
"gASV5mYBAAAAAAB9lCiMDm1lc2hfYmFzZV9uYW1llIwEQmFzZZSMDm1lc2hfem9uZV9uYW1llIwEWm9uZZSMBm1lc2hlc5R9lIw(...TRUNCATED) |
Dataset Card
This dataset contains a single huggingface split, named 'all_samples'.
The samples contains a single huggingface feature, named "sample".
Samples are instances of plaid.containers.sample.Sample. Mesh objects included in samples follow the CGNS standard, and can be converted in Muscat.Containers.Mesh.Mesh.
Example of commands:
import pickle
from datasets import load_dataset
from plaid.containers.sample import Sample
# Load the dataset
dataset = load_dataset("chanel/dataset", split="all_samples")
# Get the first sample of the first split
split_names = list(dataset.description["split"].keys())
ids_split_0 = dataset.description["split"][split_names[1]]
sample_0_split_0 = dataset[ids_split_0[0]]["sample"]
plaid_sample = Sample.model_validate(pickle.loads(sample_0_split_0))
print("type(plaid_sample) =", type(plaid_sample))
print("plaid_sample =", plaid_sample)
# Get a field from the sample
field_names = plaid_sample.get_field_names()
field = plaid_sample.get_field(field_names[0])
print("field_names[0] =", field_names[0])
print("field.shape =", field.shape)
# Get the mesh and convert it to Muscat
from Muscat.Bridges import CGNSBridge
CGNS_tree = plaid_sample.get_mesh()
mesh = CGNSBridge.CGNSToMesh(CGNS_tree)
print(mesh)
Dataset Details
Dataset Description
This dataset contains 2D quasistatic non-linear structural mechanics solutions, with finite elasticity and topology variations.
The variablity in the samples are 3 input scalars and the geometry (mesh). Outputs of interest are 1 scalar and 7 fields. Sample feature variable topology, in the form of variable number of holes in the meshes.
Various training and testing sets are provided (for all topologies together and for each topology), and outputs are not provided on the testing sets.
Dataset created using the PLAID library and datamodel, version: 0.1.
- Language: PLAID
- License: cc-by-sa-4.0
- Owner: Safran
Dataset Sources
- Repository: Zenodo
- Downloads last month
- 115