<!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>Texas visit brings benefits for research and students</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/2014/texasvisitbringsbenefitsforresearchandstudents.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="97958">

    <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">Texas visit brings benefits for research and students</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">Texas visit brings benefits for research and students</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">Students and researchers are set to benefit from the growing partnership between Swansea University and top Texan universities, which was given a further boost by the visit of Swansea researchers to the Lone Star State from 26th - 31st October.</p>

    <div class="news-item-content">
        <p><img src="/media/t4_6447080143940534885.jpg"
alt="288 x 176" title="Texas flag" /><img src="/media/Welsh flag with visible border.jpg"
alt="Welsh flag with black border" title="Welsh flag" /></p>
<p>&zwnj;The visit, known as the Swansea University Texas Research Showcase, saw a team from Swansea speak about their research at a series of events in Houston, College Station and Austin. &nbsp;</p>
<p>&zwnj;It was also an opportunity to strengthen existing relationships - and explore new ones - with all our Texas partners: <strong><a href="http://www.uh.edu/">University of Houston</a></strong>, <strong><a href="http://www.houstonmethodist.org/">Houston Methodist Research Institute</a></strong>, <strong><a href="https://www.tamu.edu/">Texas A&amp;M</a></strong>, <strong><a href="http://www.utexas.edu/">University of Texas at Austin</a></strong> and <strong><a href="http://www.rice.edu">Rice University</a>.</strong></p>
<p><a href="https://www.flickr.com/photos/swanseauniversity/sets/72157646646498294/"><strong>Texas Research Showcase - in pictures</strong></a></p>
<p><strong>Links which were set up or strengthened by the visit include</strong>:</p>
<p>&bull;&nbsp;&nbsp; &nbsp;Research collaboration on ageing between the Centre for Innovative Ageing at Swansea and Texas-based experts<br />&bull;&nbsp;&nbsp; &nbsp;Swansea health researchers contributing to Texan students&rsquo; tutorials via Skype<br />&bull;&nbsp;&nbsp; &nbsp;Collaborative research and joint programmes between College of Law and University of Houston Law Center on children&rsquo;s rights and on energy<br />&bull;&nbsp;&nbsp; &nbsp;Collaboration with University of Houston on joint programmes in medical education, and initial discussion relating to Dell Medical School at University of Texas<br />&bull;&nbsp;&nbsp; &nbsp;Collaborative research project marking the 800th anniversary of the battlefield dialogue between Sultan al-Kamil and St Francis of Assisi, in the light of the present-day Middle East conflicts.<br />&bull;&nbsp;&nbsp; &nbsp;Links on Alzheimer&rsquo;s research with the Texan Alzheimer&rsquo;s Association<br />&bull;&nbsp;&nbsp; &nbsp;Potential research collaboration and staff/student exchange in archaeology, heritage and history, and aerospace engineering<br />&bull;&nbsp;&nbsp; &nbsp;Established or deepened contacts with possible Texan commercial partners</p>
<p><a href="http://www.swansea.ac.uk/texas/"><strong>More about our research links with Texas</strong></a></p>
<p><img src="/media/15052769304_493a009199_z.jpg"
alt="A&amp;M students with David Britton and VC" title="Texas A&amp;M performance and music students after their production of excerpts from D J Britton's play Chelsea Dreaming, as part of the Texas Research Showcase Oct 2014" /></p>
<p><em>Picture:&nbsp; Theatre and music students from Texas A&amp;M who performed excerpts from D J Britton's radio play "Chelsea Dreaming", as part of the Showcase, pictured with Swansea University creative writing professor D J Britton and Vice Chancellor Prof Richard Davies.&nbsp;</em></p>
<p>The showcase was supported by the UK Government, through its Consulate General in Houston.&nbsp; It was sponsored by Burleson LLP: with headquarters in Houston it is the USA&rsquo;s biggest firm of oil and gas attorneys. It was also supported by the Welsh Government and by CISCO Networks International.<br /><br /><img src="/media/15487528087_4d9f65518f_z.jpg"
alt="Rhodri Morgan with Bush School Students" title="Rhodri Morgan being introdcued by Dead Vedlitz of the Bush School of Public POlicy, Texas A&amp;M Uni, Oct 2014, as part of the Texas research showcase" /></p>
<p><em>Picture:&nbsp; Prof Arnold Vedlitz, Dean at the Bush School of Public Policy, Texas A&amp;M University, introduces Rt Hon Rhodri Morgan, Chancellor of Swansea University, who spoke to students about federalism in the UK</em><strong><br /></strong></p>
<p><strong>Swansea University Vice Chancellor, Professor Richard Davies</strong>, said: <br /><br />"No university can expect to tackle the big research challenges in isolation. There is a dawning realisation that working with others elsewhere in the world not only creates larger research teams with better access to the necessary range of world-class research facilities, but also creates a more innovative dynamic.&nbsp;&nbsp; Swansea and our Texan partners are at the forefront of making this work in practice."</p>
<p><strong>President of the University of Houston, Professor Renu Khator,</strong> said:</p>
<p>&ldquo;Our partnership with Swansea University continues to produce considerable benefits for everyone involved. This showcase of outstanding presentations from some of their top scholars is the latest example of that.&nbsp; We&rsquo;re delighted to host this exceptional event.&rdquo;</p>
<p>The Showcase was timed to coincide with what would have been the 100th birthday of Dylan Thomas, and featured several sessions relating to the poet's work.&nbsp;&nbsp; However, it featured experts from across all Swansea subject areas.</p>
<p><img src="/media/15461814087_6b14f57c97_z.jpg"
alt="Matthew Ware with joint Swansea-Houston Phd supervisors" title="Matt Ware, centre, with Prof Paul Rees, Swansea, and Prof Biana Godin, Houston Methodist Research Institute, joint supervisors for his PhD in nanohealth" /> <em>Picture:&nbsp; Research partners:&nbsp; Matthew Ware (centre), PhD researcher in nanohealth, with his joint supervisors Prof Paul Rees (left) of Swansea University, and Prof Biana Godin (right) of Houston Methodist Research Institute.</em></p>
<p><strong>Student exchanges</strong></p>
<p>Amongst the benefits of the Swansea-Texas links are student exchange schemes.</p>
<p><em><img src="/media/15487924830_75cc008e87_z.jpg"
alt="Texas A&amp;M and Swansea exchange students" title="Pictured in Texas with VC, Oct 2014,  Nathalie Farhoudi and Ivy Mumuni, medical engineering students from Swansea.  " />Pictured:&nbsp; With Vice Chancellor Prof Richard Davies are Ivy Mumuni (far right) and Nathalie Farhoudi (3rd from right), Swansea medical engineering students currently spending a semester at Texas A&amp;M as part of the departmental exchange.&nbsp;&nbsp; Brendan Swain (left), Michael Draper (2nd from left) and Daniel Sprague (2nd from right)&nbsp; are Texas A&amp;M students in medical engineering who spent a semester in Swansea earlier this year.</em> &nbsp;</p>
<p><strong>Ivy</strong>: "It's my first time in the US, and I'm having a great time!&nbsp; It's important to go out of your comfort zone and do things like this.&nbsp; It's amazing to see how much pride people have in their university.&nbsp;&nbsp; I'd definitely recommend the exchange to anyone."</p>
<p><strong>Nathalie:</strong>&nbsp; "It's been amazing so far!&nbsp; I love it so much!&nbsp; There is a lot of work, with homework after each class.&nbsp; But it is really good fun, and people have been so welcoming and interested in us, especially with our accents"</p>
<p><strong>Brendan</strong>, from Texas A&amp;M, said:&nbsp; "My time in Swansea was great.&nbsp; I was pretty nervous to start with, but I was placed with the other international students, which helped.&nbsp;&nbsp; I loved the Swansea campus - and there's nothing like the atmosphere on Wind Street".&nbsp; &nbsp;</p>
<p><strong>Michael</strong>:&nbsp; "I knew some Swansea students who'd been over the previous year, which helped when I got there.&nbsp; I'd thought Wales might be grey and wet the whole time, but it really was beautiful and the people were very welcoming".</p>
<p><strong>Daniel:</strong>&nbsp; "It was so great meeting people from all over the world, and learning about different cultures.&nbsp; One of the best things for me was the chance to travel and see places I'd never seen:&nbsp; Stonehenge, Paris, Prague, Italy". &nbsp;</p>
<p><a href="https://www.flickr.com/photos/swanseauniversity/sets/72157646646498294/"><strong>Texas Showcase &ndash; pictures</strong></a></p>
<p><a href="https://www.flickr.com/photos/swanseauniversity/sets/72157647930484791/"><strong>About Swansea, and our links with Texas</strong></a></p>
    </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/2014/texasvisitbringsbenefitsforresearchandstudents.php" rel="bookmark">
                <abbr class="published" title="2014-11-13T12:08:00+00:00">Thursday 13 November 2014 12.08 GMT</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2019-09-17T16:13:39+01:00">Tuesday 17 September 2019 16.13 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>
