Get_VertLoad.m

Provide a musculoskeletal model of the full thoracolumbar spine and rib cage for researchers to use in their investigations of spine and thorax kinematics and dynamics.
POST REPLY
User avatar
Kazuya Matsushita
Posts: 2
Joined: Sun Dec 04, 2022 11:10 am

Get_VertLoad.m

Post by Kazuya Matsushita » Sat Jan 13, 2024 10:42 am

Hello,I'm trying to analyze lumbar compression force using VICON, but I'm a bit confused about the code in Get_VertLoad.m that was provided.

Final_Comp(i,k-1) = sign*(abs(child_Comp(i,k-1))+ abs(parent_Comp(i,k)))/2;

I'm wondering why we divide by 2 when performing this calculation. I had this question while manually confirming the calculation of lumbar compression force from joint reaction forces, following the provided MATLAB code.
I'd appreciate it if you could enlighten me on this.

If you have any papers or resources related to this, I would appreciate it if you could share them.

Thanks,

User avatar
Jacob J. Banks
Posts: 88
Joined: Tue Jul 15, 2014 5:17 am

Re: Get_VertLoad.m

Post by Jacob J. Banks » Sat Jan 13, 2024 3:27 pm

We divide by 2 because we are estimating the vertebral and not the joint load. So, we take the average of the superior and inferior joint forces to estimate the vertebral force (what is between the 2 joints).
Jake Banks

User avatar
Kazuya Matsushita
Posts: 2
Joined: Sun Dec 04, 2022 11:10 am

Re: Get_VertLoad.m

Post by Kazuya Matsushita » Sat Jan 13, 2024 9:02 pm

Thanks for your reply.
I have understood the calculation method.
I would like to try various operations using this model.

POST REPLY