Search results for: chemical process control systems
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 32500

Search results for: chemical process control systems

11590 Prediction of Dubai Financial Market Stocks Movement Using K-Nearest Neighbor and Support Vector Regression

Authors: Abdulla D. Alblooshi

Abstract:

The stock market is a representation of human behavior and psychology, such as fear, greed, and discipline. Those are manifested in the form of price movements during the trading sessions. Therefore, predicting the stock movement and prices is a challenging effort. However, those trading sessions produce a large amount of data that can be utilized to train an AI agent for the purpose of predicting the stock movement. Predicting the stock market price action will be advantageous. In this paper, the stock movement data of three DFM listed stocks are studied using historical price movements and technical indicators value and used to train an agent using KNN and SVM methods to predict the future price movement. MATLAB Toolbox and a simple script is written to process and classify the information and output the prediction. It will also compare the different learning methods and parameters s using metrics like RMSE, MAE, and R².

Keywords: KNN, ANN, style, SVM, stocks, technical indicators, RSI, MACD, moving averages, RMSE, MAE

Procedia PDF Downloads 163
11589 A Mixed Approach to Assess Information System Risk, Operational Risk, and Congolese Microfinance Institutions Performance

Authors: Alfred Kamate Siviri, Angelus Mafikiri Tsongo, Jean Robert Kala Kamdjoug

Abstract:

Digitalization and information systems well organized have been selected as relevant measures to mitigate operational risks within organizations. Unfortunately, information system comes with new threats that can cause severe damage and quick organization lockout. This study aims to measure perceived information system risks and their effects on operational risks within the microfinance institution in D.R. Congo. Also, the factors influencing the operational risk are identified, and the link between operational risk with other risks and performance is to be assessed. The study proposes a research model drawn on the combination of Resources-Based-View, dynamic capabilities, the agency theory, the Information System Security Model, and social theories of risk. Therefore, we suggest adopting a mixed methods research with the sole aim of increasing the literature that already exists on perceived operational risk assessment and its link with other risk and performance, a focus on IT risk.

Keywords: Democratic Republic Congo, information system risk, microfinance performance, operational risk

Procedia PDF Downloads 215
11588 The Potential of Sentiment Analysis to Categorize Social Media Comments Using German Libraries

Authors: Felix Boehnisch, Alexander Lutz

Abstract:

Based on the number of users and the amount of content posted daily, Facebook is considered the largest social network in the world. This content includes images or text posts from companies but also private persons, which are also commented on by other users. However, it can sometimes be difficult for companies to keep track of all the posts and the reactions to them, especially when there are several posts a day that contain hundreds to thousands of comments. To facilitate this, the following paper deals with the possible applications of sentiment analysis to social media comments in order to be able to support the work in social media marketing. In a first step, post comments were divided into positive and negative by a subjective rating, then the same comments were checked for their polarity value by the two german python libraries TextBlobDE and SentiWS and also grouped into positive, negative, or even neutral. As a control, the subjective classifications were compared with the machine-generated ones by a confusion matrix, and relevant quality criteria were determined. The accuracy of both libraries was not really meaningful, with 60% to 66%. However, many words or sentences were not evaluated at all, so there seems to be room for optimization to possibly get more accurate results. In future studies, the use of these specific German libraries can be optimized to gain better insights by either applying them to stricter cleaned data or by adding a sentiment value to emojis, which have been removed from the comments in advance, as they are not contained in the libraries.

Keywords: Facebook, German libraries, polarity, sentiment analysis, social media comments

Procedia PDF Downloads 174
11587 Thermodynamics of Chlorination of Acid-Soluble Titanium Slag in Molten Salt for Preparation of TiCl4

Authors: Li Liang

Abstract:

Chinese titanium iron ore reserves with high calcium and magnesium accounted for more than 90% of the total reserves, and acid-soluble titanium slag which is produced by titanium iron ore always used to produce titanium dioxide through sulphate process. To broad the application range of acid-soluble titanium slag, the feasibility and thermodynamics of chlorinated reaction for preparation TiCl4 by titanium slag chlorination in molten slat were conducted in this paper. The analysis results show that TiCl4 can be obtained by chlorinate the acid-dissolved titanium slag with carbon. Component’s thermodynamics reaction trend is: CaO>MnO>FeO(FeCl2)>MgO>V2O5>Fe2O3>FeO(FeCl3)>TiO2>Al2O3>SiO2 in the standard state. Industrial experimental results are consistent with the thermodynamics analysis, the content of TiCl4 is more than 98% in the production. Fe, Si, V, Al, and other impurity content can satisfy the requirements of production.

Keywords: thermodynamics, acid-soluble titanium slag, preparation of TiCl4, chlorination

Procedia PDF Downloads 587
11586 A Study on How Newlyweds Handle the Difference with Parents on Wedding Arrangements and Its Implication for Services in Hong Kong

Authors: K. M. Yuen

Abstract:

This research examined the literature review of wedding preparation’s challenges and its developmental tasks of family transition under family life cycle. Five interviewees were invited to share their experiences on the differences with their parents in regard to wedding preparations and coping strategies. Some coping strategies and processes were highlighted for facilitating the family to achieve the developmental tasks during the wedding preparation. However, those coping strategies and processes may only act as the step and the behavior, while “concern towards parents” was found to be the essential element behind these behaviors. In addition to pre-marital counseling, a developmental group was suggested to develop under the framework of family life cycle and its related coping strategies on working with the newlyweds who encountered intergenerational differences in regard to their wedding preparations.

Keywords: wedding preparation, difference, parents, family life cycle, developmental tasks, coping strategies, process

Procedia PDF Downloads 328
11585 Mobile Application Testing Matrix and Challenges

Authors: Bakhtiar Amen, Sardasht Mahmood, Joan Lu

Abstract:

The adoption of smartphones and the usages of mobile applications are increasing rapidly. Consequently, within limited time-range, mobile Internet usages have managed to take over the desktop usages particularly since the first smartphone-touched application released by iPhone in 2007. This paper is proposed to provide solution and answer the most demandable questions related to mobile application automated and manual testing limitations. Moreover, Mobile application testing requires agility and physically testing. Agile testing is to detect bugs through automated tools, whereas the compatibility testing is more to ensure that the apps operates on mobile OS (Operation Systems) as well as on the different real devices. Moreover, we have managed to answer automated or manual questions through two mobile application case studies MES (Mobile Exam System) and MLM (Mobile Lab Mate) by creating test scripts for both case studies and our experiment results have been discussed and evaluated on whether to adopt test on real devices or on emulators? In addition to this, we have introduced new mobile application testing matrix for the testers and some enterprises to obtain knowledge from.

Keywords: mobile app testing, testing matrix, automated, manual testing

Procedia PDF Downloads 470
11584 Experimental Evaluation of Succinct Ternary Tree

Authors: Dmitriy Kuptsov

Abstract:

Tree data structures, such as binary or in general k-ary trees, are essential in computer science. The applications of these data structures can range from data search and retrieval to sorting and ranking algorithms. Naive implementations of these data structures can consume prohibitively large volumes of random access memory limiting their applicability in certain solutions. Thus, in these cases, more advanced representation of these data structures is essential. In this paper we present the design of the compact version of ternary tree data structure and demonstrate the results for the experimental evaluation using static dictionary problem. We compare these results with the results for binary and regular ternary trees. The conducted evaluation study shows that our design, in the best case, consumes up to 12 times less memory (for the dictionary used in our experimental evaluation) than a regular ternary tree and in certain configuration shows performance comparable to regular ternary trees. We have evaluated the performance of the algorithms using both 32 and 64 bit operating systems.

Keywords: algorithms, data structures, succinct ternary tree, per- formance evaluation

Procedia PDF Downloads 156
11583 Predicting Global Solar Radiation Using Recurrent Neural Networks and Climatological Parameters

Authors: Rami El-Hajj Mohamad, Mahmoud Skafi, Ali Massoud Haidar

Abstract:

Several meteorological parameters were used for the prediction of monthly average daily global solar radiation on horizontal using recurrent neural networks (RNNs). Climatological data and measures, mainly air temperature, humidity, sunshine duration, and wind speed between 1995 and 2007 were used to design and validate a feed forward and recurrent neural network based prediction systems. In this paper we present our reference system based on a feed-forward multilayer perceptron (MLP) as well as the proposed approach based on an RNN model. The obtained results were promising and comparable to those obtained by other existing empirical and neural models. The experimental results showed the advantage of RNNs over simple MLPs when we deal with time series solar radiation predictions based on daily climatological data.

Keywords: recurrent neural networks, global solar radiation, multi-layer perceptron, gradient, root mean square error

Procedia PDF Downloads 435
11582 Windcatcher as Sustainable Solution for Natural Ventilation in Hot Arid Regions: A Case Study of Saudi Arabia

Authors: Payam Nejat, Fatemeh Jomehzadeh, Muhamad Zaimi Abd. Majid, Mohd.Badruddin Yusof, Hasrul Haidar Ismail

Abstract:

Currently, building energy consumption has become an international issue especially in developing countries such as Saudi Arabia. In Saudi Arabia 14% of total final energy consumption is utilized in the building sector. Due to hot arid climate, 60% of total building energy consumption in this country is associated with cooling systems. In addition in 2011, this country was one of top ten CO2 emitting countries which illustrate the significance of renewable resources to sustaining the energy consumption. Wind as an important renewable energy can play a prominent role to supply natural ventilation inside the building and windcatcher as a traditional technique can be implemented for this purpose. In this paper the different types of windcatchers, its performance and function was reviewed. It can be concluded due high temperature and low humidity in most area of Saudi Arabia this technique can be successfully be employed and help to reduce fossil energy consumption and related CO2 emissions.

Keywords: natural ventilation, windcatcher, wind, badgir

Procedia PDF Downloads 588
11581 Mongolian Water Quality Problem and Health of Free-Grazing Sheep

Authors: Yu Yoshihara, Chika Tada, Moe Takada, Nyam-Osor Purevdorj, Khorolmaa Chimedtseren, Yutaka Nakai

Abstract:

Water pollution from animal waste and its influence on grazing animals is a current concern regarding Mongolian grazing lands. We allocated 32 free-grazing lambs to four groups and provided each with water from a different source (upper stream, lower stream, well, and pond) for 49 days. We recorded the amount of water consumed by the lambs, as well as their body weight, behavior, white blood cell count, acute phase (haptoglobin) protein level, and fecal condition. We measured the chemical and biological qualities of the four types of water, and we detected enteropathogenic and enterohemorrhagic Escherichia coli in fecal samples by using a genetic approach. Pond water contained high levels of nitrogen and minerals, and well water contained high levels of bacteria. The odor concentration index decreased in order from pond water to upper stream, lower stream, and well. On day 15 of the experiment, the following parameters were the highest in lambs drinking water from the following sources: water intake (pond or lower stream), body weight gain (pond), WBC count (lower stream), haptoglobin concentration (well), and enteropathogenic E. coli infection rate (lower stream). Lambs that drank well water spent more time lying down and less time grazing than the others, and lambs that drank pond water spent more time standing and less time lying down. Lambs given upper or lower stream water exhibited more severe diarrhea on day 15 of the experiment than before the experiment. Mongolian sheep seemed to adapt to chemically contaminated water: their productivity benefited the most from pond water, likely owing to its rich mineral content. Lambs that drank lower stream water showed increases in enteropathogenic E. coli infection, clinical diarrhea, and WBC count. Lambs that drank well water, which was bacteriologically contaminated, had increased serum acute phase protein levels and poor physical condition; they were thus at increased risk of negative health and production effects.

Keywords: DNA, Escherichia coli, fecal sample, lower stream, well water

Procedia PDF Downloads 465
11580 Strengthening of Concrete Slabs with Steel Beams

Authors: Mizam Doğan

Abstract:

In service life; structures can be damaged if they are subjected to dead and live loads which are greater than design values. For preventing this case; possible loads must be correctly calculated, structure must be designed according to determined loads, and structure must not be used out of its function. If loading case of the structure changes when its function changes; it must be reinforced for continuing it is new function. Reinforcement is a process that is made by increasing the existing strengths of structural system elements of the structure as reinforced concrete walls, beams, and slabs. Reinforcement can be done by casting reinforced concrete, placing steel and fiber structural elements. In this paper, reinforcing of columns and slabs of a structure of which function is changed is studied step by step. This reinforcement is made for increasing vertical and lateral load carrying capacity of the building. Not for repairing damaged structural system.

Keywords: strengthening, RC slabs, seismic load, steel beam, structural irregularity

Procedia PDF Downloads 251
11579 Deposit Guarantee Fund: One Perspective

Authors: Rute Abreu, Fátima David, Liliane Cristina Segura

Abstract:

The Deposit Guarantee Fund (DGF) and its communication with the Society, in general, and with the deposit client of Financial Institutions, in particular, is discussed through the challenges of the accounting and financial report. The Bank of Portugal promotes the Portuguese Deposit Guarantee Fund (PDGF) as a financial institution that enhanced the market confidence and stability on the deposit-insurance system. Due to the nature of their functions, it must be subject to regulation and supervision that provides a first line of defense against adversely affect confidence on the Portuguese financial market. First, this research provides evidence of the effectiveness of the protection mechanisms on the deposit insurance system, which provides high and equal protection to all stakeholders. Second, it emphasizes the need of requirements of rigorous accounting process and effective financial report to reduce the moral hazard implications. Third, this research focuses on the need of total disclosure of the financial information which gives higher transparency and protection to deposit client of financial institutions.

Keywords: deposit guarantee fund, Portugal, accounting, financial report

Procedia PDF Downloads 427
11578 Assessing Proteomic Variations Due to Genetic Modification of Tomatoes Using Three Complementary Approaches

Authors: Hanaa A. S. Oraby, Amal A. M. Hassan, Mahmoud M. Sakr, Atef A. A. Haiba

Abstract:

Applying the profiling approach for the assessment of proteomic variations due to genetic modification of the Egyptian tomato cultivar "Edkawy", three complementary approaches were used. These methods are amino acids analysis, gel electrophoresis, and Gas chromatography coupled with mass spectrometry (GC/MS). The results of the present study Show evidence of proteomic variations between both modified tomato and its non-modified counterpart. Amino acids concentrations, and the protein patterns separation on the 1D SDS-PAGE were not similar in the case of transformed tomato compared to that of the non-transformed counterpart. These detected differences are most likely derived from the process of transformation. Results also revealed that the efficiency of GC/MS approach to identify a mixture of unknown proteins is limited. GC/MS analysis was only able to identify few number of protein molecules. Therefore, more advanced and specific technologies like MALDI-TOF-MS are recommended to be employed.

Keywords: GMOs, unintended effects, proteomic variations, 1D SDS-PAGE, GC/MS

Procedia PDF Downloads 442
11577 Effects of Bacterial Inoculants and Enzymes Inoculation on the Fermentation and Aerobic Stability of Potato Hash Silage

Authors: B. D. Nkosi, T. F. Mutavhatsindi, J. J. Baloyi, R. Meeske, T. M. Langa, I. M. M. Malebana, M. D. Motiang

Abstract:

Potato hash (PH), a by-product from food production industry, contains 188.4 g dry matter (DM)/kg and 3.4 g water soluble carbohydrate (WSC)/kg DM, and was mixed with wheat bran (70:30 as is basis) to provide 352 g DM/kg and 315 g WSC/kg DM. The materials were ensiled with or without silage additives in 1.5L anaerobic jars (3 jars/treatment) that were kept at 25-280 C for 3 months. Four types of silages were produced which were: control (no additive, denoted as T1), celluclast enzyme (denoted as T2), emsilage bacterial inoculant (denoted as T3) and silosolve bacterial inoculant (denoted as T4). Three jars per treatment were opened after 3 months of ensiling for the determination of nutritive values, fermentation characteristics and aerobic stability. Aerobic stability was done by exposing silage samples to air for 5 days. The addition of enzyme (T2) was reduced (P<0.05) silage pH, fiber fractions (NDF and ADF) while increasing (P < 0.05) residual WSC and lactic acid (LA) production, compared to other treatments. Silage produced had pH of < 4.0, indications of well-preserved silage. Bacterial inoculation (T3 and T4) improved (P < 0.05) aerobic stability of the silage, as indicated by increased number of hours and lower CO2 production, compared to other treatments. However, the aerobic stability of silage was worsen (P < 0.05) with the addition of an enzyme (T2). Further work to elucidate these effects on nutrient digestion and growth performance on ruminants fed the silage is needed.

Keywords: by-products, digestibility, feeds, inoculation, ruminants, silage

Procedia PDF Downloads 433
11576 Artificial Intelligence in Management Simulators

Authors: Nuno Biga

Abstract:

Artificial Intelligence (AI) allows machines to interpret information and learn from context analysis, giving them the ability to make predictions adjusted to each specific situation. In addition to learning by performing deterministic and probabilistic calculations, the 'artificial brain' also learns through information and data provided by those who train it, namely its users. The "Assisted-BIGAMES" version of the Accident & Emergency (A&E) simulator introduces the concept of a "Virtual Assistant" (VA) that provides users with useful suggestions, namely to pursue the following operations: a) to relocate workstations in order to shorten travelled distances and minimize the stress of those involved; b) to identify in real time the bottleneck(s) in the operations system so that it is possible to quickly act upon them; c) to identify resources that should be polyvalent so that the system can be more efficient; d) to identify in which specific processes it may be advantageous to establish partnership with other teams; and e) to assess possible solutions based on the suggested KPIs allowing action monitoring to guide the (re)definition of future strategies. This paper is built on the BIGAMES© simulator and presents the conceptual AI model developed in a pilot project. Each Virtual Assisted BIGAME is a management simulator developed by the author that guides operational and strategic decision making, providing users with useful information in the form of management recommendations that make it possible to predict the actual outcome of different alternative management strategic actions. The pilot project developed incorporates results from 12 editions of the BIGAME A&E that took place between 2017 and 2022 at AESE Business School, based on the compilation of data that allows establishing causal relationships between decisions taken and results obtained. The systemic analysis and interpretation of this information is materialised in the Assisted-BIGAMES through a computer application called "BIGAMES Virtual Assistant" that players can use during the Game. Each participant in the Virtual Assisted-BIGAMES permanently asks himself about the decisions he should make during the game in order to win the competition. To this end, the role of the VA of each team consists in guiding the players to be more effective in their decision making through presenting recommendations based on AI methods. It is important to note that the VA's suggestions for action can be accepted or rejected by the managers of each team, and as the participants gain a better understanding of the game, they will more easily dispense with the VA's recommendations and rely more on their own experience, capability, and knowledge to support their own decisions. Preliminary results show that the introduction of the VA provides a faster learning of the decision-making process. The facilitator (Serious Game Controller) is responsible for supporting the players with further analysis and the recommended action may be (or not) aligned with the previous recommendations of the VA. All the information should be jointly analysed and assessed by each player, who are expected to add “Emotional Intelligence”, a component absent from the machine learning process.

Keywords: artificial intelligence (AI), gamification, key performance indicators (KPI), machine learning, management simulators, serious games, virtual assistant

Procedia PDF Downloads 96
11575 Emotions in Health Tweets: Analysis of American Government Official Accounts

Authors: García López

Abstract:

The Government Departments of Health have the task of informing and educating citizens about public health issues. For this, they use channels like Twitter, key in the search for health information and the propagation of content. The tweets, important in the virality of the content, may contain emotions that influence the contagion and exchange of knowledge. The goal of this study is to perform an analysis of the emotional projection of health information shared on Twitter by official American accounts: the disease control account CDCgov, National Institutes of Health, NIH, the government agency HHSGov, and the professional organization PublicHealth. For this, we used Tone Analyzer, an International Business Machines Corporation (IBM) tool specialized in emotion detection in text, corresponding to the categorical model of emotion representation. For 15 days, all tweets from these accounts were analyzed with the emotional analysis tool in text. The results showed that their tweets contain an important emotional load, a determining factor in the success of their communications. This exposes that official accounts also use subjective language and contain emotions. The predominance of emotion joy over sadness and the strong presence of emotions in their tweets stimulate the virality of content, a key in the work of informing that government health departments have.

Keywords: emotions in tweets, emotion detection in the text, health information on Twitter, American health official accounts, emotions on Twitter, emotions and content

Procedia PDF Downloads 133
11574 Estimation of the Curve Number and Runoff Height Using the Arc CN-Runoff Tool in Sartang Ramon Watershed in Iran

Authors: L.Jowkar. M.Samiee

Abstract:

Models or systems based on rainfall and runoff are numerous and have been formulated and applied depending on the precipitation regime, temperature, and climate. In this study, the ArcCN-Runoff rain-runoff modeling tool was used to estimate the spatial variability of the rainfall-runoff relationship in Sartang Ramon in Jiroft watershed. In this study, the runoff was estimated from 6-hour rainfall. The results showed that based on hydrological soil group map, soils with hydrological groups A, B, C, and D covered 1, 2, 55, and 41% of the basin, respectively. Given that the majority of the area has a slope above 60 percent and results of soil hydrologic groups, one can conclude that Sartang Ramon Basin has a relatively high potential for producing runoff. The average runoff height for a 6-hour rainfall with a 2-year return period is 26.6 mm. The volume of runoff from the 2-year return period was calculated as the runoff height of each polygon multiplied by the area of the polygon, which is 137913486 m³ for the whole basin.

Keywords: Arc CN-Run off, rain-runoff, return period, watershed

Procedia PDF Downloads 124
11573 Comparison of the Effectiveness of Communication between the Traditional Lecture and IELS

Authors: Ahmed R. Althobaiti, Malcolm Munro

Abstract:

Communication and effective information exchange within technology has become a crucial part of delivering knowledge to students during the learning process. It enables better understanding, builds trust, respect and increase the knowledge between students. This paper examines the communication between undergraduate students and their lecturers during the Traditional lecture and in using the Interactive Electronic Lecture System (IELS). The IELS is an application that offers a set of components, which support the effective communication between students, themselves and their lecturers. Moreover, this paper highlights the communication skills such as sender, receiver, channel and feedback. It will show how the IELS creates a rich communication environment between its users and how they communicate effectively. To examine and check the effectiveness of communication an experiment has been conducted for groups of users; students and lecturers. The first group communicated during the Traditional lecture while the second group communicated by the IELS application. The result showed that there was an effective communication between the second group more than the first group.

Keywords: communication, effective information exchange, lecture, student

Procedia PDF Downloads 393
11572 Sustainable Building Design for Energy Efficiency and Healthier Electromagnetic Environment

Authors: Riadh Habash, Kristina Djukic, Gandhi Habash

Abstract:

Sustainable design is one of the emerging milestones in building construction. This concept is defined as buildings that on a yearly average consume as much energy as they generate using renewable energy sources. Realization of sustainable buildings requires a wide range of technologies, systems and solutions with varying degrees of complexity and sophistication, depending upon the location and surrounding environmental conditions. This paper will address not only the role of the above technologies and solutions but will provide solutions to reduce the electromagnetic fields (EMFs) in the building as much as possible so that the occupiers can recover from electro-hyper-sensitivity, if any. The objective is to maximize energy efficiency, optimize occupant comfort, reduce dependency on the grid and provide safer and healthier EMF environment especially for hypersensitive people. Creative architectural and engineering solutions that capitalize on the design of energy efficient technologies; combined cooling, heating and power (CCHP) microgrid (MG); and EMF mitigation will be presented.

Keywords: sustainable buildings, energy efficiency, thermal simulation, electromagnetic environment

Procedia PDF Downloads 289
11571 A Study on Changing of Energy-Saving Performance of GHP Air Conditioning System with Time-Series Variation

Authors: Ying Xin, Shigeki Kametani

Abstract:

This paper deals the energy saving performance of GHP (Gas engine heat pump) air conditioning system has improved with time-series variation. There are two types of air conditioning systems, VRF (Variable refrigerant flow) and central cooling and heating system. VRF is classified as EHP (Electric driven heat pump) and GHP. EHP drives the compressor with electric motor. GHP drives the compressor with the gas engine. The electric consumption of GHP is less than one tenth of EHP does. In this study, the energy consumption data of GHP installed the junior high schools was collected. An annual and monthly energy consumption per rated thermal output power of each apparatus was calculated, and then their energy efficiency was analyzed. From these data, we investigated improvement of the energy saving of the GHP air conditioning system by the change in the generation.

Keywords: energy-saving, variable refrigerant flow, gas engine heat pump, electric driven heat pump, air conditioning system

Procedia PDF Downloads 292
11570 A Genetic Based Algorithm to Generate Random Simple Polygons Using a New Polygon Merge Algorithm

Authors: Ali Nourollah, Mohsen Movahedinejad

Abstract:

In this paper a new algorithm to generate random simple polygons from a given set of points in a two dimensional plane is designed. The proposed algorithm uses a genetic algorithm to generate polygons with few vertices. A new merge algorithm is presented which converts any two polygons into a simple polygon. This algorithm at first changes two polygons into a polygonal chain and then the polygonal chain is converted into a simple polygon. The process of converting a polygonal chain into a simple polygon is based on the removal of intersecting edges. The merge algorithm has the time complexity of O ((r+s) *l) where r and s are the size of merging polygons and l shows the number of intersecting edges removed from the polygonal chain. It will be shown that 1 < l < r+s. The experiments results show that the proposed algorithm has the ability to generate a great number of different simple polygons and has better performance in comparison to celebrated algorithms such as space partitioning and steady growth.

Keywords: Divide and conquer, genetic algorithm, merge polygons, Random simple polygon generation.

Procedia PDF Downloads 524
11569 An Indoor Guidance System Combining Near Field Communication and Bluetooth Low Energy Beacon Technologies

Authors: Rung-Shiang Cheng, Wei-Jun Hong, Jheng-Syun Wang, Kawuu W. Lin

Abstract:

Users rely increasingly on Location-Based Services (LBS) and automated navigation/guidance systems nowadays. However, while such services are easily implemented in outdoor environments using Global Positioning System (GPS) technology, a requirement still exists for accurate localization and guidance schemes in indoor settings. Accordingly, the present study presents a methodology based on GPS, Bluetooth Low Energy (BLE) beacons, and Near Field Communication (NFC) technology. Through establishing graphic information and the design of algorithm, this study develops a guidance system for indoor and outdoor on smartphones, with aim to provide users a smart life through this system. The presented system is implemented on a smartphone and evaluated on a student campus environment. The experimental results confirm the ability of the presented app to switch automatically from an outdoor mode to an indoor mode and to guide the user to the requested target destination via the shortest possible route.

Keywords: beacon, indoor, BLE, Dijkstra algorithm

Procedia PDF Downloads 294
11568 The Roles of Health Consciousness, Health Motivation, and Trust in the Purchase Intention of Meat with Traceability

Authors: Kawpong Polyorat, Nathamon Buaprommee

Abstract:

Food safety crises including mad cow disease and bird flu have raised consumers’ concern in meat safety. In response, the meat industry has adopted traceability systems to standardize quality and safety of their meat production. Traceability, however, is still rarely positioned as a marketing tool to persuade consumers who are meat endusers. Therefore, the present study attempts to understand consumer behaviors in the context of meat with traceability system by conducting a study in Thailand where research in this area is scant. The study results, based on structural equation modeling with AMOS, reveal that, while health motivation has a significant, positive impact on traceability trust, health consciousness does not directly affect traceability. Health consciousness, nevertheless, have a positive influence on health motivation. Finally, traceability trust has a positive impact on purchase intention of meat with traceability. Research implications and future study directions conclude the study report.

Keywords: consumer behavior, health consciousness, health motivation, traceability, trust

Procedia PDF Downloads 317
11567 Formulation and In vivo Evaluation of Venlafaxine Hydrochloride Long Acting Tablet

Authors: Abdulwahhab Khedr, Tamer Shehata, Hanaa El-Ghamry

Abstract:

Venlafaxine HCl is a novel antidepressant drug used in the treatment of major depressive disorder, generalized anxiety disorder, social anxiety disorder and panic disorder. Conventional therapeutic regimens with venlafaxine HCl immediate-release dosage forms require frequent dosing due to short elimination half-life of the drug and reduced bioavailability. Hence, this study was carried out to develop sustained-release dosage forms of venlafaxine HCl to reduce its dosing frequency, to improve patient compliance and to reduce side effects of the drug. The polymers used were hydroxypropylmethyl cellulose, xanthan gum, sodium alginate, sodium carboxymethyl cellulose, Carbopol 940 and ethyl cellulose. The physical properties of the prepared tablets including tablet thickness, diameter, weight uniformity, content uniformity, hardness and friability were evaluated. Also, the in-vitro release of venlafaxine HCl from different matrix tablets was studied. Based on physical characters and in-vitro release profiles, certain formulae showing promising sustained-release profiles were subjected to film coating with 15% w/v EC in dichloromethane/ethanol mixture (1:1 ratio) using 1% w/v HPMC as pore former and 30% w/w dibutyl phthalate as plasticizer. The optimized formulations were investigated for drug-excipient compatibility using FTIR and DSC studies. Physical evaluation of the prepared tablets fulfilled the pharmacopoeial requirements for tablet friability test, where the weight loss of the prepared formulae did not exceed 1% of the weight of the tested tablets. Moderate release was obtained from tablets containing HPMC. FTIR and DSC studies for such formulae revealed the absence of any type of chemical interaction between venlafaxine HCl and the used polymers or excipients. Forced swimming test in rats was used to evaluate the antidepressant activity of the selected matrix tablets of venlafaxine HCl. Results showed that formulations significantly decreased the duration of animals’ immobility during the 24 hr-period of the test compared to non-treated group.

Keywords: antidepressant, sustained-release, matrix tablet, venlafaxine hydrochloride

Procedia PDF Downloads 235
11566 Information and Communication Technology (ICT) Education Improvement for Enhancing Learning Performance and Social Equality

Authors: Heichia Wang, Yalan Chao

Abstract:

Social inequality is a persistent problem. One of the ways to solve this problem is through education. At present, vulnerable groups are often less geographically accessible to educational resources. However, compared with educational resources, communication equipment is easier for vulnerable groups. Now that information and communication technology (ICT) has entered the field of education, today we can accept the convenience that ICT provides in education, and the mobility that it brings makes learning independent of time and place. With mobile learning, teachers and students can start discussions in an online chat room without the limitations of time or place. However, because liquidity learning is quite convenient, people tend to solve problems in short online texts with lack of detailed information in a lack of convenient online environment to express ideas. Therefore, the ICT education environment may cause misunderstanding between teachers and students. Therefore, in order to better understand each other's views between teachers and students, this study aims to clarify the essays of the analysts and classify the students into several types of learning questions to clarify the views of teachers and students. In addition, this study attempts to extend the description of possible omissions in short texts by using external resources prior to classification. In short, by applying a short text classification, this study can point out each student's learning problems and inform the instructor where the main focus of the future course is, thus improving the ICT education environment. In order to achieve the goals, this research uses convolutional neural network (CNN) method to analyze short discussion content between teachers and students in an ICT education environment. Divide students into several main types of learning problem groups to facilitate answering student problems. In addition, this study will further cluster sub-categories of each major learning type to indicate specific problems for each student. Unlike most neural network programs, this study attempts to extend short texts with external resources before classifying them to improve classification performance. In short, by applying the classification of short texts, we can point out the learning problems of each student and inform the instructors where the main focus of future courses will improve the ICT education environment. The data of the empirical process will be used to pre-process the chat records between teachers and students and the course materials. An action system will be set up to compare the most similar parts of the teaching material with each student's chat history to improve future classification performance. Later, the function of short text classification uses CNN to classify rich chat records into several major learning problems based on theory-driven titles. By applying these modules, this research hopes to clarify the main learning problems of students and inform teachers that they should focus on future teaching.

Keywords: ICT education improvement, social equality, short text analysis, convolutional neural network

Procedia PDF Downloads 118
11565 Waste from Drinking Water Treatment: The Feasibility for Application in Building Materials

Authors: Marco Correa

Abstract:

The increasing reduction of the volumes of surface water sources supplying most municipalities, as well as the rising demand for treated water, combined with the disposal of effluents from washing of decanters and filters of water treatment plants generates a continuous search for correct environmentally solutions to these problems. The effluents generated by the water treatment industry need to be suitably processed for return to the environment or re-use. This article shows alternatives for sludge dehydration from the water treatment plants (WTP) and eventual disposal of sludge drained. Using the simple design methodology, it is presented a case study for drainage in tanks geotextile, full-scale, which involve five sledge drainage tanks from WTP of the city of Rio Verde. Aiming to the reutilization of drained water from the sledge and enabling its reuse both at the beginning of the treatment process at the WTP and in less noble services as for watering the gardens of the local town hall. The sludge will be used to in the production of building materials.

Keywords: dehydration, effluent discharges, re-use, sludge, WTP sludge

Procedia PDF Downloads 304
11564 Blockchain in Saudi E-Government: A Systematic Literature Review

Authors: Haitham Assiri, Priyadarsi Nanda

Abstract:

The world is gradually entering the fourth industrial revolution. E-Government services are scaling government operations across the globe. However, as promising as an e-Government system would be, it is also susceptible to malicious attacks if not properly secured. This study found out that, in Saudi Arabia, the e-Government website, Yesser is vulnerable to external attacks. Obviously, this can lead to a breach of data integrity and privacy. In this paper, a Systematic Literature Review was conducted to explore possible ways the Kingdom of Saudi Arabia can take necessary measures to strengthen its e-Government system using Blockchain. Blockchain is one of the emerging technologies shaping the world through its applications in finance, elections, healthcare, etc. It secures systems and brings more transparency. A total of 28 papers were selected for this SLR, and 19 of the papers significantly showed that blockchain could enhance the security and privacy of Saudi’s e-government system. Other papers also concluded that blockchain is effective, albeit with the integration of other technologies like IoT, AI and big data. These papers have been analysed to sieve out the findings and set the stage for future research into the subject.

Keywords: blockchain, data integrity, e-government, security threats

Procedia PDF Downloads 240
11563 Milk Production and Milk Composition of Dairy Cows in Response to Calcium Salt of Palm Oil Fatty Acids Supplementation

Authors: Wisitiporn Suksombat, Tanawat Phonkert, Chayapol Meeprom

Abstract:

The aim of this experiment was to investigate the effect of calcium salt of palm oil fatty acids (Ca-POFA) supplementation on milk production and milk composition of dairy cows. Twenty-four early lactating crossbred Holstein Friesian 87.5% cows (15.4 ± 3.75 kg of milk/d; 93 ± 27 DIM; 369 ± 6 kg of BW), were assigned into 3 treatments in an RCBD. All dairy cows were fed 15.4% CP total mixed ration (TMR). The first group (control) received a basal diet and no supplement. The second group was fed the basal diet supplemented with 150 g/d calcium salt of palm oil fatty acids (Ca-POFA), and the last group was fed the basal diet supplemented with 300 g/d Ca-POFA. The experiment lasted 40 days with the first 10 days is an adaptation period, and measurements were made during the last 30 days in 6 periods with 5-days in each period for milk sample collection. The results found that supplemented calcium salt of palm oil fatty acid had no effect on milk yield, milk composition, milk composition yield, live weight and live weight change. However, Ca-POFA decreased milk protein percentage (P < 0.05).

Keywords: calcium salt of palm oil fatty acid, dairy cow, milk composition, milk production

Procedia PDF Downloads 216
11562 Nanotechnology in Conservation of Artworks: TiO2-Based Nanocoatings for the Protection and Preservation of Stone Monuments

Authors: Sayed M. Ahmed, Sawsan S. Darwish, Nagib A. Elmarzugi, Mohammad A. Al-Dosari, Mahmoud A. Adam, Nadia A. Al-Mouallimi

Abstract:

The preservation of cultural heritage is a worldwide problem. Stone monuments represent an important part of this heritage, but due to their prevalently outdoor location, they are generally subject to a complex series of weathering and decay processes, in addition to physical and chemical factors, also biological agents usually play an important role in deterioration phenomena. The aim of this paper is to experimentally verify applicability and feasibility of titanium dioxide (TiO2) nanoparticles for the preservation of historical (architectural, monumental, archaeological) stone surfaces which enables to reduce the deterioration behaviors mentioned above. TiO2 nanoparticles dispersed in an aqueous colloidal suspension were applied directly on travertine (Marble and limestone often used in historical and monumental buildings) by spray-coating in order to obtain a nanometric film on stone samples. SEM, coupled with EDX microanalysis. (SEM-EDX), in order to obtain information oncoating homogeneity, surface morphology before and after aging and penetration depth of the TiO2 within the samples. Activity of the coated surface was evaluated with UV accelerated aging test. Capillary water absorption, thermal aging and colorimetric measurements have been performed on on coated and uncoated samples to evaluate their properties and estimate change of appearance with colour variation. Results show Tio2 nanoparticles good candidate for coating applications on calcareous stone, good water-repellence was observed on the samples after treatment; analyses were carried out on both untreated and freshly treated samples as well as after artificial aging. Colour change showed negligible variations on the coated or uncoated stone as well as after aging. Results showed that treated stone surfaces seem to be not affected after 1000 hours of exposure to UV radiation, no alteration of the original features.

Keywords: architectural and archaeological heritage, calcareous stone, photocatalysis TiO2, self-cleaning, thermal aging

Procedia PDF Downloads 270
11561 Long-Term Deformations of Concrete Structures

Authors: Abdelmalk Brahma

Abstract:

Drying is a phenomenon that accompanies the hardening of hydraulic materials. It can, if it is not prevented, lead to significant spontaneous dimensional variations, which the cracking is one of events. In this context, cracking promotes the transport of aggressive agents in the material, which can affect the durability of concrete structures. Drying shrinkage develops over a long period almost 30 years although most occurred during the first three years. Drying shrinkage stabilizes when the material is water balance with the external environment. The drying shrinkage of cementitious materials is due to the formation of capillary tensions in the pores of the material, which has the consequences of bringing the solid walls of each other. Knowledge of the shrinkage characteristics of concrete is a necessary starting point in the design of structures for crack control. Such knowledge will enable the designer to estimate the probable shrinkage movement in reinforced or prestressed concrete and the appropriate steps can be taken in design to accommodate this movement. This study is concerned the modelling of drying shrinkage of the hydraulic materials and the prediction of the rate of spontaneous deformations of hydraulic materials during hardening. The model developed takes in consideration the main factors affecting drying shrinkage. There was agreement between drying shrinkage predicted by the developed model and experimental results. In last we show that developed model describe the evolution of the drying shrinkage of high performances concretes correctly.

Keywords: drying, hydraulic concretes, shrinkage, modeling, prediction

Procedia PDF Downloads 255