Skip to content
Merged
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
14 changes: 14 additions & 0 deletions src/ansys/api/acp/v0/enum_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,17 @@ enum RosetteSelectionMethod {
ANSYS_CLASSIC = 6;
DIRECTIONS_FROM_TABULAR_VALUES = 7;
}

//defines the ply type which is used for instance by the solid model
//extrusion and the post-processing to distinguish between isotropic,
//reinforced, and core materials
enum PlyType {
REGULAR = 0;
WOVEN = 1;
ORTHOTROPIC_HOMOGENEOUS_CORE = 2;
ISOTROPIC_HOMOGENEOUS_CORE = 3;
HONEYCOMB_CORE = 4;
ISOTROPIC = 5;
UNDEFINED = 6;
ADHESIVE = 7;
}
2 changes: 2 additions & 0 deletions src/ansys/api/acp/v0/material.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import "ansys/api/acp/v0/enum_types.proto";
// Default CRUD messages

message Properties {
//This is only a minimal set. List is not complete yet
enum_types.StatusType status = 1;
bool locked = 2;
enum_types.PlyType ply_type = 3;
}

message ObjectInfo {
Expand Down