<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>University wins THELMA award for Outstanding Leadership & Management </title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2016/universitywinsthelmaawardforoutstandingleadershipmanagement.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="106934">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">University wins THELMA award for Outstanding Leadership & Management </span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">University wins THELMA award for Outstanding Leadership & Management </h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">Swansea University has beaten off tough competition to win the prestigious Times Higher Education Leadership and Management Awards (THELMA) for its Outstanding Leadership and Management work.</p>

    <div class="news-item-content">
        <p>The <strong><a href="http://www.thelmawards.co.uk/">annual THELMA awards</a></strong> showcase and celebrate the best examples of professional services innovation, teamwork and enterprise underpinning university achievements.</p>
<p><strong><img src="/media/t4_4611208342437333686.jpg"
alt="600 x 200" title="" /></strong></p>
<p><strong>The citation for Swansea University's winning entry outlined the reasons for its success:</strong> &nbsp;</p>
<p>"Improvements in research quality, undergraduate enrolments and the successful opening of a &pound;450 million second campus earned Swansea University the award for Outstanding Leadership and Management Team.<br /><br />Swansea placed emphasis on building a &ldquo;better managed&rdquo; institution, underpinned by the introduction of the Swansea University Leadership Model, which recognises that successful outcomes are achieved through people and enabled through leaders who are self-aware and values driven.</p>
<p>The new model included a focus on improving student experience and employability while a vision of becoming a top-30 institution for research excellence was achieved three years early.</p>
<p>A new management approach to the research excellence framework 2014 brought about a cultural shift in the university&rsquo;s attitude to the research agenda, seeing the institution achieve the largest growth in quality-related funding in Wales and the third largest of all research intensive universities in the UK.<br /><br />Swansea also became only the second university in the UK to achieve corporate accreditation from the Association for Project Management.</p>
<p><img src="/media/Bay-Campus---Engineering-Central-street-entrance-with-reflection-of-the-Tower-Information-Centre.jpg"
alt="Engineering Central street entrance with reflection of Tower Information Ce" title="Bay Campus - Engineering Central street entrance, with reflection of the Tower Information Centre." />The &pound;450 million Bay Science and Innovation Campus <em>(pictured)</em>, supported by the European Investment Bank, was delivered on time and on budget. It was the largest infrastructure challenge in the university&rsquo;s history to date, and will transform not just the university but also the derelict industrial site where it was built.</p>
<p>&zwnj;&zwnj;<strong>The judges said:</strong> &ldquo;Swansea&rsquo;s decision to embed a strong and consistently applied project management approach and skills across the institution, combined with a shared leadership approach to engagement, evidences a strong commitment to both engagement and implementation.</p>
<p>Tackling management processes alongside leadership development has paid dividends in delivery of the strategic plans, campus development and local regeneration.&rdquo;</p>
<p><strong>Professor Richard B. Davies, Vice Chancellor at Swansea University, said:</strong></p>
<p>&ldquo;Winning this highly prestigious award adds further recognition to Swansea University&rsquo;s successes and meteoric rise over the last 10 years. This is a testament to the vision and leadership of our senior management teams right across the University and the dedication of all staff in delivering these achievements.</p>
<p>We can truly demonstrate that Swansea University is a successful international university with top quality teaching and research.&rdquo;<br /><br /></p>
<p><strong><img src="/media/t4_6394069377169470584.jpg"
alt="600 x 476" title="Research as Art 2013 - Rami Malki - This image shows the flow structure evolving downstream of a tidal stream turbine, generating renewable energy from the sea. Computational Fluid Dynamics Modelling is used to predict the flow features around rotating blades, and stream surfaces are implemented to highlight the movement of flow within swirling regions downstream. Visualising three-dimensional flow features in two-dimensional images has always posed difficulties for engineers. It is through our collaboration with colleagues specialising in flow visualisations within the Department of Computer Science that we, within the Marine Energy Research Group, were able to produce images such as this one. Both the computer model and the visualisation technique are pushing the boundaries in their own fields, bringing them together makes something unique. Within the image, a single turbine is shown upstream of a second row of devices located further downstream. The swirling surfaces provide an insight into the flow structure experienced by the downstream devices." /></strong><em>Picture: flow structure downstream of a wave turbine, generating renewable energy. Research by the Marine Renewable Research Group.&nbsp; Credit: Rami Malki. &nbsp;<strong> <br /></strong></em></p>
<p><strong>Professor Hilary Lappin-Scott, Senior Pro Vice Chancellor at Swansea University, said of Swansea's shortlisting in the awards:&nbsp; <br /></strong></p>
<p>&ldquo;I am delighted the THELMA awards have shortlisted Swansea University, recognising we have achieved exceptional and unparalleled success in leadership and management. &nbsp;</p>
<p>We have simultaneously improved the quality of our research, student satisfaction, and graduate employability, and delivered the new &pound;450m Bay Campus, which co-locates academia and industry partners, fostering collaborative research and helping to improve the regional economy.</p>
<p>This shortlisting follows other recent awards success for Advancing Staff Equality in the Guardian University Awards 2016; ranking 36<sup>th</sup> in Stonewall&rsquo;s Top 100 inclusive employers in Britain and being shortlisted in nine out of ten categories for WhatUni&rsquo;s Student Choice Awards including the Overall Best University category which we won in 2014.&rdquo;</p>
<p><strong>Swansea University has also:</strong></p>
<ul>
<li>Been placed as the 26<sup>th</sup> university (up from 52<sup>nd</sup>) in the <a href="http://www.swansea.ac.uk/media-centre/news-archive/2014/swansearesearchbreaksintouktop30researchexcellenceframeworkref2014.php">Research Excellence Framework 2014 (REF2014).</a></li>
<li>Achieved 5-Stars for excellence in the global <a href="http://www.swansea.ac.uk/media-centre/news-archive/2015/swanseauniversityexcelsinnewuniversityratings.php">QS Stars quality assessment</a><span style="text-decoration: underline;">, </span>placing the University amongst other world-leading institutions such as Harvard and Oxford.</li>
<li>Achieved a top 400 rank in both the Times Higher Education and QS World University Rankings in 2015.</li>
<li>Won the 2016 Guardian Higher Education Award for its impact on improving staff equality and diversity.&nbsp;</li>
<li>Been shortlisted in the Overall Best University category of the WhatUni awards once again this year, having won it in 2014, as well as in eight other categories.</li>
<li>Been chosen to host the 2016 British Science Festival, a vibrant celebration of science, engineering and technology, which will shine the international spotlight on Swansea&rsquo;s world-leading research.</li>
</ul>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Kevin Sullivan</span>
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2016/universitywinsthelmaawardforoutstandingleadershipmanagement.php" rel="bookmark">
                <abbr class="published" title="2016-06-24T11:25:00+01:00">Friday 24 June 2016 11.25 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2019-09-20T14:57:38+01:00">Friday 20 September 2019 14.57 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Public Relations Office</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
