Search results for: test performance
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 19826

Search results for: test performance

14756 The Increasing of Perception of Consumers’ Awareness about Sustainability Brands during Pandemic: A Multi Mediation Model

Authors: Silvia Platania, Martina Morando, Giuseppe Santisi

Abstract:

Introduction: In the last thirty years, there is constant talk of sustainable consumption and a "transition" of consumer lifestyles towards greater awareness of consumer choices (United Nation, 1992). The 2019 coronavirus (COVID-19) epidemic that has hit the world population since 2020 has had significant consequences in all areas of people's lives; individuals have been forced to change their behaviors, to redefine their owngoals, priorities, practices, and lifestyles, to rebuild themselves in the new situation dictated by the pandemic. Method(Participants and procedure ): The data were collected through an online survey; moreover, we used convenience sampling from the general population. The participants were 669 Italians consumers (Female= 514, 76.8%; Male=155, 23.2%) that choice sustainability brands, aged between 18 and 65 years (Mₐ𝓰ₑ = 35.45; Standard Deviation, SD = 9.51).(Measure ): The following measures were used: The Muncy–Vitell Consumer Ethics Scale; Attitude Toward Business Scale; Perceived Consumer Effectiveness Scale; Consumers Perception on Sustainable Brand Attitudes. Results: Preliminary analyses were conducted to test our model. Pearson's bivariate correlation between variables shows that all variables of our model correlate significantly and positively, PCE with CPSBA (r = .56, p <.001). Furthermore, a CFA, according to Harman's single-factor test, was used to diagnose the extent to which common-method variance was a problem. A comparison between the hypothesised model and a model with one factor (with all items loading on a unique factor) revealed that the former provided a better fit for the data in all the CFA fit measures [χ² [6, n = 669] = 7.228, p = 0.024, χ² / df = 1.20, RMSEA = 0.07 (CI = 0.051-0.067), CFI = 0.95, GFI = 0.95, SRMR = 0.04, AIC = 66.501; BIC = 132,150). Next, amulti mediation was conducted to test our hypotheses. The results show that there is a direct effect of PCE on ethical consumption behavior (β = .38) and on ATB (β = .23); furthermore, there is a direct effect on the CPSBA outcome (β = .34). In addition, there is a mediating effect by ATB (C.I. =. 022-.119, 95% interval confidence) and by CES (C.I. =. 136-.328, 95% interval confidence). Conclusion: The spread of the COVID-19 pandemic has affected consumer consumption styles and has led to an increase in online shopping and purchases of sustainable products. Several theoretical and practical considerations emerge from the results of the study.

Keywords: decision making, sustainability, pandemic, multimediation model

Procedia PDF Downloads 98
14755 Comparison of the H-Index of Researchers of Google Scholar and Scopus

Authors: Adian Fatchur Rochim, Abdul Muis, Riri Fitri Sari

Abstract:

H-index has been widely used as a performance indicator of researchers around the world especially in Indonesia. The Government uses Scopus and Google scholar as indexing references in providing recognition and appreciation. However, those two indexing services yield to different H-index values. For that purpose, this paper evaluates the difference of the H-index from those services. Researchers indexed by Webometrics, are used as reference’s data in this paper. Currently, Webometrics only uses H-index from Google Scholar. This paper observed and compared corresponding researchers’ data from Scopus to get their H-index score. Subsequently, some researchers with huge differences in score are observed in more detail on their paper’s publisher. This paper shows that the H-index of researchers in Google Scholar is approximately 2.45 times of their Scopus H-Index. Most difference exists due to the existence of uncertified publishers, which is considered in Google Scholar but not in Scopus.

Keywords: Google Scholar, H-index, Scopus, performance indicator

Procedia PDF Downloads 259
14754 Fatigue Behavior of Friction Stir Welded EN AW 5754 Aluminum Alloy Using Load Increase Procedure

Authors: A. B. Chehreh, M. Grätzel, M. Klein, J. P. Bergmann, F. Walther

Abstract:

Friction stir welding (FSW) is an advantageous method in the thermal joining processes, featuring the welding of various dissimilar and similar material combinations, joining temperatures below the melting point which prevents irregularities such as pores and hot cracks as well as high strengths mechanical joints near the base material. The FSW process consists of a rotating tool which is made of a shoulder and a probe. The welding process is based on a rotating tool which plunges in the workpiece under axial pressure. As a result, the material is plasticized by frictional heat which leads to a decrease in the flow stress. During the welding procedure, the material is continuously displaced by the tool, creating a firmly bonded weld seam behind the tool. However, the mechanical properties of the weld seam are affected by the design and geometry of the tool. These include in particular microstructural and surface properties which can favor crack initiation. Following investigation compares the dynamic properties of FSW weld seams with conventional and stationary shoulder geometry based on load increase test (LIT). Compared to classical Woehler tests, it is possible to determine the fatigue strength of the specimens after a short amount of time. The investigations were carried out on a robotized welding setup on 2 mm thick EN AW 5754 aluminum alloy sheets. It was shown that an increased tensile and fatigue strength can be achieved by using the stationary shoulder concept. Furthermore, it could be demonstrated that the LIT is a valid method to describe the fatigue behavior of FSW weld seams.

Keywords: aluminum alloy, fatigue performance, fracture, friction stir welding

Procedia PDF Downloads 143
14753 Future trends of MED-TVC Desalination Technology

Authors: Irfan Wazeer

Abstract:

Desalination has become one of the major water treatment process in several countries around the world where shortage of water is a serious problem. Energy consumption is a vital economic factor in selecting the type of desalination processes because current desalination processes require large amount of energy which is costly. Multi-effect desalination system with thermal vapor compression (MED-TVC) is particularly more attractive than other thermal desalination systems due to its low energy consumption. MED-TVC is characterized by high performance ratio (PR), easier operation, low maintenance requirements and simple geometry. These attractive features make MED-TVC highly competitive to other well established desalination techniques that include the reverse osmosis (RO) and multi-stage flash desalination (MSF). The primary goal of this paper is to present a preview of some aspects related with the theory of the technology, parametric study of the MED-TVC systems and its development. It will analyzed the current and future aspects of the MED-TVC technology in view of latest installed plants.

Keywords: MED-TVC, parallel feed, performance ratio, GOR

Procedia PDF Downloads 246
14752 A User-Directed Approach to Optimization via Metaprogramming

Authors: Eashan Hatti

Abstract:

In software development, programmers often must make a choice between high-level programming and high-performance programs. High-level programming encourages the use of complex, pervasive abstractions. However, the use of these abstractions degrades performance-high performance demands that programs be low-level. In a compiler, the optimizer attempts to let the user have both. The optimizer takes high-level, abstract code as an input and produces low-level, performant code as an output. However, there is a problem with having the optimizer be a built-in part of the compiler. Domain-specific abstractions implemented as libraries are common in high-level languages. As a language’s library ecosystem grows, so does the number of abstractions that programmers will use. If these abstractions are to be performant, the optimizer must be extended with new optimizations to target them, or these abstractions must rely on existing general-purpose optimizations. The latter is often not as effective as needed. The former presents too significant of an effort for the compiler developers, as they are the only ones who can extend the language with new optimizations. Thus, the language becomes more high-level, yet the optimizer – and, in turn, program performance – falls behind. Programmers are again confronted with a choice between high-level programming and high-performance programs. To investigate a potential solution to this problem, we developed Peridot, a prototype programming language. Peridot’s main contribution is that it enables library developers to easily extend the language with new optimizations themselves. This allows the optimization workload to be taken off the compiler developers’ hands and given to a much larger set of people who can specialize in each problem domain. Because of this, optimizations can be much more effective while also being much more numerous. To enable this, Peridot supports metaprogramming designed for implementing program transformations. The language is split into two fragments or “levels”, one for metaprogramming, the other for high-level general-purpose programming. The metaprogramming level supports logic programming. Peridot’s key idea is that optimizations are simply implemented as metaprograms. The meta level supports several specific features which make it particularly suited to implementing optimizers. For instance, metaprograms can automatically deduce equalities between the programs they are optimizing via unification, deal with variable binding declaratively via higher-order abstract syntax, and avoid the phase-ordering problem via non-determinism. We have found that this design centered around logic programming makes optimizers concise and easy to write compared to their equivalents in functional or imperative languages. Overall, implementing Peridot has shown that its design is a viable solution to the problem of writing code which is both high-level and performant.

Keywords: optimization, metaprogramming, logic programming, abstraction

Procedia PDF Downloads 73
14751 Numerical Study of Leisure Home Chassis under Various Loads by Using Finite Element Analysis

Authors: Asem Alhnity, Nicholas Pickett

Abstract:

The leisure home industry is experiencing an increase in sales due to the rise in popularity of staycations. However, there is also a demand for improvements in thermal and structural behaviour from customers. Existing standards and codes of practice outline the requirements for leisure home design. However, there is a lack of expertise in applying Finite Element Analysis (FEA) to complex structures in this industry. As a result, manufacturers rely on standardized design approaches, which often lead to excessively engineered or inadequately designed products. This study aims to address this issue by investigating the impact of the habitation structure on chassis performance in leisure homes. The aim of this research is to comprehensively analyse the impact of the habitation structure on chassis performance in leisure homes. By employing FEA on the entire unit, including both the habitation structure and the chassis, this study seeks to develop a novel framework for designing and analysing leisure homes. The objectives include material reduction, enhancing structural stability, resolving existing design issues, and developing innovative modular and wooden chassis designs. The methodology used in this research is quantitative in nature. The study utilizes FEA to analyse the performance of leisure home chassis under various loads. The analysis procedures involve running the FEA simulations on the numerical model of the leisure home chassis. Different load scenarios are applied to assess the stress and deflection performance of the chassis under various conditions. FEA is a numerical method that allows for accurate analysis of complex systems. The research utilizes flexible mesh sizing to calculate small deflections around doors and windows, with large meshes used for macro deflections. This approach aims to minimize run-time while providing meaningful stresses and deflections. Moreover, it aims to investigate the limitations and drawbacks of the popular approach of applying FEA only to the chassis and replacing the habitation structure with a distributed load. The findings of this study indicate that the popular approach of applying FEA only to the chassis and replacing the habitation structure with a distributed load overlooks the strengthening generated from the habitation structure. By employing FEA on the entire unit, it is possible to optimize stress and deflection performance while achieving material reduction and enhanced structural stability. The study also introduces innovative modular and wooden chassis designs, which show promising weight reduction compared to the existing heavily fabricated lattice chassis. In conclusion, this research provides valuable insights into the impact of the habitation structure on chassis performance in leisure homes. By employing FEA on the entire unit, the study demonstrates the importance of considering the strengthening generated from the habitation structure in chassis design. The research findings contribute to advancements in material reduction, structural stability, and overall performance optimization. The novel framework developed in this study promotes sustainability, cost-efficiency, and innovation in leisure home design.

Keywords: static homes, caravans, motor homes, holiday homes, finite element analysis (FEA)

Procedia PDF Downloads 83
14750 Causal Relationship between Macro-Economic Indicators and Fund Unit Price Behaviour: Evidence from Malaysian Equity Unit Trust Fund Industry

Authors: Anwar Hasan Abdullah Othman, Ahamed Kameel, Hasanuddeen Abdul Aziz

Abstract:

In this study, an attempt has been made to investigate the relationship specifically the causal relation between fund unit prices of Islamic equity unit trust fund which measure by fund NAV and the selected macro-economic variables of Malaysian economy by using VECM causality test and Granger causality test. Monthly data has been used from Jan, 2006 to Dec, 2012 for all the variables. The findings of the study showed that industrial production index, political election and financial crisis are the only variables having unidirectional causal relationship with fund unit price. However, the global oil prices is having bidirectional causality with fund NAV. Thus, it is concluded that the equity unit trust fund industry in Malaysia is an inefficient market with respect to the industrial production index, global oil prices, political election and financial crisis. However, the market is approaching towards informational efficiency at least with respect to four macroeconomic variables, treasury bill rate, money supply, foreign exchange rate and corruption index.

Keywords: fund unit price, unit trust industry, Malaysia, macroeconomic variables, causality

Procedia PDF Downloads 460
14749 A Linear Relation for Voltage Unbalance Factor Evaluation in Three-Phase Electrical Power System Using Space Vector

Authors: Dana M. Ragab, Jasim A Ghaeb

Abstract:

The Voltage Unbalance Factor (VUF) index is recommended to evaluate system performance under unbalanced operation. However, its calculation requires complex algebra which limits its use in the field. Furthermore, one system cycle is required at least to detect unbalance using the VUF. Ideally unbalance mitigation must be performed within 10 ms for 50 Hz systems. In this work, a linear relation for VUF evaluation in three-phase electrical power system using space vector (SV) is derived. It is proposed to determine the voltage unbalance quickly and accurately and to overcome the constraints associated with the traditional methods of VUF evaluation. Aqaba-Qatrana-South Amman (AQSA) power system is considered to study the system performance under unbalanced conditions. The results show that both the complexity of calculations and the time required to evaluate VUF are reduced significantly.

Keywords: power quality, space vector, unbalance evaluation, three-phase power system

Procedia PDF Downloads 174
14748 Status of Hospitality and Tourism Management Progam of Selected Private Higher Education Institutions: Basis for Internationalization

Authors: Ruth Estrada Javier - Reyes

Abstract:

The study assessed the status of HTM program of selected private higher education institutions for internationalization across the eleven regions of the country. The descriptive survey method of research was used in this study. A devised survey questionnaire was utilized to gather information about the status of Philippine Higher Education Institutions’ internationalization of hospitality and tourism management education programs. The respondents were 12 administrators, 17 deans and program heads, 104 faculty members and 860 HTM students. Frequency, percentage, mean, standard deviation, t-test and F-test were used to treat the data. The results of the study are as follows: HEIs’ HTM education had complied with the policies/standards of CHED as per CMO No. 30 S. 2006. The respondents of the HTM education program were qualified for internationalization as assessed both by administrators and faculty. The private HEIs are ready to apply for international certification of their HTM education programs. The curriculum of HTM education programs in private HEIs are enriched by internationalization requirements. The administrators and faculty of HTM education programs are qualified educators but have limited participation in collaborative international research and linkages. The HEIs are qualified to apply for the internationalization of the Hospitality and Tourism Management education program in preparation to the ASEAN 2015.

Keywords: status, Hospitality and Tourism Management Program, internationalization, Private Higher Education Institutions

Procedia PDF Downloads 399
14747 Good Corporate Governance and Accountability in Microfinance Institutions

Authors: A. R. Nor Azlina, H. Salwana, I. Zuraeda, A. R. Rashidah, O. Normah

Abstract:

Transitioning towards globalization in the business environment has necessitated more essential growing changes such as competition, business strategy, innovation in technology and effectiveness of societal trends on adopting corporate governance are seen to be drivers of the future. This transformations on business environment has a significant impact to organizations’ performances. Many organizations are demanding for more proactive entrepreneurs with dynamic team, who can run and steer their business to success. Changing on strategy, roles, tasks, entrepreneurial skills and implementing corporate governance in relationship development is important to enhance the organization’s performance towards being more cost-efficient and subsequently increase its efficiency. Small Medium Enterprises (SMEs) in most developing countries are contributors to the economic growth of a nation. However, the potential of Microfinance Institutions (MFIs) is always overlooked in contributing towards SMEs development. The adoption of corporate governance and accountability in MFIs as driving forces for these SMEs is not incorporated in measurements of organization performance. This paper attempts to address some of the governance issues associated with dimensions of accountability in improving performances of microfinance institutions. Qualitative approach was adopted in this study to analyze the data collected. The qualitative approach emerges as contributing factor in understanding and critiquing accountability processes, as well as addressing the concerns of practitioners and policymakers. A close researcher engagement with the field which concerns process, embracing of situational complexity, as well as critical and reflective understandings of organizational phenomena remain as hallmarks of the tradition. It is concluded that in describing and scrutinizing an understanding of managerial behavior, organizational factors and macro-economic relationship in SMEs firm need to be improved. This is also the case in MFIs. A framework is developed to explore the linkage of corporate governance and accountability issues related to entrepreneurship as factors affecting MFIs performances in facing ongoing transformation of organization performance within Malaysian SMEs industries.

Keywords: accountability, corporate governance, microfinance, organization performance

Procedia PDF Downloads 375
14746 Investigating Malaysian Prereader’s Cognitive Processes when Reading English Picture Storybooks: A Comparative Eye-Tracking Experiment

Authors: Siew Ming Thang, Wong Hoo Keat, Chee Hao Sue, Fung Lan Loo, Ahju Rosalind

Abstract:

There are numerous studies that explored young learners’ literacy skills in Malaysia but none that uses the eye-tracking device to track their cognitive processes when reading picture storybooks. This study used this method to investigate two groups of prereaders’ cognitive processes in four conditions. (1) A congruent picture was presented, and a matching narration was read aloud by a recorder; (2) Children heard a narration telling about the same characters in the picture but involves a different scene; (3) Only a picture with matching text was present; (4) Students only heard the reading aloud of the text on the screen. The two main objectives of this project are to test which content of pictures helps the prereaders (i.e., young children who have not received any formal reading instruction) understand the narration and whether children try to create a coherent mental representation from the oral narration and the pictures. The study compares two groups of children from two different kindergartens. Group1: 15 Chinese children; Group2: 17 Malay children. The medium of instruction was English. An eye-tracker were used to identify Areas of Interest (AOI) of each picture and the five target elements and calculate number of fixations and total time spent on fixation of pictures and written texts. Two mixed factorial ANOVAs with the storytelling performance (good, average, or weak) and vocabulary level (low, medium, high) as between-subject variables, and the Areas of Interests (AOIs) and display conditions as the within-subject variables were performedon the variables.

Keywords: eye-tracking, cognitive processes, literacy skills, prereaders, visual attention

Procedia PDF Downloads 82
14745 Performativity and Valuation Techniques: Evidence from Investment Banks in the Wake of the Global Financial Crisis

Authors: Alicja Reuben, Amira Annabi

Abstract:

In this paper, we explore the relationship between the selection of valuation techniques by investment banks and the banks’ risk perceptions and performance in the context of the theory of performativity. We use inferential statistics to study these relationships by building a unique dataset based on the disclosure of 12 investment banks’ 2012-2015 annual financial statements. Moreover, we create two constructs, namely intensity of use and risk perception. We measure the intensity of use as a frequency metric of how often a particular bank adopts valuation techniques for a particular asset or liability. We measure risk perception based on disclosed ranges of values for unobservable inputs. Our results are twofold: we find a significant negative correlation between (1) intensity of use and investment bank performance and (2) intensity of use and risk perception. These results indicate that a performative process takes place, and the valuation techniques are enacting their environment.

Keywords: language, linguistics, performativity, financial techniques

Procedia PDF Downloads 147
14744 A Study on Prediction Model for Thermally Grown Oxide Layer in Thermal Barrier Coating

Authors: Yongseok Kim, Jeong-Min Lee, Hyunwoo Song, Junghan Yun, Jungin Byun, Jae-Mean Koo, Chang-Sung Seok

Abstract:

Thermal barrier coating(TBC) is applied for gas turbine components to protect the components from extremely high temperature condition. Since metallic substrate cannot endure such severe condition of gas turbines, delamination of TBC can cause failure of the system. Thus, delamination life of TBC is one of the most important issues for designing the components operating at high temperature condition. Thermal stress caused by thermally grown oxide(TGO) layer is known as one of the major failure mechanisms of TBC. Thermal stress by TGO mainly occurs at the interface between TGO layer and ceramic top coat layer, and it is strongly influenced by the thickness and shape of TGO layer. In this study, Isothermal oxidation is conducted on coin-type TBC specimens prepared by APS(air plasma spray) method. After the isothermal oxidation at various temperature and time condition, the thickness and shape(rumpling shape) of the TGO is investigated, and the test data is processed by numerical analysis. Finally, the test data is arranged into a mathematical prediction model with two variables(temperature and exposure time) which can predict the thickness and rumpling shape of TGO.

Keywords: thermal barrier coating, thermally grown oxide, thermal stress, isothermal oxidation, numerical analysis

Procedia PDF Downloads 330
14743 Performance Evaluation of an Efficient Asynchronous Protocol for WDM Ring MANs

Authors: Baziana Peristera

Abstract:

The idea of the asynchronous transmission in wavelength division multiplexing (WDM) ring MANs is studied in this paper. Especially, we present an efficient access technique to coordinate the collisions-free transmission of the variable sizes of IP traffic in WDM ring core networks. Each node is equipped with a tunable transmitter and a tunable receiver. In this way, all the wavelengths are exploited for both transmission and reception. In order to evaluate the performance measures of average throughput, queuing delay and packet dropping probability at the buffers, a simulation model that assumes symmetric access rights among the nodes is developed based on Poisson statistics. Extensive numerical results show that the proposed protocol achieves apart from high bandwidth exploitation for a wide range of offered load, fairness of queuing delay and dropping events among the different packets size categories.

Keywords: asynchronous transmission, collision avoidance, wavelength division multiplexing, WDM

Procedia PDF Downloads 365
14742 Mechanical and Tribological Performances of (Nb: H-D: a-C) Thin Films for Biomedical Applications

Authors: Sara Khamseh, Kambiz Javanruee, Hamid Khorsand

Abstract:

Plenty of metallic materials are used for biomedical applications like hip joints and screws. Besides, it is reported that metal platforms such as stainless steel show significant deterioration because of wear and friction. The surface of metal substrates has been coated with a variety of multicomponent coatings to prevail these problems. The carbon-based multicomponent coatings such as metal-added amorphous carbon and diamond coatings are crucially important because of their remarkable tribological performance and chemical stability. In the current study, H-D contained Nb: (a-C) multicomponent coatings (H-D: hexagonal diamond, a-C: amorphous carbon) coated on A 304 steel substrates using an unbalanced magnetron (UBM) sputtering system. The effects of Nb and H-D content and ID/IG ratio on microstructure, mechanical and tribological characteristics of (Nb: H-D: a-C) composite coatings were investigated. The results of Raman spectroscopy represented that a-C phase with a Graphite-like structure (GLC with high value of sp2 carbon bonding) is formed, and its domain size increased with increasing Nb content of the coatings. Moreover, the Nb played a catalyst for the formation of the H-D phase. The nanoindentation hardness value of the coatings ranged between ~17 to ~35 GPa and (Nb: H-D: a-C) composite coatings with more H-D content represented higher hardness and plasticity index. It seems that the existence of extra-hard H-D particles straightly increased hardness. The tribological performance of the coatings was evaluated using the pin-on-disc method under the wet environment of SBF (Simulated Body Fluid). The COF value of the (Nb: H-D: a-C) coatings decreased with an increasing ID/IG ratio. The lower coefficient of friction is a result of the lamelliform array of graphitic domains. Also, the wear rate of the coatings decreased with increasing H-D content of the coatings. Based on the literature, a-C coatings with high hardness and H3/E2 ratio represent lower wear rates and better tribological performance. According to the nanoindentation analysis, hardness and H3/E2 ratio of (Nb: H-D: a-C) multicomponent coatings increased with increasing H-D content, which in turn decreased the wear rate of the coatings. The mechanical and tribological potency of (Nb: H-D: a-C) composite coatings on A 304 steel substrates paved the way for the development of innovative advanced coatings to ameliorate the performance of A 304 steel for biomedical applications.

Keywords: COF, mechanical properties, (Nb: H-D: a-C) coatings, wear rate

Procedia PDF Downloads 84
14741 The Connection Between the Semiotic Theatrical System and the Aesthetic Perception

Authors: Păcurar Diana Istina

Abstract:

The indissoluble link between aesthetics and semiotics, the harmonization and semiotic understanding of the interactions between the viewer and the object being looked at, are the basis of the practical demonstration of the importance of aesthetic perception within the theater performance. The design of a theater performance includes several structures, some considered from the beginning, art forms (i.e., the text), others being represented by simple, common objects (e.g., scenographic elements), which, if reunited, can trigger a certain aesthetic perception. The audience is delivered, by the team involved in the performance, a series of auditory and visual signs with which they interact. It is necessary to explain some notions about the physiological support of the transformation of different types of stimuli at the level of the cerebral hemispheres. The cortex considered the superior integration center of extransecal and entanged stimuli, permanently processes the information received, but even if it is delivered at a constant rate, the generated response is individualized and is conditioned by a number of factors. Each changing situation represents a new opportunity for the viewer to cope with, developing feelings of different intensities that influence the generation of meanings and, therefore, the management of interactions. In this sense, aesthetic perception depends on the detection of the “correctness” of signs, the forms of which are associated with an aesthetic property. Fairness and aesthetic properties can have positive or negative values. Evaluating the emotions that generate judgment and implicitly aesthetic perception, whether we refer to visual emotions or auditory emotions, involves the integration of three areas of interest: Valence, arousal and context control. In this context, superior human cognitive processes, memory, interpretation, learning, attribution of meanings, etc., help trigger the mechanism of anticipation and, no less important, the identification of error. This ability to locate a short circuit produced in a series of successive events is fundamental in the process of forming an aesthetic perception. Our main purpose in this research is to investigate the possible conditions under which aesthetic perception and its minimum content are generated by all these structures and, in particular, by interactions with forms that are not commonly considered aesthetic forms. In order to demonstrate the quantitative and qualitative importance of the categories of signs used to construct a code for reading a certain message, but also to emphasize the importance of the order of using these indices, we have structured a mathematical analysis that has at its core the analysis of the percentage of signs used in a theater performance.

Keywords: semiology, aesthetics, theatre semiotics, theatre performance, structure, aesthetic perception

Procedia PDF Downloads 74
14740 Optimization of Three Phase Squirrel Cage Induction Motor

Authors: Tunahan Sapmaz, Harun Etçi, İbrahim Şenol, Yasemin Öner

Abstract:

Rotor bar dimensions have a great influence on the air-gap magnetic flux density. Therefore, poor selection of this parameter during the machine design phase causes the air-gap magnetic flux density to be distorted. Thus, it causes noise, torque fluctuation, and losses in the induction motor. On the other hand, the change in rotor bar dimensions will change the resistance of the conductor, so the current will be affected. Therefore, the increase and decrease of rotor bar current affect operation, starting torque, and efficiency. The aim of this study is to examine the effect of rotor bar dimensions on the electromagnetic performance criteria of the induction motor. Modeling of the induction motor is done by the finite element method (FEM), which is a very powerful tool. In FEM, the results generally focus on performance criteria such as torque, torque fluctuation, efficiency, and current.

Keywords: induction motor, finite element method, optimization, rotor bar

Procedia PDF Downloads 114
14739 Artificial Intelligence and Police

Authors: Mehrnoosh Abouzari

Abstract:

Artificial intelligence has covered all areas of human life and has helped or replaced many jobs. One of the areas of application of artificial intelligence in the police is to detect crime, identify the accused or victim and prove the crime. It will play an effective role in implementing preventive justice and creating security in the community, and improving judicial decisions. This will help improve the performance of the police, increase the accuracy of criminal investigations, and play an effective role in preventing crime and high-risk behaviors in society. This article presents and analyzes the capabilities and capacities of artificial intelligence in police and similar examples used worldwide to prove the necessity of using artificial intelligence in the police. The main topics discussed include the performance of artificial intelligence in crime detection and prediction, the risk capacity of criminals and the ability to apply arbitray institutions, and the introduction of artificial intelligence programs implemented worldwide in the field of criminal investigation for police.

Keywords: police, artificial intelligence, forecasting, prevention, software

Procedia PDF Downloads 191
14738 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 449
14737 Imipramine Ameliorate Altered Biochemical Parameter and Oxidative Damage in Depression

Authors: D. S. Mohale, A.V. Chandewar

Abstract:

Study was undertaken to investigate the effect of imipramine on various biochemical parameters and oxidative stress markers in short and long term depression on rats. Rats were subjected for short (21 days) and long term (84 days) social isolation for and checked for depression on force swim test and tail suspension method. Various markers of oxidative stress like lipid peroxidation (LPO), reduced glutathione (GSH), Supersoxide dismutase (SOD), catalase (CAT) and biochemical parameters like Serum glutamate oxaloacetate transaminase (SGOT), Serum glutamate pyruate transaminase (SGPT), and blood glucose were determined in depressed, control, imipramine and Vitamin E treated group. The rats displayed an increase in depression on force swim test and tail suspension method relative to control. There was significant increase in the level of LPO and decrease in the levels of GSH, SOD and CAT after short and long term depression. Increased oxidative stress in depression which may leads to alteration of biochemical parameters. Treatment with imipramine an tricyclic antidepressant significantly decreases in level of LPO, SGOT, SGPT and increase in the levels of GSH, SOD and CAT in long term depression.

Keywords: depression, oxidative stress, lipid peroxidation, reduced glutathione

Procedia PDF Downloads 490
14736 Neuro-Preservation Potential of Resveratrol Against High Fat High Fructose-Induced Metabolic Syndrome

Authors: Rania F. Ahmed, Sally A. El Awdan, Gehad A. Abdel Jaleel, Dalia O. Saleh, Omar A. H. Ahmed-Farid

Abstract:

The metabolic syndrome is an important public health concern often related to obesity, improper diet, and sedentary lifestyles and can predispose individuals to the development of many dangerous health conditions, disability and early death. This research aimed to investigate the efficacy of resveratrol (RSV) to reverse the neuro-complications associated with metabolic syndrome experimentally-induced in rats using an eight weeks high fat, high fructose diet (HFHF) model. The corresponding drug treatments were administered orally during the last 10 days of the diet. Behavioural tests namely the open field test (OFT) and the forced swimming test (FST) were conducted. Brain levels of monoamines viz. serotonin, norepinephrine and dopamine as well as their metabolites were assessed. 8-hydroxyguanosine (8-OHDG) as an indicative of DNA-fragmentation, nitric oxide (NOx) and tumor necrosis factor-α (TNF- α) were estimated. Finally, brain antioxidant parameters namely malondialdehyde (MDA), reduced and oxidized glutathione (GSH, GSSG) were evaluated. HFHF-induced metabolic syndrome resulted in decreased activity in the OFT and increased immobility duration in the FST. Furthermore, HFHF-induced metabolic syndrome lead to a significant increase in brain monoamines turn over as well as elevation in 8-OHDG, NOx, TNF- α, MDA and GSSG; and reduction in GSH. Ten days daily treatment with RSV (20 and 40 mg/kg p.o) dose dependently increased activity in the OFT and decreased immobility duration in the FST. Moreover, RSV normalized brain monoamines contents, reduced 8-OHDG, NOx, TNF- α, MDA and GSSG; and elevated GSH. In conclusion, we can say that RSV showed neuro-protective properties against HFHF-induced metabolic syndrome represented by monoamines preservation, prevention of neurodegeneration, anti-inflammatory and antioxidant potentials and could be recommended as a beneficial daily dietary supplement to treat the neuronal side effects associated with HFHF-induced metabolic syndrome.

Keywords: antioxidants, DNA-fragmentation, forced swimming test, HFHF-induced metabolic syndrome, monoamines, nitric oxide (NOx), open field, resveratrol, tumor necrosis factor-α (TNF- α), 8-hydroxyguanosine (8-OHDG)

Procedia PDF Downloads 265
14735 An Intelligent Prediction Method for Annular Pressure Driven by Mechanism and Data

Authors: Zhaopeng Zhu, Xianzhi Song, Gensheng Li, Shuo Zhu, Shiming Duan, Xuezhe Yao

Abstract:

Accurate calculation of wellbore pressure is of great significance to prevent wellbore risk during drilling. The traditional mechanism model needs a lot of iterative solving procedures in the calculation process, which reduces the calculation efficiency and is difficult to meet the demand of dynamic control of wellbore pressure. In recent years, many scholars have introduced artificial intelligence algorithms into wellbore pressure calculation, which significantly improves the calculation efficiency and accuracy of wellbore pressure. However, due to the ‘black box’ property of intelligent algorithm, the existing intelligent calculation model of wellbore pressure is difficult to play a role outside the scope of training data and overreacts to data noise, often resulting in abnormal calculation results. In this study, the multi-phase flow mechanism is embedded into the objective function of the neural network model as a constraint condition, and an intelligent prediction model of wellbore pressure under the constraint condition is established based on more than 400,000 sets of pressure measurement while drilling (MPD) data. The constraint of the multi-phase flow mechanism makes the prediction results of the neural network model more consistent with the distribution law of wellbore pressure, which overcomes the black-box attribute of the neural network model to some extent. The main performance is that the accuracy of the independent test data set is further improved, and the abnormal calculation values basically disappear. This method is a prediction method driven by MPD data and multi-phase flow mechanism, and it is the main way to predict wellbore pressure accurately and efficiently in the future.

Keywords: multiphase flow mechanism, pressure while drilling data, wellbore pressure, mechanism constraints, combined drive

Procedia PDF Downloads 163
14734 Behaviour of Laterally Loaded Pile Groups in Cohesionless Soil

Authors: V. K. Arora, Suraj Prakash

Abstract:

Pile foundations are provided to transfer the vertical and horizontal loads of superstructures like high rise buildings, bridges, offshore structures etc. to the deep strata in the soil. These vertical and horizontal loads are due to the loads coming from the superstructure and wind, water thrust, earthquake, and earth pressure, respectively. In a pile foundation, piles are used in groups. Vertical piles in a group of piles are more efficient to take vertical loads as compared to horizontal loads and when the horizontal load per pile exceeds the bearing capacity of the vertical piles in that case batter piles are used with vertical piles because batter piles can take more lateral loads than vertical piles. In this paper, a model study was conducted on three vertical pile group with single positive and negative battered pile subjected to lateral loads. The batter angle for battered piles was ±35◦ with the vertical axis. Piles were spaced at 2.5d (d=diameter of pile) to each other. The soil used for model test was cohesionless soil. Lateral loads were applied in three stages on all the pile groups individually and it was found that under the repeated action of lateral loading, the deflection of the piles increased under the same loading. After comparing the results, it was found that the pile group with positive batter pile fails at 28 kgf and the pile group with negative batter pile fails at 24 kgf so it shows that positive battered piles are stronger than the negative battered piles.

Keywords: vertical piles, positive battered piles, negative battered piles, cohesionless soil, lateral loads, model test

Procedia PDF Downloads 390
14733 Investigating Iraqi EFL University Students' Productive Knowledge of Grammatical Collocations in English

Authors: Adnan Z. Mkhelif

Abstract:

Grammatical collocations (GCs) are word combinations containing a preposition or a grammatical structure, such as an infinitive (e.g. smile at, interested in, easy to learn, etc.). Such collocations tend to be difficult for Iraqi EFL university students (IUS) to master. To help address this problem, it is important to identify the factors causing it. This study aims at investigating the effects of L2 proficiency, frequency of GCs and their transparency on IUSs’ productive knowledge of GCs. The study involves 112 undergraduate participants with different proficiency levels, learning English in formal contexts in Iraq. The data collection instruments include (but not limited to) a productive knowledge test (designed by the researcher using the British National Corpus (BNC)), as well as the grammar part of the Oxford Placement Test (OPT). The study findings have shown that all the above-mentioned factors have significant effects on IUSs’ productive knowledge of GCs. In addition to establishing evidence of which factors of L2 learning might be relevant to learning GCs, it is hoped that the findings of the present study will contribute to more effective methods of teaching that can better address and help overcome the problems IUSs encounter in learning GCs. The study is thus hoped to have significant theoretical and pedagogical implications for researchers, syllabus designers as well as teachers of English as a foreign/second language.

Keywords: corpus linguistics, frequency, grammatical collocations, L2 vocabulary learning, productive knowledge, proficiency, transparency

Procedia PDF Downloads 236
14732 Investigating the Influence of Activation Functions on Image Classification Accuracy via Deep Convolutional Neural Network

Authors: Gulfam Haider, sana danish

Abstract:

Convolutional Neural Networks (CNNs) have emerged as powerful tools for image classification, and the choice of optimizers profoundly affects their performance. The study of optimizers and their adaptations remains a topic of significant importance in machine learning research. While numerous studies have explored and advocated for various optimizers, the efficacy of these optimization techniques is still subject to scrutiny. This work aims to address the challenges surrounding the effectiveness of optimizers by conducting a comprehensive analysis and evaluation. The primary focus of this investigation lies in examining the performance of different optimizers when employed in conjunction with the popular activation function, Rectified Linear Unit (ReLU). By incorporating ReLU, known for its favorable properties in prior research, the aim is to bolster the effectiveness of the optimizers under scrutiny. Specifically, we evaluate the adjustment of these optimizers with both the original Softmax activation function and the modified ReLU activation function, carefully assessing their impact on overall performance. To achieve this, a series of experiments are conducted using a well-established benchmark dataset for image classification tasks, namely the Canadian Institute for Advanced Research dataset (CIFAR-10). The selected optimizers for investigation encompass a range of prominent algorithms, including Adam, Root Mean Squared Propagation (RMSprop), Adaptive Learning Rate Method (Adadelta), Adaptive Gradient Algorithm (Adagrad), and Stochastic Gradient Descent (SGD). The performance analysis encompasses a comprehensive evaluation of the classification accuracy, convergence speed, and robustness of the CNN models trained with each optimizer. Through rigorous experimentation and meticulous assessment, we discern the strengths and weaknesses of the different optimization techniques, providing valuable insights into their suitability for image classification tasks. By conducting this in-depth study, we contribute to the existing body of knowledge surrounding optimizers in CNNs, shedding light on their performance characteristics for image classification. The findings gleaned from this research serve to guide researchers and practitioners in making informed decisions when selecting optimizers and activation functions, thus advancing the state-of-the-art in the field of image classification with convolutional neural networks.

Keywords: deep neural network, optimizers, RMsprop, ReLU, stochastic gradient descent

Procedia PDF Downloads 106
14731 Robust Fault Diagnosis for Wind Turbine Systems Subjected to Multi-Faults

Authors: Sarah Odofin, Zhiwei Gao, Sun Kai

Abstract:

Operations, maintenance and reliability of wind turbines have received much attention over the years due to rapid expansion of wind farms. This paper explores early fault diagnosis scale technique based on a unique scheme of a 5MW wind turbine system that is optimized by genetic algorithm to be very sensitive to faults and resilient to disturbances. A quantitative model based analysis is pragmatic for primary fault diagnosis monitoring assessment to minimize downtime mostly caused by components breakdown and exploit productivity consistency. Simulation results are computed validating the wind turbine model which demonstrates system performance in a practical application of fault type examples. The results show the satisfactory effectiveness of the applied performance investigated in a Matlab/Simulink/Gatool environment.

Keywords: disturbance robustness, fault monitoring and detection, genetic algorithm, observer technique

Procedia PDF Downloads 365
14730 Cost Effectiveness and Performance Study of Perpetual Pavement Using ABAQUS

Authors: Mansour Fakhri, Monire Zokaei

Abstract:

Where there are many demolitions on conventional asphalt pavements, heavy costs are paid to repair and reconstruct the pavement roads annually. Recently some research has been done in order to increase the pavement life. Perpetual pavement is regarded as one of them which can improve the pavement life and minimize the maintenance activity and cost. In this research, ABAQUS which is a finite element software is implemented for analyzing and simulation of perpetual pavement. Viscoelastic model of material is used and loading wheel is considered to be dynamic. Effect of different parameters on pavement function has been considered. Because of high primary cost these pavements are not widely used. In this regard, life cost analysis was also carried out to compare perpetual pavement to conventional asphalt concrete pavement. It was concluded that although the initial cost of perpetual pavement is higher than that of conventional asphalt pavement, life cycle cost analysis during 50 years of service life showed that the performance of this pavement is better and the whole life cost of that is less.

Keywords: ABAQUS, lifecycle cost analysis, mechanistic empirical, perpetual pavement

Procedia PDF Downloads 371
14729 Examining Geometric Thinking Behaviours of Undergraduates in Online Geometry Course

Authors: Peter Akayuure

Abstract:

Geometry is considered an important strand in mathematics due to its wide-ranging utilitarian value and because it serves as a building block for understanding other aspects of undergraduate mathematics, including algebra and calculus. Matters regarding students’ geometric thinking have therefore long been pursued by mathematics researchers and educators globally via different theoretical lenses, curriculum reform efforts, and innovative instructional practices. However, so far, studies remain inconclusive about the instructional platforms that effectively promote geometric thinking. At the University of Education, Winneba, an undergraduate geometry course was designed and delivered on UEW Learning Management System (LMS) using Moodle platform. This study utilizes van Hiele’s theoretical lens to examine the entry and exit’s geometric thinking behaviours of prospective teachers who took the undergraduate geometry course in the LMS platform. The study was a descriptive survey that involved an intact class of 280 first-year students enrolled to pursue a bachelor's in mathematics education at the university. The van Hiele’s Geometric thinking test was used to assess participants’ entry and exit behaviours, while semi-structured interviews were used to obtain data for triangulation. Data were analysed descriptively and displayed in tables and charts. An Independent t-test was used to test for significant differences in geometric thinking behaviours between those who entered the university with a diploma certificate and with senior high certificate. The results show that on entry, more than 70% of the prospective teachers operated within the visualization level of van Hiele’s geometric thinking. Less than 20% reached analysis and abstraction levels, and no participant reached deduction and rigor levels. On exit, participants’ geometric thinking levels increased markedly across levels, but the difference from entry was not significant and might have occurred by chance. The geometric thinking behaviours of those enrolled with diploma certificates did not differ significant from those enrolled directly from senior high school. The study recommends that the design principles and delivery of undergraduate geometry course via LMS should be structured and tackled using van Hiele’s geometric thinking levels to serve as means of bridging the existing learning gaps of undergraduate students.

Keywords: geometric thinking, van Hiele’s, UEW learning management system, undergraduate geometry

Procedia PDF Downloads 117
14728 Divine Leadership: Developing a Leadership Theory and Defining the Characteristics of This Leadership

Authors: Parviz Abadi

Abstract:

It has been well established that leadership is the key driver in the success of organizations. Therefore, understanding leadership and finding styles that deliver improvements in leadership enable leaders to enhance their skills, which will significantly contribute to having an improved performance of the organization. There has been ample research on various theories of leadership. Leadership is meaningless unless it has people who are the followers. Furthermore, while people constitute many nations, studies have demonstrated that the majority of the population of the world adheres to some type of religion. Therefore, the study of the leadership of founders of religions is of interest. In this context, the term ‘Divine Leadership’ is created. Subsequently, historical texts and literature were reviewed to ascertain if this leadership could be defined in an academic context. Furthermore, evaluation of any leadership is an essential process in assessing the value that it may bring to society or organizations. Therefore, it was necessary to define characteristics that could be assigned to such leadership. The research led to the development of a leadership theory, where, due to the scope, only five dimensions were assigned. The study has continued to develop a theoretical model in line with quantitative research on the effectiveness of this leadership in enhancing the performance of organizations.

Keywords: leadership theory, management, motivation, organizations

Procedia PDF Downloads 44
14727 Building a Measure of Sensory Preferences For (Wrestling and Boxing) Players

Authors: Mohamed Nabhan

Abstract:

The research aims to build a measure of sensory preferences for (wrestling and boxing) players. The researchers used the descriptive approach and a sample of (8) consisting of (40) wrestling players, (40) boxing players with different scales, and they were chosen in a deliberate random way, and the most important results were that there were statistically significant differences between wrestlers and boxers in the sensory preferences of their senses. There is no indication in the sensory preferences for the senses of “sight and hearing” and that the significance is in favor of the wrestlers in the senses of “sight and touch,” and there is a convergence in the sense of hearing. Through the value of the averagesAfter collecting the data and statistical treatments and the results reached by the researcher, it was possible to reach: The following conclusions and recommendations: There are differences between wrestling and boxing players in their sensory preferences, the senses used in learning, due to several reasons, the most important of which may be as follows:- Scales for the player and for each sport separately. The nature of the game, the performance of skills, and dealing with the opponent or competitor.Tools used in performance and training.

Keywords: sensory preferences, sensory scale, wrestling players, boxing players

Procedia PDF Downloads 97