From e10b2ca680c266e283555ecfdf39f0e583d53c54 Mon Sep 17 00:00:00 2001 From: Alexandre Barbosa Bruno Date: Wed, 28 Aug 2024 09:31:49 -0300 Subject: [PATCH] fix doc --- src/alfasim_sdk/alfasim_sdk_api/api.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/alfasim_sdk/alfasim_sdk_api/api.h b/src/alfasim_sdk/alfasim_sdk_api/api.h index e9d48dcd..b518126b 100644 --- a/src/alfasim_sdk/alfasim_sdk_api/api.h +++ b/src/alfasim_sdk/alfasim_sdk_api/api.h @@ -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] @@ -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); ~~~~~ @@ -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] @@ -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); ~~~~~