research.itu.edu.tr Open in urlscan Pro
172.64.148.16  Public Scan

Submitted URL: https://itu1773.elsevierpure.com/
Effective URL: https://research.itu.edu.tr/
Submission: On June 21 via api from US — Scanned from DE

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 Istanbul Technical 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.itu.edu.tr/" 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

Search results 13 results
 * Skip to main navigation
 * Skip to search
 * Skip to main content

Istanbul Technical University Home
 *  * English
    * Türkçe


WELCOME TO ISTANBUL TECHNICAL UNIVERSITY

Explore profiles, expertise and research at Istanbul Technical 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

 * 1227 Profiles
 * 81 Research units
 * 4728 Projects
 * 34126 Research output
 * 1476 Prizes
 * 16690 Student theses
 * 656 Press/Media

In today's world where technological competition is at the forefront, R&D is of
critical importance in developing innovative products and ideas for enabling
countries to be at the top of this race. ITU is one of the most significant R&D
institutions in Turkey, due to its scientific background, young and dynamic
students, expert academicians and research infrastructure.
Login to Research Portal

Research with ITU

In today's world where technological competition is at the forefront, R&D is of
critical importance in developing innovative products and ideas for enabling
countries to be at the top of this race. ITU is one of the most significant R&D
institutions in Turkey, due to its scientific background, young and dynamic
students, expert academicians and research infrastructure.

" Since 1773, ITU represents the deepening of knowledge, inspiring
innovationthrough discovery and successful progression of humankind. "









Web address: http://ardek.itu.edu.tr

Contact Us ✉
World 404th
Overall
2023
World 58th
Overall
2023
Ranked 501-600
in the world
2023
World 46th
Greenest Campus Ranking
2023
World 108th
Engineering and Technology
2023
World 221th
Engineering and Technology
2023

ENTREPRENEURSHIP ECOSYSTEM

 * 
 * R&D Application and Research Centers
 * 1773 ITU TEKNOPARK
 * Beehub
 * Sustainability Office
 * Publication Incentive
 * Laboratory Management Office
 * 


UN SUSTAINABLE DEVELOPMENT GOALS (SDGS)

Our mission is to integrate sustainability as a core principle throughout
education, research, and management at Istanbul Technical University. Our vision
is to create a culture of responsibility by integrating the values of
sustainability in all units of Istanbul Technical University to serve as a local
and global model.

 *  * 39 Profiles
    * 15 Research units
    * 43 Research output

 *  * 82 Profiles
    * 20 Research units
    * 136 Research output

 *  * 353 Profiles
    * 39 Research units
    * 932 Research output

 *  * 98 Profiles
    * 29 Research units
    * 140 Research output

 *  * 27 Profiles
    * 12 Research units
    * 41 Research output

 *  * 261 Profiles
    * 37 Research units
    * 1512 Research output

 *  * 525 Profiles
    * 48 Research units
    * 2153 Research output

 *  * 214 Profiles
    * 33 Research units
    * 398 Research output

 *  * 459 Profiles
    * 45 Research units
    * 1284 Research output

 *  * 81 Profiles
    * 16 Research units
    * 136 Research output

 *  * 429 Profiles
    * 42 Research units
    * 1755 Research output

 *  * 316 Profiles
    * 42 Research units
    * 694 Research output

 *  * 248 Profiles
    * 38 Research units
    * 496 Research output

 *  * 194 Profiles
    * 31 Research units
    * 456 Research output

 *  * 111 Profiles
    * 24 Research units
    * 149 Research output

 *  * 51 Profiles
    * 13 Research units
    * 78 Research output

 *  * 648 Profiles
    * 47 Research units
    * 2713 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

 * Faculty (13)
 * Department (54)
 * Institute (6)
 * Research Labs and Centers (1)

 * 13 results
 * Name (ascending)
    * Name(descending)




SEARCH RESULTS


 * FACULTY OF AERONAUTICS AND ASTRONAUTICS
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF ARCHITECTURE
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF CHEMICAL-METALLURGICAL ENGINEERING
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF CIVIL ENGINEERING
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF COMPUTER AND INFORMATICS
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF ELECTRICAL AND ELECTRONICS
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF MANAGEMENT
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF MARITIME
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF MECHANICAL ENGINEERING
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF MINES
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF NAVAL ARCHITECTURE AND MARINE SCIENCES
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF SCIENCE AND LETTERS
   
   Istanbul Technical University
   
   Organisational unit: Faculty


 * FACULTY OF TEXTILE TECHNOLOGIES AND DESIGN
   
   Istanbul Technical University
   
   Organisational unit: Faculty



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

Cookies Settings

Istanbul Technical University - 2024

About web accessibility





Report vulnerability

Contact us




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.
Cookie Policy
Allow All


MANAGE CONSENT PREFERENCES


BACK BUTTON PERFORMANCE COOKIES



Vendor Search Search Icon
Filter Icon

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


 * 33ACROSS
   
   HOST DESCRIPTION
   
   VIEW COOKIES
   
   
    * Name
      cookie name

Confirm My Choices


We use cookies to analyse and improve our service.Cookie Policy

Cookies Settings Reject All Accept All Cookies