Bitte überprüfen sie die Angaben zu Ihrem Referentenprofil. Korrekturen sowie ein Profilbild können Sie über das Formular einreichen.

Martin Engelhardt

Osnabrück, Deutschland
Klinikum Osnabrück

Martin Engelhardt was born in Hanau, Germany, in 1960. He finished the study of medicine at the Johann Wolfgang Goethe University of Frankfurt, Germany 1984 and received the M. D. degree 1985 from the University of Frankfurt and his professional thesis (habilitation) on neuromuscular changes after Knee injuries in 1998.

He was trained in Hanau (Town Hospital, 1984-1987) and Frankfrut (University Hospital, 1987-1991) and received his diploma in Orthopaedic Surgery in 1991 and for Special Orthopaedic Surgery in 1996 from the University of Frankfurt.

Martin Engelhardt works as an Orthopaedic Surgeon at the Klinikum Osnabrück since January 2008 where he is head of the Department of Orthopaedic and Trauma surgery and since 2012 Medical director of the Klinikum Osnabrück. His main areas of clinical activity are orthopaedic sports medicine as well as knee, hip and ankle surgery. He was appointed extraordinary professor in orthopaedic and trauma surgery at the University of Münster in 2014 and recieved the honorarium professorship at the University of Osnabrück in 2014.

His scientific work deals with the analysis and improvement of diagnostic, surgical and non-surgical principles of overuse and sports-related joint injuries and diseases as well as on the investigation and promotion of primary and secondary prevention initiatives in sports medicine and joint surgery.

From 2000 until 2006 Martin Engelhardt was president of the German-speaking Society in Orthopedic and Traumatologic Sports Medicine (GOTS), since 2008 he is secretary of the Society.

From 1987 until 2001 he was and from 2011 until now he is President of the German Triathlon Union. Since 2000 until now he is the Chairman of the German sport research institutes IAT Leipzig and FES Berlin. 2004 and 2008 he was the Leading Orthopaedic Physican of the German Olympic Team in Athens and Bejing.

Since years he is the Editor–in–chief of the journal Sports Orthopaedics Traumatology (official journal of the GOTS). He is author and co-author of numerous peer – reviewed publications and books.

Vorsitz, Moderation, Podium
Wie viel ist zu viel? Überlastungsschäden im Sport
Donnerstag, 15.05.2025
10:00 Uhr bis 11:30 Uhr
Raum U.0.01
Marathon und mehr – Langzeitbelastungen im Sport
Donnerstag, 15.05.2025
14:00 Uhr bis 15:30 Uhr
Campus Hall
Vorträge
Überlastung ein sportmedizinisches Problem?
Keynote
Donnerstag, 15.05.2025
10:45 Uhr bis 11:00 Uhr
Raum U.0.01
Zurück zu ReferrentenZurück zum Programm
<?php 

$post_id = get_the_ID();
  
echo '<h6 class="vorsitz-h6">Vorsitz, Moderation, Podium</h6>';  

$vorsitz = false;

$args1 = array(
	'posts_per_page' => -1,
	'post_type'      => 'session',
	'meta_query'     =>  array(
      'relation' => 'AND',
      	's_tag' =>  array(
        'key' => 'session_tag',
        'compare' => 'EXISTS',
      ),
      	's_startzeit' => array(
        'key' => 'session_startzeit',
        'compare' => 'EXISTS',
      )
    ),
		'orderby' =>  array(
			's_tag' =>   'ASC',
			's_startzeit' =>  'ASC'
	)
);


$the_query1 = new WP_Query($args1);

if($the_query1->have_posts() ) : 

	while($the_query1->have_posts() ) : $the_query1->the_post();
	
    if(have_rows('session_vorsitz')) :

        while(have_rows('session_vorsitz')) : the_row();

            if(get_sub_field('referent') == $post_id) {
              
              $vorsitz = true;
              
              echo get_the_title(). ';' . get_field('session_tag')['label'] . ';' . get_field('session_startzeit') . ' Uhr bis ' . get_field('session_endzeit')  . ' Uhr;' . get_field('session_raum')['label'] . ';';              
            }

        endwhile;

    endif;

	endwhile;

endif;

wp_reset_query();

if($vorsitz) {
  echo '<style>.vorsitz-h6 { display: block; }</style>';
} else {
  echo '<style>.vorsitz-h6 { display: none; }</style>';
}

echo '<h6 class="programmpunkte-h6">Vorträge</h6>';

$programmpunkte = false;

/*Schulter Frakturen (2103), Syre (ID 1897) ergänzen*/
  if(is_single(1897)) :

		$syre = get_the_title(2103) . ';' . get_field('programm_sitzungstyp', 2103)['label'] . ';' . get_field('programm_tag', 2103)['label'] . ';' . get_field('programm_startzeit', 2103) . ' Uhr bis ' . get_field('programm_endzeit', 2103) . ' Uhr;' . get_field('programm_raum', 2103)['label'] . ';';

		$programmpunkte = true;

	else : 

		$syre = '';

endif;

$args2 = array(
	'posts_per_page' => -1,
	'post_type'      => 'programmpunkt',
  'meta_key'       => 'programm_referent',
  'meta_value'     => $post_id
);

$the_query2 = new WP_Query($args2);

if($the_query2->have_posts() ) : 

	$programmpunkte = true;

	while($the_query2->have_posts() ) : $the_query2->the_post();
	
		echo get_the_title() . ';' . get_field('programm_sitzungstyp')['label'] . ';' . get_field('programm_tag')['label'] . ';' . get_field('programm_startzeit') . ' Uhr bis ' . get_field('programm_endzeit') . ' Uhr;' . get_field('programm_raum')['label'] . ';';  

	endwhile;

endif;

echo $syre;

wp_reset_query();

?>