935 resultados para Computer systems organization: general-emerging technologies


Relevância:

100.00% 100.00%

Publicador:

Resumo:

The goal of the work presented in this paper is to provide mobile platforms within our campus with a GPS based data service capable of supporting precise outdoor navigation. This can be achieved by providing campus-wide access to real time Differential GPS (DGPS) data. As a result, we designed and implemented a three-tier distributed system that provides Internet data links between remote DGPS sources and the campus and a campus-wide DGPS data dissemination service. The Internet data link service is a two-tier client/server where the server-side is connected to the DGPS station and the client-side is located at the campus. The campus-wide DGPS data provider disseminates the DGPS data received at the campus via the campus Intranet and via a wireless data link. The wireless broadcast is intended for portable receivers equipped with a DGPS wireless interface and the Intranet link is provided for receivers with a DGPS serial interface. The application is expected to provide adequate support for accurate outdoor campus navigation tasks.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The project started in 2009 with the support of DAAD in Germany and CRUP in Portugal under the “Collaborative German-Portuguese University Actions” programme. One central goal is the further development of a theory of technology assessment applied to robotics and autonomous systems in general that reflects in its methodology the changing conditions of knowledge production in modern societies and the emergence of new robotic technologies and of associated disruptive changes. Relevant topics here are handling broadened future horizons and new clusters of science and technology (medicine, engineering, interfaces, industrial automation, micro-devices, security and safety), as well as new governance structures in policy decision making concerning research and development (R

Relevância:

100.00% 100.00%

Publicador:

Resumo:

International Conference on Emerging Technologies and Factory Automation (ETFA 2015), Industrial Communication Technologies and Systems, Luxembourg, Luxembourg.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

This paper analyzes the signals captured during impacts and vibrations of a mechanical manipulator. The Fourier Transform of eighteen different signals are calculated and approximated by trendlines based on a power law formula. A sensor classification scheme based on the frequency spectrum behavior is presented.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Dissertation submitted in partial fulfillment of the requirements for the Degree of Master of Science in Geospatial Technologies.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

A gestão e monitorização de redes é uma necessidade fundamental em qualquer organização, quer seja grande ou pequena. A sua importância tem de ser refletida na eficiência e no aumento de informação útil disponível, contribuindo para uma maior eficácia na realização das tarefas em ambientes tecnologicamente avançados, com elevadas necessidades de desempenho e disponibilidade dos recursos dessa tecnologia. Para alcançar estes objetivos é fundamental possuir as ferramentas de gestão de redes adequadas. Nomeadamente ferramentas de monitorização. A classificação de tráfego também se revela fundamental para garantir a qualidade das comunicações e prevenir ataques indesejados aumentando assim a segurança nas comunicações. Paralelamente, principalmente em organizações grandes, é relevante a inventariação dos equipamentos utilizados numa rede. Neste trabalho pretende-se implementar e colocar em funcionamento um sistema autónomo de monitorização, classificação de protocolos e realização de inventários. Todas estas ferramentas têm como objetivo apoiar os administradores e técnicos de sistemas informáticos. Os estudos das aplicações que melhor se adequam à realidade da organização culminaram num acréscimo de conhecimento e aprendizagem que irão contribuir para um melhor desempenho da rede em que o principal beneficiário será o cidadão.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The use of natural pigments instead of synthetic colourants is receiving growing interest in the food industry. In this field, cactus pears (Opuntia spp.) have been identified to be a promising betalainic crops covering a wide coloured spectrum. The aim of this work was to develop adequate clean and mild methodologies for the isolation and encapsulation of betacyanins, from cactus pear fruits (Opuntia spp.). Firstly, two different emerging technologies, namely PLE (Pressurized Liquid Extraction) and HPCDAE (High Pressure Carbon Dioxide-Assisted Extraction), were exploited to isolation of betacyanins form cactus pear fruits. Different process conditions were tested for the maximum recovery of betacyanins. Results showed that highest extraction yields were achieved for HPCDAE and mass ratio of pressurized carbon dioxide vs. acidified water was the parameter that most affected the betacyanins extraction. At optimum conditions of HPCDAE, Opuntia spp. extract presented a total betacyanin content of 211 ± 10 mg/100 g whereas extracts obtained using conventional extraction, PLE in static and in dynamic mode presented a total betacyanin content of 85 ± 3, 191 ± 2 and 153 ± 5 mg/100 g, respectively. HPCDAE has proven to be a successful technology to extract betacyanins from Opuntia spp. fruits. Afterward, Supercritical Fluid Technology was exploited to develop lipidic particles of betalain-rich extract. A betacyanin-rich conventional extract was encapsulated by PGSS® (Particles from Gas Saturated Solutions) technique. Different process conditions were tested in order to model the encapsulation of betacyanins. The pressure had a negative effect on betacyanin encapsulation. Lower pressures leads to an increase in the betacyanin encapsulation. This effect was more pronounced at higher temperatures and lower equilibrium time. At these conditions, Opuntia spp. particles presented 64.4 ± 4.5 mg/100 g and high antioxidant capacity. When compared with the Opuntia spp. dried extract, lipidic particles contributed to a better homogenization of the pink colour after incorporation in ice cream.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Current computer systems have evolved from featuring only a single processing unit and limited RAM, in the order of kilobytes or few megabytes, to include several multicore processors, o↵ering in the order of several tens of concurrent execution contexts, and have main memory in the order of several tens to hundreds of gigabytes. This allows to keep all data of many applications in the main memory, leading to the development of inmemory databases. Compared to disk-backed databases, in-memory databases (IMDBs) are expected to provide better performance by incurring in less I/O overhead. In this dissertation, we present a scalability study of two general purpose IMDBs on multicore systems. The results show that current general purpose IMDBs do not scale on multicores, due to contention among threads running concurrent transactions. In this work, we explore di↵erent direction to overcome the scalability issues of IMDBs in multicores, while enforcing strong isolation semantics. First, we present a solution that requires no modification to either database systems or to the applications, called MacroDB. MacroDB replicates the database among several engines, using a master-slave replication scheme, where update transactions execute on the master, while read-only transactions execute on slaves. This reduces contention, allowing MacroDB to o↵er scalable performance under read-only workloads, while updateintensive workloads su↵er from performance loss, when compared to the standalone engine. Second, we delve into the database engine and identify the concurrency control mechanism used by the storage sub-component as a scalability bottleneck. We then propose a new locking scheme that allows the removal of such mechanisms from the storage sub-component. This modification o↵ers performance improvement under all workloads, when compared to the standalone engine, while scalability is limited to read-only workloads. Next we addressed the scalability limitations for update-intensive workloads, and propose the reduction of locking granularity from the table level to the attribute level. This further improved performance for intensive and moderate update workloads, at a slight cost for read-only workloads. Scalability is limited to intensive-read and read-only workloads. Finally, we investigate the impact applications have on the performance of database systems, by studying how operation order inside transactions influences the database performance. We then propose a Read before Write (RbW) interaction pattern, under which transaction perform all read operations before executing write operations. The RbW pattern allowed TPC-C to achieve scalable performance on our modified engine for all workloads. Additionally, the RbW pattern allowed our modified engine to achieve scalable performance on multicores, almost up to the total number of cores, while enforcing strong isolation.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

A therapeutic deep eutectic system (THEDES) is here defined as a deep eutectic solvent (DES) having an active pharmaceutical ingredient (API) as one of the components. In this work, THEDESs are proposed as enhanced transporters and delivery vehicles for bioactive molecules. THEDESs based on choline chloride (ChCl) or menthol conjugated with three different APIs, namely acetylsalicylic acid (AA), benzoic acid (BA) and phenylacetic acid (PA), were synthesized and characterized for thermal behaviour, structural features, dissolution rate and antibacterial activity. Differential scanning calorimetry and polarized optical microscopy showed that ChCl:PA (1:1), ChCl:AA (1:1), menthol:AA (3:1), menthol:BA (3:1), menthol:PA (2:1) and menthol:PA (3:1) were liquid at room temperature. Dissolution studies in PBS led to increased dissolution rates for the APIs when in the form of THEDES, compared to the API alone. The increase in dissolution rate was particularly noticeable for menthol-based THEDES. Antibacterial activity was assessed using both Gram-positive and Gram-negative model organisms. The results show that all the THEDESs retain the antibacterial activity of the API. Overall, our results highlight the great potential of THEDES as dissolution enhancers in the development of novel and more effective drug delivery systems.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Tese de Doutoramento em Engenharia Eletrónica e Computadores.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The purpose of this study was to evaluate the determinism of the AS-lnterface network and the 3 main families of control systems, which may use it, namely PLC, PC and RTOS. During the course of this study the PROFIBUS and Ethernet field level networks were also considered in order to ensure that they would not introduce unacceptable latencies into the overall control system. This research demonstrated that an incorrectly configured Ethernet network introduces unacceptable variable duration latencies into the control system, thus care must be exercised if the determinism of a control system is not to be compromised. This study introduces a new concept of using statistics and process capability metrics in the form of CPk values, to specify how suitable a control system is for a given control task. The PLC systems, which were tested, demonstrated extremely deterministic responses, but when a large number of iterations were introduced in the user program, the mean control system latency was much too great for an AS-I network. Thus the PLC was found to be unsuitable for an AS-I network if a large, complex user program Is required. The PC systems, which were tested were non-deterministic and had latencies of variable duration. These latencies became extremely exaggerated when a graphing ActiveX was included in the control application. These PC systems also exhibited a non-normal frequency distribution of control system latencies, and as such are unsuitable for implementation with an AS-I network. The RTOS system, which was tested, overcame the problems identified with the PLC systems and produced an extremely deterministic response, even when a large number of iterations were introduced in the user program. The RTOS system, which was tested, is capable of providing a suitable deterministic control system response, even when an extremely large, complex user program is required.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

The overall purpose of this study was to develop a thorough inspection regime for onsite wastewater treatment systems, which is practical and could be implemented on all site conditions across the country. With approximately 450,000 onsite wastewater treatment systems in Ireland a risk based methodology is required for site selection. This type of approach will identify the areas with the highest potential risk to human health and the environment and these sites should be inspected first. In order to gain the required knowledge to develop an inspection regime in-depth and extensive research was earned out. The following areas of pertinent interest were examined and reviewed, history of domestic wastewater treatment, relevant wastewater legislation and guidance documents and potential detrimental impacts. Analysis of a questionnaire from a prior study, which assessed the resources available and the types of inspections currently undertaken by Local authorities was carried out. In addition to the analysis of the questionnaire results, interviews were carried out with several experts involved in the area of domestic wastewater treatment. The interview focussed on twelve key questions which were directed towards the expert’s opinions on the vital aspects of developing an inspection regime. The background research, combined with the questionnaire analysis and information from the interviews provided a solid foundation for the development of an inspection regime. Chapter 8 outlines the inspection regime which has been developed for this study. The inspection regime includes a desktop study, consultation with the homeowners, visual site inspection, non-invasive site tests, and inspection of the treatment systems. The general opinion from the interviews carried out, was that a standardised approach for the inspections was necessary. For this reason an inspection form was produced which provides a standard systematic approach for inspectors to follow. This form is displayed in Appendix 3. The development of a risk based methodology for site selection was discussed and a procedure similar in approach to the Geological Survey of Irelands Groundwater Protection Schemes was proposed. The EPA is currently developing a risk based methodology, but it is not available to the general public yet. However, the EPA provided a copy of a paper outlining the key aspects of their methodology. The methodology will use risk maps which take account of the following parameters: housing density, areas with inadequate soil conditions, risk of water pollution through surface and subsurface pathways. Sites identified with having the highest potential risk to human health and the environment shall be inspected first. Based on the research carried out a number of recommendations were made which are outlined in Chapter 10. The principle conclusion was that, if these systems fail to operate satisfactorily, home owners need to understand that these systems dispose of the effluent to the 'ground' and the effluent becomes part of the hydrological cycle; therefore, they are a potential hazard to the environment and human health. It is the owners, their families and their neighbours who will be at most immediate risk.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

As computer chips implementation technologies evolve to obtain more performance, those computer chips are using smaller components, with bigger density of transistors and working with lower power voltages. All these factors turn the computer chips less robust and increase the probability of a transient fault. Transient faults may occur once and never more happen the same way in a computer system lifetime. There are distinct consequences when a transient fault occurs: the operating system might abort the execution if the change produced by the fault is detected by bad behavior of the application, but the biggest risk is that the fault produces an undetected data corruption that modifies the application final result without warnings (for example a bit flip in some crucial data). With the objective of researching transient faults in computer system’s processor registers and memory we have developed an extension of HP’s and AMD joint full system simulation environment, named COTSon. This extension allows the injection of faults that change a single bit in processor registers and memory of the simulated computer. The developed fault injection system makes it possible to: evaluate the effects of single bit flip transient faults in an application, analyze an application robustness against single bit flip transient faults and validate fault detection mechanism and strategies.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

Aquest treball fi de carrera tracta sobre les normes d'accessibilitat WCAG 2.0 ("Web Content Accessibility Guidelines"). Són una sèrie de pautes i recomanacions per fer el contingut web més accessible, sobretot a una gamma més àmplia de persones amb discapacitat, com ceguesa i baixa visió, sordesa i la pèrdua d'audició, problemes d'aprenentatge, limitacions cognitives, limitacions de moviments, problemes de parla, fotosensibilitat i combinacions d'aquestes. Seguint aquestes directrius també fan sovint el contingut del seu web més usable per als usuaris en general.Les WCAG 2.0, recomanació oficial des del 11 de desembre de 2008, s'organitzen en 4 principis fonamentals per a l'accessibilitat del contingut: perceptible, operable, comprensible i robust.En total conformen 12 pautes o directrius (guidelines), els dos primers principis tenen quatre pautes associades, el tercer té tres i l'últim una pauta. Aquestes pautes proporcionen els objectius bàsics per fer el contingut accessible, i serveixen per comprendre els criteris d'èxit i implementar-los. S'han definit 60 criteris d'èxit o punts de comprovació que defineixen el nivell d'accessibilitat (A, AA o AAA).Per altra banda, s'analitzaran alternatives al programari que empra la UOC, Dspace, com a repositori de documentació. D'aquestes alternatives es valorarà sobretot l'aspecte d'accessibilitat per tal de determinar si l'elecció del Dspace ha estat l'opció més adient. També es s'analitzaran algunes planes del repositori de la UOC per tal de verificar el nivell de compliment de de les WCAG 2.0.Al mateix temps es farà una recerca d'eines que ens puguin ajudar en l'avaluació de l'accessibilitat i s'anomenaran en els punts que ens puguin ajudar cadascuna d'aquestes.

Relevância:

100.00% 100.00%

Publicador:

Resumo:

L'objectiu principal d'aquest treball de final de carrera és estudiar la usabilitat en el programari en general i específicament quina relació té amb el programari mèdic.