Functional impairments persist in Achilles tendinopathy

This is an interesting study from the Delaware tendinopathy group among others investigating a host of structural, tissue property, functional and pain factors that may persist among people with Achilles tendinopathy making a return to running.

Provides guidance to clinicians about potential impairments to consider assessing.

LISTEN BELOW

Here’s the link to the study:

Corrigan, P., Hornsby, S., Pohlig, R.T., Willy, R.W., Cortes, D.H. and Silbernagel, K.G., 2022. Tendon loading in runners with Achilles tendinopathy: Relations to pain, structure, and function during return‐to‐sport. Scandinavian Journal of Medicine & Science in Sports.

Here’s the link to my upcoming course series in the UK in Sept:

https://www.eventbrite.com/cc/mastering-lower-limb-tendinopathy-uk-sept-2022-670009

gif video of different types of people listening
jQuery(document).ready(function($) { var playerContainer = $('#auscast-player-container'); var player = $('#auscast-player'); // Show player and store session $('#play-auscast').click(function() { playerContainer.slideDown(); sessionStorage.setItem('auscastPlaying', 'true'); sessionStorage.setItem('auscastSrc', player.attr('src')); }); // Keep the player open and playing across page reloads if (sessionStorage.getItem('auscastPlaying') === 'true') { playerContainer.show(); player.attr('src', sessionStorage.getItem('auscastSrc')); } // Close player $('#close-auscast-player').click(function() { playerContainer.slideUp(); sessionStorage.removeItem('auscastPlaying'); sessionStorage.removeItem('auscastSrc'); player.attr('src', ''); // Stop playback }); // Stop stream when another audio plays $('audio, video').on('play', function() { player.attr('src', ''); sessionStorage.removeItem('auscastPlaying'); sessionStorage.removeItem('auscastSrc'); }); });