Skip to content

Commit 770d0c2

Browse files
committed
fix mass prop in examples. Close #85
1 parent b2b0c9d commit 770d0c2

6 files changed

+45
-11
lines changed

Example_bilateral_model.m

+16-7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
datasets_folder = 'bone_datasets';
1919
% datasets that you would like to process
2020
datasets = {'TLEM2_MRI', 'JIA_MRI'};
21+
% masses for models
22+
subj_mass_set = [45, 76.5]; %kg
23+
2124
% format of input geometries
2225
input_geom_format = 'tri';
2326
% visualization geometry format (options: 'stl' or 'obj')
@@ -42,24 +45,24 @@
4245
% folder from which triangulations will be read
4346
tri_folder = fullfile(datasets_folder, cur_dataset, input_geom_format);
4447

48+
% log printout
49+
log_file = fullfile(output_models_folder, [cur_dataset,'_bilateral.log']);
50+
logConsolePrintout('on', log_file);
51+
4552
for n_side = 1:2
4653

4754
% get current body side
4855
[sign_side , cur_side] = bodySide2Sign(sides{n_side});
4956

5057
% cell array with the bone geometries that you would like to process
5158
bones_list = {'pelvis_no_sacrum', ['femur_', cur_side],...
52-
['tibia_', cur_side],['talus_', cur_side],...
59+
['tibia_', cur_side], ['talus_', cur_side],...
5360
['calcn_', cur_side]};
5461

5562
% model and model file naming
5663
cur_model_name = ['auto_',datasets{n_d},'_',upper(cur_side)];
5764
model_file_name = [cur_model_name, '.osim'];
5865

59-
% log printout
60-
log_file = fullfile(output_models_folder, [cur_model_name, '.log']);
61-
logConsolePrintout('on', log_file);
62-
6366
% create geometry set structure for all 3D bone geometries in the dataset
6467
triGeom_set = createTriGeomSet(bones_list, tri_folder);
6568

@@ -81,6 +84,10 @@
8184

8285
% create joints
8386
createOpenSimModelJoints(osimModel, JCS, joint_defs);
87+
88+
% update mass properties to those estimated using a scale version of
89+
% gait2392 with COM based on Winters's book.
90+
osimModel = assignMassPropsToSegments(osimModel, JCS, subj_mass_set(n_d));
8491

8592
% add markers to the bones
8693
addBoneLandmarksAsMarkers(osimModel, BL);
@@ -99,14 +106,16 @@
99106
disp(['Model geometries saved in folder: ', geometry_folder_path,'.'])
100107
disp('-------------------------')
101108
clear triGeom_set JCS BL CS
102-
logConsolePrintout('off');
109+
103110
% store model file (with path) for merging
104111
osim_model_set(n_side) = {osim_model_file}; %#ok<SAGROW>
105112
end
106113
% merge the two sides
107114
merged_model_file = fullfile(output_models_folder,[cur_dataset,'_bilateral.osim']);
108115
mergeOpenSimModels(osim_model_set{1}, osim_model_set{2}, merged_model_file);
109-
116+
117+
% stop logger
118+
logConsolePrintout('off');
110119
end
111120
% remove paths
112121
rmpath(genpath('STAPLE'));

Example_full_leg_left.m

+8-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
% datasets that you would like to process
2222
dataset_set = {'TLEM2_CT', 'TLEM2_MRI'};
2323

24+
% estimated mass of specimen
25+
mass = 45; % [kg]
26+
2427
% cell array with the bone geometries that you would like to process
2528
bones_list = {'pelvis_no_sacrum','femur_l','tibia_l','talus_l', 'calcn_l'};
2629

@@ -37,7 +40,7 @@
3740
% create model folder if required
3841
if ~isfolder(output_models_folder); mkdir(output_models_folder); end
3942

40-
for n_d = 1%:numel(dataset_set)
43+
for n_d = 1:numel(dataset_set)
4144

4245
% current dataset being processed
4346
cur_dataset = dataset_set{n_d};
@@ -78,6 +81,10 @@
7881
% create joints
7982
createOpenSimModelJoints(osimModel, JCS, workflow);
8083

84+
% update mass properties to those estimated using a scale version of
85+
% gait2392 with COM based on Winters's book.
86+
osimModel = assignMassPropsToSegments(osimModel, JCS, mass);
87+
8188
% add markers to the bones
8289
addBoneLandmarksAsMarkers(osimModel, BL);
8390

Example_full_leg_right.m

+8-1
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@
1313
%----------%
1414
% SETTINGS %
1515
%----------%
16-
output_models_folder = 'opensim_models_example';
16+
output_models_folder = 'opensim_models_examples';
1717

1818
% folder where the various datasets (and their geometries) are located.
1919
datasets_folder = 'bone_datasets';
2020

2121
% datasets that you would like to process
2222
datasets = {'TLEM2_CT'};
2323

24+
% estimated mass of specimen
25+
mass = 45; % [kg]
26+
2427
% body sides
2528
cur_side = 'r';
2629

@@ -82,6 +85,10 @@
8285

8386
% create joints
8487
createOpenSimModelJoints(osimModel, JCS, workflow);
88+
89+
% update mass properties to those estimated using a scale version of
90+
% gait2392 with COM based on Winters's book.
91+
osimModel = assignMassPropsToSegments(osimModel, JCS, mass);
8592

8693
% add markers to the bones
8794
addBoneLandmarksAsMarkers(osimModel, BL);

Example_hip_model.m

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
% If you add multiple datasets they will be batched processed but you will
2424
% have to adapt the folder and file namings below.
2525
dataset_set = {'LHDL_CT'};
26+
body_mass = 64; %kg
2627

2728
% cell array with the name of the bone geometries to process.
2829
bones_list = {'pelvis_no_sacrum', 'femur_r'};
@@ -79,6 +80,10 @@
7980

8081
% create joints
8182
createOpenSimModelJoints(osimModel, JCS, joint_defs);
83+
84+
% update mass properties to those estimated using a scale version of
85+
% gait2392 with COM based on Winters's book.
86+
osimModel = assignMassPropsToSegments(osimModel, JCS, body_mass);
8287

8388
% add markers to the bones
8489
addBoneLandmarksAsMarkers(osimModel, BL);

Example_knee_model.m

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
% datasets that you would like to process
1919
dataset_set = {'ICL_MRI'};
20+
body_mass = 87; %kg
2021

2122
% cell array with the name of the bone geometries to process
2223
bones_list = {'femur_r', 'tibia_r'};
@@ -77,9 +78,14 @@
7778
% add patella to tibia (this will be replaced by a proper joint and
7879
% dealt with the other joints in the future).
7980
side = inferBodySideFromAnatomicStruct(geom_set);
80-
% improve!
81+
82+
% temporary approach to improve
8183
attachPatellaGeom(osimModel, side, tri_folder, geometry_folder_path, geometry_folder_name, vis_geom_format)
8284

85+
% update mass properties to those estimated using a scale version of
86+
% gait2392 with COM based on Winters's book.
87+
osimModel = assignMassPropsToSegments(osimModel, JCS, body_mass);
88+
8389
% add markers to the bones
8490
addBoneLandmarksAsMarkers(osimModel, BL);
8591

STAPLE/anthropometry/assignMassPropsToSegments.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
%---------------------------------------------
103103

104104
% map gait2392 properties to the model segments as an initial value
105-
disp('Mapping segment masses and inertias from gait2392/Rajagopal model.')
105+
disp('Mapping segment masses and inertias from gait2392 model.')
106106
osimModel = mapGait2392MassPropToModel(osimModel);
107107

108108
% opensim model total mass (consistent in gait2392 and Rajagopal)

0 commit comments

Comments
 (0)