Search results for: deterioration index
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 3957

Search results for: deterioration index

3897 An Association between Stock Index and Macro Economic Variables in Bangladesh

Authors: Shamil Mardi Al Islam, Zaima Ahmed

Abstract:

The aim of this article is to explore whether certain macroeconomic variables such as industrial index, inflation, broad money, exchange rate and deposit rate as a proxy for interest rate are interlinked with Dhaka stock price index (DSEX index) precisely after the introduction of new index by Dhaka Stock Exchange (DSE) since January 2013. Bangladesh stock market has experienced rapid growth since its inception. It might not be a very well-developed capital market as compared to its neighboring counterparts but has been a strong avenue for investment and resource mobilization. The data set considered consists of monthly observations, for a period of four years from January 2013 to June 2018. Findings from cointegration analysis suggest that DSEX and macroeconomic variables have a significant long-run relationship. VAR decomposition based on VAR estimated indicates that money supply explains a significant portion of variation of stock index whereas, inflation is found to have the least impact. Impact of industrial index is found to have a low impact compared to the exchange rate and deposit rate. Policies should there aim to increase industrial production in order to enhance stock market performance. Further reasonable money supply should be ensured by authorities to stimulate stock market performance.

Keywords: deposit rate, DSEX, industrial index, VAR

Procedia PDF Downloads 120
3896 Assessing Artificial Neural Network Models on Forecasting the Return of Stock Market Index

Authors: Hamid Rostami Jaz, Kamran Ameri Siahooei

Abstract:

Up to now different methods have been used to forecast the index returns and the index rate. Artificial intelligence and artificial neural networks have been one of the methods of index returns forecasting. This study attempts to carry out a comparative study on the performance of different Radial Base Neural Network and Feed-Forward Perceptron Neural Network to forecast investment returns on the index. To achieve this goal, the return on investment in Tehran Stock Exchange index is evaluated and the performance of Radial Base Neural Network and Feed-Forward Perceptron Neural Network are compared. Neural networks performance test is applied based on the least square error in two approaches of in-sample and out-of-sample. The research results show the superiority of the radial base neural network in the in-sample approach and the superiority of perceptron neural network in the out-of-sample approach.

Keywords: exchange index, forecasting, perceptron neural network, Tehran stock exchange

Procedia PDF Downloads 420
3895 Prediction of Index-Mechanical Properties of Pyroclastic Rock Utilizing Electrical Resistivity Method

Authors: İsmail İnce

Abstract:

The aim of this study is to determine index and mechanical properties of pyroclastic rock in a practical way by means of electrical resistivity method. For this purpose, electrical resistivity, uniaxial compressive strength, point load strength, P-wave velocity, density and porosity values of 10 different pyroclastic rocks were measured in the laboratory. A simple regression analysis was made among the index-mechanical properties of the samples compatible with electrical resistivity values. A strong exponentially relation was found between index-mechanical properties and electrical resistivity values. The electrical resistivity method can be used to assess the engineering properties of the rock from which it is difficult to obtain regular shaped samples as a non-destructive method.

Keywords: electrical resistivity, index-mechanical properties, pyroclastic rocks, regression analysis

Procedia PDF Downloads 440
3894 Assessment of Water Quality of Euphrates River at Babylon Governorate, for Drinking, Irrigation and general, Using Water Quality Index (Canadian Version) (CCMEWQI)

Authors: Amer Obaid Saud

Abstract:

Water quality index (WQI) is considered as an effective tool in categorization of water resources for its quality and suitability for different uses. The Canadian version of water quality index (CCME WQI) which based on the comparison of the water quality parameters to regulatory standards and give a single value to the water quality of a source was applied in this study to assess the water quality of Euphrates river in Iraq at Babylon Governorate north of Baghdad and determine its suitability for aquatic environment (GWQI), drinking water (PWSI) and irrigation(IWQI). Five stations were selected on the river in Babylon (Euphrates River/AL-Musiab, Hindia barrage, two stations at Hilla city and the fifth station at Al-Hshmeya north of Hilla. Fifteen water samples were collected every month during August 2013 to July 2014 at the study sites and analyzed for the physico-chemical parameters like (Temperature, pH, Electrical Conductivity, Total Dissolved Solids(TDS), Total Suspended Solids(TSS), Total Alkalinity, Total Hardness, Calcium and Magnesium Concentration, some of nutrient like Nitrite, Nitrate, Phosphate also the study of concentration of some heavy metals (Fe, Pb, Zn, Cu, Mn, and Cd) in water and comparison of measures to benchmarks such as guidelines and objectives to assess change in water quality. The result of Canadian version of(CCME .WQI) to assess the irrigation water quality (IWQI) of Euphrates river was (83-good) at site one during second seasonal period while the lowest was (66-Fair) in the second station during the fourth seasonal period, the values of potable water supply index (PWSI)that the highest value was (68-Fair) in the fifth site during the second period while the lowest value (42 -Poor) in the second site during the first seasonal period,the highest value for general water quality (GWQI) was (74-Fair) in site five during the second seasonal period, the lowest value (48-Marginal) in the second site during the first seasonal period. It was observed that the main cause of deterioration in water quality was due to the lack of, unprotected river sites ,high anthropogenic activities and direct discharge of industrial effluent.

Keywords: Babylon governorate, Canadian version, water quality, Euphrates river

Procedia PDF Downloads 375
3893 A Particle Swarm Optimal Control Method for DC Motor by Considering Energy Consumption

Authors: Yingjie Zhang, Ming Li, Ying Zhang, Jing Zhang, Zuolei Hu

Abstract:

In the actual start-up process of DC motors, the DC drive system often faces a conflict between energy consumption and acceleration performance. To resolve the conflict, this paper proposes a comprehensive performance index that energy consumption index is added on the basis of classical control performance index in the DC motor starting process. Taking the comprehensive performance index as the cost function, particle swarm optimization algorithm is designed to optimize the comprehensive performance. Then it conducts simulations on the optimization of the comprehensive performance of the DC motor on condition that the weight coefficient of the energy consumption index should be properly designed. The simulation results show that as the weight of energy consumption increased, the energy efficiency was significantly improved at the expense of a slight sacrifice of fastness indicators with the comprehensive performance index method. The energy efficiency was increased from 63.18% to 68.48% and the response time reduced from 0.2875s to 0.1736s simultaneously compared with traditional proportion integrals differential controller in energy saving.

Keywords: comprehensive performance index, energy consumption, acceleration performance, particle swarm optimal control

Procedia PDF Downloads 126
3892 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 259
3891 Correlation between the Sowing Date and Yield of Maize on Chernozem Soil, in Connection with the Leaf Area Index and Photosynthesis

Authors: Enikő Bene

Abstract:

Our sowing date experiment took place in the Demonstration Garden of Institution of Plant Sciences, Agricultural Center of University of Debrecen, in 2012-2014. The thesis contains data of test year 2014. Our purpose, besides several other examinations, was to observe how sowing date influences leaf area index and activity of photosynthesis of maize hybrids, and how those factors affect fruiting. In the experiment we monitored the change of the leaf area index and the photosynthesis of hybrids with four different growing seasons. The results obtained confirm that not only the environmental and agricultural factors in the growing season have effect on the yield, but also other factors like the leaf area index and the photosynthesis are determinative parameters, and all those factors together, modifying effects of each other, develop average yields

Keywords: sowing date, hybrid, leaf area index, photosynthetic capacity

Procedia PDF Downloads 300
3890 Development of Sleep Quality Index Using Heart Rate

Authors: Dongjoo Kim, Chang-Sik Son, Won-Seok Kang

Abstract:

Adequate sleep affects various parts of one’s overall physical and mental life. As one of the methods in determining the appropriate amount of sleep, this research presents a heart rate based sleep quality index. In order to evaluate sleep quality using the heart rate, sleep data from 280 subjects taken over one month are used. Their sleep data are categorized by a three-part heart rate range. After categorizing, some features are extracted, and the statistical significances are verified for these features. The results show that some features of this sleep quality index model have statistical significance. Thus, this heart rate based sleep quality index may be a useful discriminator of sleep.

Keywords: sleep, sleep quality, heart rate, statistical analysis

Procedia PDF Downloads 309
3889 Service Life Modelling of Concrete Deterioration Due to Biogenic Sulphuric Acid (BSA) Attack-State-of-an-Art-Review

Authors: Ankur Bansal, Shashank Bishnoi

Abstract:

Degradation of Sewage pipes, sewage pumping station and Sewage treatment plants(STP) is of major concern due to difficulty in their maintenance and the high cost of replacement. Most of these systems undergo degradation due to Biogenic sulphuric acid (BSA) attack. Since most of Waste water treatment system are underground, detection of this deterioration remains hidden. This paper presents a literature review, outlining the mechanism of this attack focusing on critical parameters of BSA attack, along with available models and software to predict the deterioration due to this attack. This paper critically examines the various steps and equation in various Models of BSA degradation, detail on assumptions and working of different softwares are also highlighted in this paper. The paper also focuses on the service life design technique available through various codes and method to integrate the servile life design with BSA degradation on concrete. In the end, various methods enhancing the resistance of concrete against Biogenic sulphuric acid attack are highlighted. It may be concluded that the effective modelling for degradation phenomena may bring positive economical and environmental impacts. With current computing capabilities integrated degradation models combining the various durability aspects can bring positive change for sustainable society.

Keywords: concrete degradation, modelling, service life, sulphuric acid attack

Procedia PDF Downloads 285
3888 Application of Benford's Law in Analysis of Frankfurt Stock Exchange Index (DAX) Percentage Changes

Authors: Mario Zgela

Abstract:

Application of Benford’s Law is very rarely covered in the field of stock market analysis, especially in percentage change of stock market indices. Deutscher Aktien IndeX (DAX) is very important stock market index of Frankfurt Deutsche Börse which serves as underlying basis for large number of financial instruments. It is calculated for selected 30 German blue chips stocks. In this paper, Benford's Law first digit test is applied on 10 year DAX daily percentage changes in order to check compliance. Deviations of 10 year DAX percentage changes set as well as distortions of certain subsets from Benford's Law distribution are detected. It is possible that deviations are the outcome of speculations; and psychological influence should not be eliminated.

Keywords: Benford's Law, DAX, index percentage changes, stock market

Procedia PDF Downloads 268
3887 Health Monitoring of Concrete Assets in Refinery

Authors: Girish M. Bhatia

Abstract:

Most of the important structures in refinery complex are RCC Structures for which in-depth structural monitoring and inspection is required for incessant service. Reinforced concrete structures can be under threat from a combination of insidious challenges due to environmental conditions, including temperature and humidity that lead to accelerated deterioration mechanisms like carbonation, as well as marine exposure, above and below ground structures can experience ingress from aggressive ground waters carrying chlorides and sulphates leading to unexpected deterioration that threaten the integrity of a vital structural asset. By application of health monitoring techniques like corrosion monitoring with help of sensor probes, visual inspection of high rise structures with help of drones, it is possible to establish an early warning at the onset of these destructive processes.

Keywords: concrete structures, corrosion sensors, drones, health monitoring

Procedia PDF Downloads 371
3886 Measuring Development through Extreme Observations: An Archetypal Analysis Approach to Index Construction

Authors: Claudeline D. Cellan

Abstract:

Development is multifaceted, and efforts to hasten growth in all these facets have been gaining traction in recent years. Thus, producing a composite index that is reflective of these multidimensional impacts captures the interests of policymakers. The problem lies in going through a mixture of theoretical, methodological and empirical decisions and complexities which, when done carelessly, can lead to inconsistent and unreliable results. This study looks into index computation from a different and less complex perspective. Borrowing the idea of archetypes or ‘pure types’, archetypal analysis looks for points in the convex hull of the multivariate data set that captures as much information in the data as possible. The archetypes or 'pure types' are estimated such that they are convex combinations of all the observations, which in turn are convex combinations of the archetypes. This ensures that the archetypes are realistically observable, therefore achievable. In the sense of composite indices, we look for the best among these archetypes and use this as a benchmark for index computation. Its straightforward and simplistic approach does away with aggregation and substitutability problems which are commonly encountered in index computation. As an example of the application of archetypal analysis in index construction, the country data for the Human Development Index (HDI 2017) of the United Nations Development Programme (UNDP) is used. The goal of this exercise is not to replicate the result of the UNDP-computed HDI, but to illustrate the usability of archetypal analysis in index construction. Here best is defined in the context of life, education and gross national income sub-indices. Results show that the HDI from the archetypal analysis has a linear relationship with the UNDP-computed HDI.

Keywords: archetypes, composite index, convex combination, development

Procedia PDF Downloads 92
3885 Some Conjectures and Programs about Computing the Detour Index of Molecular Graphs of Nanotubes

Authors: Shokofeh Ebrtahimi

Abstract:

Let G be the chemical graph of a molecule. The matrix D = [dij ] is called the detour matrix of G, if dij is the length of longest path between atoms i and j. The sum of all entries above the main diagonal of D is called the detour index of G.Chemical graph theory is the topology branch of mathematical chemistry which applies graph theory to mathematical modelling of chemical phenomena.[1] The pioneers of the chemical graph theory are Alexandru Balaban, Ante Graovac, Ivan Gutman, Haruo Hosoya, Milan Randić and Nenad TrinajstićLet G be the chemical graph of a molecule. The matrix D = [dij ] is called the detour matrix of G, if dij is the length of longest path between atoms i and j. The sum of all entries above the main diagonal of D is called the detour index of G. In this paper, a new program for computing the detour index of molecular graphs of nanotubes by heptagons is determineded. Some Conjectures about detour index of Molecular graphs of nanotubes is included.

Keywords: chemical graph, detour matrix, Detour index, carbon nanotube

Procedia PDF Downloads 257
3884 Clinical and Sleep Features in an Australian Population Diagnosed with Mild Cognitive Impairment

Authors: Sadie Khorramnia, Asha Bonney, Kate Galloway, Andrew Kyoong

Abstract:

Sleep plays a pivotal role in the registration and consolidation of memory. Multiple observational studies have demonstrated that self-reported sleep duration and sleep quality are associated with cognitive performance. Montreal Cognitive Assessment questionnaire is a screening tool to assess mild cognitive (MCI) impairment with a 90% diagnostic sensitivity. In our current study, we used MOCA to identify MCI in patients who underwent sleep study in our sleep department. We then looked at the clinical risk factors and sleep-related parameters in subjects found to have mild cognitive impairment but without a diagnosis of sleep-disordered breathing. Clinical risk factors, including physician, diagnosed hypertension, diabetes, and depression and sleep-related parameters, measured during sleep study, including percentage time of each sleep stage, total sleep time, awakenings, sleep efficiency, apnoea hypopnoea index, and oxygen saturation, were evaluated. A total of 90 subjects who underwent sleep study between March 2019 and October 2019 were included. Currently, there is no pharmacotherapy available for MCI; therefore, identifying the risk factors and attempting to reverse or mitigate their effect is pivotal in slowing down the rate of cognitive deterioration. Further characterization of sleep parameters in this group of patients could open up opportunities for potentially beneficial interventions.

Keywords: apnoea hypopnea index, mild cognitive impairment, sleep architecture, sleep study

Procedia PDF Downloads 118
3883 An Experimental Study on Service Life Prediction of Self: Compacting Concrete Using Sorptivity as a Durability Index

Authors: S. Girish, N. Ajay

Abstract:

Permeation properties have been widely used to quantify durability characteristics of concrete for assessing long term performance and sustainability. The processes of deterioration in concrete are mediated largely by water. There is a strong interest in finding a better way of assessing the material properties of concrete in terms of durability. Water sorptivity is a useful single material property which can be one of the measures of durability useful in service life planning and prediction, especially in severe environmental conditions. This paper presents the results of the comparative study of sorptivity of Self-Compacting Concrete (SCC) with conventionally vibrated concrete. SCC is a new, special type of concrete mixture, characterized by high resistance to segregation that can flow through intricate geometrical configuration in the presence of reinforcement, under its own mass, without vibration and compaction. SCC mixes were developed for the paste contents of 0.38, 0.41 and 0.43 with fly ash as the filler for different cement contents ranging from 300 to 450 kg/m3. The study shows better performance by SCC in terms of capillary absorption. The sorptivity value decreased as the volume of paste increased. The use of higher paste content in SCC can make the concrete robust with better densification of the micro-structure, improving the durability and making the concrete more sustainable with improved long term performance. The sorptivity based on secondary absorption can be effectively used as a durability index to predict the time duration required for the ingress of water to penetrate the concrete, which has practical significance.

Keywords: self-compacting concrete, service life prediction, sorptivity, volume of paste

Procedia PDF Downloads 290
3882 Critical Thinking Index of College Students

Authors: Helen Frialde-Dupale

Abstract:

Critical thinking Index (CTI) of 150 third year college students from five State Colleges and Universities (SUCs) in Region I were determined. Only students with Grade Point Average (GPA) of at least 2.0 from four general classification of degree courses, namely: Education, Arts and Sciences, Engineering and Agriculture were included. Specific problem No.1 dealt with the profile variables, namely: age, sex, degree course, monthly family income, number of siblings, high school graduated from, grade point average, personality type, highest educational attainment of parents, and occupation of parents. Problem No. 2 determined the critical thinking index among the respondents. Problem No. 3 investigated whether or not there are significant differences in the critical thinking index among the respondents across the profile variables. While problem No.4 determined whether or not there are significant relationship between the critical thinking index and selected profile variables, namely: age, monthly family income, number of siblings, and grade point average of the respondents. Finally, on problem No. 5, the critical thinking instrument which obtained the lowest rates, were used as basis for outlining an intervention program for enhancing critical thinking index (CTI) of students. The following null hypotheses were tested at 0.05 level of significance: there are no significant differences in the critical thinking index of the third college students across the profile variables; there are no significant relationships between the critical thinking index of the respondents and selected variables, namely: age, monthly family income, number of siblings, and grade point average.

Keywords: attitude as critical thinker, critical thinking applied, critical thinking index, self-perception as critical thinker

Procedia PDF Downloads 490
3881 Determining a Bilingualism Index: Evidence From Lebanese Control Bilinguals

Authors: Rania Kassir, Christophe Dos Santos, Halim Abboud, Olivier Godefroy

Abstract:

The ability to communicate in at least two different languages is shared by a growing number of humans. Recently, many researchers have been studying the elderly bilingual population around the world in neuroscience, and yet, until today there’s no accurate nor universal measure or methodology used to examine bilingualism across these studies which constitute a real challenge for results generalization. This study contributes to the quest of a multidimensional bilingualism index and language proficiency literature by investigating a new bilingualism index from a reliable subjective questionnaire the Language Experience and Proficiency Questionnaire (LEAP-Q), multi-linguistic tests, and a diverse bilingual population all featured in one analysis and one index. One hundred Lebanese subjects aged between 55 and 92 years old divided into three different bilingualism subgroups (Arabic prominent, balanced, and French prominent) were recruited and underwent the LEAP-Q with a set of linguistic and cognitive tests. The analysis of the collected data led to the creation of a robust bilingualism index from speaking and oral understanding scores that underline specifically bilingualism subtype according to cutoffs scored. The practice implications of this index, particularly its use within bilingual populations, are addressed in the conclusion of this work.

Keywords: bilingualism, language dominance, bilingualism index, balanced bilingualism, Arabic first language, Lebanese, Arabic-French bilingualism

Procedia PDF Downloads 101
3880 Teacher's Health: Evaluation of the Health Status of Portuguese and Spanish Teachers

Authors: Liberata Borralho, Saúl N. de Jesus, Adelinda Candeias, Victória Fernández-Puig

Abstract:

In the last decades, we have witnessed a deterioration in the health of teachers worldwide, reflecting the constant social, political and economic changes. The quality of teaching and the success of students depends on the health status of the teachers, which justifies the importance of periodically evaluating their health. With this purpose, the Teacher’s Health Questionnaire was applied to 15.394 teachers teaching in Portugal and Spain (6.208 Spanish and 9.186 Portuguese) of primary and secondary education (3.482 men, 11.911 women). This questionnaire is specific and includes both the main risks of the teaching profession and the manifestations of teacher well-being, according to the definition recommended by the World Health Organization. A descriptive analysis of the results was carried out, including a study of the dimensions and the differences according to some sociodemographic and professional variables, from an analysis of variance ANOVA, applying the Bonferroni correction. Cluster analysis (K-means) allowed us to obtain cutoff scores to assess health status. The results allow concluding that Portuguese teachers perceive a poor well-being in the performance of their professional activity and that more than half present manifestations in the various dimensions of health deterioration, highlighting the exhaustion and cognitive disorders. In turn, Spanish teachers demonstrate a high level of well-being, being the musculoskeletal dimensions and cognitive disorders the main manifestations of deterioration of health.

Keywords: job prevention, occupational health, teacher’s health, teachers work risks, teacher’s well-being

Procedia PDF Downloads 206
3879 Vegetation Index-Deduced Crop Coefficient of Wheat (Triticum aestivum) Using Remote Sensing: Case Study on Four Basins of Golestan Province, Iran

Authors: Hoda Zolfagharnejad, Behnam Kamkar, Omid Abdi

Abstract:

Crop coefficient (Kc) is an important factor contributing to estimation of evapotranspiration, and is also used to determine the irrigation schedule. This study investigated and determined the monthly Kc of winter wheat (Triticum aestivum L.) using five vegetation indices (VIs): Normalized Difference Vegetation Index (NDVI), Difference Vegetation Index (DVI), Soil Adjusted Vegetation Index (SAVI), Infrared Percentage Vegetation Index (IPVI), and Ratio Vegetation Index (RVI) of four basins in Golestan province, Iran. 14 Landsat-8 images according to crop growth stage were used to estimate monthly Kc of wheat. VIs were calculated based on infrared and near infrared bands of Landsat 8 images using Geographical Information System (GIS) software. The best VIs were chosen after establishing a regression relationship among these VIs with FAO Kc and Kc that was modified for the study area by the previous research based on R² and Root Mean Square Error (RMSE). The result showed that local modified SAVI with R²= 0.767 and RMSE= 0.174 was the best index to produce monthly wheat Kc maps.

Keywords: crop coefficient, remote sensing, vegetation indices, wheat

Procedia PDF Downloads 377
3878 Optimal Opportunistic Maintenance Policy for a Two-Unit System

Authors: Nooshin Salari, Viliam Makis, Jane Doe

Abstract:

This paper presents a maintenance policy for a system consisting of two units. Unit 1 is gradually deteriorating and is subject to soft failure. Unit 2 has a general lifetime distribution and is subject to hard failure. Condition of unit 1 of the system is monitored periodically and it is considered as failed when its deterioration level reaches or exceeds a critical level N. At the failure time of unit 2 system is considered as failed, and unit 2 will be correctively replaced by the next inspection epoch. Unit 1 or 2 are preventively replaced when deterioration level of unit 1 or age of unit 2 exceeds the related preventive maintenance (PM) levels. At the time of corrective or preventive replacement of unit 2, there is an opportunity to replace unit 1 if its deterioration level reaches the opportunistic maintenance (OM) level. If unit 2 fails in an inspection interval, system stops operating although unit 1 has not failed. A mathematical model is derived to find the preventive and opportunistic replacement levels for unit 1 and preventive replacement age for unit 2, that minimize the long run expected average cost per unit time. The problem is formulated and solved in the semi-Markov decision process (SMDP) framework. Numerical example is provided to illustrate the performance of the proposed model and the comparison of the proposed model with an optimal policy without opportunistic maintenance level for unit 1 is carried out.

Keywords: condition-based maintenance, opportunistic maintenance, preventive maintenance, two-unit system

Procedia PDF Downloads 170
3877 Mine Production Index (MPi): New Method to Evaluate Effectiveness of Mining Machinery

Authors: Amol Lanke, Hadi Hoseinie, Behzad Ghodrati

Abstract:

OEE has been used in many industries as measure of performance. However due to limitations of original OEE, it has been modified by various researchers. OEE for mining application is special version of classic equation, carries these limitation over. In this paper it has been aimed to modify the OEE for mining application by introducing the weights to the elements of it and termed as Mine Production index (MPi). As a special application of new index MPi shovel has been developed by team of experts and researchers for evaluating the shovel effectiveness. Based on analysis, utilization followed by performance and availability were ranked in this order. To check the applicability of this index, a case study was done on four electrical and one hydraulic shovel in a Swedish mine. The results shows that MPishovelcan properly evaluate production effectiveness of shovels and determine effectiveness values in optimistic view compared to OEE. MPi with calculation not only give the effectiveness but also can predict which elements should be focused for improving the productivity.

Keywords: mining, overall equipment efficiency (OEE), mine production index, shovels

Procedia PDF Downloads 434
3876 Ecological Tourism Performance and Environmental Sustainability of Mediterranean Countries

Authors: Mehmet Tahir Dursun, Hilmi Rafet Yüncü

Abstract:

In social life growing fast, not only people, but also, companies and regions are located in a struggle to provide continuity of life cycles. This struggle brings together an important competitiveness when considering environmental conditions. By emphasizing this point, being able to competitiveness notion comes out as a determiner of the struggle to exist. With the development of technology in tourism industry so as in all branches, it is seen that the companies and regions in different districts are in competitiveness and competitiveness ability is affected in assessing of marketing shares. A condition of competitiveness is to provide sustainability of all structured forms. In addition, environment and sensitiveness of environment are notions affecting directly the competitiveness ability of tourism destinations. It is claimed that providing the sustainability of environment gives competitiveness to tourism destinations. In this study, competitiveness and performances of tourism in Mediterranean countries are going to be compared by examining a variety of indexes related to the sensitiveness of environment. Travel and Tourism Competitiveness Index (T&TCI) (Environmental Sustainability and Natural Resources), Environmental Performance Index (EPI), Ecological Foot Print, Human Development Index (HDI), Climate Risk Index (CRI) will be used in this study. These Index data will be compared with international tourist arrivals, international tourism receives and expenses of per tourist of countries.

Keywords: ecological foot print, environmental performance index, human development index, sustainability, travel and tourism competitiveness index

Procedia PDF Downloads 322
3875 Comprehensive Regional Drought Assessment Index

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

Abstract:

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

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

Procedia PDF Downloads 213
3874 Selective Excitation of Circular Helical Modes in Graded Index Fibers

Authors: S. Al-Sowayan

Abstract:

The impact of selective excitation of circular helical modes of graded-index fibers on its capacity is analyzed using a model for propagation delay variation with launch offset and angle that resulted from misalignment of source and fiber axis. Results show that promising technique to improve graded-index fiber capacities.

Keywords: fiber measurements, fiber optic, communications, circular helical modes

Procedia PDF Downloads 758
3873 A Comparitive Study of the Effect of Stress on the Cognitive Parameters in Women with Increased Body Mass Index before and after Menopause

Authors: Ramesh Bhat, Ammu Somanath, A. K. Nayanatara

Abstract:

Background: The increasing prevalence of overweight and obesity is a critical public health problem for women. The negative effect of stress on memory and cognitive functions has been widely explored for decades in numerous research projects using a wide range of methodology. Deterioration of memory and other brain functions are hallmarks of Alzheimer’s disease. Estrogen fluctuations and withdrawal have myriad direct effects on the central nervous system that have the potential to influence cognitive functions. Aim: The present study aims to compare the effect of stress on the cognitive functions in overweight/obese women before and after menopause. Material and Methods: A total of 142 female subjects constituting women before menopause between the age group of 18–44 years and women after menopause between the age group of 45–60 years were included in the sample. Participants were categorized into overweight/obese groups based on the body mass index. The Perceived Stress Scale (PSS) the major tool was used for measuring the perception of stress. Based on the stress scale measurement each group was classified into with stress and without stress. Addenbrooke’s cognitive Examination-III was used for measuring the cognitive functions. Results: Premenopausal women with stress showed a significant (P<0.05) decrease in the cognitive parameters such as attention and orientation Fluency, language and visuospatial ability. Memory did not show any significant change in this group. Whereas, in the postmenopausal stressed women all the cognitive functions except fluency showed a significant (P<0.05) decrease after menopause stressed group. Conclusion: Stress is a significant factor on the cognitive functions of obese and overweight women before and after menopause. Practice of Yoga, Encouragement in activities like gardening, embroidery, games and relaxation techniques should be recommended to prevent stress. Insights into the neurobiology before and after menopause can be gained from future studies examining the effect on the HPA axis in relation to cognition and stress.

Keywords: cognition, stress, premenopausal, body mass index

Procedia PDF Downloads 285
3872 Impact of Short-Term Drought on Vegetation Health Condition in the Kingdom of Saudi Arabia Using Space Data

Authors: E. Ghoneim, C. Narron, I. Iqbal, I. Hassan, E. Hammam

Abstract:

The scarcity of water is becoming a more prominent threat, especially in areas that are already arid in nature. Although the Kingdom of Saudi Arabia (KSA) is an arid country, its southwestern region offers a high variety of botanical landscapes, many of which are wooded forests, while the eastern and northern regions offer large areas of groundwater irrigated farmlands. At present, some parts of KSA, including forests and farmlands, have witnessed protracted and severe drought due to change in rainfall pattern as a result of global climate change. Such prolonged drought that last for several consecutive years is expected to cause deterioration of forested and pastured lands as well as cause crop failure in the KSA (e.g., wheat yield). An analysis to determine vegetation drought vulnerability and severity during the growing season (September-April) over a fourteen year period (2000-2014) in KSA was conducted using MODIS Terra imagery. The Vegetation Condition Index (VCI), derived from the Normalized Difference Vegetation Index (NDVI), and the Temperature Condition Index (TCI), derived from the Land Surface Temperature (LST) data was extracted from MODIS Terra Images. The VCI and TCI were then combined to compute the Vegetation Health Index (VHI). The VHI revealed the overall vegetation health for the area under investigation. A preliminary outcome of the modeled VHI over KSA, using averaged monthly vegetation data over a 14-year period, revealed that the vegetation health condition is deteriorating over time in both naturally vegetated areas and irrigated farmlands. The derived drought map for KSA indicates that both extreme and severe drought occurrences have considerably increased over the same study period. Moreover, based on the cumulative average of drought frequency in each governorate of KSA it was determined that Makkah and Jizan governorates to the east and southwest, witness the most frequency of extreme drought, whereas Tabuk to the northwest, exhibits the less extreme drought frequency. Areas where drought is extreme or severe would most likely have negative influences on agriculture, ecosystems, tourism, and even human welfare. With the drought risk map the kingdom could make informed land management decisions including were to continue with agricultural endeavors and protect forested areas and even where to develop new settlements.

Keywords: drought, vegetation health condition, TCI, Saudi Arabia

Procedia PDF Downloads 349
3871 Effects of Type and Concentration Stabilizers on the Characteristics of Nutmeg Oil Nanoemulsions Prepared by High-Pressure Homogenization

Authors: Yuliani Aisyah, Sri Haryani, Novi Safriani

Abstract:

Nutmeg oil is one of the essential oils that have the ability as an antibacterial so it potentially uses to inhibit the growth of undesirable microbes in food. However, the essential oil that has low solubility in water, high volatile content, and strong aroma properties is difficult to apply in to foodstuffs. Therefore, the oil-in-water nanoemulsion system was used in this research. Gelatin, lecithin and tween 80 with 10%, 20%, 30% concentrations have been examined for the preparation of nutmeg oil nanoemulsions. The physicochemical properties and stability of nutmeg oil nanoemulsion were analyzed on viscosity, creaming index, emulsifying activity, droplet size, and polydispersity index. The results showed that the type and concentration stabilizer had a significant effect on viscosity, creaming index, droplet size and polydispersity index (P ≤ 0,01). The nanoemulsions stabilized with tween 80 had the best stability because the creaming index value was 0%, the emulsifying activity value was 100%, the droplet size was small (79 nm) and the polydispersity index was low (0.10) compared to the nanoemulsions stabilized with gelatin and lecithin. In brief, Tween 80 is strongly recommended to be used for stabilizing nutmeg oil nanoemulsions.

Keywords: nanoemulsion, nutmeg oil, stabilizer, stability

Procedia PDF Downloads 130
3870 A Comparison of Income and Fuzzy Index of Multidimensional Poverty in Fourteen Sub-Saharan African Countries

Authors: Joseph Siani

Abstract:

Over the last decades, dissatisfaction with global indicators of economic performance, such as GDP (Gross Domestic Product) per capita, has shifted the attention to what is now referred to as multidimensional poverty. In this framework, poverty goes beyond income to incorporate aspects of well-being not captured by income measures alone. This paper applies the totally fuzzy approach to estimate the fuzzy index of poverty (FIP) in fourteen Sub-Saharan African (SSA) countries using Demographic and Health Survey (DHS) data and explores whether pictures created by the standard headcount ratio at $1.90 a day and the fuzzy index of poverty tell a similar story. The results suggest that there is indeed considerable mismatch between poverty headcount and the fuzzy index of multidimensional poverty, meaning that the majority of the most deprived people (as identified by the fuzzy index of multidimensional poverty) would not be identified by the poverty headcount ratio. Moreover, we find that poverty is distributed differently by colonial heritage (language). In particular, the most deprived countries in SSA are French-speaking.

Keywords: fuzzy set approach, multidimensional poverty, poverty headcount, overlap, Sub-Saharan Africa

Procedia PDF Downloads 167
3869 Inventory Decisions for Perishable Products with Age and Stock Dependent Demand Rate

Authors: Maher Agi, Hardik Soni

Abstract:

This paper presents a deterministic model for optimized control of the inventory of a perishable product subject to both physical deterioration and degradation of its freshness condition. The demand for the product depends on its current inventory level and freshness condition. Our model allows for any positive amount of end of cycle inventory. Some useful conditions that characterize the optimal solution of the model are derived and an algorithm is presented for finding the optimal values of the price, the inventory cycle, the end of cycle inventory level and the order quantity. Numerical examples are then given. Our work shows how the product freshness in conjunction with the inventory deterioration affects the inventory management decisions.

Keywords: inventory management, lot sizing, perishable products, deteriorating inventory, age-dependent demand, stock-dependent demand

Procedia PDF Downloads 214
3868 The Influence of Cycle Index of Simulation Condition on Main Bearing Wear Prognosis of Internal Combustion Engine

Authors: Ziyu Diao, Yanyan Zhang, Zhentao Liu, Ruidong Yan

Abstract:

The update frequency of wear profile in main bearing wear prognosis of internal combustion engine plays an important role in the calculation efficiency and accuracy. In order to investigate the appropriate cycle index of the simplified working condition of wear simulation, the main bearing-crankshaft journal friction pair of a diesel engine in service was studied in this paper. The method of multi-body dynamics simulation was used, and the wear prognosis model of the main bearing was established. Several groups of cycle indexes were set up for the wear calculation, and the maximum wear depth and wear profile were compared and analyzed. The results showed that when the cycle index reaches 3, the maximum deviation rate of the maximum wear depth is about 2.8%, and the maximum deviation rate comes to 1.6% when the cycle index reaches 5. This study provides guidance and suggestions for the optimization of wear prognosis by selecting appropriate value of cycle index according to the requirement of calculation cost and accuracy of the simulation work.

Keywords: cycle index, deviation rate, wear calculation, wear profile

Procedia PDF Downloads 132