Search results for: efficiency improvement
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 10301

Search results for: efficiency improvement

4361 Machine Learning-Driven Prediction of Cardiovascular Diseases: A Supervised Approach

Authors: Thota Sai Prakash, B. Yaswanth, Jhade Bhuvaneswar, Marreddy Divakar Reddy, Shyam Ji Gupta

Abstract:

Across the globe, there are a lot of chronic diseases, and heart disease stands out as one of the most perilous. Sadly, many lives are lost to this condition, even though early intervention could prevent such tragedies. However, identifying heart disease in its initial stages is not easy. To address this challenge, we propose an automated system aimed at predicting the presence of heart disease using advanced techniques. By doing so, we hope to empower individuals with the knowledge needed to take proactive measures against this potentially fatal illness. Our approach towards this problem involves meticulous data preprocessing and the development of predictive models utilizing classification algorithms such as Support Vector Machines (SVM), Decision Tree, and Random Forest. We assess the efficiency of every model based on metrics like accuracy, ensuring that we select the most reliable option. Additionally, we conduct thorough data analysis to reveal the importance of different attributes. Among the models considered, Random Forest emerges as the standout performer with an accuracy rate of 96.04% in our study.

Keywords: support vector machines, decision tree, random forest

Procedia PDF Downloads 33
4360 A Greedy Alignment Algorithm Supporting Medication Reconciliation

Authors: David Tresner-Kirsch

Abstract:

Reconciling patient medication lists from multiple sources is a critical task supporting the safe delivery of patient care. Manual reconciliation is a time-consuming and error-prone process, and recently attempts have been made to develop efficiency- and safety-oriented automated support for professionals performing the task. An important capability of any such support system is automated alignment – finding which medications from a list correspond to which medications from a different source, regardless of misspellings, naming differences (e.g. brand name vs. generic), or changes in treatment (e.g. switching a patient from one antidepressant class to another). This work describes a new algorithmic solution to this alignment task, using a greedy matching approach based on string similarity, edit distances, concept extraction and normalization, and synonym search derived from the RxNorm nomenclature. The accuracy of this algorithm was evaluated against a gold-standard corpus of 681 medication records; this evaluation found that the algorithm predicted alignments with 99% precision and 91% recall. This performance is sufficient to support decision support applications for medication reconciliation.

Keywords: clinical decision support, medication reconciliation, natural language processing, RxNorm

Procedia PDF Downloads 280
4359 Effect of Rice Husk Ash and Metakaolin on the Compressive Strengths of Ternary Cement Mortars

Authors: Olubajo Olumide Olu

Abstract:

This paper studies the effect of Metakaolin (MK) and Rice husk ash (RHA) on the compressive strength of ternary cement mortar at replacement level up to 30%. The compressive strength test of the blended cement mortars were conducted using Tonic Technic compression and machine. Nineteen ternary cement mortars were prepared comprising of ordinary Portland cement (OPC), Rice husk ash (RHA) and Metakaolin (MK) at different proportion. Ternary mortar prisms in which Portland cement was replaced by up to 30% were tested at various age; 2, 7, 28 and 60 days. Result showed that the compressive strength of the cement mortars increased as the curing days were lengthened for both OPC and the blended cement samples. The ternary cement’s compressive strengths showed significant improvement compared with the control especially beyond 28 days. This can be attributed to the slow pozzolanic reaction resulting from the formation of additional CSH from the interaction of the residual CH content and the silica available in the Metakaolin and Rice husk ash, thus providing significant strength gain at later age. Results indicated that the addition of metakaolin with rice husk ash kept constant was found to lead to an increment in the compressive strength. This can either be attributed to the high silica/alumina contribution to the matrix or the C/S ratio in the cement matrix. Whereas, increment in the rice husk ash content while metakaolin was held constant led to an increment in the compressive strength, which could be attributed to the reactivity of the rice husk ash followed by decrement owing to the presence of unburnt carbon in the RHA matrix. The best compressive strength results were obtained at 10% cement replacement (5% RHA, 5% MK); 15% cement replacement (10% MK and 5% RHA); 20% cement replacement (15% MK and 5% RHA); 25% cement replacement (20% MK and 5% RHA); 30% cement replacement (10%/20% MK and 20%/10% RHA). With the optimal combination of either 15% and 20% MK with 5% RHA giving the best compressive strength of 40.5MPa.

Keywords: metakaolin, rice husk ash, compressive strength, ternary mortar, curing days

Procedia PDF Downloads 339
4358 Effect of Transcutaneous Electrical Nerve Stimulation on Acupoints in Type 2 Diabetes Mellitus: A Blood Glucose Analysis

Authors: Asif Arsalan

Abstract:

The mortality rate of type 2 diabetes increasing day by day at an alarming rate. Changing lifestyle and environment have contributory effect in increase rate of type 2 diabetes mellitus. This study introduces a new method in physiotherapy field of treating a disease like diabetes, and gives the new way to control the diabetes without medicines.50 patients were selected on the basis of inclusion and exclusion criteria and were assigned to receive either TENS (group A) on the bilateral ST36 acupoints at a frequency of 25 Hz with intensity of 9 mA or placebo (group B) treatment for 5 minutes for 7 days. The blood glucose level was measured at both pre and post stimulation. Stimulation was given after 3 hours of food on every day regularly on stipulated time.There was significant improvement (P<0.05) in random blood sugar level of type 2 diabetes mellitus. It has been found TENS on bilateral ST36 acupoints have an effect to control plasma glucose level for type 2 diabetic mellitus patients and can be used without having any side effect. This study gives new idea to treat the type 2 diabetes conservatively with the TENS. As there are some study that TENS had been used to treat nausea, spasticity etc. condition by stimulating the acupoint but it is the very first time that TENS has been used to treat diabetes like disease. This study help the physiotherapy community to spread the physiotherapy treatment in other branches of the medical field and this gives a new identity for the physiotherapy. This also gives the benefit to patients to take a safe and cost effective treatment for the diabetes, and make the new use of TENS to treat other condition rather than pain.

Keywords: acupoint, plasma glucose level, type 2 diabetic mellitus, TENS

Procedia PDF Downloads 299
4357 Improve B-Tree Index’s Performance Using Lock-Free Hash Table

Authors: Zhanfeng Ma, Zhiping Xiong, Hu Yin, Zhengwei She, Aditya P. Gurajada, Tianlun Chen, Ying Li

Abstract:

Many RDBMS vendors use B-tree index to achieve high performance for point queries and range queries, and some of them also employ hash index to further enhance the performance as hash table is more efficient for point queries. However, there are extra overheads to maintain a separate hash index, for example, hash mapping for all data records must always be maintained, which results in more memory space consumption; locking, logging and other mechanisms are needed to guarantee ACID, which affects the concurrency and scalability of the system. To relieve the overheads, Hash Cached B-tree (HCB) index is proposed in this paper, which consists of a standard disk-based B-tree index and an additional in-memory lock-free hash table. Initially, only the B-tree index is constructed for all data records, the hash table is built on the fly based on runtime workload, only data records accessed by point queries are indexed using hash table, this helps reduce the memory footprint. Changes to hash table are done using compare-and-swap (CAS) without performing locking and logging, this helps improve the concurrency and avoid contention. The hash table is also optimized to be cache conscious. HCB index is implemented in SAP ASE database, compared with the standard B-tree index, early experiments and customer adoptions show significant performance improvement. This paper provides an overview of the design of HCB index and reports the experimental results.

Keywords: B-tree, compare-and-swap, lock-free hash table, point queries, range queries, SAP ASE database

Procedia PDF Downloads 283
4356 Supply Chain Logistics Integration in Bahrain's Construction Industry

Authors: Randolf Von N. Salindo

Abstract:

The study was conducted to measure the logistics integration capabilities of selected companies in the Bahrain construction industry using the Supply Chain 2000 framework; and, determine the extent and direction of influence of these logistics capabilities and integration competencies on the supply chain performance of the firm. A total of 50 executive respondents (from supervisor to managing director level) from 22 construction and construction supplier firms participated in the study from September to November 2014. The results reveal that respondent Bahraini construction firms have significantly lower levels of logistics capabilities, but higher levels of logistics integration competencies compared to international benchmarks. Using stepwise multiple regression analysis, eight logistics capabilities of Bahraini constructions firms were identified to be positively associated with firm performance; with comprehensive metrics as the most positively dominant influential logistics capability. Activity based and total cost methodology is found to be the most negatively dominant influential logistics capability. In terms of logistics integration competencies, the study revealed that that customer integration, internal integration, and, measurement integration are negatively associated with firm performance. There was no logistics integration competency found to be positively associated with the supply chain performance among the companies who participated in the study. The research reveals that there are areas for improvement in supply chain capabilities and logistics integration competencies of the construction firms in the Kingdom of Bahrain to improve their supply chain performance to a global level.

Keywords: comprehensive metrics, customer integration, logistics integration capabilities, logistics integration competencies

Procedia PDF Downloads 636
4355 Sectoral Energy Consumption in South Africa and Its Implication for Economic Growth

Authors: Kehinde Damilola Ilesanmi, Dev Datt Tewari

Abstract:

South Africa is in its post-industrial era moving from the primary and secondary sector to the tertiary sector. The study investigated the impact of the disaggregated energy consumption (coal, oil, and electricity) on the primary, secondary and tertiary sectors of the economy between 1980 and 2012 in South Africa. Using vector error correction model, it was established that South Africa is an energy dependent economy, and that energy (especially electricity and oil) is a limiting factor of growth. This implies that implementation of energy conservation policies may hamper economic growth. Output growth is significantly outpacing energy supply, which has necessitated load shedding. To meet up the excess energy demand, there is a need to increase the generating capacity which will necessitate increased investment in the electricity sector as well as strategic steps to increase oil production. There is also need to explore more renewable energy sources, in order to meet the growing energy demand without compromising growth and environmental sustainability. Policy makers should also pursue energy efficiency policies especially at sectoral level of the economy.

Keywords: causality, economic growth, energy consumption, hypothesis, sectoral output

Procedia PDF Downloads 467
4354 Potential Enhancement of Arsenic Removal Filter Commonly Used in South Asia: A Review

Authors: Sarthak Karki, Haribansha Timalsina

Abstract:

Kanchan Arsenic Filter is an economical low cost and termed the most efficient arsenic removal filter system in South Asian countries such as Nepal. But when the effluent quality was evaluated, it was seen to possess a lower removal rate of arsenite species. In addition to that, greater pathogenic growth and loss in overall efficacy with time due to precipitation of iron sulphates were the further complications. This brings the health issue on the front line as millions of people rely on groundwater sources for general water necessities. With this paper, we analyzed the mechanisms and changes in the efficiency of the extant filter system when integrated with activated laterite and hair column beds, plus an additional charcoal layer for inhibiting pathogen colonies. Hair column have rich keratin protein that binds with arsenic species, and similarly, raw laterite has huge deposits of iron and aluminum, all of these factors helping to remove heavy metal contaminants from water sources. Further study on the commercialized mass production of the new proposed filter and versatility analysis is required.

Keywords: laterite, charcoal, arsenic removal, hair column

Procedia PDF Downloads 86
4353 The Impact and Performances of Controlled Ventilation Strategy on Thermal Comfort and Indoor Atmosphere in Building

Authors: Selma Bouasria, Mahi Abdelkader, Abbès Azzi, Herouz Keltoum

Abstract:

Ventilation in buildings is a key element to provide high indoor air quality. Its efficiency appears as one of the most important factors in maintaining thermal comfort for occupants of buildings. Personal displacement ventilation is a new ventilation concept that combines the positive features of displacement ventilation with those of task conditioning or personalized ventilation. This work aims to study numerically the supply air flow in a room to optimize a comfortable microclimate for an occupant. The room is heated, and a dummy is designed to simulate the occupant. Two types of configurations were studied. The first consist of a room without windows; and the second one is a local equipped with a window. The influence of the blowing speed and the solar radiation coming from the window on the thermal comfort of the occupant is studied. To conduct this study we used the turbulence models, namely the high Reynolds k-e, the RNG and the SST models. The numerical tool used is based on the finite volume method. The numerical simulation of the supply air flow in a room can predict and provide a significant information about indoor comfort.

Keywords: local, comfort, thermique, ventilation, internal environment

Procedia PDF Downloads 408
4352 An Examination of the Impact of Sand Dunes on Soils, Vegetation and Water Resources as the Major Means of Livelihood in Gada Local Government Area of Sokoto State, Nigeria

Authors: Abubakar Aminu

Abstract:

Sand dunes, as a major product of desertification, is well known to affect soil resources, water resources and vegetation, especially in arid and semi-arid region; this scenario disrupt the livelihood security of people in the affected areas. The research assessed the episode of sand dune accumulation on water resources, soil and vegetation in Gada local government of Sokoto State, Nigeria. In this paper, both qualitative and quantitative methods were used to generate data which was analyzed and discussed. The finding of the paper shows that livelihood was affected by accumulations of sand dunes as water resources and soils were affected negatively thereby reducing crop yields and making livestock domestication a very difficult and expensive task; the finding also shows that 60% of the respondents agreed to planting of trees as the major solution to combat sand dunes accumulation. However, the soil parameters tested indicated low Organic carbon, low Nitrogen, low Potassium, Calcium and Phosphorus but higher values were recorded in Sodium and Cation exchange capacity which served as evidence of the high or strong aridity nature of the soil in the area. In line with the above, the researcher recommended a massive tree planting campaign to curtail desertification as well as using organic manures for higher agricultural yield and as such, improvement in livelihood security.

Keywords: soils, vegetatio, water, desertification

Procedia PDF Downloads 67
4351 An Optimized Method for 3D Magnetic Navigation of Nanoparticles inside Human Arteries

Authors: Evangelos G. Karvelas, Christos Liosis, Andreas Theodorakakos, Theodoros E. Karakasidis

Abstract:

In the present work, a numerical method for the estimation of the appropriate gradient magnetic fields for optimum driving of the particles into the desired area inside the human body is presented. The proposed method combines Computational Fluid Dynamics (CFD), Discrete Element Method (DEM) and Covariance Matrix Adaptation (CMA) evolution strategy for the magnetic navigation of nanoparticles. It is based on an iteration procedure that intents to eliminate the deviation of the nanoparticles from a desired path. Hence, the gradient magnetic field is constantly adjusted in a suitable way so that the particles’ follow as close as possible to a desired trajectory. Using the proposed method, it is obvious that the diameter of particles is crucial parameter for an efficient navigation. In addition, increase of particles' diameter decreases their deviation from the desired path. Moreover, the navigation method can navigate nanoparticles into the desired areas with efficiency approximately 99%.

Keywords: computational fluid dynamics, CFD, covariance matrix adaptation evolution strategy, discrete element method, DEM, magnetic navigation, spherical particles

Procedia PDF Downloads 137
4350 Benefits of Collegial Teaming to Improve Knowledge-Worker Productivity

Authors: Prakash Singh, Piet Maphodisa Kgohlo

Abstract:

Knowledge-worker productivity is one of the biggest leadership challenges facing all organizations in the twenty-first century. It cannot be denied that knowledge-worker productivity affects all organizations. The work and the workforce are both undergoing greater changes currently than at any time, since the beginning of the industrial revolution two centuries ago. Employees welcome collegial teaming (CT) as an innovative way to develop their work-integrated learning competencies. Human resource development policies must evoke the symbiotic relationship between CT and work-integrated learning, seeing that employees need to be endowed with the competence to move from one skill to another, as each one becomes obsolete, and to simultaneously develop their cognitive and emotional intelligence. The outcome of this relationship must culminate in the development of highly productive knowledge-workers. While this study focuses on teachers, the conceptual framework and the findings of this research can be beneficial for any organization, public or private sector, business or non-business. Therefore, in this quantitative study, the benefits of CT are considered in developing human resources to sustain knowledge-worker productivity. The ANOVA p-values reveal that the majority of teachers agree that CT can empower them to overcome the challenges of managing curriculum change. CT can equip them with continuous and sustained learning, growth and improvement, necessary for knowledge-worker productivity. This study, therefore, confirms that CT benefits all workers, immaterial of their age, gender or experience. Hence, this exploratory research provides a new perspective of CT in addressing knowledge-worker productivity when organizational change alters the vision of the organization.

Keywords: collegial teaming, human resource development, knowledge-worker productivity, work-integrated learning

Procedia PDF Downloads 275
4349 Broad Host Range Bacteriophage Cocktail for Reduction of Staphylococcus aureus as Potential Therapy for Atopic Dermatitis

Authors: Tamar Lin, Nufar Buchshtab, Yifat Elharar, Julian Nicenboim, Rotem Edgar, Iddo Weiner, Lior Zelcbuch, Ariel Cohen, Sharon Kredo-Russo, Inbar Gahali-Sass, Naomi Zak, Sailaja Puttagunta, Merav Bassan

Abstract:

Background: Atopic dermatitis (AD) is a chronic, relapsing inflammatory skin disorder that is characterized by dry skin and flares of eczematous lesions and intense pruritus. Multiple lines of evidence suggest that AD is associated with increased colonization by Staphylococcus aureus, which contributes to disease pathogenesis through the release of virulence factors that affect both keratinocytes and immune cells, leading to disruption of the skin barrier and immune cell dysfunction. The aim of the current study is to develop a bacteriophage-based product that specifically targets S. aureus. Methods: For the discovery of phage, environmental samples were screened on 118 S. aureus strains isolated from skin samples, followed by multiple enrichment steps. Natural phages were isolated, subjected to Next-generation Sequencing (NGS), and analyzed using proprietary bioinformatics tools for undesirable genes (toxins, antibiotic resistance genes, lysogeny potential), taxonomic classification, and purity. Phage host range was determined by an efficiency of plating (EOP) value above 0.1 and the ability of the cocktail to completely lyse liquid bacterial culture under different growth conditions (e.g., temperature, bacterial stage). Results: Sequencing analysis demonstrated that the 118 S. aureus clinical strains were distributed across the phylogenetic tree of all available Refseq S. aureus (~10,750 strains). Screening environmental samples on the S. aureus isolates resulted in the isolation of 50 lytic phages from different genera, including Silviavirus, Kayvirus, Podoviridae, and a novel unidentified phage. NGS sequencing confirmed the absence of toxic elements in the phages’ genomes. The host range of the individual phages, as measured by the efficiency of plating (EOP), ranged between 41% (48/118) to 79% (93/118). Host range studies in liquid culture revealed that a subset of the phages can infect a broad range of S. aureus strains in different metabolic states, including stationary state. Combining the single-phage EOP results of selected phages resulted in a broad host range cocktail which infected 92% (109/118) of the strains. When tested in vitro in a liquid infection assay, clearance was achieved in 87% (103/118) of the strains, with no evidence of phage resistance throughout the study (24 hours). A S. aureus host was identified that can be used for the production of all the phages in the cocktail at high titers suitable for large-scale manufacturing. This host was validated for the absence of contaminating prophages using advanced NGS methods combined with multiple production cycles. The phages are produced under optimized scale-up conditions and are being used for the development of a topical formulation (BX005) that may be administered to subjects with atopic dermatitis. Conclusions: A cocktail of natural phages targeting S. aureus was effective in reducing bacterial burden across multiple assays. Phage products may offer safe and effective steroid-sparing options for atopic dermatitis.

Keywords: atopic dermatitis, bacteriophage cocktail, host range, Staphylococcus aureus

Procedia PDF Downloads 149
4348 Applicability of Overhangs for Energy Saving in Existing High-Rise Housing in Different Climates

Authors: Qiong He, S. Thomas Ng

Abstract:

Upgrading the thermal performance of building envelope of existing residential buildings is an effective way to reduce heat gain or heat loss. Overhang device is a common solution for building envelope improvement as it can cut down solar heat gain and thereby can reduce the energy used for space cooling in summer time. Despite that, overhang can increase the demand for indoor heating in winter due to its function of lowering the solar heat gain. Obviously, overhang has different impacts on energy use in different climatic zones which have different energy demand. To evaluate the impact of overhang device on building energy performance under different climates of China, an energy analysis model is built up in a computer-based simulation program known as DesignBuilder based on the data of a typical high-rise residential building. The energy simulation results show that single overhang is able to cut down around 5% of the energy consumption of the case building in the stand-alone situation or about 2% when the building is surrounded by other buildings in regions which predominantly rely on space cooling though it has no contribution to energy reduction in cold region. In regions with cold summer and cold winter, adding overhang over windows can cut down around 4% and 1.8% energy use with and without adjoining buildings, respectively. The results indicate that overhang might not an effective shading device to reduce the energy consumption in the mixed climate or cold regions.

Keywords: overhang, energy analysis, computer-based simulation, design builder, high-rise residential building, climate, BIM model

Procedia PDF Downloads 355
4347 Distributed System Computing Resource Scheduling Algorithm Based on Deep Reinforcement Learning

Authors: Yitao Lei, Xingxiang Zhai, Burra Venkata Durga Kumar

Abstract:

As the quantity and complexity of computing in large-scale software systems increase, distributed system computing becomes increasingly important. The distributed system realizes high-performance computing by collaboration between different computing resources. If there are no efficient resource scheduling resources, the abuse of distributed computing may cause resource waste and high costs. However, resource scheduling is usually an NP-hard problem, so we cannot find a general solution. However, some optimization algorithms exist like genetic algorithm, ant colony optimization, etc. The large scale of distributed systems makes this traditional optimization algorithm challenging to work with. Heuristic and machine learning algorithms are usually applied in this situation to ease the computing load. As a result, we do a review of traditional resource scheduling optimization algorithms and try to introduce a deep reinforcement learning method that utilizes the perceptual ability of neural networks and the decision-making ability of reinforcement learning. Using the machine learning method, we try to find important factors that influence the performance of distributed system computing and help the distributed system do an efficient computing resource scheduling. This paper surveys the application of deep reinforcement learning on distributed system computing resource scheduling proposes a deep reinforcement learning method that uses a recurrent neural network to optimize the resource scheduling, and proposes the challenges and improvement directions for DRL-based resource scheduling algorithms.

Keywords: resource scheduling, deep reinforcement learning, distributed system, artificial intelligence

Procedia PDF Downloads 108
4346 A Computational Study of the Effect of Intake Design on Volumetric Efficiency for Best Performance in Motorsport

Authors: Dominic Wentworth-Linton, Shian Gao

Abstract:

This project was aimed at investigating the effect of velocity stacks on the intakes of internal combustion engines for motorsport applications. The intake systems in motorsport are predominantly fuel injection with a plate mounted for the stacks. Using Computational Fluid Dynamics software, the relationship between the stack length and power and torque delivery across the engine’s rev range was investigated and the results were used to choose the best option for its intended motorsport discipline. The test results are expected to vary with engine geometry and its natural manufacturer characteristics. The test was also relevant in bridging between computational data and real simulation as the results show flow, pressure and velocity readings but the behaviour of the engine is inferred from the nature of each test. The results of the data analysis were tested in a real-life simulation on a dynamometer to prove the theory of stack length on power and torque delivery, which helps determine the most suitable stack for the Vauxhall engine for rallying in the Caribbean.

Keywords: CFD simulation, Internal combustion engine, Intake system, Dynamometer test

Procedia PDF Downloads 281
4345 Soil Mixed Constructed Permeable Reactive Barrier for Groundwater Remediation: Field Observation

Authors: Ziyda Abunada

Abstract:

In-situ remediation of contaminated land with deep mixing can deliver a multi-technique remedial strategy. A field trail includes permeable reactive barrier (PRB) took place at a severely contaminated site in Yorkshire to the north of the UK through the SMiRT (Soil Mix Remediation Technology) project in May 2011. SMiRT involved the execution of the largest research field trials in the UK to provide field validation. Innovative modified bentonite materials in combination with zeolite and organoclay were used to construct six different walls of a hexagonal PRB. Field monitoring, testing and site cores were collected from the PRB twice: once 2 months after the construction and again in March 2014 (almost 34 months later).This paper presents an overview of the results of the PRB materials’ relative performance with some initial 3-year time-related assessment. Results from the monitoring program and the site cores are presented. Some good correlations are seen together with some clear difference among the materials’ efficiency. These preliminary observations represent a potential for further investigations and highlighted the main lessons learned in a filed scale.

Keywords: in-situ remediation, groundwater, permeable reactive barrier, site cores

Procedia PDF Downloads 198
4344 Synchronization of Two Mobile Robots

Authors: R. M. López-Gutiérrez, J. A. Michel-Macarty, H. Cervantes-De Avila, J. I. Nieto-Hipólito, C. Cruz-Hernández, L. Cardoza-Avendaño, S. Cortiant-Velez

Abstract:

It is well know that mankind benefits from the application of robot control by virtual handlers in industrial environments. In recent years, great interest has emerged in the control of multiple robots in order to carry out collective tasks. One main trend is to copy the natural organization that some organisms have, such as, ants, bees, school of fish, birds’ migration, etc. Surely, this collaborative work, results in better outcomes than those obtain in an isolated or individual effort. This topic has a great drive because collaboration between several robots has the potential capability of carrying out more complicated tasks, doing so, with better efficiency, resiliency and fault tolerance, in cases such as: coordinate navigation towards a target, terrain exploration, and search-rescue operations. In this work, synchronization of multiple autonomous robots is shown over a variety of coupling topologies: star, ring, chain, and global. In all cases, collective synchronous behavior is achieved, in the complex networks formed with mobile robots. Nodes of these networks are modeled by a mass using Matlab to simulate them.

Keywords: robots, synchronization, bidirectional, coordinate navigation

Procedia PDF Downloads 354
4343 Parental Separation and 'the Best Interests of the Child' at International Law: Guidance for Nation States in the 21st Century

Authors: Cassandra Seery

Abstract:

During the twentieth century, the notion of child rights at the international level began with the League of Nations’ Geneva Declaration of the Rights of the Child 1924, culminating in the development and adoption of the UN Convention on the Rights of the Child (‘the Convention’) in 1989. A key foundation of child rights lies in the development of the ‘best interests of the child’ principle and its subsequent incorporation into domestic legislation across the globe. This principle has become a key concept in child rights protection and has become a widely recognized principle in the protection of child rights. However, despite its status as the primary operating standard in child and family law and its ‘deepening hold in domestic and international instruments’, the meaning of the ‘best interests of the child’ principle has been criticised as open-ended and vague. This paper explores the evolution and development of the principle in the context of parental separation at international law throughout the 21st century and identifies opportunities for the Nation States to further improve legislative responses in associated child protection cases. An extensive review of relevant United Nations documentation (including instruments, resolutions and comments, jurisprudence, reports, guidelines and policies, training materials and so forth) explores: (i) what progress has been made to further develop the principle at the international level with regard to parental separation; and (ii) what developments participating the Nation States should consider as part of future legal and social policy reforms in this space. It will highlight opportunities for improvement and explore the benefit and relevance of international approaches for the Nation States moving forward.

Keywords: international human rights, best interests of the child, legal and social policy, child rights

Procedia PDF Downloads 255
4342 Analysis of the Spatial Distribution of Public Girls’ and Boys’ Secondary Schools in Riyadh

Authors: Nasser Marshad Alzeer

Abstract:

This study examines the spatial distribution of secondary schools in Riyadh. It considers both public girls and boys sector provision and assesses the efficiency of the spatial distribution of secondary schools. Since the establishment of the Ministry of Education (MOE) in 1953 and General Presidency for Female Education, (GPFE) in 1960, there has been a great expansion of education services in Saudi Arabia, particularly during the 1980s. However, recent years have seen much slower rates of increase in the public education sector but the population continues to grow rapidly. This study investigates the spatial distribution of schools through the use of questionnaire surveys and applied GIS. Overall, the results indicate a shortage of public secondary schools, especially in the north of the city. It is clear that there is overcrowding in the majority of secondary schools. The establishment of new schools has been suggested to solve the problem of overcrowding. A number of socio-economic and demographic factors are associated with differences in the utilization of the public secondary schools. A GIS was applied in this study in order to assess the spatial distribution of secondary schools including the modification of existing catchment area boundaries and locating new schools. This modification could also reduce the pupil pressure on certain schools and further benefits could probably be gained.

Keywords: analysis, distribution, Saudi, GIS, schools

Procedia PDF Downloads 549
4341 Characteristics of Different Volumes of Waste Cellular Concrete Powder-Cement Paste for Sustainable Construction

Authors: Mohammed Abed, Rita Nemes

Abstract:

Cellular concrete powder (CCP) is not used widely as supplementary cementitious material, but in the literature, its efficiency is proved when it used as a replacement of cement in concrete mixtures. In this study, different amounts of raw CCP (CCP as a waste material without any industrial modification) will be used to investigate the characteristics of cement pastes and the effects of CCP on the properties of the cement pastes. It is an attempt to produce green binder paste, which is useful for sustainable construction applications. The fresh and hardened properties of a number of CCP blended cement paste will be tested in different life periods, and the optimized CCP volume will be reported with more significant investigations on durability properties. Different replacing of mass percentage (low and high) of the cement mass will be conducted (0%, 10%, 15%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, and 90%). The consistency, flexural strength, and compressive strength will be the base indicator for the further properties' investigations. The CCP replacement until 50% have been tested until 7 days, and the initial results showed a linear relationship between strength and the percentage of the replacement; that is an optimistic indicator for further replacement percentages of waste CCP.

Keywords: cellular concrete powder, supplementary cementitious material, sustainable construction, green concrete

Procedia PDF Downloads 321
4340 Plaque Removal Efficacy of Different Dental Care Products during Fixed Orthodontic Appliance Therapy

Authors: Zeynep Karakoc, Hasan Ilhan Mutaf

Abstract:

Plaque removal efficacy of different dental brushes and mouth wash during fixed orthodontic appliance therapy was evaluated in this single-blind, crossover and prospective study. Thirty orthodontic patients aged 18 and over undergoing fixed appliance therapy at the end of leveling stage were divided into three groups. Subjects brushed their teeth with a toothbrush under standardized conditions for a period of 30 days prior to inter-dental care products. The same procedure was repeated each time with a different, randomly assigned inter-dental care products in a crossover design. (Inter-dental brush, powered inter-dental brush and mouth wash). At start and end of each removal period, plaque indexes of participants were scored. Each brush achieved statistically significant plaque removal; however, there were no statistical differences among groups for all surfaces of teeth when the plaque score was evaluated. The mouth wash group presented significant improvement in reduction of visible plaque on mesial and distal surfaces of posterior teeth. (-60.9 %, P< .001) Plaque removal for right and left side of mouth showed no significant differences within groups, only mouth wash was more efficient in right side than left side. It is concluded that effectiveness of plaque removal may not be related to the kind of inter-dental products directly. However, toothbrush when used with inter-dental care products is significantly better at removing plaque deposits from fixed appliance patients.

Keywords: orthodontics, dental care, brush, plaque

Procedia PDF Downloads 241
4339 A Numerical Investigation of Flow Maldistribution in Inlet Header Configuration of Plate Fin Heat Exchanger

Authors: Appasaheb Raul

Abstract:

Numerical analysis of a plate fin heat exchanger accounting for the effect of fluid flow maldistribution on the inlet header configuration of the heat exchanger is investigated. It is found that the flow maldistribution is very significant in normal to the flow direction. Various inlet configuration has been studied for various Reynolds Number. By the study, a modified header configuration is proposed and simulated. The two-dimensional parameters are used to evaluate the flow non-uniformity in the header, global flow maldistribution parameter (Sg), and Velocity Ratio (θ). A series of velocity vectors and streamline graphs at different cross-section are achieved and studied qualitatively with experimental results in the literature. The numerical result indicates that the flow maldistribution is serious in the conventional header while in the improved configuration less maldistribution occurs. The flow maldistribution parameter (Sg) and velocity ratio (θ) is reduced in improved configuration. The vortex decreases compared to that of the conventional configuration so the energy and pressure loss is reduced. The improved header can effectively enhance the efficiency of plate fin heat exchanger and uniformity of flow distribution.

Keywords: global flow maldistribution parameter, Sg, velocity ratio, plate fin heat exchanger, fluent 14.5

Procedia PDF Downloads 519
4338 Finding Data Envelopment Analysis Targets Using Multi-Objective Programming in DEA-R with Stochastic Data

Authors: R. Shamsi, F. Sharifi

Abstract:

In this paper, we obtain the projection of inefficient units in data envelopment analysis (DEA) in the case of stochastic inputs and outputs using the multi-objective programming (MOP) structure. In some problems, the inputs might be stochastic while the outputs are deterministic, and vice versa. In such cases, we propose a multi-objective DEA-R model because in some cases (e.g., when unnecessary and irrational weights by the BCC model reduce the efficiency score), an efficient decision-making unit (DMU) is introduced as inefficient by the BCC model, whereas the DMU is considered efficient by the DEA-R model. In some other cases, only the ratio of stochastic data may be available (e.g., the ratio of stochastic inputs to stochastic outputs). Thus, we provide a multi-objective DEA model without explicit outputs and prove that the input-oriented MOP DEA-R model in the invariable return to scale case can be replaced by the MOP-DEA model without explicit outputs in the variable return to scale and vice versa. Using the interactive methods for solving the proposed model yields a projection corresponding to the viewpoint of the DM and the analyst, which is nearer to reality and more practical. Finally, an application is provided.

Keywords: DEA-R, multi-objective programming, stochastic data, data envelopment analysis

Procedia PDF Downloads 104
4337 Evaluation of Trapping Efficiency of Slow Released Formulations of Methyl Eugenol with Lanolin Wax against Bactrocera zonata

Authors: Waleed Afzal Naveed, Muhammd Dildar Gogi, Muhammad Sufian, Muhammad Amjad Ali, Muhammad Junaid Nisar, Mubashar Iqbal, Amna Jalal, Faisal Munir

Abstract:

The study was carried out to evaluate the performance of Slow-Released Formulations (SRF) of Methyl eugenol with Lanolin wax in orchard of the University of Agriculture Faisalabad, Pakistan against fruit flies. Lanolin wax was mixed with methyl eugenol in nine ratios (10:90, 20:80, 30:70, 40:60, 50:50, 60:40, 70:30, 80:20 and 90:10). The results revealed that SRFₗₗ-7 trapped 42.1 flies /day/trap, exhibited an attractancy index (AI) of 51.71%, proved strongly attractive SRFₗₗ for B. zonata and was categorized as Class-III slow-released formulation (AI > 50%). The SRFₗₗ-2, SRFₗₗ-3, SRFₗₗ-4, SRFₗₗ-5, SRFₗₗ-6, SRFₗₗ-8 and SRFₗₗ-9 trapped 17.7, 27.9, 32.3, 23.8, 28.3, 37.8 and 19.9 flies /day/trap, exhibited an attractancy index (AI) of 20.54%, 41.02%, 26.00%, 34.15%, 43.50%, 49.86% and 46.07% AI respectively, proved moderately attractive slow-released formulations for B. zonata and were categorized as Class-II slow-released formulations (AI = 11-50%). However, SRFₗₗ-1 trapped 14.8 flies /day/trap, exhibited 0.71% AI proved little or nonattractive slow-released formulation and was categorized as Class-I slow-released formulation for B. zonata (AI < 11%).

Keywords: Bactrocera zonata, slow-released formulation, lenoline wax, methyl euginol

Procedia PDF Downloads 233
4336 Automated Video Surveillance System for Detection of Suspicious Activities during Academic Offline Examination

Authors: G. Sandhya Devi, G. Suvarna Kumar, S. Chandini

Abstract:

This research work aims to develop a system that will analyze and identify students who indulge in malpractices/suspicious activities during the course of an academic offline examination. Automated Video Surveillance provides an optimal solution which helps in monitoring the students and identifying the malpractice event immediately. This work is organized into three modules. The first module deals with performing an impersonation check using a PCA-based face recognition method which is done by cross checking his profile with the database. The presence or absence of the student is even determined in this module by implementing an image registration technique wherein a grid is formed by considering all the images registered using the frontal camera at the determined positions. Second, detecting such facial malpractices in which a student gets involved in conversation with another, trying to obtain unauthorized information etc., based on the threshold range evaluated by considering his/her mouth state whether open or closed. The third module deals with identification of unauthorized material or gadgets used in the examination hall by training the positive samples of the object through various stages. Here, a top view camera feed is analyzed to detect the suspicious activities. The system automatically alerts the administration when any suspicious activities are identified, thereby reducing the error rate caused due to manual monitoring. This work is an improvement over our previous work published in identifying suspicious activities done by examinees in an offline examination.

Keywords: impersonation, image registration, incrimination, object detection, threshold evaluation

Procedia PDF Downloads 225
4335 Comparative Study of Sub-Critical and Supercritical ORC Applications for Exhaust Waste Heat Recovery

Authors: Buket Boz, Alvaro Diez

Abstract:

Waste heat recovery by means of Organic Rankine Cycle is a promising technology for the recovery of engine exhaust heat. However, it is complex to find out the optimum cycle conditions with appropriate working fluids to match exhaust gas waste heat due to its high temperature. Hence, this paper focuses on comparing sub-critical and supercritical ORC conditions with eight working fluids on a combined diesel engine-ORC system. The model employs two ORC designs, Regenerative-ORC and Pre-Heating-Regenerative-ORC respectively. The thermodynamic calculations rely on the first and second law of thermodynamics, thermal efficiency and exergy destruction factors are the fundamental parameters evaluated. Additionally, in this study, environmental and safety, GWP (Global Warming Potential) and ODP (Ozone Depletion Potential), characteristic of the refrigerants are taken into consideration as evaluation criteria to define the optimal ORC configuration and conditions. Consequently, the studys outcomes reveal that supercritical ORCs with alkane and siloxane are more suitable for high temperature exhaust waste heat recovery in contrast to sub-critical conditions.

Keywords: internal combustion engine, organic Rankine cycle, waste heat recovery, working fluids

Procedia PDF Downloads 199
4334 State Budget Accounting: Factors Affected and Basic Orientation to Vietnamese Public Sector Entities

Authors: Pham Quang Huy

Abstract:

State budget is considered as an effective tool for controlling, adjusting and regulating the market economy of any countries. To ensure that the activities of the state in the fields of politics, economy and society has been efficiency, it requires major sources of certain budget. These financial funds are formed from tax revenues and tax revenues beyond. Therefore, the Governments need to have an accounting regime to manage the receipt, expenditure which are suitable for recording a full range of items. From that, it can help to increase the transparency and accountability in budget system. One of the main requirements in Vietnamese policies is to improve that accounting system of revenues and expenditures which can provide many reports to meet the information required of government and users, as well as directions to the trends of international standards requirements. By using quantitative research methods and analytical models to exploring factors, the main purpose of this article is to identify the factors affecting budget accounting and providing some direction for Vietnamese public sector in the future. The results indicated that Vietnam budget accounting has been impacted by seven factors and aims to implement three main orientations in the public sector units.

Keywords: state budget, accounting, IPSAS, budget management, government, public sector

Procedia PDF Downloads 269
4333 Tailoring of ECSS Standard for Space Qualification Test of CubeSat Nano-Satellite

Authors: B. Tiseo, V. Quaranta, G. Bruno, G. Sisinni

Abstract:

There is an increasing demand of nano-satellite development among universities, small companies, and emerging countries. Low-cost and fast-delivery are the main advantages of such class of satellites achieved by the extensive use of commercial-off-the-shelf components. On the other side, the loss of reliability and the poor success rate are limiting the use of nano-satellite to educational and technology demonstration and not to the commercial purpose. Standardization of nano-satellite environmental testing by tailoring the existing test standard for medium/large satellites is then a crucial step for their market growth. Thus, it is fundamental to find the right trade-off between the improvement of reliability and the need to keep their low-cost/fast-delivery advantages. This is particularly even more essential for satellites of CubeSat family. Such miniaturized and standardized satellites have 10 cm cubic form and mass no more than 1.33 kilograms per 1 unit (1U). For this class of nano-satellites, the qualification process is mandatory to reduce the risk of failure during a space mission. This paper reports the description and results of the space qualification test campaign performed on Endurosat’s CubeSat nano-satellite and modules. Mechanical and environmental tests have been carried out step by step: from the testing of the single subsystem up to the assembled CubeSat nano-satellite. Functional tests have been performed during all the test campaign to verify the functionalities of the systems. The test duration and levels have been selected by tailoring the European Space Agency standard ECSS-E-ST-10-03C and GEVS: GSFC-STD-7000A.

Keywords: CubeSat, nano-satellite, shock, testing, vibration

Procedia PDF Downloads 181
4332 Co-payment Strategies for Chronic Medications: A Qualitative and Comparative Analysis at European Level

Authors: Pedro M. Abreu, Bruno R. Mendes

Abstract:

The management of pharmacotherapy and the process of dispensing medicines is becoming critical in clinical pharmacy due to the increase of incidence and prevalence of chronic diseases, the complexity and customization of therapeutic regimens, the introduction of innovative and more expensive medicines, the unbalanced relation between expenditure and revenue as well as due to the lack of rationalization associated with medication use. For these reasons, co-payments emerged in Europe in the 70s and have been applied over the past few years in healthcare. Co-payments lead to a rationing and rationalization of user’s access under healthcare services and products, and simultaneously, to a qualification and improvement of the services and products for the end-user. This analysis, under hospital practices particularly and co-payment strategies in general, was carried out on all the European regions and identified four reference countries, that apply repeatedly this tool and with different approaches. The structure, content and adaptation of European co-payments were analyzed through 7 qualitative attributes and 19 performance indicators, and the results expressed in a scorecard, allowing to conclude that the German models (total score of 68,2% and 63,6% in both elected co-payments) can collect more compliance and effectiveness, the English models (total score of 50%) can be more accessible, and the French models (total score of 50%) can be more adequate to the socio-economic and legal framework. Other European models did not show the same quality and/or performance, so were not taken as a standard in the future design of co-payments strategies. In this sense, we can see in the co-payments a strategy not only to moderate the consumption of healthcare products and services, but especially to improve them, as well as a strategy to increment the value that the end-user assigns to these services and products, such as medicines.

Keywords: clinical pharmacy, co-payments, healthcare, medicines

Procedia PDF Downloads 248