Search results for: decision based artificial neural network
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 32978

Search results for: decision based artificial neural network

23648 Relation of Radar and Hail Parameters in the Continetal Part of Croatia

Authors: Damir Počakal

Abstract:

Continental part Croatia is exposed, mainly in the summer months, to the frequent occurrence of severe thunderstorms and hail. In the 1960s, aiming to protect and reduce the damage, an operational hail suppression system was introduced in that area. The current protected area is 26800 km2 and has about 580 hail suppression stations (rockets and ground generators) which are managed with 8 radar centres (S-band radars). In order to obtain objective and precise hailstone measurement for different research studies, hailpads were installed on all this stations in 2001. Additionally the dense hailpad network with the dimensions of 20 km x 30 km (1 hailpad per 4 km2), was established in the area with the highest average number of days with hail in Croatia in 2002. This paper presents analysis of relation between radar measured parameters of Cb cells in the time of hail fall with physical parameters of hail (max. diameter, number of hail stones and kinetic energy) measured on hailpads in period 2002 -2014. In addition are compared radar parameters of Cb cells with and without hail on the ground located at the same time over the polygon area.

Keywords: Cb cell, hail, radar, hailpad

Procedia PDF Downloads 282
23647 Investigating the Effect of Aesthetics of Wisdom and Thought on Islamic-Iranian Architecture and Modern Western Architecture: Considering the Position of Islamic Philosophy and Western Philosophy in the Art of Architecture

Authors: Hamid Mohamad Hosein Zadeh Hashemi

Abstract:

In this article, in order to recognize the value of aesthetics of the place of wisdom and mysticism on Islamic art-architecture, and compare it with the influence of philosophy and thought on the "modern art of architecture" of the West, it examines the position of wisdom and philosophy in art Architecture ". In this regard, one can point out the unique status of "art of architecture" in human societies, which in two cultures of the East and West, based on the ideas of Islamic wisdom and Western thought, has taken a dual path, so that even today, even from the original And the basic "art of architecture" of its primary and academic has turned away and has undergone some kind of transformation. To this end, we examine some of the "aesthetics" positions based on the "art of architecture" in the broad sense of the word, in order to reflect on the historical course of this art, and with regard to the position of Islamic thought and Western thought, each of which originated from, but based on The basis of cultures, climate, and sociology, and others, are ultimately the result of an arbitrary result, namely the achievement of the aesthetic position of wisdom and mysticism on the "Islamic-Iranian" architecture of art "and its opposition to the position of philosophy and thought On modern art of modern architecture of the West.

Keywords: aesthetics, art, philosophy, the art of Architecture, wisdom

Procedia PDF Downloads 230
23646 Water Reclamation from Synthetic Winery Wastewater Using a Fertiliser Drawn Forward Osmosis System Evaluating Aquaporin-Based Biomimetic and Cellulose Triacetate Forward Osmosis Membranes

Authors: Robyn Augustine, Irena Petrinic, Claus Helix-Nielsen, Marshall S. Sheldon

Abstract:

This study examined the performance of two commercial forward osmosis (FO) membranes; an aquaporin (AQP) based biomimetic membrane, and cellulose triacetate (CTA) membrane in a fertiliser is drawn forward osmosis (FDFO) system for the reclamation of water from synthetic winery wastewater (SWW) operated over 24 hr. Straight, 1 M KCl and 1 M NH₄NO₃ fertiliser solutions were evaluated as draw solutions in the FDFO system. The performance of the AQP-based biomimetic and CTA FO membranes were evaluated in terms of permeate water flux (Jw), reverse solute flux (Js) and percentage water recovery (Re). The average water flux and reverse solute flux when using 1 M KCl as a draw solution against controlled feed solution, deionised (DI) water, was 11.65 L/m²h and 3.98 g/m²h (AQP) and 6.24 L/m²h and 2.89 g/m²h (CTA), respectively. Using 1 M NH₄NO₃ as a draw solution yielded average water fluxes and reverse solute fluxes of 10.73 L/m²h and 1.31 g/m²h (AQP) and 5.84 L/m²h and 1.39 g/m²h (CTA), respectively. When using SWW as the feed solution and 1 M KCl and 1 M NH₄NO₃ as draw solutions, respectively, the average water fluxes observed were 8.15 and 9.66 L/m²h (AQP) and 5.02 and 5.65 L/m²h (CTA). Membrane water flux decline was the result of a combined decrease in the effective driving force of the FDFO system, reverse solute flux and organic fouling. Permeate water flux recoveries of between 84-98%, and 83-89% were observed for the AQP-based biomimetic and CTA membrane, respectively after physical cleaning by flushing was employed. The highest water recovery rate of 49% was observed for the 1 M KCl fertiliser draw solution with AQP-based biomimetic membrane and proved superior in the reclamation of water from SWW.

Keywords: aquaporin biomimetic membrane, cellulose triacetate membrane, forward osmosis, reverse solute flux, synthetic winery wastewater and water flux

Procedia PDF Downloads 153
23645 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 187
23644 Performences of Type-2 Fuzzy Logic Control and Neuro-Fuzzy Control Based on DPC for Grid Connected DFIG with Fixed Switching Frequency

Authors: Fayssal Amrane, Azeddine Chaiba

Abstract:

In this paper, type-2 fuzzy logic control (T2FLC) and neuro-fuzzy control (NFC) for a doubly fed induction generator (DFIG) based on direct power control (DPC) with a fixed switching frequency is proposed for wind generation application. First, a mathematical model of the doubly-fed induction generator implemented in d-q reference frame is achieved. Then, a DPC algorithm approach for controlling active and reactive power of DFIG via fixed switching frequency is incorporated using PID. The performance of T2FLC and NFC, which is based on the DPC algorithm, are investigated and compared to those obtained from the PID controller. Finally, simulation results demonstrate that the NFC is more robust, superior dynamic performance for wind power generation system applications.

Keywords: doubly fed induction generator (DFIG), direct power control (DPC), neuro-fuzzy control (NFC), maximum power point tracking (MPPT), space vector modulation (SVM), type 2 fuzzy logic control (T2FLC)

Procedia PDF Downloads 401
23643 A High Compression Ratio for a Losseless Image Compression Based on the Arithmetic Coding with the Sorted Run Length Coding: Meteosat Second Generation Image Compression

Authors: Cherifi Mehdi, Lahdir Mourad, Ameur Soltane

Abstract:

Image compression is the heart of several multimedia techniques. It is used to reduce the number of bits required to represent an image. Meteosat Second Generation (MSG) satellite allows the acquisition of 12 image files every 15 minutes and that results in a large databases sizes. In this paper, a novel image compression method based on the arithmetic coding with the sorted Run Length Coding (SRLC) for MSG images is proposed. The SRLC allows us to find the occurrence of the consecutive pixels of the original image to create a sorted run. The arithmetic coding allows the encoding of the sorted data of the previous stage to retrieve a unique code word that represents a binary code stream in the sorted order to boost the compression ratio. Through this article, we show that our method can perform the best results concerning compression ratio and bit rate unlike the method based on the Run Length Coding (RLC) and the arithmetic coding. Evaluation criteria like the compression ratio and the bit rate allow the confirmation of the efficiency of our method of image compression.

Keywords: image compression, arithmetic coding, Run Length Coding, RLC, Sorted Run Length Coding, SRLC, Meteosat Second Generation, MSG

Procedia PDF Downloads 337
23642 Comparative Analysis of Water-Based Alumina Nanoparticles with Water-Based Cupric Nanoparticles Past an Exponentially Accelerated Vertical Radiative Riga Plate with Heat Transfer

Authors: Kanayo Kenneth Asogwa

Abstract:

The influence of the flow of nanoparticles in nanofluids across a vertical surface is significant, and its application in medical sciences, engineering, pharmaceutical, and food industries is enormous & widely published. However, the comparative examination of alumina nanoparticles with cupric nanoparticles past a rapid progressive Riga plate remains unknown. Thus, this report investigates water-based alumina and cupric nanoparticles passing through an exponentially accelerated Riga plate. Nanofluids containing copper (II) oxide (CuO) and aluminum oxide (Al2O3) nanoparticles are considered. The Laplace transform technique is used to solve the partial differential equations guiding the flow. The effect of various factors on skin friction coefficient, Nusselt number, velocity and temperature profiles is investigated and reported in tabular and graphical form. The upsurge of Modified Hartmann number and radiative impact improves copper (II) oxide nanofluid compared to aluminum oxide nanofluid due to Lorentz force and since CuO is a better heat conductor. At the same time, heat absorption and reactive species favor a slight decline in Alumina nanofluid than Cupric nanofluid in the thermal and velocity fields. The higher density of Cupric nanofluid is enhanced by increasing nanoparticle volume fraction over Alumina nanofluid with a decline in velocity distribution.

Keywords: alumina, cupric, nanoparticles, water-based

Procedia PDF Downloads 189
23641 An Efficient Design of Static Synchronous Series Compensator Based Fractional Order PID Controller Using Invasive Weed Optimization Algorithm

Authors: Abdelghani Choucha, Lakhdar Chaib, Salem Arif

Abstract:

This paper treated the problem of power system stability with the aid of Static Synchronous Series Compensator (SSSC) installed in the transmission line of single machine infinite bus (SMIB) power system. A fractional order PID (FOPID) controller has been applied as a robust controller for optimal SSSC design to control the power system characteristics. Additionally, the SSSC based FOPID parameters are smoothly tuned using Invasive Weed Optimization algorithm (IWO). To verify the strength of the proposed controller, SSSC based FOPID controller is validated in a wide range of operating condition and compared with the conventional scheme SSSC-POD controller. The main purpose of the proposed process is greatly enhanced the dynamic states of the tested system. Simulation results clearly prove the superiority and performance of the proposed controller design.

Keywords: SSSC-FOPID, SSSC-POD, SMIB power system, invasive weed optimization algorithm

Procedia PDF Downloads 178
23640 Cost Effective Real-Time Image Processing Based Optical Mark Reader

Authors: Amit Kumar, Himanshu Singal, Arnav Bhavsar

Abstract:

In this modern era of automation, most of the academic exams and competitive exams are Multiple Choice Questions (MCQ). The responses of these MCQ based exams are recorded in the Optical Mark Reader (OMR) sheet. Evaluation of the OMR sheet requires separate specialized machines for scanning and marking. The sheets used by these machines are special and costs more than a normal sheet. Available process is non-economical and dependent on paper thickness, scanning quality, paper orientation, special hardware and customized software. This study tries to tackle the problem of evaluating the OMR sheet without any special hardware and making the whole process economical. We propose an image processing based algorithm which can be used to read and evaluate the scanned OMR sheets with no special hardware required. It will eliminate the use of special OMR sheet. Responses recorded in normal sheet is enough for evaluation. The proposed system takes care of color, brightness, rotation, little imperfections in the OMR sheet images.

Keywords: OMR, image processing, hough circle trans-form, interpolation, detection, binary thresholding

Procedia PDF Downloads 155
23639 Genome of Bio-Based Construction Adhesives and Complex Rheological Behavior

Authors: Ellie Fini, Mahour Parast, Daniel Oldham, Shahrzad Hosseinnezhad

Abstract:

This paper investigates the relationship between molecular species of four different bio-based adhesives (made from Swine Manure, Miscanthus Pellet, Corn Stover, and Wood Pellet) and their rheological behavior before and after they undergo extensive oxidative aging. To study the effect of oxidative aging on the chemical structure of bio-adhesives, Infrared Attenuated Total Reflectance Spectroscopy (Fourier transform infrared) was utilised. In addition, a Drop Shape Analyser, Rotational Viscometer, and Dynamic Shear Rheometer were used to evaluate the surface properties and rheological behaviour of each bio-adhesive. Overall, bio-adhesives were found to be significantly different in terms of their ageing characteristics. Accordingly, their surface and rheological properties were found to be ranked differently before and after ageing. The results showed that the bio-adhesive from swine manure is less susceptible to aging compared to plant-based bio-oils. This can be further attributed to the chemical structure and the high lipid contents of the bio-adhesive from swine manure, making it less affected by oxidative ageing.

Keywords: bio-adhesive, rheology, bio-mass, material genome

Procedia PDF Downloads 246
23638 Design and Evaluation of Production Performance Dashboard for Achieving Oil and Gas Production Target

Authors: Ivan Ramos Sampe Immanuel, Linung Kresno Adikusumo, Liston Sitanggang

Abstract:

Achieving the production targets of oil and gas in an upstream oil and gas company represents a complex undertaking necessitating collaborative engagement from a multidisciplinary team. In addition to conducting exploration activities and executing well intervention programs, an upstream oil and gas enterprise must assess the feasibility of attaining predetermined production goals. The monitoring of production performance serves as a critical activity to ensure organizational progress towards the established oil and gas performance targets. Subsequently, decisions within the upstream oil and gas management team are informed by the received information pertaining to the respective production performance. To augment the decision-making process, the implementation of a production performance dashboard emerges as a viable solution, providing an integrated and centralized tool. The deployment of a production performance dashboard manifests as an instrumental mechanism fostering a user-friendly interface for monitoring production performance, while concurrently preserving the intrinsic characteristics of granular data. The integration of diverse data sources into a unified production performance dashboard establishes a singular veritable source, thereby enhancing the organization's capacity to uphold a consolidated and authoritative foundation for its business requisites. Additionally, the heightened accessibility of the production performance dashboard to business users constitutes a compelling substantiation of its consequential impact on facilitating the monitoring of organizational targets.

Keywords: production, performance, dashboard, data analytics

Procedia PDF Downloads 53
23637 Enhance Security in XML Databases: XLog File for Severity-Aware Trust-Based Access Control

Authors: A: Asmawi, L. S. Affendey, N. I. Udzir, R. Mahmod

Abstract:

The topic of enhancing security in XML databases is important as it includes protecting sensitive data and providing a secure environment to users. In order to improve security and provide dynamic access control for XML databases, we presented XLog file to calculate user trust values by recording users’ bad transaction, errors and query severities. Severity-aware trust-based access control for XML databases manages the access policy depending on users' trust values and prevents unauthorized processes, malicious transactions and insider threats. Privileges are automatically modified and adjusted over time depending on user behaviour and query severity. Logging in database is an important process and is used for recovery and security purposes. In this paper, the Xlog file is presented as a dynamic and temporary log file for XML databases to enhance the level of security.

Keywords: XML database, trust-based access control, severity-aware, trust values, log file

Procedia PDF Downloads 287
23636 Formulation of Sun Screen Cream and Sun Protecting Factor Activity from Standardized–Partition Compound of Mahkota Dewa Leaf (Phaleria macrocarpa (Scheff.) Boerl.)

Authors: Abdul Karim Zulkarnain, Marchaban, Subagus Wahyono, Ratna Asmah Susidarti

Abstract:

Mahkota Dewa contains phalerin which has activity as sun screen. In this study, 13 formulations of cream oil in water (o/w) were prepared and tested for their physical characteristics. The physical characteristics were then used for determining the optimum formula. This study aimed to explore the physical stability of optimized formulation of cream, its sun protecting factor (SPF) values using in vitro and in vivo tests. The optimum formula of o/w cream were prepared based on Simplex Lattice Design (LSD) method using software Design Expert®. The formulation of o/w cream were varied based on the proportion of cetyl alcohol, mineral oil and tween 80. The difference of physical characteristic of optimum and predicted formula was tested using t-test with significant level of 95%. The optimum formula of o/w cream was the formula which consists of cetyl alcohol 9.71%, mineral oil, 29%, and tween 80 3.29. Based on t-test, there was no significant difference of physical characteristics of optimum and predicted formulation. Viscosity, spread power, adhesive power, and separation volume ratio of o/w at week 0-4 were relatively stable. The o/w creams were relatively stable at extreme temperature. The o/w creams from mahkota dewa, phalerin, and benzophenone have SPF values of 21.32, 33.12, and 42.49, respectively. The formulas did not irritate the skin based on in vivo test.

Keywords: cream, stability, In vitro, In vivo

Procedia PDF Downloads 213
23635 Analysis of Energy Required for the Massive Incorporation of Electric Buses in the City of Ambato - Ecuador

Authors: Paola Quintana, Angélica Vaca, Sebastián Villacres, Henry Acurio

Abstract:

Ecuador through the Organic Law of Energy Efficiency establishes that "Starting in the year 2025, all vehicles that are incorporated into the urban and inter-parroquial public transport service must only be electric”, this marks a foundation for the introduction of electric mobility in the country. The present investigation is based on developing an analysis and projection of the Energy Required for the incorporation of electric buses for public passenger transport in the city of Ambato-Ecuador, taking into account the useful life of the vehicle fleet, number of existing vehicles and analysis of transport routes in the study city. The energy demand based on the vehicular dynamics is analyzed, determination of equations for the calculation of force in the wheel since it is considered a variable of slope due to the fact that this has a great incidence in the autonomy when speaking of electric mobility, later the energy analysis applied to public transport routes, finally a projection of the energy requirement is made based on the change of public transport units according to their useful life.

Keywords: public transport, electric mobility, energy, ecuador

Procedia PDF Downloads 73
23634 Realization of Autonomous Guidance Service by Integrating Information from NFC and MEMS

Authors: Dawei Cai

Abstract:

In this paper, we present an autonomous guidance service by combining the position information from NFC and the orientation information from a 6 axis acceleration and terrestrial magnetism sensor. We developed an algorithm to calculate the device orientation based on the data from acceleration and terrestrial magnetism sensor. If visitors want to know some explanation about an exhibit in front of him, what he has to do is just lift up his mobile device. The identification program will automatically identify the status based on the information from NFC and MEMS, and start playing explanation content for him. This service may be convenient for old people or disables or children.

Keywords: NFC, ubiquitous computing, guide sysem, MEMS

Procedia PDF Downloads 392
23633 Adaptive Process Monitoring for Time-Varying Situations Using Statistical Learning Algorithms

Authors: Seulki Lee, Seoung Bum Kim

Abstract:

Statistical process control (SPC) is a practical and effective method for quality control. The most important and widely used technique in SPC is a control chart. The main goal of a control chart is to detect any assignable changes that affect the quality output. Most conventional control charts, such as Hotelling’s T2 charts, are commonly based on the assumption that the quality characteristics follow a multivariate normal distribution. However, in modern complicated manufacturing systems, appropriate control chart techniques that can efficiently handle the nonnormal processes are required. To overcome the shortcomings of conventional control charts for nonnormal processes, several methods have been proposed to combine statistical learning algorithms and multivariate control charts. Statistical learning-based control charts, such as support vector data description (SVDD)-based charts, k-nearest neighbors-based charts, have proven their improved performance in nonnormal situations compared to that of the T2 chart. Beside the nonnormal property, time-varying operations are also quite common in real manufacturing fields because of various factors such as product and set-point changes, seasonal variations, catalyst degradation, and sensor drifting. However, traditional control charts cannot accommodate future condition changes of the process because they are formulated based on the data information recorded in the early stage of the process. In the present paper, we propose a SVDD algorithm-based control chart, which is capable of adaptively monitoring time-varying and nonnormal processes. We reformulated the SVDD algorithm into a time-adaptive SVDD algorithm by adding a weighting factor that reflects time-varying situations. Moreover, we defined the updating region for the efficient model-updating structure of the control chart. The proposed control chart simultaneously allows efficient model updates and timely detection of out-of-control signals. The effectiveness and applicability of the proposed chart were demonstrated through experiments with the simulated data and the real data from the metal frame process in mobile device manufacturing.

Keywords: multivariate control chart, nonparametric method, support vector data description, time-varying process

Procedia PDF Downloads 286
23632 Sustainable Urban Sewer Systems as Stormwater Management and Control Mechanisms

Authors: Ezequiel Garcia-Rodriguez, Lenin Hernandez-Ferreyra, Luis Ochoa-Franco

Abstract:

The Sustainable Sewer Urban Systems (SSUS) are mechanisms integrated into the cities for manage rain water, reducing its runoff volume and velocity, enhancing the rain water quality and preventing flooding and other catastrophes associated to the rain, as well as improving the energy efficiency. The objective of SSUS is to mimic or to equal the runoff and infiltration natural conditions of the land before its urbanization, reducing runoff that may cause troubles within the houses, as well as flooding. At the same time, energy for warming homes and for pumping and treating water is reduced, contributing to the reduction of CO₂ emissions and therefore contributing to reduce the climate change. This paper contains an evaluation of the advantages that SSUS may offer within a zone of Morelia City, Mexico, applying support tools for decision making. The hydrological conditions prior to and after the urbanization of the study area were analyzed to propose the recommended SSUS. Different types of SSUS were proposed in this case study, assessing their effect on the rainwater flow behavior within the study area. SSUS usage in this case resulted, positively, in an important reduction of the magnitude and velocity of runoff, reducing therefore the risk of flooding. So that, it is recommended the implementation of SSUS in this case.

Keywords: energy efficiency, morelia, sustainablesewer, urban systems

Procedia PDF Downloads 44
23631 Dynamics of Soil Fertility Management in India: An Empirical Analysis

Authors: B. Suresh Reddy

Abstract:

The over dependence on chemical fertilizers for nutrient management in crop production for the last few decades has led to several problems affecting soil health, environment and farmers themselves. Based on the field work done in 2012-13 with 1080 farmers of different size-classes in semi-arid regions of Uttar Pradesh, Jharkhand and Madhya Pradesh states of India, this paper reveals that the farmers in semi-arid regions of India are actively managing soil fertility and other soil properties through a wide range of practices that are based on local resources and knowledge. It also highlights the socio-economic web woven around these soil fertility management practices. This study highlights the contribution of organic matter by traditional soil fertility management practices in maintaining the soil health. Livestock has profound influence on the soil fertility enhancement through supply of organic manure. Empirical data of this study has clearly revealed how farmers’ soil fertility management options are being undermined by government policies that give more priority to chemical fertiliser-based strategies. Based on the findings it is argued that there should be a 'level playing field' for both organic and inorganic soil fertility management methods by promoting and supporting farmers in using organic methods. There is a need to provide credit to farmers for adopting his choice of soil fertility management methods which suits his socio-economic conditions and that best suits the long term productivity of soils. The study suggests that the government policies related to soil fertility management must be enabling, creating the conditions for development based more on locally available resources and local skills and knowledge. This will not only keep Indian soils in healthy condition but also support the livelihoods of millions of people, especially the small and marginal farmers.

Keywords: livestock, organic matter, small farmers, soil fertility

Procedia PDF Downloads 159
23630 The Methodology of System Modeling of Mechatronic Systems

Authors: Lakhoua Najeh

Abstract:

Aims of the work: After a presentation of the functionality of an example of a mechatronic system which is a paint mixer system, we present the concepts of modeling and safe operation. This paper briefly discusses how to model and protect the functioning of a mechatronic system relying mainly on functional analysis and safe operation techniques. Methods: For the study of an example of a mechatronic system, we use methods for external functional analysis that illustrate the relationships between a mechatronic system and its external environment. Thus, we present the Safe-Structured Analysis Design Technique method (Safe-SADT) which allows the representation of a mechatronic system. A model of operating safety and automation is proposed. This model enables us to use a functional analysis technique of the mechatronic system based on the GRAFCET (Graphe Fonctionnel de Commande des Etapes et Transitions: Step Transition Function Chart) method; study of the safe operation of the mechatronic system based on the Safe-SADT method; automation of the mechatronic system based on a software tool. Results: The expected results are to propose a model and safe operation of a mechatronic system. This methodology enables us to analyze the relevance of the different models based on Safe-SADT and GRAFCET in relation to the control and monitoring functions and to study the means allowing exploiting their synergy. Conclusion: In order to propose a general model of a mechatronic system, a model of analysis, safety operation and automation of a mechatronic system has been developed. This is how we propose to validate this methodology through a case study of a paint mixer system.

Keywords: mechatronic systems, system modeling, safe operation, Safe-SADT

Procedia PDF Downloads 221
23629 Forensic Detection of Errors Permitted by the Witnesses in Their Testimony

Authors: Lev Bertovsky

Abstract:

The purpose of this study was to determine the reasons for the formation of false testimony from witnesses and make recommendations on the recognition of such cases. During the studies, which were based on the achievements of professionals in the field of psychology, as well as personal investigative practice, the stages of perception of the information were studied, as well as the process of its reclaim from the memory and transmission to the communicator upon request. Based on the principles of the human brain, kinds of conscientious witness mistakes were systematized. Proposals were formulated for the optimization of investigative actions in cases where the witnesses make an honest mistake with respect to the effects previously observed by them.

Keywords: criminology, eyewitness testimony, honest mistake, information, investigator, investigation, questioning

Procedia PDF Downloads 176
23628 Study on Shape Coefficient of Large Statue Building Based on CFD

Authors: Wang Guangda, Ma Jun, Zhao Caiqi, Pan Rui

Abstract:

Wind load is the main control load of large statue structures. Due to the irregular plane and elevation and uneven outer contour, statues’ shape coefficient can not pick up from the current code. Currently a common practice is based on wind tunnel test. But this method is time-consuming and high cost. In this paper, based on the fundamental theory of CFD, using fluid dynamics software of Fluent 15.0, a few large statue structure of 40 to 70m high, which are located in china , including large fairy statues and large Buddha statues, are analyzed by numerical wind tunnel. The results are contrasted with the recommended values in load code and the wind tunnel test results respectively. Results show that the shape coefficient has a good reliability by the numerical wind tunnel method of this kind of building. This will has a certain reference value of wind load values for large statues’ structure.

Keywords: large statue structure, shape coefficient, irregular structure, wind tunnel test, numerical wind tunnel simulation

Procedia PDF Downloads 358
23627 Importance of Infrastucture Delivery and Management in South Africa

Authors: Onyeka Nkwonta, Theo Haupt, Karana Padayachee

Abstract:

This study aims primarily to identify potential causes of the bottlenecks in the public sector that affect delivery and formulate evidence-based interventions to improve delivery and management of infrastructure projects. An initial literature review was carried out on infrastructural development and delivery in South Africa, with the aim to formulate evidence-based interventions to improve delivery within the sector. The infrastructure delivery management model was developed to map out best practice delivery processes. These will become the backbone on which improvement initiatives that will be developed within participating stakeholders. The model will, in turn, support a range of methodologies, including the risk system and a knowledge management framework. It will also look at key challenges facing departments with the ability to ensure knowledge and skills transfer at various sectors. The research is limited because the findings were based on existing literature. This study adopted an indirect approach for infrastructure management by focussing on the challenges faced and approaches adopted to overcome these challenges. This may narrow the consideration of some of the viewpoints, thereby limiting the richness of experience available to this research.

Keywords: infrastructure, management, challenges, South Africa

Procedia PDF Downloads 116
23626 Theta-Phase Gamma-Amplitude Coupling as a Neurophysiological Marker in Neuroleptic-Naive Schizophrenia

Authors: Jun Won Kim

Abstract:

Objective: Theta-phase gamma-amplitude coupling (TGC) was used as a novel evidence-based tool to reflect the dysfunctional cortico-thalamic interaction in patients with schizophrenia. However, to our best knowledge, no studies have reported the diagnostic utility of the TGC in the resting-state electroencephalographic (EEG) of neuroleptic-naive patients with schizophrenia compared to healthy controls. Thus, the purpose of this EEG study was to understand the underlying mechanisms in patients with schizophrenia by comparing the TGC at rest between two groups and to evaluate the diagnostic utility of TGC. Method: The subjects included 90 patients with schizophrenia and 90 healthy controls. All patients were diagnosed with schizophrenia according to the criteria of Diagnostic and Statistical Manual of Mental Disorders, 4th edition (DSM-IV) by two independent psychiatrists using semi-structured clinical interviews. Because patients were either drug-naïve (first episode) or had not been taking psychoactive drugs for one month before the study, we could exclude the influence of medications. Five frequency bands were defined for spectral analyses: delta (1–4 Hz), theta (4–8 Hz), slow alpha (8–10 Hz), fast alpha (10–13.5 Hz), beta (13.5–30 Hz), and gamma (30-80 Hz). The spectral power of the EEG data was calculated with fast Fourier Transformation using the 'spectrogram.m' function of the signal processing toolbox in Matlab. An analysis of covariance (ANCOVA) was performed to compare the TGC results between the groups, which were adjusted using a Bonferroni correction (P < 0.05/19 = 0.0026). Receiver operator characteristic (ROC) analysis was conducted to examine the discriminating ability of the TGC data for schizophrenia diagnosis. Results: The patients with schizophrenia showed a significant increase in the resting-state TGC at all electrodes. The delta, theta, slow alpha, fast alpha, and beta powers showed low accuracies of 62.2%, 58.4%, 56.9%, 60.9%, and 59.0%, respectively, in discriminating the patients with schizophrenia from the healthy controls. The ROC analysis performed on the TGC data generated the most accurate result among the EEG measures, displaying an overall classification accuracy of 92.5%. Conclusion: As TGC includes phase, which contains information about neuronal interactions from the EEG recording, TGC is expected to be useful for understanding the mechanisms the dysfunctional cortico-thalamic interaction in patients with schizophrenia. The resting-state TGC value was increased in the patients with schizophrenia compared to that in the healthy controls and had a higher discriminating ability than the other parameters. These findings may be related to the compensatory hyper-arousal patterns of the dysfunctional default-mode network (DMN) in schizophrenia. Further research exploring the association between TGC and medical or psychiatric conditions that may confound EEG signals will help clarify the potential utility of TGC.

Keywords: quantitative electroencephalography (QEEG), theta-phase gamma-amplitude coupling (TGC), schizophrenia, diagnostic utility

Procedia PDF Downloads 124
23625 Engineering Packaging for a Sustainable Food Chain

Authors: Ezekiel Olukayode Akintunde

Abstract:

There is a high level of inadequate methods at all levels of food supply in the global food industry. The inadequacies have led to vast wastages of food. Hence there is a need to curb the wastages that can later affect natural resources, water resources, and energy to avoid negative impacts on the climate and the environment. There is a need to engage multifaceted engineering packaging approaches for a sustainable food chain to ensure active packaging, intelligent packaging, new packaging materials, and a sustainable packaging system. Packaging can be regarded as an indispensable component approach that can be applied to solve major problems of sustainable food consumption globally; this is about controlling the environmental impact of packed food. The creative innovation will ensure that packaged foods are free from food-borne diseases and food chemical pollution. This paper evaluates the key shortcomings that must be addressed by innovative food packaging to ensure a safe, natural environment that will preserve energy and sustain water resources. Certain solutions, including fabricating microbial biodegradable chemical compounds/polymers from agro-food waste remnants, appear a bright path to ensure a strong and innovative waste-based food packaging system. Over the years, depletion in the petroleum reserves has brought about the emergence of biodegradable polymers as a proper replacement for traditional plastics; moreover, the increase in the production of traditional plastics has raised serious concerns about environmental threats. Biodegradable polymers have proven to be biocompatible, which can also be processed for other useful applications. Therefore, this study will showcase a workable guiding framework for designing a sustainable food packaging system that will not constitute a danger to our present society and that will surely preserve natural water resources. Various assessment methods will be deployed at different stages of the packaging design to enhance the package's sustainability. Every decision that will be made must be facilitated with methods that will be engaged per stage to allow for corrective measures throughout the cycle of the design process. Basic performance appraisal of packaging innovations. Food wastage can result in inimical environmental impacts, and ethical practices must be carried out for food loss at home. An examination in West Africa quantified preventable food wastage over the entire food value chain at almost 180kg per person per year. That is preventable food wastage, 35% of which originated at the household level. Many food losses reported, which happened at the harvesting, storage, transportation, and processing stages, are not preventable and are without much environmental impact because such wastage can be used for feeding. Other surveys have shown that 15%-20% of household food losses can be traced to food packaging. Therefore, new innovative packaging systems can lessen the environmental effect of food wastage to extend shelf‐life to lower food loss in the process distribution chain and at the household level.

Keywords: food packaging, biodegradable polymer, intelligent packaging, shelf-life

Procedia PDF Downloads 38
23624 Governance and Public Policy: The Perception of Efficiency and Equility in Brazil and South Africa

Authors: Paulino V. Tavares, Ana L. Romao

Abstract:

Public governance represents an articulated arrangement, dynamic and interactive, present in the exercise of authority aimed at strengthening the decision-making procedure in public administration with transparency, accountability, responsiveness and capable of to emerge control and social empowerment, to pursue and achieve the objectives efficiently and with the effectiveness desired by the collective, respecting laws and providing social, institutional and economic equility in society. With this, using a multidimensional approach with the application of three questionnaires to a universe of twenty Counselors of the Courts of Auditors (Brazil), twenty professionals of public administration (Brazil), twenty Government/Provincial Counselors (South Africa), and twenty South African professionals of public administration, the present work aims to capture what is the perception about the efficiency and equility of public policies in Brazil and South Africa. With this, up until now, 30 responses have been obtained, and the results indicate that, in Brazil, 65% affirm due to the inefficiency of public policies, 70% point out that they do not believe in the equility of these same policies. In South Africa, the results indicate that 45% believe in government efficiency, and, with regard to the equility of public policies, 65% do not believe. In Brazil, the research reveals at least three reasons for this result, that is, lack of planning, lack of clear objectives of public policies, and lack of information on the part of society, while in South Africa, so far, research has not identified a specific reason for this result.

Keywords: efficiency, equility, governance, public policy

Procedia PDF Downloads 104
23623 The Results of the Research and Documentation of Early Middle Ages Sites in the North-West Poland

Authors: Wojciech Kulesza

Abstract:

The north-western part of the Poland, specifically West Pomerania and Lubuskie provinces, from several years are the subject of research of the Department of Archaeology of Early Middle Ages of Institute of Archaeology of Nicolaus Copernicus University in Toruń. This area has a dense network of rivers and numerous lakes, where many of them are connected to the southern part of the Baltic Sea. During the many years of research in this area, archaeologists discovered the remains of the early Middle Ages settlement located on several islands and in most cases were encountered relics of early Middle Ages bridges linking those islands with the mainland. During the excavation, work was carried out both under water and on land for the accurate identification of islands and adjacent to them underwater areas. The result of this work is a graphic documentation, made in a three-dimensional technique, not only for the underwater trenches but also relics of bridges and objects discovered during exploration, which as the main theme will be presented in the full presentation.

Keywords: Poland, underwater archaeology, Nicolaus Copernicus University, early middle ages

Procedia PDF Downloads 233
23622 Identification of Clinical Characteristics from Persistent Homology Applied to Tumor Imaging

Authors: Eashwar V. Somasundaram, Raoul R. Wadhwa, Jacob G. Scott

Abstract:

The use of radiomics in measuring geometric properties of tumor images such as size, surface area, and volume has been invaluable in assessing cancer diagnosis, treatment, and prognosis. In addition to analyzing geometric properties, radiomics would benefit from measuring topological properties using persistent homology. Intuitively, features uncovered by persistent homology may correlate to tumor structural features. One example is necrotic cavities (corresponding to 2D topological features), which are markers of very aggressive tumors. We develop a data pipeline in R that clusters tumors images based on persistent homology is used to identify meaningful clinical distinctions between tumors and possibly new relationships not captured by established clinical categorizations. A preliminary analysis was performed on 16 Magnetic Resonance Imaging (MRI) breast tissue segments downloaded from the 'Investigation of Serial Studies to Predict Your Therapeutic Response with Imaging and Molecular Analysis' (I-SPY TRIAL or ISPY1) collection in The Cancer Imaging Archive. Each segment represents a patient’s breast tumor prior to treatment. The ISPY1 dataset also provided the estrogen receptor (ER), progesterone receptor (PR), and human epidermal growth factor receptor 2 (HER2) status data. A persistent homology matrix up to 2-dimensional features was calculated for each of the MRI segmentation. Wasserstein distances were then calculated between all pairwise tumor image persistent homology matrices to create a distance matrix for each feature dimension. Since Wasserstein distances were calculated for 0, 1, and 2-dimensional features, three hierarchal clusters were constructed. The adjusted Rand Index was used to see how well the clusters corresponded to the ER/PR/HER2 status of the tumors. Triple-negative cancers (negative status for all three receptors) significantly clustered together in the 2-dimensional features dendrogram (Adjusted Rand Index of .35, p = .031). It is known that having a triple-negative breast tumor is associated with aggressive tumor growth and poor prognosis when compared to non-triple negative breast tumors. The aggressive tumor growth associated with triple-negative tumors may have a unique structure in an MRI segmentation, which persistent homology is able to identify. This preliminary analysis shows promising results in the use of persistent homology on tumor imaging to assess the severity of breast tumors. The next step is to apply this pipeline to other tumor segment images from The Cancer Imaging Archive at different sites such as the lung, kidney, and brain. In addition, whether other clinical parameters, such as overall survival, tumor stage, and tumor genotype data are captured well in persistent homology clusters will be assessed. If analyzing tumor MRI segments using persistent homology consistently identifies clinical relationships, this could enable clinicians to use persistent homology data as a noninvasive way to inform clinical decision making in oncology.

Keywords: cancer biology, oncology, persistent homology, radiomics, topological data analysis, tumor imaging

Procedia PDF Downloads 119
23621 Poverty Versus Interest-Based Loans in East Africa: Can Interest-Free Loans Rescue the Situation?

Authors: Maulana Ayoub Ali

Abstract:

“Both Socialist as well as the capitalist in the economic systems have proven their failure to ensure economic justice that serves to benefit all in the society, both the rich and the poor. In particular, capitalism is currently causing a terrifying scenario by making the rich richer and the poor poorer” . In this paper, the author looks at the level of exploitation which is taking place to small and middle entrepreneurs (SME’s), government and private employees as well as large investors in East African countries who depends on interest-based loans which undermines their lives every day due to heavy monthly returns. Numbers of families have been evicted from their family premises and SME’s properties have been attached in the courts due to failure to return their loans timely. In fact, there are a lot of issues which have taken place on the ground which badly affected number of families socially and most importantly economically due to engagement in interest-based loans offered by commercial banks in East Africa. This paper looks on the alternative ways of eliminating interest-based loans to better lives of devastated Africans who are almost “dying” of heavy debts generated through higher interest loans. Reaching to that particular root the author has visited various literatures in a bid to deeply investigate and find out the best alternative mode of enabling African SME’s, businessmen and employees to benefit from the interest-free loans. The question is whether interest-free loans can be a long term solution towards poverty alleviation in East Africa generally and Tanzania in particular.

Keywords: interest-free loans, SME’s, financial institutions, poverty, east Africa

Procedia PDF Downloads 318
23620 Hybrid Control Mode Based on Multi-Sensor Information by Fuzzy Approach for Navigation Task of Autonomous Mobile Robot

Authors: Jonqlan Lin, C. Y. Tasi, K. H. Lin

Abstract:

This paper addresses the issue of the autonomous mobile robot (AMR) navigation task based on the hybrid control modes. The novel hybrid control mode, based on multi-sensors information by using the fuzzy approach, has been presented in this research. The system operates in real time, is robust, enables the robot to operate with imprecise knowledge, and takes into account the physical limitations of the environment in which the robot moves, obtaining satisfactory responses for a large number of different situations. An experiment is simulated and carried out with a pioneer mobile robot. From the experimental results, the effectiveness and usefulness of the proposed AMR obstacle avoidance and navigation scheme are confirmed. The experimental results show the feasibility, and the control system has improved the navigation accuracy. The implementation of the controller is robust, has a low execution time, and allows an easy design and tuning of the fuzzy knowledge base.

Keywords: autonomous mobile robot, obstacle avoidance, MEMS, hybrid control mode, navigation control

Procedia PDF Downloads 454
23619 The Study on Life of Valves Evaluation Based on Tests Data

Authors: Binjuan Xu, Qian Zhao, Ping Jiang, Bo Guo, Zhijun Cheng, Xiaoyue Wu

Abstract:

Astronautical valves are key units in engine systems of astronautical products; their reliability will influence results of rocket or missile launching, even lead to damage to staff and devices on the ground. Besides failure in engine system may influence the hitting accuracy and flight shot of missiles. Therefore high reliability is quite essential to astronautical products. There are quite a few literature doing research based on few failure test data to estimate valves’ reliability, thus this paper proposed a new method to estimate valves’ reliability, according to the corresponding tests of different failure modes, this paper takes advantage of tests data which acquired from temperature, vibration, and action tests to estimate reliability in every failure modes, then this paper has regarded these three kinds of tests as three stages in products’ process to integrate these results to acquire valves’ reliability. Through the comparison of results achieving from tests data and simulated data, the results have illustrated how to obtain valves’ reliability based on the few failure data with failure modes and prove that the results are effective and rational.

Keywords: censored data, temperature tests, valves, vibration tests

Procedia PDF Downloads 324