From 964cfa1c611fe51cde066a8a3434a48c2257220d Mon Sep 17 00:00:00 2001 From: Peter Krull Date: Fri, 9 Feb 2024 15:41:48 -0700 Subject: [PATCH 1/3] Revise 3D microstructure message --- ansys/api/additive/v0/additive_domain.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansys/api/additive/v0/additive_domain.proto b/ansys/api/additive/v0/additive_domain.proto index 89a7ddc..c9a8b0c 100644 --- a/ansys/api/additive/v0/additive_domain.proto +++ b/ansys/api/additive/v0/additive_domain.proto @@ -259,9 +259,9 @@ message Microstructure3DInput { double z_length = 3; // length of the domain cuboid in the z direction optional bytes initial_grain_data = 4; optional bytes initial_euler_angle_data = 5; - optional double x_origin = 16; // domain offset from base plate origin in x direction - optional double y_origin = 17; // domain offset from base plate origin in y direction - optional double z_origin = 18; // domain offset from base plate origin in z direction + optional double x_origin = 16; // offset from base plate origin in x direction + optional double y_origin = 17; // offset from base plate origin in y direction + optional double z_origin = 18; // offset from base plate origin in z direction optional double deposit_layer_thickness = 19; optional uint32 num_deposit_layers = 20; optional uint32 first_deposit_layer = 21; From 5a7d001f00941de02b6f18fde6d11a98d588d90b Mon Sep 17 00:00:00 2001 From: Peter Krull Date: Fri, 9 Feb 2024 15:44:50 -0700 Subject: [PATCH 2/3] Update comments --- ansys/api/additive/v0/additive_domain.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansys/api/additive/v0/additive_domain.proto b/ansys/api/additive/v0/additive_domain.proto index c9a8b0c..89a7ddc 100644 --- a/ansys/api/additive/v0/additive_domain.proto +++ b/ansys/api/additive/v0/additive_domain.proto @@ -259,9 +259,9 @@ message Microstructure3DInput { double z_length = 3; // length of the domain cuboid in the z direction optional bytes initial_grain_data = 4; optional bytes initial_euler_angle_data = 5; - optional double x_origin = 16; // offset from base plate origin in x direction - optional double y_origin = 17; // offset from base plate origin in y direction - optional double z_origin = 18; // offset from base plate origin in z direction + optional double x_origin = 16; // domain offset from base plate origin in x direction + optional double y_origin = 17; // domain offset from base plate origin in y direction + optional double z_origin = 18; // domain offset from base plate origin in z direction optional double deposit_layer_thickness = 19; optional uint32 num_deposit_layers = 20; optional uint32 first_deposit_layer = 21; From ea506e0c5643c5b4ee69a0375b4ba8fc50cc24b3 Mon Sep 17 00:00:00 2001 From: Peter Krull Date: Fri, 23 Feb 2024 15:58:23 -0700 Subject: [PATCH 3/3] Add 3D microstructure input message to simulation request --- ansys/api/additive/VERSION | 2 +- ansys/api/additive/v0/additive_simulation.proto | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ansys/api/additive/VERSION b/ansys/api/additive/VERSION index a4591ab..af1dddf 100644 --- a/ansys/api/additive/VERSION +++ b/ansys/api/additive/VERSION @@ -1 +1 @@ -1.6.0-dev5 \ No newline at end of file +1.6.0-dev6 \ No newline at end of file diff --git a/ansys/api/additive/v0/additive_simulation.proto b/ansys/api/additive/v0/additive_simulation.proto index c07a555..e418ba4 100644 --- a/ansys/api/additive/v0/additive_simulation.proto +++ b/ansys/api/additive/v0/additive_simulation.proto @@ -35,6 +35,7 @@ message SimulationRequest { MicrostructureInput microstructure_input = 12; ThermalHistoryInput thermal_history_input = 13; ThermalStrainInput thermal_strain_input = 14; + Microstructure3DInput microstructure_3d_input = 15; } }