Search results for: education index
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 10233

Search results for: education index

10173 Computing Some Topological Descriptors of Single-Walled Carbon Nanotubes

Authors: Amir Bahrami

Abstract:

In the fields of chemical graph theory, molecular topology, and mathematical chemistry, a topological index or a descriptor index also known as a connectivity index is a type of a molecular descriptor that is calculated based on the molecular graph of a chemical compound. Topological indices are numerical parameters of a graph which characterize its topology and are usually graph invariant. Topological indices are used for example in the development of quantitative structure-activity relationships (QSARs) in which the biological activity or other properties of molecules are correlated with their chemical structure. In this paper some descriptor index (descriptor index) of single-walled carbon nanotubes, is determined.

Keywords: chemical graph theory, molecular topology, molecular descriptor, single-walled carbon nanotubes

Procedia PDF Downloads 303
10172 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 123
10171 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 422
10170 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 442
10169 Attitudes of Secondary School Students towards Science and Technical Education in Yauri Metropolis Kebbi State, Nigeria

Authors: Ibrahim Alhassan Libata

Abstract:

This study was carried out to assess attitude of secondary school students towards science and technical education in Yauri metropolis, Kebbi State, Nigeria. The population of the study was 200. Proportionate random sampling method was used in selecting 132 as sample size. Science and technical education is the most powerful forces for change in the world today, and students who hope to have a hand in shaping a better future must participate for their advancements. Four Null hypotheses were generated to guide the conduct of the study, questionnaire was the only instrument used in the study; the instrument was subjected to test-retest reliability. The reliability index of the instrument was 0.69. Overall scores of the Students were analyzed and a mean score was determined, the mean score of students was 85. There were no significant differences between the attitudes of male and female students towards science and technical education. The results also revealed that there was significant difference between the attitude of boding and day school students towards science and technical education, personality constraints of students is one factor militating against the participation of students in science and technical education, socio-economic status of the parents over the years have been the dominant factor of student’s inadequate representation in the field of science and technical education. Based on the findings of this study, the researcher recommended that teachers should motivate students, which they can do through their teaching styles and by showing them the relevance of the learning topics to their everyday lives. Government and the school management should create the learning environment that helps motivate students not only to come to classes but also want to learn and enjoy learning science and technical education, establishment of more Science and Technical Colleges education, more Public enlightenment campaigns to motivate parents and the entire community to support their children in studying science and technical education.

Keywords: attitude, students, science, Yauri

Procedia PDF Downloads 218
10168 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 129
10167 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 260
10166 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 304
10165 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 311
10164 The Use of Methods and Techniques of Drama Education with Kindergarten Teachers

Authors: Vladimira Hornackova, Jana Kottasova, Zuzana Vanova, Anna Jungrova

Abstract:

Present study deals with drama education in preschool education. The research made in this field brings a qualitative comparative survey with the aim to find out the use of methods and techniques of drama education in preschool education at university or secondary school graduate preschool teachers. The research uses a content analysis and an unstandardized questionnaire for preschool teachers and obtained data are processed with the help of descriptive methods and correlations. The results allow a comparison of aspects applied through drama in preschool education. The research brings impulses for education improvement in kindergartens and inspiration for university study programs of drama education in the professional training of preschool teachers.

Keywords: drama education, preschool education, preschool teacher, research

Procedia PDF Downloads 337
10163 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
10162 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 258
10161 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 103
10160 Women Education in Islam, Christianity, and Judaism

Authors: Nuzhat Fatima

Abstract:

This is very misleading conception that Islam is the religion of terrorists or terrorism. It is also another misconception that women are not given due important in Islamic. And women are forced to use veil. But if we closely look at the other two religions they also have the same commandments about the veil. Then comes education, women are given the equal right of education in Islam. But there are certain people creating the bad image of Islam and not giving permission to their females to get education. This paper will present the brief description of education and status of women in all three religions.

Keywords: Islam, women, education, christianity, Judaism

Procedia PDF Downloads 541
10159 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 378
10158 Identify and Prioritize the Sustainable Development of Sports Venues Using New and Degradable Energies with a Hierarchical Analysis Approach

Authors: Mahsaossadat Pourrahmati Khelejan

Abstract:

The purpose of this research was to identify and prioritize the sustainable development of sports venues using new and degradable energies with using the AHP Hierarchical Analysis approach. The research method is a descriptive strategy with regard to the direction of implementation and is a hierarchical research with a practical purpose. In this study, 30 experts (physical education faculty members, geography professors, accredited sports venues managers, and renewable energy engineers) were selected using purposeful sampling method as the research population. The research tool was a researcher-made questionnaire on the factors affecting the sustainable development of sports venues by using new technologies and degradable energy. Finally, the research questionnaire was designed with four components and 21 items. All steps were performed by using Expert Choice software. The importance of indicators that influence the sustainable development of sports venues is highlighted by the use of clean and degradable energy, for example: 1. Economic factor, weighing 0.420 2. Environmental index, weighing 0. 320 3. Physical index, weighing 0.148 4. Social index, weighing 0.122.

Keywords: Sports Venues, Sustainable Development, Degradable Energies, Prioritize

Procedia PDF Downloads 108
10157 Relationship between Interest, Attitude and Academic Performance among N.C.E Primary Education Studies of College of Education, Azare Bauchi State

Authors: Fatima Ibrahim

Abstract:

The Study assessed the relationship between interest, attitude and academic performance among N.C.E Primary Education Studies of College of Education, Azare Bauchi State. Stratified random sampling was used to select 234 respondents from N.C.E 100, 200 and 300 levels students with the total population of 552. Structured Questionnaire and students academic records were used for data collection. Four scale format was used for the respondents to indicate their degree of satisfaction on a four point scale. Four null hypothesis were formulated from research questions at tested at 0.05 level of significance. The data collected from the study were analyzed using descriptive statistics, pearson product moment correlation coefficient and independent test. The result of tested Null hypotheses revealed that: there was significant relationship between student’s interest and their academic performance since calculated p value of 0.000 is less than the 0.05 alpha level of significance at a correlation index level of .986 hence the Null hypothesis was rejected. There was significant relationship between student’s attitude and their academic performance in the study of P.E.S. Findings also revealed that majority of the students were interested in the study of P.E.S which helped them perform well. It was concluded that significant relationship exists between students interest, attitudinal academic performance among P.E.S students in College of Education Azare.

Keywords: Attitude, Academic Performance, College of Education Azare, Interest, Students

Procedia PDF Downloads 194
10156 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 436
10155 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 324
10154 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 214
10153 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 759
10152 A Design of the Infrastructure and Computer Network for Distance Education, Online Learning via New Media, E-Learning and Blended Learning

Authors: Sumitra Nuanmeesri

Abstract:

The research focus on study, analyze and design the model of the infrastructure and computer networks for distance education, online learning via new media, e-learning and blended learning. The collected information from study and analyze process that information was evaluated by the index of item objective congruence (IOC) by 9 specialists to design model. The results of evaluate the model with the mean and standard deviation by the sample of 9 specialists value is 3.85. The results showed that the infrastructure and computer networks are designed to be appropriate to a great extent appropriate to a great extent.

Keywords: blended learning, new media, infrastructure and computer network, tele-education, online learning

Procedia PDF Downloads 380
10151 Realization Mode and Theory for Extensible Music Cognition Education: Taking Children's Music Education as an Example

Authors: Yumeng He

Abstract:

The purpose of this paper is to establish the “extenics” of children music education, the “extenics” thought and methods are introduced into the children music education field. Discussions are made from the perspective of children music education on how to generate new music cognitive from music cognitive, how to generate new music education from music education and how to generate music learning from music learning. The research methods including the extensibility of music art, extensibility of music education, extensibility of music capability and extensibility of music learning. Results of this study indicate that the thought and research methods of children’s extended music education not only have developed the “extenics” concept and ideological methods, meanwhile, the brand-new thought and innovative research perspective have been employed in discussing the children music education. As indicated in research, the children’s extended music education has extended the horizon of children music education, and has endowed the children music education field with a new thought and research method.

Keywords: comprehensive evaluations, extension thought, extension cognition music education, extensibility

Procedia PDF Downloads 196
10150 Moral Reasoning among Croatian Adolescents with Different Levels of Education

Authors: Nataša Šimić, Ljiljana Gregov, Matilda Nikolić, Andrea Tokić, Ana Proroković

Abstract:

Moral development takes place in six phases which can be divided in a pre-conventional, conventional and post-conventional level. Moral reasoning, as a key concept of moral development theories, involves a process of discernment/inference in doubtful situations. In research to date, education has proved to be a significant predictor of moral reasoning. The aim of this study was to investigate differences in moral reasoning and Kohlberg's phases of moral development between Croatian adolescents with different levels of education. In Study 1 comparisons between the group of secondary school students aged 17-18 (N=192) and the group of university students aged 21-25 (N=383) were made. Study 2 included comparison between university students group (N=69) and non-students group (N=43) aged from 21 to 24 (these two groups did not differ in age). In both studies, the Croatian Test of Moral Reasoning by Proroković was applied. As a measure of moral reasoning, the Index of Moral Reasoning (IMR) was calculated. This measure has some advantages compared to other measures of moral reasoning, and includes individual assessments of deviations from the ‘optimal profile’. Results of the Study 1 did not show differences in the IMR between secondary school students and university students. Both groups gave higher assessments to the arguments that correspond to higher phases of moral development. However, group differences were found for pre-conventional and conventional phases. As expected, secondary school students gave significantly higher assessments to the arguments that correspond to lower phases of moral development. Results of the Study 2 showed that university students, in relation to non-students, have higher IMR. Respecting to phases of moral development, both groups of participants gave higher assessments to the arguments that correspond to the post-conventional phase. Consistent with expectations and previous findings, results of both studies did not confirm gender differences in moral reasoning.

Keywords: education, index of moral reasoning, Kohlberg's theory of moral development, moral reasoning

Procedia PDF Downloads 218
10149 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 132
10148 A Concept Study to Assist Non-Profit Organizations to Better Target Developing Countries

Authors: Malek Makki

Abstract:

The main purpose of this research study is to assist non-profit organizations (NPOs) to better segment a group of least developing countries and to optimally target the most needier areas, so that the provided aids make positive and lasting differences. We applied international marketing and strategy approaches to segment a sub-group of candidates among a group of 151 countries identified by the UN-G77 list, and furthermore, we point out the areas of priorities. We use reliable and well known criteria on the basis of economics, geography, demography and behavioral. These criteria can be objectively estimated and updated so that a follow-up can be performed to measure the outcomes of any program. We selected 12 socio-economic criteria that complement each other: GDP per capita, GDP growth, industry value added, export per capita, fragile state index, corruption perceived index, environment protection index, ease of doing business index, global competitiveness index, Internet use, public spending on education, and employment rate. A weight was attributed to each variable to highlight the relative importance of each criterion within the country. Care was taken to collect the most recent available data from trusted well-known international organizations (IMF, WB, WEF, and WTO). Construct of equivalence was carried out to compare the same variables across countries. The combination of all these weighted estimated criteria provides us with a global index that represents the level of development per country. An absolute index that combines wars and risks was introduced to exclude or include a country on the basis of conflicts and a collapsing state. The final step applied to the included countries consists of a benchmarking method to select the segment of countries and the percentile of each criterion. The results of this study allowed us to exclude 16 countries for risks and security. We also excluded four countries because they lack reliable and complete data. The other countries were classified per percentile thru their global index, and we identified the needier and the areas where aids are highly required to help any NPO to prioritize the area of implementation. This new concept is based on defined, actionable, accessible and accurate variables by which NPO can implement their program and it can be extended to profit companies to perform their corporate social responsibility acts.

Keywords: developing countries, international marketing, non-profit organization, segmentation

Procedia PDF Downloads 278
10147 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 169
10146 Values Education in Military Schools and Işıklar Air Force High School Sample

Authors: Mehmet Eren Çelik

Abstract:

Values are notions that help people to decide what is good or not and to direct their attitude. Teaching values has always been very important throughout the history. Values should be thought in younger ages to get more efficiency. Therefore military schools are the last stop to learn values effectively. That’s why values education in military schools has vital importance. In this study the military side of values education is examined. The purpose of the study is to show how important values education is and why military students need values education. First of all what value is and what values education means is clearly explained and values education in schools and specifically in military schools is stated. Then values education in Işıklar Air Force High School exemplifies the given information.

Keywords: Işıklar Air Force High School, military school, values, values education

Procedia PDF Downloads 356
10145 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 135
10144 Spatial Data Science for Data Driven Urban Planning: The Youth Economic Discomfort Index for Rome

Authors: Iacopo Testi, Diego Pajarito, Nicoletta Roberto, Carmen Greco

Abstract:

Today, a consistent segment of the world’s population lives in urban areas, and this proportion will vastly increase in the next decades. Therefore, understanding the key trends in urbanization, likely to unfold over the coming years, is crucial to the implementation of sustainable urban strategies. In parallel, the daily amount of digital data produced will be expanding at an exponential rate during the following years. The analysis of various types of data sets and its derived applications have incredible potential across different crucial sectors such as healthcare, housing, transportation, energy, and education. Nevertheless, in city development, architects and urban planners appear to rely mostly on traditional and analogical techniques of data collection. This paper investigates the prospective of the data science field, appearing to be a formidable resource to assist city managers in identifying strategies to enhance the social, economic, and environmental sustainability of our urban areas. The collection of different new layers of information would definitely enhance planners' capabilities to comprehend more in-depth urban phenomena such as gentrification, land use definition, mobility, or critical infrastructural issues. Specifically, the research results correlate economic, commercial, demographic, and housing data with the purpose of defining the youth economic discomfort index. The statistical composite index provides insights regarding the economic disadvantage of citizens aged between 18 years and 29 years, and results clearly display that central urban zones and more disadvantaged than peripheral ones. The experimental set up selected the city of Rome as the testing ground of the whole investigation. The methodology aims at applying statistical and spatial analysis to construct a composite index supporting informed data-driven decisions for urban planning.

Keywords: data science, spatial analysis, composite index, Rome, urban planning, youth economic discomfort index

Procedia PDF Downloads 108