Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebbruno committed Aug 28, 2024
1 parent 5fa26cb commit e10b2ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/alfasim_sdk/alfasim_sdk_api/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,8 @@ DLL_EXPORT int get_wall_properties(void* ctx, double** prop_values, const char*
Example of usage:
~~~~~{.cpp}
[material_name_4]
[material_name_3] [material_name_3]
[material_name_2] [material_name_2] [material_name_2]
Expand All @@ -870,7 +872,6 @@ DLL_EXPORT int get_wall_properties(void* ctx, double** prop_values, const char*
| | |
---[control_volume_1]--[control_volume_2]--[control_volume_3]--> (Pipe)
~~~~~{.cpp}
errcode = get_wall_material_names(
ctx, &material_names_in_wall, control_volume_id, &size_wall);
~~~~~
Expand All @@ -887,6 +888,8 @@ DLL_EXPORT int get_wall_material_names(void* ctx, char*** material_names_in_wall
Gets the information if the each layer in the wall is fluid or not for a given control volume.
This method also provide the size of the given arrays.
~~~~~{.cpp}
Example of usage:
[is_fluid_check_4]
Expand All @@ -897,7 +900,6 @@ DLL_EXPORT int get_wall_material_names(void* ctx, char*** material_names_in_wall
| | |
---[control_volume_1]--[control_volume_2]--[control_volume_3]--> (Pipe)
~~~~~{.cpp}
errcode = get_wall_material_type(
ctx, &wall_material, control_volume_id, &size_wall);
~~~~~
Expand Down

0 comments on commit e10b2ca

Please sign in to comment.