Search results for: high-availability server and storage
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 2270

Search results for: high-availability server and storage

860 Neural Networks-based Acoustic Annoyance Model for Laptop Hard Disk Drive

Authors: Yichao Ma, Chengsiong Chin, Wailok Woo

Abstract:

Since the last decade, there has been a rapid growth in digital multimedia, such as high-resolution media files and three-dimentional movies. Hence, there is a need for large digital storage such as Hard Disk Drive (HDD). As such, users expect to have a quieter HDD in their laptop. In this paper, a jury test has been conducted on a group of 34 people where 17 of them are students who is the potential consumer, and the remaining are engineers who know the HDD. A total 13 HDD sound samples have been selected from over hundred HDD noise recordings. These samples are selected based on an agreed subjective feeling. The samples are played to the participants using head acoustic playback system which enabled them to experience as similar as possible the same environment as have been recorded. Analysis has been conducted and the obtained results have indicated different group has different perception over the noises. Two neural network-based acoustic annoyance models are established based on back propagation neural network. Four psychoacoustic metrics, loudness, sharpness, roughness and fluctuation strength, are used as the input of the model, and the subjective evaluation results are taken as the output. The developed models are reasonably accurate in simulating both training and test samples.

Keywords: hdd noise, jury test, neural network model, psychoacoustic annoyance

Procedia PDF Downloads 409
859 Effect of Additives on Post-hydrogen Decompression Microstructure and Mechanical Behaviour of PA11 Involved in Type-IV Hydrogen Tank Liners

Authors: Mitia Ramarosaona, Sylvie Castagnet, Damien Halm, Henri-Alexandre Cayzac, Nicolas Dufaure, Philippe Papin

Abstract:

In light of the ongoing energy transition, 'Infrastructure developments' for hydrogen transportation and storage raise studies on the materials employed for hyperbaric vessels. Type IV tanks represent the most mature choice for gaseous hydrogen storage at high pressure – 70MPa. These tanks are made of a composite shell and an internal hydrogen-exposed polymer liner. High pressure conditions lead to severe mechanical loading requiring high resistance. Liner is in contact with hydrogen and undergoes compression – decompression cycles during system filling and emptying. Stresses induced by this loading, coupled with hydrogen diffusion, were found to cause microstructural changes and degradation of mechanical behaviour after decompression phase in some studies on HDPE. These phenomena are similar to those observed in elastomeric components like sealing rings, which can affect permeability and lead to their failure. They may lead to a hydrogen leak, compromising security and tightness of the tank. While these phenomena have been identified in elastomers, they remain less addressed in thermoplastics and consequences post-decompression damages on mechanical behaviour and to the best of author's knowledge was not studied either. Different additives are also included in liner formulation to improve its behaviour. This study aimed to better understand damage micro-mechanisms in PA11s exposed to hydrogen compression-decompression cycles and understand if additives influence their resistance. Samples of pure, plasticized and impact-modified PA11s are exposed to 1, 3 and 8 pressure cycles including hydrogen saturation at 70MPa followed by severe 15-second decompression. After hydrogen exposure and significantly later than full desorption, the residual mechanical behaviour is characterized through impact and monotonic tensile tests, on plain and notched samples. Several techniques of microstructure and micro-nano damage characterization are carried out to assess whether changes in macroscopic properties are driven by microstructural changes in the crystalline structure (SAXS-WAXS acquisitions and SEM micrographs). Thanks to WAXS acquisition and microscopic observation, the effects due to additives and pressure consequences can be decorrelated. Pure PA11 and PA11 with a low percentage of additives show an increase in stress level at the first yielding point after hydrogen cycles. The amplitude of the stress increase is more important in formulation with additives because of changes in PA11 matrix behavior and environment created by additives actions. Plasticizer modifies chain mobility leading to microstructure changes while other additives, more ductile than PA11, is able to cavitate inside PA11 matrix when undergoing decompression. On plasticized formulation, plasticizer migration are suspected to enhance impact of hydrogen cycling on mechanical behaviour. Compared to the literature on HDPE and elastomers, no damages like cavitation or cracking could be evidenced from SAXS experiments on every PA11 formulation tested. In perspectives, on all formulation, experimental work is underway to confirm influence of residual pressure level after decompression on post-decompression damages level, the aim is to better understand the factors affecting the mechanical behavior of thermoplastics subject to mechanical solicitation from decompression in hydrogen tank liners, not mechanical behaviour of liner in hydrogen tanks directly.

Keywords: additives, hydrogen tank liner, microstructural analysis, PA11

Procedia PDF Downloads 12
858 PhilSHORE: Development of a WebGIS-Based Marine Spatial Planning Tool for Tidal Current Energy Resource Assessment and Site Suitability Analysis

Authors: Ma. Rosario Concepcion O. Ang, Luis Caezar Ian K. Panganiban, Charmyne B. Mamador, Oliver Dan G. De Luna, Michael D. Bausas, Joselito P. Cruz

Abstract:

PhilSHORE is a multi-site, multi-device and multi-criteria decision support tool designed to support the development of tidal current energy in the Philippines. Its platform is based on Geographic Information Systems (GIS) which allows for the collection, storage, processing, analyses and display of geospatial data. Combining GIS tools with open source web development applications, PhilSHORE becomes a webGIS-based marine spatial planning tool. To date, PhilSHORE displays output maps and graphs of power and energy density, site suitability and site-device analysis. It enables stakeholders and the public easy access to the results of tidal current energy resource assessments and site suitability analyses. Results of the initial development shows PhilSHORE is a promising decision support tool for ORE project developments.

Keywords: gis, site suitability analysis, tidal current energy resource assessment, webgis

Procedia PDF Downloads 508
857 Automatic Aggregation and Embedding of Microservices for Optimized Deployments

Authors: Pablo Chico De Guzman, Cesar Sanchez

Abstract:

Microservices are a software development methodology in which applications are built by composing a set of independently deploy-able, small, modular services. Each service runs a unique process and it gets instantiated and deployed in one or more machines (we assume that different microservices are deployed into different machines). Microservices are becoming the de facto standard for developing distributed cloud applications due to their reduced release cycles. In principle, the responsibility of a microservice can be as simple as implementing a single function, which can lead to the following issues: - Resource fragmentation due to the virtual machine boundary. - Poor communication performance between microservices. Two composition techniques can be used to optimize resource fragmentation and communication performance: aggregation and embedding of microservices. Aggregation allows the deployment of a set of microservices on the same machine using a proxy server. Aggregation helps to reduce resource fragmentation, and is particularly useful when the aggregated services have a similar scalability behavior. Embedding deals with communication performance by deploying on the same virtual machine those microservices that require a communication channel (localhost bandwidth is reported to be about 40 times faster than cloud vendor local networks and it offers better reliability). Embedding can also reduce dependencies on load balancer services since the communication takes place on a single virtual machine. For example, assume that microservice A has two instances, a1 and a2, and it communicates with microservice B, which also has two instances, b1 and b2. One embedding can deploy a1 and b1 on machine m1, and a2 and b2 are deployed on a different machine m2. This deployment configuration allows each pair (a1-b1), (a2-b2) to communicate using the localhost interface without the need of a load balancer between microservices A and B. Aggregation and embedding techniques are complex since different microservices might have incompatible runtime dependencies which forbid them from being installed on the same machine. There is also a security concern since the attack surface between microservices can be larger. Luckily, container technology allows to run several processes on the same machine in an isolated manner, solving the incompatibility of running dependencies and the previous security concern, thus greatly simplifying aggregation/embedding implementations by just deploying a microservice container on the same machine as the aggregated/embedded microservice container. Therefore, a wide variety of deployment configurations can be described by combining aggregation and embedding to create an efficient and robust microservice architecture. This paper presents a formal method that receives a declarative definition of a microservice architecture and proposes different optimized deployment configurations by aggregating/embedding microservices. The first prototype is based on i2kit, a deployment tool also submitted to ICWS 2018. The proposed prototype optimizes the following parameters: network/system performance, resource usage, resource costs and failure tolerance.

Keywords: aggregation, deployment, embedding, resource allocation

Procedia PDF Downloads 181
856 Reducing Phytic Acid in Rice Grain by Targeted Mutagenesis of a Phospholipase D Gene

Authors: Muhammad Saad Shoaib Khan, Rasbin Basnet, Qingyao Shu

Abstract:

Phospholipids are one of the major classes of lipid comprising 10% of total grain lipid in rice. Phospholipids are the main phosphorus containing lipid in the rice endosperm, contributing to rice palatability and seed storage property. However, in the rice grain, the majority of phosphorus occur in the form of phytic acid and are highly abundant in the bran. Phytic acid, also known as hexaphosphorylated inositol (IP6), are strong chelating agents which reduces the bioavailability of essential dietary nutrients and are therefore less desirable by rice breeders. We used the CRISPR/Cas9 system to generate mutants of a phospholipase D gene (PLDα1), which is responsible for the degradation of phospholipids into phosphatidic acid (PA). In the mutants, we found a significant reduction in the concentration of phytic acid in the grain as compared to the wild-type. The biochemical analysis of the PLDα1 mutants showed that the decrease in production of phosphatidic acid is due to reduced accumulation of CDP-diacylglycerolderived phosphatidylinositol (PI), ultimately leading to lower accumulation of phytic acid in mutants. These results showed that loss of function of PLD in rice leads to lower production of phytic acid, suggesting the potential application of Ospldα1 in breeding rice with less phytic acid.

Keywords: CRISPR/Cas9, phospholipase D, phytic acid, rice

Procedia PDF Downloads 139
855 Electronic Nose for Monitoring Fungal Deterioration of Stored Rapeseed

Authors: Robert Rusinek, Marek Gancarz, Jolanta Wawrzyniak, Marzena Gawrysiak-Witulska, Dariusz Wiącek, Agnieszka Nawrocka

Abstract:

Investigations were performed to examine the possibility of using an electronic nose to monitor the development of fungal microflora during the first eighteen days of rapeseed storage. The Cyranose 320 device with polymer-composite sensors was used. Each sample of infected material was divided into three parts, and the degree of spoilage was measured in three ways: analysis of colony forming units (CFU), determination of ergosterol content (ERG), and measurement with the eNose. Principal component analysis (PCA) was performed on the generated patterns of signals, and six groups of different spoilage levels were isolated. The electronic nose with polymer-composite sensors under laboratory conditions distinguished between species of spoiled and unspoiled seeds with 100% accuracy. Despite some minor differences in the CFU and ergosterol content, the electronic nose provided responses correctly corresponding to the level of spoilage with 85% accuracy. Therefore, the main conclusion from the study is that the electronic nose is a promising tool for quick and non-destructive detection of the level of oil seed spoilage. The research was supported by the National Centre for Research and Development (NCBR), Grant No. PBS2/A8/22/2013.

Keywords: colony forming units, electronic nose, ergosterol, rapeseed

Procedia PDF Downloads 302
854 The Prospects of Optimized KOH/Cellulose 'Papers' as Hierarchically Porous Electrode Materials for Supercapacitor Devices

Authors: Dina Ibrahim Abouelamaiem, Ana Jorge Sobrido, Magdalena Titirici, Paul R. Shearing, Daniel J. L. Brett

Abstract:

Global warming and scarcity of fossil fuels have had a radical impact on the world economy and ecosystem. The urgent need for alternative energy sources has hence elicited an extensive research for exploiting efficient and sustainable means of energy conversion and storage. Among various electrochemical systems, supercapacitors attracted significant attention in the last decade due to their high power supply, long cycle life compared to batteries and simple mechanism. Recently, the performance of these devices has drastically improved, as tuning of nanomaterials provided efficient charge and storage mechanisms. Carbon materials, in various forms, are believed to pioneer the next generation of supercapacitors due to their attractive properties that include high electronic conductivities, high surface areas and easy processing and functionalization. Cellulose has eco-friendly attributes that are feasible to replace man-made fibers. The carbonization of cellulose yields carbons, including activated carbon and graphite fibers. Activated carbons successively are the most exploited candidates for supercapacitor electrode materials that can be complemented with pseudocapacitive materials to achieve high energy and power densities. In this work, the optimum functionalization conditions of cellulose have been investigated for supercapacitor electrode materials. The precursor was treated with potassium hydroxide (KOH) at different KOH/cellulose ratios prior to the carbonization process in an inert nitrogen atmosphere at 850 °C. The chalky products were washed, dried and characterized with different techniques including transmission electron microscopy (TEM), x-ray tomography and nitrogen adsorption-desorption isotherms. The morphological characteristics and their effect on the electrochemical performances were investigated in two and three-electrode systems. The KOH/cellulose ratios of 0.5:1 and 1:1 exhibited the highest performances with their unique hierarchal porous network structure, high surface areas and low cell resistances. Both samples acquired the best results in three-electrode systems and coin cells with specific gravimetric capacitances as high as 187 F g-1 and 20 F g-1 at a current density of 1 A g-1 and retention rates of 72% and 70%, respectively. This is attributed to the morphology of the samples that constituted of a well-balanced micro-, meso- and macro-porosity network structure. This study reveals that the electrochemical performance doesn’t solely depend on high surface areas but also an optimum pore size distribution, specifically at low current densities. The micro- and meso-pore contribution to the final pore structure was found to dominate at low KOH loadings, reaching ‘equilibrium’ with macropores at the optimum KOH loading, after which macropores dictate the porous network. The wide range of pore sizes is detrimental for the mobility and penetration of electrolyte ions in the porous structures. These findings highlight the influence of various morphological factors on the double-layer capacitances and high performance rates. In addition, they open a platform for the investigation of the optimized conditions for double-layer capacitance that can be coupled with pseudocapacitive materials to yield higher energy densities and capacities.

Keywords: carbon, electrochemical performance, electrodes, KOH/cellulose optimized ratio, morphology, supercapacitor

Procedia PDF Downloads 201
853 Disperse Innovation in the Turning German Energy Market

Authors: J. Gochermann

Abstract:

German energy market is under historical change. Turning-off the nuclear power plants and intensive subsidization of the renewable energies causes a paradigm change from big central energy production and distribution to more local structures, bringing the energy production near to the consumption. The formerly big energy market with only a few big energy plants and grid operating companies is changing into a disperse market with growing numbers of small and medium size companies (SME) generating new value-added products and services. This change in then energy market, in Germany called the “Energiewende”, inverts also the previous innovation system. Big power plants and large grids required also big operating companies. Innovations in the energy market focused mainly on big projects and complex energy technologies. Innovation in the new energy market structure is much more dispersed. Increasing number of SME is now able to develop energy production and storage technologies, smart technologies to control the grids, and numerous new energy related services. Innovation is now regional distributed, which is a remarkable problem for the old big energy companies. The paper will explain the change in the German energy market and the paradigm change as well as the consequences for the innovation structure in the German energy market. It will show examples how SME participate from this change and how innovation systems, as well for the big companies and for SME, can be adapted.

Keywords: changing energy markets, disperse innovation, new value-added products and services, SME

Procedia PDF Downloads 333
852 A Customize Battery Management Approach for Satellite

Authors: Muhammad Affan, Muhammad Ilyas Raza, Muhammad Harris Hashmi

Abstract:

This work is attributed to the battery management unit design of student Satellites under Pakistan National Student Satellite Program (PNSSP). The aim has been to design a customized, low-cost, efficient, reliable and less-complex battery management scheme for the Satellite. Nowadays, Lithium Ion (Li-ion) batteries have become the de-facto standard for remote applications, especially for satellites. Li-ion cells are selected for secondary storage. The design also addresses Li-ion safety requirements by monitoring, balancing and protecting cells for safe and prolonged operation. Accurate voltage measurement of individual cells was the main challenge because all the actions triggered were based on the digital voltage measurement. For this purpose, a resistive-divider network is used to maintain simplicity and cost-effectiveness. To cater the problem of insufficient i/o pins on microcontroller, fast multiplexers and de-multiplexers were used. The discrepancy inherited in the given design is the dissipation of heat due to the dissipative resistors. However, it is still considered to be the optimum adoption, considering the simple and cost-effective nature of the passive balancing technique. Furthermore, it is a completely unique solution, customized to meet specific requirements. However, there is still an option for a more advanced and expensive design.

Keywords: satellite, battery module, passive balancing, dissipative

Procedia PDF Downloads 116
851 Analysis of Spamming Threats and Some Possible Solutions for Online Social Networking Sites (OSNS)

Authors: Dilip Singh Sisodia, Shrish Verma

Abstract:

Spamming is the most common issue seen nowadays in the Internet especially in Online Social Networking Sites (like Facebook, Twitter, and Google+ etc.). Spam messages keep wasting Internet bandwidth and the storage space of servers. On social network sites; spammers often disguise themselves by creating fake accounts and hijacking user’s accounts for personal gains. They behave like normal user and they continue to change their spamming strategy. To prevent this, most modern spam-filtering solutions are deployed on the receiver side; they are good at filtering spam for end users. In this paper we are presenting some spamming techniques their behaviour and possible solutions. We have analyzed how Spammers enters into online social networking sites (OSNSs) and how they target it and the techniques they use for it. The five discussed techniques of spamming techniques which are clickjacking, social engineered attacks, cross site scripting, URL shortening, and drive by download. We have used elgg framework for demonstration of some of spamming threats and respective implementation of solutions.

Keywords: online social networking sites, spam, attacks, internet, clickjacking / likejacking, drive-by-download, URL shortening, networking, socially engineered attacks, elgg framework

Procedia PDF Downloads 328
850 Nutritional Potentials of Two Nigerian Green Leafy Vegetables

Authors: Philippa C. Ojimelukwe, Felix C. Okpalanma, Emmanuel A. Mazi

Abstract:

The carotenoid content, vitamins (ascorbic acid, riboflavin, thiamin, niacin and vitamin K) and mineral contents (K, Ca, Mg, Zn and Fe) of raw, cooked (moist heat treatment) and stored Gnetum africanum and Pterocarpus mildbraedii leaves were investigated in the present research. Raw G. africanum contained higher total carotenoids (246.93µg/g edible portion) than P. mildbraedii (83.53µg/g edible portion) However, moist heat treatment significantly improved the total carotenoid content of P. mildbraedii. The carotenoid profiles of P. mildbraedii and G. africanum showed improved contents of beta cryptoxanthin , 9-cis, 11-cis and 13 cis beta carotenes due to moist heat treatment. Lutein contents of the two green leafy vegetables were quite high in raw, heat treated and stored samples. The two green leafy vegetables were good sources of vitamin K (118-120 µg). Moist heat treatment significantly (p < 0.05) increased the mineral contents of P.mildbraedii and G. africanum. The vitamin contents were reduced. Storage at ambient temperature (30oC) in the dark led to good retention of the minerals but not the vitamins.

Keywords: Gnetum africanum, Pterocarpus mildbraedii, carotenoid profile, vitamins, minerals

Procedia PDF Downloads 466
849 A General Framework for Knowledge Discovery Using High Performance Machine Learning Algorithms

Authors: S. Nandagopalan, N. Pradeep

Abstract:

The aim of this paper is to propose a general framework for storing, analyzing, and extracting knowledge from two-dimensional echocardiographic images, color Doppler images, non-medical images, and general data sets. A number of high performance data mining algorithms have been used to carry out this task. Our framework encompasses four layers namely physical storage, object identification, knowledge discovery, user level. Techniques such as active contour model to identify the cardiac chambers, pixel classification to segment the color Doppler echo image, universal model for image retrieval, Bayesian method for classification, parallel algorithms for image segmentation, etc., were employed. Using the feature vector database that have been efficiently constructed, one can perform various data mining tasks like clustering, classification, etc. with efficient algorithms along with image mining given a query image. All these facilities are included in the framework that is supported by state-of-the-art user interface (UI). The algorithms were tested with actual patient data and Coral image database and the results show that their performance is better than the results reported already.

Keywords: active contour, bayesian, echocardiographic image, feature vector

Procedia PDF Downloads 404
848 Biodiesel Production from Animal Fat Using Trans-Esterification Process with Zeolite as a Solid Catalyst to Improve the Efficiency of Production

Authors: Dinda A. Utami, Muhammad N. Alfarizi

Abstract:

The purpose of this study was to determine the ability of zeolite catalyst for the trans- esterification reaction in biodiesel production from animal fat. The ability of the zeolite as a catalyst is determined by the structure and composition of the zeolite. An important factor that determines the properties of zeolites in catalysis includes adsorption capability to the compound of the reactants. Zeolites with a pore size of specific properties selectively adsorbing molecules. A molecule can be adsorbed by either the zeolite cavities if the size and shape of the molecule in accordance with the size and shape of the cavity in the zeolite. At this time, it is common to use homogeneous catalysts for biodiesel. We know these catalysts have some disadvantages in its use. Such as the difficulty of separation of the product with the catalyst, the generation of waste that is harmful to the environment due to residual catalysts can’t be reused, and the difficulty of handling and storage. But nowadays, solid catalyst developed technically to improve the efficiency of biodiesel production. In this case of study, we used trans-esterification process wherein the triglyceride is reacted with an alcohol with zeolite as a solid catalyst and it will produce biodiesel and glycerol as a byproduct. Development of solid catalyst seems to be the perfect solution to address the problems associated with homogeneous catalysts.

Keywords: biodiesel, animal fat, trans esterification, zeolite catalyst

Procedia PDF Downloads 243
847 Response Evaluation of Electronic Nose with Polymer-Composite and Metal Oxide Semiconductor Sensor towards Microbiological Quality of Rapeseed

Authors: Marcin Tadla, Robert Rusinek, Jolanta Wawrzyniak, Marzena Gawrysiak-Witulska, Agnieszka Nawrocka, Marek Gancarz

Abstract:

Rapeseeds were evaluated and classified by the static-headspace sampling method using electronic noses during the 25 days spoilage period. The Cyranose 320 comprising 32 polymer-composite sensors and VCA (Volatile Compound Analyzer - made in Institute of Agrophysics) built of 8 metal-oxide semiconductor (MOS) sensors were used to obtain sensor response (∆R/R). Each sample of spoiled material was divided into three parts and the degree of spoilage was measured four ways: determination of ergosterol content (ERG), colony forming units (CFU) and measurement with both e-noses. The study showed that both devices responsive to changes in the fungal microflora. Cyranose and VCA registered the change of domination microflora of fungi. After 7 days of storage, typical fungi for soil disappeared and appeared typical for storeroom was observed. In both cases, response ∆R/R decreased to the end of experiment, while ERG and JTK increased. The research was supported by the National Centre for Research and Development (NCBR), Grant No. PBS2/A8/22/2013.

Keywords: electronic nose, fungal microflora, metal-oxide sensor, polymer-composite sensors

Procedia PDF Downloads 282
846 Laboratory Model Tests on Encased Group Columns

Authors: Kausar Ali

Abstract:

There are several ground treatment techniques which may meet the twin objectives of increasing the bearing capacity with simultaneous reduction of settlements, but the use of stone columns is one of the most suited techniques for flexible structures such as embankments, oil storage tanks etc. that can tolerate some settlement and used worldwide. However, when the stone columns in very soft soils are loaded; stone columns undergo excessive settlement due to low lateral confinement provided by the soft soil, leading to the failure of the structure. The poor performance of stone columns under these conditions can be improved by encasing the columns with a suitable geosynthetic. In this study, the effect of reinforcement on bearing capacity of composite soil has been investigated by conducting laboratory model tests on floating and end bearing long stone columns with l/d ratio of 12. The columns were reinforced by providing geosynthetic encasement over varying column length (upper 25%, 50%, 75%, and 100% column length). In this study, a group of columns has been used instead of single column, because in the field, columns used for the purpose always remain in groups. The tests indicate that the encasement over the full column length gives higher failure stress as compared to the encasement over the partial column length for both floating and end bearing long columns. The performance of end-bearing columns was found much better than the floating columns.

Keywords: geosynthetic, ground improvement, soft clay, stone column

Procedia PDF Downloads 409
845 Performance Evaluation of Hierarchical Location-Based Services Coupled to the Greedy Perimeter Stateless Routing Protocol for Wireless Sensor Networks

Authors: Rania Khadim, Mohammed Erritali, Abdelhakim Maaden

Abstract:

Nowadays Wireless Sensor Networks have attracted worldwide research and industrial interest, because they can be applied in various areas. Geographic routing protocols are very suitable to those networks because they use location information when they need to route packets. Obviously, location information is maintained by Location-Based Services provided by network nodes in a distributed way. In this paper we choose to evaluate the performance of two hierarchical rendezvous location based-services, GLS (Grid Location Service) and HLS (Hierarchical Location Service) coupled to the GPSR routing protocol (Greedy Perimeter Stateless Routing) for Wireless Sensor Network. The simulations were performed using NS2 simulator to evaluate the performance and power of the two services in term of location overhead, the request travel time (RTT) and the query Success ratio (QSR). This work presents also a new scalability performance study of both GLS and HLS, specifically, what happens if the number of nodes N increases. The study will focus on three qualitative metrics: The location maintenance cost, the location query cost and the storage cost.

Keywords: location based-services, routing protocols, scalability, wireless sensor networks

Procedia PDF Downloads 347
844 Airon Project: IoT-Based Agriculture System for the Optimization of Irrigation Water Consumption

Authors: África Vicario, Fernando J. Álvarez, Felipe Parralejo, Fernando Aranda

Abstract:

The irrigation systems of traditional agriculture, such as gravity-fed irrigation, produce a great waste of water because, generally, there is no control over the amount of water supplied in relation to the water needed. The AIRON Project tries to solve this problem by implementing an IoT-based system to sensor the irrigation plots so that the state of the crops and the amount of water used for irrigation can be known remotely. The IoT system consists of a sensor network that measures the humidity of the soil, the weather conditions (temperature, relative humidity, wind and solar radiation) and the irrigation water flow. The communication between this network and a central gateway is conducted by means of long-range wireless communication that depends on the characteristics of the irrigation plot. The main objective of the AIRON project is to deploy an IoT sensor network in two different plots of the irrigation community of Aranjuez in the Spanish region of Madrid. The first plot is 2 km away from the central gateway, so LoRa has been used as the base communication technology. The problem with this plot is the absence of mains electric power, so devices with energy-saving modes have had to be used to maximize the external batteries' use time. An ESP32 SOC board with a LoRa module is employed in this case to gather data from the sensor network and send them to a gateway consisting of a Raspberry Pi with a LoRa hat. The second plot is located 18 km away from the gateway, a range that hampers the use of LoRa technology. In order to establish reliable communication in this case, the long-term evolution (LTE) standard is used, which makes it possible to reach much greater distances by using the cellular network. As mains electric power is available in this plot, a Raspberry Pi has been used instead of the ESP32 board to collect sensor data. All data received from the two plots are stored on a proprietary server located at the irrigation management company's headquarters. The analysis of these data by means of machine learning algorithms that are currently under development should allow a short-term prediction of the irrigation water demand that would significantly reduce the waste of this increasingly valuable natural resource. The major finding of this work is the real possibility of deploying a remote sensing system for irrigated plots by using Commercial-Off-The-Shelf (COTS) devices, easily scalable and adaptable to design requirements such as the distance to the control center or the availability of mains electrical power at the site.

Keywords: internet of things, irrigation water control, LoRa, LTE, smart farming

Procedia PDF Downloads 60
843 A Method for Harvesting Atmospheric Lightning-Energy and Utilization of Extra Generated Power of Nuclear Power Plants during the Low Energy Demand Periods

Authors: Akbar Rahmani Nejad, Pejman Rahmani Nejad, Ahmad Rahmani Nejad

Abstract:

we proposed the arresting of atmospheric lightning and passing the electrical current of lightning-bolts through underground water tanks to produce Hydrogen and restoring Hydrogen in reservoirs to be used later as clean and sustainable energy. It is proposed to implement this method for storage of extra electrical power (instead of lightning energy) during low energy demand periods to produce hydrogen as a clean energy source to store in big reservoirs and later generate electricity by burning the stored hydrogen at an appropriate time. This method prevents the complicated process of changing the output power of nuclear power plants. It is possible to pass an electric current through sodium chloride solution to produce chlorine and sodium or human waste to produce Methane, etc. however atmospheric lightning is an accidental phenomenon, but using this free energy just by connecting the output of lightning arresters to the output of power plant during low energy demand period which there is no significant change in the design of power plant or have no cost, can be considered completely an economical design

Keywords: hydrogen gas, lightning energy, power plant, resistive element

Procedia PDF Downloads 119
842 Forensic Analysis of Signal Messenger on Android

Authors: Ward Bakker, Shadi Alhakimi

Abstract:

The amount of people moving towards more privacy focused instant messaging applications has grown significantly. Signal is one of these instant messaging applications, which makes Signal interesting for digital investigators. In this research, we evaluate the artifacts that are generated by the Signal messenger for Android. This evaluation was done by using the features that Signal provides to create artifacts, whereafter, we made an image of the internal storage and the process memory. This image was analysed manually. The manual analysis revealed the content that Signal stores in different locations during its operation. From our research, we were able to identify the artifacts and interpret how they were used. We also examined the source code of Signal. Using our obtain knowledge from the source code, we developed a tool that decrypts some of the artifacts using the key stored in the Android Keystore. In general, we found that most artifacts are encrypted and encoded, even after decrypting some of the artifacts. During data visualization, some artifacts were found, such as that Signal does not use relationships between the data. In this research, two interesting groups of artifacts were identified, those related to the database and those stored in the process memory dump. In the database, we found plaintext private- and group chats, and in the memory dump, we were able to retrieve the plaintext access code to the application. Nevertheless, we conclude that Signal contains a wealth of artifacts that could be very valuable to a digital forensic investigation.

Keywords: forensic, signal, Android, digital

Procedia PDF Downloads 66
841 A Review on Existing Challenges of Data Mining and Future Research Perspectives

Authors: Hema Bhardwaj, D. Srinivasa Rao

Abstract:

Technology for analysing, processing, and extracting meaningful data from enormous and complicated datasets can be termed as "big data." The technique of big data mining and big data analysis is extremely helpful for business movements such as making decisions, building organisational plans, researching the market efficiently, improving sales, etc., because typical management tools cannot handle such complicated datasets. Special computational and statistical issues, such as measurement errors, noise accumulation, spurious correlation, and storage and scalability limitations, are brought on by big data. These unique problems call for new computational and statistical paradigms. This research paper offers an overview of the literature on big data mining, its process, along with problems and difficulties, with a focus on the unique characteristics of big data. Organizations have several difficulties when undertaking data mining, which has an impact on their decision-making. Every day, terabytes of data are produced, yet only around 1% of that data is really analyzed. The idea of the mining and analysis of data and knowledge discovery techniques that have recently been created with practical application systems is presented in this study. This article's conclusion also includes a list of issues and difficulties for further research in the area. The report discusses the management's main big data and data mining challenges.

Keywords: big data, data mining, data analysis, knowledge discovery techniques, data mining challenges

Procedia PDF Downloads 92
840 Bifunctional Activity and Stability of Fused Plasmodium falciparum Orotate Phosphoribosyltransferase and Orotidine 5′-Monophosphate Decarboxylase

Authors: Patsarawadee Paojinda, Waranya Imprasittichai, Sudaratana R. Krungkrai, Nirianne Marie Q. Palacpac, Toshihiro Horii, Jerapan Krungkrai

Abstract:

Fusion of the last two enzymes in the pyrimidine biosynthetic pathway in the inversed order by having COOH-terminal orotate phosphoribosyltransferase (OPRT) and NH2-terminal orotidine 5'-monophosphate decarboxylase (OMPDC), as OMPDC-OPRT, are described in many organisms. Here, we produced gene fusions of Plasmodium falciparum OMPDC-OPRT and expressed the bifunctional protein in Escherichia coli. The enzyme was purified to homogeneity using affinity and anion-exchange chromatography, exhibited enzymatic activities and functioned as a dimer. The activities, although unstable, can be stabilized by its substrate and product during purification and long-term storage. Furthermore, the enzyme expressed a perfect catalytic efficiency (kcat/Km). The kcat was selectively enhanced up to 3 orders of magnitude, while the Km was not much affected and remained at low µM levels when compared to the monofunctional enzymes. The fusion of the two enzymes, creating a “super-enzyme” with perfect catalytic power and more flexibility, reflects cryptic relationship of enzymatic reactivaties and metabolic functions on molecular evolution.

Keywords: bifunctional enzyme, orotate phosphoribosyltransferase, orotidine 5'-monophosphate decarboxylase, plasmodium falciparum

Procedia PDF Downloads 269
839 Assessment of Records Management in Registry Department of Kebbi State University of Science and Technology, Aliero Nigeria

Authors: Murtala Aminu, Salisu Adamu Aliero, Adamu Muhammed

Abstract:

Records are a vital asset in ensuring that the institution is governed effectively and efficiently, and is accountable to its staff, students and the community that it serves. The major purpose of this study was to assess record management of the registry department of Kebbi state University of science and technology Aliero. To be able to achieve this objective, research questions were formulated and answers obtained, which centered on records creation, record management policy, challenges facing records management. The review of related literature revealed that there is need for records to be properly managed and in doing so there is need for good records management policy that clearly spells out the various programs required for effective records management. Survey research method was used involving questionnaire, and observation. The findings revealed that the registry department of the University still has a long way to go with respect to day-today records management. The study recommended provision for adequate, modern, safe and functional storage facilities, sufficient and regular funding, recruitment of trained personnel, on the job training for existing staff, computerization of all units records, and uninterrupted power supply to all parts of the unit as a means of ensuring proper records management.

Keywords: records, management, records management policy, registry

Procedia PDF Downloads 300
838 Gariep Dam Basin Management for Satisfying Ecological Flow Requirements

Authors: Dimeji Abe, Nonso Okoye, Gideon Ikpimi, Prince Idemudia

Abstract:

Multi-reservoir optimization operation has been a critical issue for river basin management. Water, as a scarce resource, is in high demand and the problems associated with the reservoir as its storage facility are enormous. The complexity in balancing the supply and demand of this prime resource has created the need to examine the best way to solve the problem using optimization techniques. The objective of this study is to evaluate the performance of the multi-objective meta-heuristic algorithm for the operation of Gariep Dam for satisfying ecological flow requirements. This study uses an evolutionary algorithm called backtrack search algorithm (BSA) to determine the best way to optimise the dam operations of hydropower production, flood control, and water supply without affecting the environmental flow requirement for the survival of aquatic bodies and sustain life downstream of the dam. To achieve this objective, the operations of the dam that corresponds to different tradeoffs between the objectives are optimized. The results indicate the best model from the algorithm that satisfies all the objectives without any constraint violation. It is expected that hydropower generation will be improved and more water will be available for ecological flow requirements with the use of the algorithm. This algorithm also provides farmers with more irrigation water as well to improve their business.

Keywords: BSA evolutionary algorithm, metaheuristics, optimization, river basin management

Procedia PDF Downloads 231
837 Investigation of Mechanical Properties on natural fiber Reinforced Epoxy Composites

Authors: Gopi Kerekere Rangaraju, Madhu Puttegowda

Abstract:

Natural fibres composites include coir, jute, bagasse, cotton, bamboo, and hemp. Natural fibers come from plants. These fibers contain lingo cellulose in nature. Natural fibers are eco-friendly; lightweight, strong, renewable, cheap, and biodegradable. The natural fibers can be used to reinforce both thermosetting and thermoplastic matrices. Thermosetting resins such as epoxy, polyester, polyurethane, and phenolic are commonly used composites requiring higher performance applications. They provide sufficient mechanical properties, in particular, stiffness and strength at acceptably low-price levels. Recent advances in natural fibers development are genetic engineering. The composites science offers significant opportunities for improved materials from renewable resources with enhanced support for global sustainability. Natural fibers composites are attractive to industry because of their low density and ecological advantages over conventional composites. These composites are gaining importance due to their non-carcinogenic and bio-degradable nature. Natural fibers composites are a very costeffective material, especially in building and construction, packaging, automobile and railway coach interiors, and storage devices. These composites are potential candidates for the replacement of high- cost glass fibers for low load bearing applications. Natural fibers have the advantages of low density, low cost, and biodegradability

Keywords: PMC, basalt, coir, carbon fibers

Procedia PDF Downloads 116
836 Enhancing the Structural, Optical, and Dielectric Properties of the Polymer Nanocomposites Based on Polymer Blend and Gold Nanoparticles for Application in Energy Storage

Authors: Mohammed Omar

Abstract:

Using Chenopodium murale leaf, gold nanoparticles (Au NP's) were biosynthesized effectively in an amicable strategy. The casting process was used to create composite layers of sodium alginate and polyvinyl pyrrolidone. Gold nanoparticles were incorporated into the polyvinyl pyrrolidone (PVP)/ sodium alginate (NaAlg) polymer blend by casting technique. Before and after exposure to different doses of gamma irradiation (2, 4, 6 Mrad), thin films of synthesized nanocomposites were analyzed. XRD revealed the amorphous nature of polymer blends (PVP/ NaAlg), which decreased by both Au NP's embedding and consecutive doses of irradiation. FT-IR spectra revealed interactions and differences within the functional groups of their respective pristine components and dopant nano-fillers. The optical properties of PVP/NaAlg – Au NP thin films (refractive index n, energy gap Eg, Urbach energy Eu) were examined before and after the irradiation procedure. Transmission electron micrographs (TEM) demonstrated a decrease in the size of Au NP’s and narrow size distribution as the gamma irradiation dose was increased. Gamma irradiation was found to influence the electrical conductivity of synthesized composite films, as well as dielectric permittivity (ɛ′) and dielectric losses (ε″).

Keywords: PVP, SPR, γ-radiations, XRD

Procedia PDF Downloads 87
835 Comprehensive Regional Drought Assessment Index

Authors: A. Zeynolabedin, M. A. Olyaei, B. Ghiasi

Abstract:

Drought is an inevitable part of the earth’s climate. It occurs regularly with no clear warning and without recognizing borders. In addition, its impact is cumulative and not immediately discernible. Iran is located in a semi-arid region where droughts occur periodically as natural hazard. Standardized Precipitation Index (SPI), Surface Water Supply Index (SWSI), and Palmer Drought Severity Index (PDSI) are three well-known indices which describe drought severity; each has its own advantages and disadvantages and can be used for specific types of drought. These indices take into account some factors such as precipitation, reservoir storage and discharge, temperature, and potential evapotranspiration in determining drought severity. In this paper, first all three indices are calculated in Aharchay river watershed located in northwestern part of Iran in East Azarbaijan province. Next, based on two other important parameters which are groundwater level and solar radiation, two new indices are defined. Finally, considering all five aforementioned indices, a combined drought index (CDI) is presented and calculated for the region. This combined index is based on all the meteorological, hydrological, and agricultural features of the region. The results show that the most severe drought condition in Aharchay watershed happened in Jun, 2004. The result of this study can be used for monitoring drought and prepare for the drought mitigation planning.

Keywords: drought, GIS, intensity index, regional assessment, variation maps

Procedia PDF Downloads 227
834 An Authentic Algorithm for Ciphering and Deciphering Called Latin Djokovic

Authors: Diogen Babuc

Abstract:

The question that is a motivation of writing is how many devote themselves to discovering something in the world of science where much is discerned and revealed, but at the same time, much is unknown. Methods: The insightful elements of this algorithm are the ciphering and deciphering algorithms of Playfair, Caesar, and Vigenère. Only a few of their main properties are taken and modified, with the aim of forming a specific functionality of the algorithm called Latin Djokovic. Specifically, a string is entered as input data. A key k is given, with a random value between the values a and b = a+3. The obtained value is stored in a variable with the aim of being constant during the run of the algorithm. In correlation to the given key, the string is divided into several groups of substrings, and each substring has a length of k characters. The next step involves encoding each substring from the list of existing substrings. Encoding is performed using the basis of Caesar algorithm, i.e., shifting with k characters. However, that k is incremented by 1 when moving to the next substring in that list. When the value of k becomes greater than b+1, it’ll return to its initial value. The algorithm is executed, following the same procedure, until the last substring in the list is traversed. Results: Using this polyalphabetic method, ciphering and deciphering of strings are achieved. The algorithm also works for a 100-character string. The x character isn’t used when the number of characters in a substring is incompatible with the expected length. The algorithm is simple to implement, but it’s questionable if it works better than the other methods from the point of view of execution time and storage space.

Keywords: ciphering, deciphering, authentic, algorithm, polyalphabetic cipher, random key, methods comparison

Procedia PDF Downloads 88
833 A Cloud Computing System Using Virtual Hyperbolic Coordinates for Services Distribution

Authors: Telesphore Tiendrebeogo, Oumarou Sié

Abstract:

Cloud computing technologies have attracted considerable interest in recent years. Thus, these latters have become more important for many existing database applications. It provides a new mode of use and of offer of IT resources in general. Such resources can be used “on demand” by anybody who has access to the internet. Particularly, the Cloud platform provides an ease to use interface between providers and users, allow providers to develop and provide software and databases for users over locations. Currently, there are many Cloud platform providers support large scale database services. However, most of these only support simple keyword-based queries and can’t response complex query efficiently due to lack of efficient in multi-attribute index techniques. Existing Cloud platform providers seek to improve performance of indexing techniques for complex queries. In this paper, we define a new cloud computing architecture based on a Distributed Hash Table (DHT) and design a prototype system. Next, we perform and evaluate our cloud computing indexing structure based on a hyperbolic tree using virtual coordinates taken in the hyperbolic plane. We show through our experimental results that we compare with others clouds systems to show our solution ensures consistence and scalability for Cloud platform.

Keywords: virtual coordinates, cloud, hyperbolic plane, storage, scalability, consistency

Procedia PDF Downloads 408
832 Application of GIS-Based Construction Engineering: An Electronic Document Management System

Authors: Mansour N. Jadid

Abstract:

This paper describes the implementation of a GIS to provide decision support for successfully monitoring the movements and storage of materials, hence ensuring that finished products travel from the point of origin to the destination construction site through the supply-chain management (SCM) system. This system ensures the efficient operation of suppliers, manufacturers, and distributors by determining the shortest path from the point of origin to the final destination to reduce construction costs, minimize time, and enhance productivity. These systems are essential to the construction industry because they reduce costs and save time, thereby improve productivity and effectiveness. This study describes a typical supply-chain model and a geographical information system (GIS)-based SCM that focuses on implementing an electronic document management system, which maps the application framework to integrate geodetic support with the supply-chain system. This process provides guidance for locating the nearest suppliers to fill the information needs of project members in different locations. Moreover, this study illustrates the use of a GIS-based SCM as a collaborative tool in innovative methods for implementing Web mapping services, as well as aspects of their integration by generating an interactive GIS for the construction industry platform.

Keywords: construction, coordinate, engineering, GIS, management, map

Procedia PDF Downloads 286
831 Fuzzy Adaptive Control of an Intelligent Hybrid HPS (Pvwindbat), Grid Power System Applied to a Dwelling

Authors: A. Derrouazin, N. Mekkakia-M, R. Taleb, M. Helaimi, A. Benbouali

Abstract:

Nowadays the use of different sources of renewable energy for the production of electricity is the concern of everyone, as, even impersonal domestic use of the electricity in isolated sites or in town. As the conventional sources of energy are shrinking, a need has arisen to look for alternative sources of energy with more emphasis on its optimal use. This paper presents design of a sustainable Hybrid Power System (PV-Wind-Storage) assisted by grid as supplementary sources applied to case study residential house, to meet its entire energy demand. A Fuzzy control system model has been developed to optimize and control flow of power from these sources. This energy requirement is mainly fulfilled from PV and Wind energy stored in batteries module for critical load of a residential house and supplemented by grid for base and peak load. The system has been developed for maximum daily households load energy of 3kWh and can be scaled to any higher value as per requirement of individual /community house ranging from 3kWh/day to 10kWh/day, as per the requirement. The simulation work, using intelligent energy management, has resulted in an optimal yield leading to average reduction in cost of electricity by 50% per day.

Keywords: photovoltaic (PV), wind turbine, battery, microcontroller, fuzzy control (FC), Matlab

Procedia PDF Downloads 630