research.wit.ie Open in urlscan Pro
34.253.178.11  Public Scan

Submitted URL: http://research.setu.ie/
Effective URL: https://research.wit.ie/
Submission: On March 10 via api from US — Scanned from US

Form analysis 1 forms found in the DOM

GET /en/searchAll/

<form id="main-search" action="/en/searchAll/" method="get" class="search-form" itemprop="potentialAction" itemscope="" itemtype="http://schema.org/SearchAction">
  <meta itemprop="target" content="/en/searchAll/">
  <div class="global-search ">
    <div class="field-button-wrapper">
      <div class="search-field">
        <label class="sr-only" for="global-search-input">Explore profiles, expertise and research at South East Technological University</label>
        <input type="text" id="global-search-input" itemprop="query-input" class="search-field" value="" name="search" autocomplete="off" autofocus="autofocus">
      </div>
      <div class="advanced-SearchBox-Container hidden">
        <div id="search-as-headline" class="advanced-search-header"> Search as: </div>
        <ul class="advanced-search-list" aria-labelledby="search-as-headline" data-url="https://research.wit.ie/" data-searchlocale="en">
          <li class="concepts-suggestion" data-value="RelatedConcepts">
            <a class="linkValConcept">
                    <div class="aria-content">
                        <output id="RelatedConcepts" class="advanced-search-label"></output>
                        <span>
                            
                                concept
                            
                        </span>
                    </div></a>
            <div class="tooltip-container">
              <button type="button" aria-expanded="false" aria-describedby="search_index_relatedconcepts" aria-label="Search as concept, help">
                <i class="icon icon-info-circled" aria-hidden="true"></i>
              </button>
              <span class="tooltip-popup align-right" role="tooltip" id="search_index_relatedconcepts">Search across key concepts extracted from titles and abstracts</span>
            </div>
          </li>
          <li class="index-suggestion" data-value="PartOfNameOrTitle">
            <a class="linkValIndex">
                    <div class="aria-content">
                        <output id="PartOfNameOrTitle" class="advanced-search-label"></output>
                        <output class="advanced-search-message">
                            
                                matching text
                            
                        </output>
                    </div></a>
            <div class="tooltip-container">
              <button type="button" aria-expanded="false" aria-describedby="search_index_partofnameortitle" aria-label="Search as matching text, help">
                <i class="icon icon-info-circled" aria-hidden="true"></i>
              </button>
              <span class="tooltip-popup align-right" role="tooltip" id="search_index_partofnameortitle">Search across indexed text content in Pure, such as names, titles, descriptions etc.</span>
            </div>
          </li>
        </ul>
      </div>
      <script>
        $(document).ready(function() {
          $("input.search-field").bind('keyup', function() {
            displayInput();
            populateInput();
          });
          navigation();
          runToolTips();
        });
        //Sets the width of the searchcontainer so it follows the width of the input
        $(window).resize(function() {
          $(".advanced-SearchBox-Container").width($('.field-button-wrapper').width());
        });
        /*Removes the popup if there is a click outside the container*/
        $(document).mouseup(function(e) {
          var container = $('.advanced-SearchBox-Container');
          if (!container.is(e.target) // if the target of the click isn't the container
            && container.has(e.target).length === 0) // ... nor a descendant of the container
          {
            container.addClass('hidden');
            resetSearchSelection();
          }
        });

        function populateInput() {
          var locale = $('.advanced-search-list').attr('data-searchlocale');
          var urlString = window.location.href;
          if (urlString.charAt(urlString.length - 1) == '/') {
            urlString = urlString.substr(0, urlString.length - 1);
          }
          var urlWithLocale = urlString.indexOf("/" + locale) > -1 ? urlString : urlString + "/" + locale;
          $('.search-bar-wrapper input.search-field').each(function() {
            var inputValue = $(this);
            if (inputValue) {
              $('.advanced-search-label').each(function() {
                var lblText = $(this);
                var urlParams = {};
                if (false) {
                  urlParams["improvedLayoutOrganisationUuid"] = "null";
                }
                //id of class
                var searchBy = $(this).attr('id');
                urlParams["search"] = inputValue.val();
                urlParams["searchBy"] = searchBy;
                var paramsAsString = jQuery.param(urlParams);
                var newUrl = "?" + paramsAsString;
                if (searchBy == 'PartOfNameOrTitle') {
                  $('.linkValIndex').prop("href", urlWithLocale + "/searchAll/" + newUrl);
                }
                if (searchBy == 'RelatedConcepts') {
                  $('.linkValConcept').prop("href", urlWithLocale + "/searchAll/" + newUrl);
                }
                //hides the popup if input field is empty
                if (inputValue.val().length == 0) {
                  $(".advanced-SearchBox-Container").addClass("hidden");
                }
              });
            }
          });
        }

        function displayInput() {
          $('.search-bar-wrapper input.search-field').each(function() {
            var selected = $('.search-bar-wrapper ul.dropdown-menu li.selected').find('a').attr('href');
            if (selected == undefined) {
              selected = 'searchAll';
            }
            var typingTimer,
              doneTypingInterval = 1000,
              $input = $(this);
            $input.on('keyup', function() {
              clearTimeout(typingTimer);
              typingTimer = setTimeout(doneTyping, doneTypingInterval);
            });
            $input.on('keydown', function() {
              clearTimeout(typingTimer);
            });

            function doneTyping() {
              var searchOptionAmount = $('.advanced-search-list li').length;
              addToAriaLive("polite", searchOptionAmount + " Search suggestions are available, use TAB key to navigate");
            }
            if ($input.val().length != 0) {
              $(".advanced-SearchBox-Container.hidden").removeClass("hidden");
            } else {
              $(".advanced-SearchBox-Container").addClass("hidden");
              resetSearchSelection();
            }
          });
        }

        function navigation() {
          $(".advanced-search-list li").mouseover(function() {
            $("li").removeClass("select");
            $(this).addClass("select");
          });
          $('.improvedLayout-search-bar-container input.search-field').on('keydown', function(e) {
            if (e.which === $.ui.keyCode.ENTER) {
              var url = $('.advanced-SearchBox-Container').find('.select a').attr('href');
              if (url === undefined) {
                $('#normalSearch').click();
              } else {
                window.location.href = url;
              }
            }
          });
        }

        function subStringText(val, limit) {
          if (val.length > limit) {
            var dots = "...";
            val = val.substring(0, limit) + dots;
          }
          return val
        }
        var resetSearchSelection = function() {
          var select = $(".advanced-search-list li.select");
          select.removeClass('select');
        };
      </script>
      <div class="search-submit">
        <button id="normalSearch" type="submit" value="false" name="isCopyPasteSearch" aria-label="Search">
          <i class="icon icon-magnifying-glass" aria-hidden="true"></i>
        </button>
      </div>
    </div>
  </div>
</form>

Text Content

 * Skip to main navigation
 * Skip to search
 * Skip to main content

South East Technological University Home
 * Help & FAQ


EXPLORE OUR RESEARCH

Explore profiles, expertise and research at South East Technological University
Search as:
 * concept
   Search across key concepts extracted from titles and abstracts
 * matching text
   Search across indexed text content in Pure, such as names, titles,
   descriptions etc.


 * Advanced search

 * 287 Profiles
 * 55 Organisational units
 * 3 Equipment
 * 71 Projects
 * 5530 Research output
 * 1 Datasets
 * 1068More
    * 181 Prizes
    * 749 Activities
    * 40 Courses
    * 93 Press/Media
    * 5 Impacts


SETU RESEARCH

SETU was established in May 2022 but builds upon a history of leading research
performers in the Institute of Technology sector with research, development and
innovation activities that are impactful, internationally benchmarked,
strategic, and economically relevant. Through this portal, you will find out
about some of the amazing multidisciplinary and collaborative research that is
underway at the university. At SETU, we have created a research and innovation
ecosystem that brings together our researchers and students with entrepreneurs,
industry experts and established companies. This strong research culture is the
result of many individual efforts, but it is also through the collaboration of
many academics, researchers, and a dedicated Research Support Unit and
structure. This portal is your gateway to finding our researchers, outputs,
impacts, projects, and units. You may want to contact our research groups,
centres or institute, explore opportunities for collaboration or find out about
researchers’ collaboration networks. Please use the search function to look for
your topics of interest.


UN SUSTAINABLE DEVELOPMENT GOALS

In September 2015, 193 countries agreed to adopt a set of global goals to end
poverty, protect the planet and ensure prosperity for all. Click on a goal to
the right to explore how our researchers and their work are contributing towards
achieving it.

 *  * 6 Profiles
    * 6 Organisational units
    * 5 Research output

 *  * 18 Profiles
    * 10 Organisational units
    * 53 Research output

 *  * 111 Profiles
    * 31 Organisational units
    * 1 Projects
    * 503 Research output

 *  * 53 Profiles
    * 25 Organisational units
    * 68 Research output

 *  * 44 Profiles
    * 18 Organisational units
    * 1 Projects
    * 68 Research output

 *  * 7 Profiles
    * 5 Organisational units
    * 4 Research output

 *  * 26 Profiles
    * 16 Organisational units
    * 96 Research output

 *  * 36 Profiles
    * 16 Organisational units
    * 1 Projects
    * 76 Research output

 *  * 44 Profiles
    * 14 Organisational units
    * 42 Research output

 *  * 32 Profiles
    * 12 Organisational units
    * 1 Projects
    * 58 Research output

 *  * 42 Profiles
    * 12 Organisational units
    * 28 Research output

 *  * 35 Profiles
    * 10 Organisational units
    * 30 Research output

 *  * 43 Profiles
    * 15 Organisational units
    * 53 Research output

 *  * 16 Profiles
    * 8 Organisational units
    * 30 Research output

 *  * 12 Profiles
    * 4 Organisational units
    * 25 Research output

 *  * 44 Profiles
    * 25 Organisational units
    * 1 Projects
    * 121 Research output

 *  * 9 Profiles
    * 5 Organisational units
    * 23 Research output


COLLABORATIONS AND TOP RESEARCH AREAS FROM THE LAST FIVE YEARS

Click dots and donuts to bring up details or Select a country/territory from the
list


DIVE INTO DETAILS

Select a country/territory to view shared publications and projects

Close

Select a country/territory from the list



Powered by Pure, Scopus & Elsevier Fingerprint Engine™

All content on this site: Copyright © 2024 Elsevier B.V. or its licensors and
contributors. All rights are reserved, including those for text and data mining,
AI training, and similar technologies. For all open access content, the Creative
Commons licensing terms apply

We use cookies to help provide and enhance our service and tailor content. By
continuing you agree to the use of cookies

Cookie settings | Your Privacy Choices

Log in to Pure



South East Technological University data protection policy

About web accessibility





Report vulnerability

Contact us


We use cookies to analyse and improve our service.Cookie Policy
Cookies Settings Accept All Cookies



COOKIE PREFERENCE CENTRE

We process your information to deliver content, extract insights, and generate
reports to understand service usage; and/or access or store information on
devices for that purpose. See the below section for more information, or to
change our default settings.

You may also be able to exercise your privacy choices as described in our
Privacy Policy
Cookie Policy
Allow All


MANAGE CONSENT PREFERENCES

Back Button


COOKIE LIST



Search Icon
Filter Icon

Clear
checkbox label label
Apply Cancel
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

Confirm My Choices