<!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>Filter may be a match for fracking water</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/2017/filtermaybeamatchforfrackingwater.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="112621">

    <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">Filter may be a match for fracking water</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">Filter may be a match for fracking water</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 scientists produce superhydrophilic membrane to clean fluids for reuse</p>

    <div class="news-item-content">
        <p>A new superhydrophilic filter has proven able to remove greater than 90 per cent of hydrocarbons, as well as all bacteria and particulates from contaminated water produced by hydraulic fracturing (fracking) operations at shale oil and gas wells, according to researchers at the Energy Safety Research Institute at Swansea University in collaboration with researchers at Rice University.</p>
<p>The work by Prof Andrew R Barron and his colleagues turns a ceramic membrane with microscale pores into a superhydrophilic filter that "essentially eliminates" the common problem of fouling.</p>
<p>The researchers determined one pass through the membrane should clean contaminated water enough for reuse at a well, significantly cutting the amount that has to be stored or transported.</p>
<p>The work is reported in Nature's open-access Scientific Reports.</p>
<p>The filters keep emulsified hydrocarbons from passing through the material's ionically charged pores, which are about one-fifth of a micron wide, small enough that other contaminants cannot pass through. The charge attracts a thin layer of water that adheres to the entire surface of the filter to repel globules of oil and other hydrocarbons and keep it from clogging.</p>
<p>A hydraulically fractured well uses more than 5 million gallons of water on average, of which only 10 to 15 per cent is recovered during the flow back stage, Barron said.</p>
<p>&ldquo;This makes it very important to be able to re-use this water&rdquo;</p>
<p>Not every type of filter reliably removes every type of contaminant, he said.</p>
<p>Solubilized hydrocarbon molecules slip right through <a href="https://en.wikipedia.org/wiki/Microfiltration">micro filters</a> designed to remove bacteria. Natural organic matter, like sugars from guar gum used to make fracking fluids more viscous, require <a href="https://en.wikipedia.org/wiki/Ultrafiltration">ultra</a>- or <a href="https://en.wikipedia.org/wiki/Nanofiltration">nanofiltration</a>, but those foul easily, especially from hydrocarbons that emulsify into globules. A multistage filter that could remove all the contaminants isn't practical due to cost and the energy it would consume.</p>
<p>Frac water and produced waters represent a significant challenge on a technical level. If you use a membrane with pores small enough to separate they foul, and this renders the membrane useless. In our case, the superhydrophilic treatment results in an increased flux (flow) of water through the membrane as well as inhibiting any hydrophobic material &ndash; such as oil &ndash; from passing through. The difference in solubility of the contaminants thus works to allow for separation of molecules that should in theory pass through the membrane.</p>
<p>Barron and his colleagues used <a href="https://en.wikipedia.org/wiki/Cysteic_acid">cysteic acid</a> to modify the surface of an alumina-based ceramic membrane, making it superhydrophilic, or extremely attracted to water. The superhydrophilic surface has a contact angle of 5 degrees.</p>
<p>The acid covered not only the surface but also the inside of the pores, and that kept particulates from sticking to them and fouling the filter.</p>
<p>In tests with fracking <a href="https://www.petropedia.com/definition/1581/flowback">flow back</a> or produced water that contained guar gum, the alumna membrane showed a slow initial decrease in flux -- a measure of the flow of mass through a material -- but it stabilized for the duration of lab tests. Untreated membranes showed a dramatic decrease within 18 hours.</p>
<p>The researchers theorized the initial decrease in flow through the ceramics was due to purging of air from the pores, after which the superhydrophilic pores trapped the thin layer of water that prevented fouling.</p>
<p>"This membrane doesn't foul, so it lasts," Barron said. "It requires lower operating pressures, so you need a smaller pump that consumes less electricity. And that's all better for the environment."</p>
<p>&ldquo;Fracking has proved highly controversial in the UK in part as a result of the pollution generated from produced waters&rdquo;, co-author Darren Oatley-Radcliffe, an associate professor, at Swansea University, said, &ldquo;However, with this new super-hydrophilic membrane we can clean up this waste produced water to a very high standard and recycle all of the materials, significantly improving the environmental performance of the fracking process.&rdquo;</p>
<p>Rice alumnus Samuel Maguire-Boyle is lead author of the paper. Co-authors are Rice alumnus Joseph Huseman; graduate student Thomas &nbsp;Ainscough at Swansea University, Wales; and Abdullah Alabdulkarem, of the Mechanical Engineering Department, and Sattam Fahad Al-Mojil, an assistant professor and environmental adviser, at King Saud University, Riyadh, Saudi Arabia. Barron is the S&ecirc;r Cymru Chair of Low Carbon Energy and Environment at Swansea and the Charles W. Duncan Jr.&ndash;Welch Professor of Chemistry and a professor of materials science and nanoengineering at Rice.</p>
<p>The research was supported by the Welsh Government S&ecirc;r Cymru Program, FLEXIS, which is partially funded by the European Regional Development Fund, and the Robert A. Welch Foundation.</p>
<ul>
<li>Read the abstract at <a href="http://www.nature.com/articles/s41598-017-12499-w">http://www.nature.com/articles/s41598-017-12499-w</a></li>
<li>For more information about <strong>ESRI</strong> go to <a href="http://www.esri-swansea.org/en/">http://www.esri-swansea.org/en/</a>. Follow ESRI via Twitter <a href="https://twitter.com/ESRI_Swansea">@ESRI_Swansea</a><span style="text-decoration: underline;"><br /></span></li>
</ul>
<p><img src="/media/ESRI fracking.jpg"
alt="ESRI Fracking image  " title="ESRI Fracking image  " /></p>
<p><em>The Energy Safety Research Institute (</em><a href="https://mobile.swansea.ac.uk/owa/redir.aspx?C=9_KctC5TLxLaguVjiVNGgLg2neV1CQ16Po4psFSF95OvmuKrSMHUCA..&amp;URL=http%3a%2f%2fwww.esri-swansea.org" target="_blank"><em>www.esri-swansea.org</em></a><em>) is positioned to discover and implement new technology for a sustainable, affordable, and secure energy future and is&nbsp;housed on Swansea University&rsquo;s new world class Bay Campus. ESRI provides an exceptional environment for delivering cutting edge research across energy and energy safety-related disciplines with a focus on renewable energy, hydrogen, carbon capture and utilization, as well as new oil and gas technologies.</em></p>
<p><em>&nbsp;</em></p>
<p><em>&nbsp;</em></p>
<p><em>&nbsp;</em></p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Janis Pickwick</span>
            &lt;<a class="email" href="mailto:j.m.pickwick@swansea.ac.uk">j.m.pickwick@swansea.ac.uk</a>&gt;
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2017/filtermaybeamatchforfrackingwater.php" rel="bookmark">
                <abbr class="published" title="2017-09-25T14:50:00+01:00">Monday 25 September 2017 14.50 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2017-09-25T14:02:04+01:00">Monday 25 September 2017 14.02 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Swansea University</span>, Tel: <span class="tel">01792 295050</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>
