-
Notifications
You must be signed in to change notification settings - Fork 2
/
Example_deform_distal_tibia_Rajagopal.m
101 lines (80 loc) · 3.84 KB
/
Example_deform_distal_tibia_Rajagopal.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
%-------------------------------------------------------------------------%
% Copyright (c) 2021 Modenese L. %
% Author: Luca Modenese, 2021 %
% email: [email protected] %
% ----------------------------------------------------------------------- %
clear;clc
addpath('./tool_funcs')
% import libraries
import org.opensim.modeling.*
%--------------- MAIN SETTINGS -----------
% Model to deform
% ModelFileName = './test_models/gait2392_simbody.osim';
modelFileName = './examples/Rajagopal2015.osim';
% where the bone geometries are stored
% OSGeometry_folder = 'C:\OpenSim 3.3\Geometry';
OpenSim_Geometry_folder = './examples/Geometry';
% body to deform
bone_to_deform = 'tibia_l';
% axis of deformatio
torsionAxis = 'y';
% define the torsion at the joint centre of the specified bone
% TorsionProfilePointsDeg = [ proximalTorsion DistalTorsion ];
TorsionProfilePointsDeg = [ 0 -30 ];
% decide if you want to apply torsion to joint as well as other objects.
% E.g. choose no for investigating the effect of femoral anteversion in a
% leg with straight alignment.
% Choose yes for modelling a CP child with deformation of bone resulting in
% joint rotation, meaning the kinematic model is altered.
apply_torsion_to_joints = 'yes';
% where the deformed models will be saved
altered_models_folder = './examples';
%----------------------------------------------
% import model
osimModel = Model(modelFileName);
% compute bone length
[Pprox, Pdist, total_L, V] = getJointCentresForBone(osimModel, bone_to_deform);
% define length corresponding to torsion points
LengthProfilePoints = [ Pprox; Pdist];
% compute torsion profile
[torsion_angle_func_rad, torsion_doc_string]= createTorsionProfile(LengthProfilePoints, TorsionProfilePointsDeg, torsionAxis);
% suffix used for saving geometries
bone_short = bone_to_deform([1:3,end-1:end]);
deformed_model_suffix = ['_Tors',upper(bone_short(1)),bone_short(2:end),'_',torsion_doc_string];
% if you want you can apply torsion to joints
if strcmp(apply_torsion_to_joints, 'yes')
osimModel = applyTorsionToJoints(osimModel, bone_to_deform, torsionAxis, torsion_angle_func_rad);
end
% get wrapping objects
bone_body = osimModel.getBodySet.get(bone_to_deform);
if getOpenSimVersion()<4.0
% get wrapset
wrap_set = bone_body.get_WrapObjectSet();
% get nr of wrapping objects
N_wrap = wrap_set.getSize();
% loop through wrapping surf
for nw = 0:N_wrap-1
cur_obj = wos.get(nw);
% compute new orientation
orientation = obj.get_xyz_body_rotation();
XYZ_orient_vec = [orientation.get(0), orientation.get(1), orientation.get(2)];
jointRotMat = orientation2MatRot(XYZ_orient_vec);
newJointRotMat = jointRotMat * torsion_RotMat;
new_Orientation = computeXYZAngleSeq(newJointRotMat);
newOrientation = Vec3(new_Orientation(1), new_Orientation(2), new_Orientation(3));
end
end
% deforming muscle attachments
osimModel = applyTorsionToMuscleAttachments(osimModel, bone_to_deform, torsionAxis, torsion_angle_func_rad);
% if there are markers rotate them
osimModel = applyTorsionToMarkers(osimModel, bone_to_deform, torsionAxis, torsion_angle_func_rad);
% deform the bone geometries of the generic model
osimModel = applyTorsionToVTPBoneGeom(osimModel, bone_to_deform, torsionAxis, torsion_angle_func_rad, torsion_doc_string, OpenSim_Geometry_folder);
% save output model
if ~isfolder(altered_models_folder); mkdir(altered_models_folder); end
[~, name,ext] = fileparts(modelFileName);
deformed_model_name = [name, deformed_model_suffix,ext];
output_model_path = fullfile(altered_models_folder, deformed_model_name);
osimModel.setName([char(osimModel.getName()),deformed_model_suffix]);
% save model
saveDeformedModel(osimModel, output_model_path);