Skip to content

Commit

Permalink
update pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebbruno committed Aug 28, 2024
1 parent ba3216b commit 3d5db35
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/alfasim_sdk/alfasim_sdk_api/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -865,13 +865,17 @@ DLL_EXPORT int get_wall_properties(void* ctx, double** prop_values, const char*
~~~~~{.cpp}
|
|
[control_volume_1]->[material_name_0; material_name_1; material_name_2]
|
|
[control_volume_2]->[material_name_0; material_name_1]
|
|
[control_volume_3]->[material_name_0; material_name_1; material_name_2; material_name_3]
|
\ /(pipe)
|
(pipe)
errcode = get_wall_material_names(
ctx, &material_names_in_wall, control_volume_id, &size_wall);
Expand All @@ -894,13 +898,17 @@ DLL_EXPORT int get_wall_material_names(void* ctx, char*** material_names_in_wall
Example of usage:
|
|
[control_volume_1]->[is_fluid_check_0; is_fluid_check_1; is_fluid_check_2]
|
|
[control_volume_2]->[is_fluid_check_0; is_fluid_check_1]
|
|
[control_volume_3]->[is_fluid_check_0; is_fluid_check_1; is_fluid_check_2; is_fluid_check_3]
|
\ /(pipe)
|
(pipe)
errcode = get_wall_material_type(
ctx, &wall_material, control_volume_id, &size_wall);
Expand Down

0 comments on commit 3d5db35

Please sign in to comment.