Skip to content

Commit 15e37ee

Browse files
authored
Add dynamic defocus option for heat source model (#63)
1 parent a358c3e commit 15e37ee

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

ansys/api/additive/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.3-dev0
1+
5.1.4-dev0

ansys/api/additive/v0/additive_domain.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ message MachineSettings {
1818
double slicing_stripe_width = 9;
1919
HeatSourceModelType heat_source_model = 10;
2020
RingModeIndex ring_mode_index = 11;
21+
int32 defocus_index = 12;
2122
}
2223

2324
message MeltPoolTimeStep {
@@ -74,6 +75,10 @@ message AdditiveMaterial {
7475
string description = 37;
7576
double cooling_rate_sim_coeff_a = 38;
7677
double cooling_rate_sim_coeff_b = 39;
78+
double laser_shape_parameter = 40;
79+
double laser_distribution_parameter = 41;
80+
double absorption_conduction_mode = 42;
81+
double fresnal_absorption_coefficient = 43;
7782
}
7883

7984
message CharacteristicWidthDataPoint {
@@ -310,6 +315,7 @@ message DownloadFileResponse {
310315
enum HeatSourceModelType {
311316
HEAT_SOURCE_MODEL_GAUSSIAN = 0;
312317
HEAT_SOURCE_MODEL_RING = 1;
318+
HEAT_SOURCE_MODEL_DYNAMIC_DEFOCUS = 2;
313319
}
314320

315321
enum RingModeIndex {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
long_description_content_type="text/markdown",
3939
url=f"https://github.com/ansys/{package_name}",
4040
license="MIT",
41-
python_requires=">=3.8,<4",
41+
python_requires=">=3.8,<3.12",
4242
install_requires=["grpcio~=1.47", "protobuf>=3.19"],
4343
packages=setuptools.find_namespace_packages(
4444
".", include=("ansys.*", "google.*")

0 commit comments

Comments
 (0)