Search results for: level adjusting
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 12680

Search results for: level adjusting

12350 Efficient Hydrogen Separation through Pd-Pt Membrane

Authors: Lawan Muhammad Adam, Abduljabar Hilal Alsayoud

Abstract:

One of the most promising techniques to produce pure hydrogen is through a palladium-based membrane (Pd-membrane). Density functional theory (DFT) is employed in this work to examine how the physical and chemical adsorption properties of hydrogen on the surface of Pd-Pt can be mutated in the presence of contaminating gases, CH₄, CO, and CO₂. The main target is to survey the energy topology related to hydrogen adsorption while adjusting the stages of freedom in both the structure and composition. The adsorption sites, crystal plane of the slab, and relative orientation of the adsorbed molecules on its surface, as well as various arrangements of adsorbed species, have been considered in this study. The dependency of hydrogen adsorption on surface coverage is studied. The study demonstrated the physical adsorption energies of the molecules on the surface concerning the different coverages of hydrogen atoms. The most stable combinations of the adsorption sites (Top, Hollow, and Bridge) with various orientations of gaseous molecules on the Pd-Pt surface were identified according to their calculated energies. When the binding of contaminating gaseous species to the Pd-Pt surface and their impact on the physical adsorption energies of the H₂ are examined, it is observed that the most poisonous gas relative to all other gases modifies the energetics of the adsorption process of hydrogen on the surface.

Keywords: DFT, Pd-Pt-membrane, H₂, CO, CO₂

Procedia PDF Downloads 38
12349 Joint Probability Distribution of Extreme Water Level with Rainfall and Temperature: Trend Analysis of Potential Impacts of Climate Change

Authors: Ali Razmi, Saeed Golian

Abstract:

Climate change is known to have the potential to impact adversely hydrologic patterns for variables such as rainfall, maximum and minimum temperature and sea level rise. Long-term average of these climate variables could possibly change over time due to climate change impacts. In this study, trend analysis was performed on rainfall, maximum and minimum temperature and water level data of a coastal area in Manhattan, New York City, Central Park and Battery Park stations to investigate if there is a significant change in the data mean. Partial Man-Kendall test was used for trend analysis. Frequency analysis was then performed on data using common probability distribution functions such as Generalized Extreme Value (GEV), normal, log-normal and log-Pearson. Goodness of fit tests such as Kolmogorov-Smirnov are used to determine the most appropriate distributions. In flood frequency analysis, rainfall and water level data are often separately investigated. However, in determining flood zones, simultaneous consideration of rainfall and water level in frequency analysis could have considerable effect on floodplain delineation (flood extent and depth). The present study aims to perform flood frequency analysis considering joint probability distribution for rainfall and storm surge. First, correlation between the considered variables was investigated. Joint probability distribution of extreme water level and temperature was also investigated to examine how global warming could affect sea level flooding impacts. Copula functions were fitted to data and joint probability of water level with rainfall and temperature for different recurrence intervals of 2, 5, 25, 50, 100, 200, 500, 600 and 1000 was determined and compared with the severity of individual events. Results for trend analysis showed increase in long-term average of data that could be attributed to climate change impacts. GEV distribution was found as the most appropriate function to be fitted to the extreme climate variables. The results for joint probability distribution analysis confirmed the necessity for incorporation of both rainfall and water level data in flood frequency analysis.

Keywords: climate change, climate variables, copula, joint probability

Procedia PDF Downloads 329
12348 Influence of HbA1c on Nitric Oxide Level in Patients with Type 2 Diabetes Mellitus

Authors: Dara Kutsyk, Olga Bondarenko, Mariya Sorochka

Abstract:

In 21-century type 2 diabetes (T2D) has become a global health and social problem in the whole world. The goal of treatment for patients with T2D is to prevent complications of diabetes - macrovascular diseases (heart disease, stroke, and peripheral vascular disease) and microvascular diseases (retinopathy, neuropathy and nephropathy). Nitric oxide (NO) plays an important role in maintaining vascular homeostasis. Loss of NO function is one of the earliest indicators of disease and its progression especially in patients with T2D. Aim: To compare NO level between patients with well and bad controlled glycemia in T2D. Methods: The study included 32 patients with T2D. The diagnosis of T2D was confirmed due to International Diabetes Federation (IDF) criteria 2015. Patients were divided into two groups: with well controlled glycaemia (HbA1c < 7%) and bad controlled glycaemia (HbA1c > 7%). The control group consists of 15 healthy subjects. Results: NO level in patients with T2D is significantly higher (27,2 ±3,1 µmol), compared to controls (18,86±0,9 µmol; p < 0,001). A significant difference in NO level was found between patients with bad controlled glycaemia (25,9±2,2 µmol) and well controlled glycaemia (28,7 ± 3,0 µmol; p<0,01). The study showed a moderate negative correlation between NO level and HbA1c (-0,399; р< 0,05). Conclusions: Production of NO is impaired in patients with T2D, especially with badly controlled glycaemia. With the increase in HbAc serum NO decreases. This can be the main target for prevention vascular complication in T2D.

Keywords: type 2 diabetes, glycated hemoglobin, nitric oxide, Diabetes mellitus

Procedia PDF Downloads 246
12347 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 62
12346 Satisfaction of International Tourists during Their Visit to Bangkok, Thailand

Authors: Bovornluck Kuosuwan, Kevin Wongleedee

Abstract:

The purposes of this research was to study the level of satisfaction of international tourists in five important areas: satisfaction on visiting tourist destinations, satisfaction on tourist images, satisfaction on value for money, satisfaction on service quality, and satisfaction when compared with their expectation. A probability random sampling of 200 inbound tourists was utilized. A questionnaire was used to collect the data and small in-depth interviews were also used to get their opinions about their positive and negative evaluations of their experience travelling in Thailand. The findings revealed that the majority of respondents had a medium level of satisfaction. When examined in detail, the level of satisfaction can be ranked from highest to lowest according to the mean average as follows: visiting tourist destinations, expectations, service quality, tourist image, and value for money.

Keywords: inbound tourists, satisfaction, Thailand, international tourists

Procedia PDF Downloads 297
12345 Usage of Internet Technology in Financial Education and Financial Inclusion by Students of Economics Universities

Authors: B. Frączek

Abstract:

The paper analyses the usage of the Internet by university students in Visegrad Countries (4V Countries) who study economic fields in their formal and informal financial education and captures the areas of untapped potential of Internet in educational processes. Higher education and training, technological readiness, and the financial market development are in the group of pillars, that are key for efficiency driven economies. These three pillars have become an inspiration to the research on using the Internet in the financial education among economic university students as the group of the best educated people in finance. The financial education is a process that allows for improving the level of financial literacy. In turn, the financial literacy it is the set of financial knowledge, skills, awareness and patterns influencing the financial decisions. The level of financial literacy influences the level of financial well-being of individuals, determines the scale of saving of households and at the same time gives the greater chance for sustainable and more predictable development of the financial market with the positive impact on economy. The financial literacy is necessary for each group of society but its appropriate level is desirable especially in respect of economics students as future participants of financial markets as well as the experts and advisors in financial decision making. The low level of financial literacy is the great problem of many target groups in both developing and developed countries and the financial education is seen as the best way of improving this situation. Also the financial inclusion plays the special role in enhancing the level of financial literacy in the aspect of education by practice as well as due to interrelation between level of financial literacy and degree of financial inclusion. Despite many initiatives under financial education, the level of financial literacy is still very low. Scientists still search for new ways of solving this problem. One of the proposal is more effective usage of the new technology in financial education, especially the Internet, because of the growing popularity of e-learning and the increasing number of Internet users, especially among young people who are called the Generation Net. Due to special role of the university students studying the economics fields for the future financial markets, students of four universities from Visegrad Countries (Czech Republic, Hungary, Poland and Slovakia) were invited to participate in the survey. The aim of the article is to present the level and ways of using the Internet technology in financial education and indicating the so far unused or underused opportunities.

Keywords: financial education, financial inclusion, financial literacy, internet and university education

Procedia PDF Downloads 289
12344 Burnback Analysis of Star Grain Using Level-Set Technique

Authors: Ali Yasin, Ali Kamran, Muhammad Safdar

Abstract:

In order to reduce the hefty cost involved in terms of time and project cost, the development and application of advanced numerical tools to address the burn-back analysis problem in solid rocket motor design and development is the need of time. Several advanced numerical schemes have been developed in recent times, but their usage in the design of propellant grain of solid rocket motors is very rare. In this paper, an advanced numerical technique named the Level-Set method has been utilized for the burn-back analysis of star grain to study the effect of geometrical parameters on ballistic performance indicators such as solid loading, neutrality, and sliver percentage. In the level set technique, simple finite difference methods may fail quickly and require more sophisticated non-oscillatory schemes for feasible long-time simulation. For internal ballistic calculations, a simplified equilibrium pressure method is utilized. Preliminary results of the operative conditions, for all the combustion time, of star grain burn-back using level set techniques are compared with published results using CAD technique to test the developed numerical model.

Keywords: solid rocket motor, internal ballistic, level-set technique, star grain

Procedia PDF Downloads 93
12343 Initial Experiences of the First Version of Slovene Sustainable Building Indicators That are Based on Level(s)

Authors: Sabina Jordan, Marjana Šijanec Zavrl, Miha Tomšič, Friderik Knez

Abstract:

To determine the possibilities for the implementation of sustainable building indicators in Slovenia, testing of the first version of the indicators, developed in the CARE4CLIMATE project and based on the EU Level(s) framework, was carried out in 2022. Invited and interested stakeholders of the construction process were provided with video content and instructions on the Slovenian e-platform of sustainable building indicators. In addition, workshops and lectures with individual subjects were also performed. The final phase of the training and testing procedure included a questionnaire, which was used to obtain information about the participants' opinions regarding the indicators. The analysis of the results of the testing, which was focused on level 2, confirmed the key preliminary finding of the development group, namely that currently, due to the lack of certain knowledge, data, and tools, all indicators for this level are not yet feasible in practice. The research also highlighted the greater need for training and specialization of experts in this field. At the same time, it showed that the testing of the first version itself was a big challenge: only 30 experts fully participated and filled out the online questionnaire. This number seems alarmingly low at first glance, but compared to level(s) testing in the EU member states, it is much more than 50 times higher. However, for the further execution of the indicators in Slovenia, it will therefore be necessary to invest a lot of effort and engagement. It is likely that state support will also be needed, for example, in the form of financial mechanisms or incentives and/or legislative background.

Keywords: sustainability, building, indicator, implementation, testing, questionnaire

Procedia PDF Downloads 61
12342 Studying Relationship between Local Geometry of Decision Boundary with Network Complexity for Robustness Analysis with Adversarial Perturbations

Authors: Tushar K. Routh

Abstract:

If inputs are engineered in certain manners, they can influence deep neural networks’ (DNN) performances by facilitating misclassifications, a phenomenon well-known as adversarial attacks that question networks’ vulnerability. Recent studies have unfolded the relationship between vulnerability of such networks with their complexity. In this paper, the distinctive influence of additional convolutional layers at the decision boundaries of several DNN architectures was investigated. Here, to engineer inputs from widely known image datasets like MNIST, Fashion MNIST, and Cifar 10, we have exercised One Step Spectral Attack (OSSA) and Fast Gradient Method (FGM) techniques. The aftermaths of adding layers to the robustness of the architectures have been analyzed. For reasoning, separation width from linear class partitions and local geometry (curvature) near the decision boundary have been examined. The result reveals that model complexity has significant roles in adjusting relative distances from margins, as well as the local features of decision boundaries, which impact robustness.

Keywords: DNN robustness, decision boundary, local curvature, network complexity

Procedia PDF Downloads 46
12341 A Qualitative Study on Overcoming Problems and Limitations of Telepsychological Support (Online Counseling): Through Interviews with Practitioners

Authors: Toshiki Ito, Takahiro Yamane, Yuki Adachi, Yoshiko Kato, Eiji Tsuda, Kousaku Nagasaka, Keigo Yoshida, Yoshiko Kawasaki, Naoki Aizawa, Kyouhei Nishi, Tetsuko Kato

Abstract:

The epidemic of the coronavirus (COVID-19), first reported in Wuhan at the end of 2019, has drastically changed our daily lives. Under these circumstances, counseling, which provides psychological support to people, was also greatly affected. The structure of counseling, which had generally been implicitly common practice to be conducted in person, was greatly shaken. The author wondered how counseling can be conducted in situations where it is impossible to meet face-to-face. This is where telepsychological support (online counseling) came into use. The authors found that there were the following problems in telepsychological support: (1) anxiety about whether the communication is appropriate, (2) difficulty in understanding the client's situation and condition, (3) inability to perceive what was normally perceived in person, (4) difficulty in adjusting to severely ill clients, (5) difficulty in dealing with emergency situations, etc. In this study, we interviewed psychologists who had been accustomed to telepsychological support for more than two years after the Corona disaster began to clarify how they had or had not overcome the problems of telepsychological support identified in the above studies. We also aim to consider the unique possibilities of how telepsychological support, a new technique of psychological support, can be implemented to provide more effective and meaningful support in society after the end of the Corona disaster (post-Corona society). Thirteen psychologists who are currently providing telepsychological support in the Corona Disaster will be interviewed, and semi-structured interviews will be conducted for one hour per person. In order to empirically examine how the problems in telepsychological support had been overcome or not through the interview survey, the authors asked (1) how they overcame their anxiety about whether they were able to communicate appropriately, (2) how they devised ways to overcome it, (3) how they overcame the difficulty in adapting to heavy clients in terms of the level of the disease, (4) how they overcame the difficulty in dealing with emergency situations. The interviews were analyzed using Thematic Analysis, a qualitative analysis method commonly used in qualitative research overseas. The authors found that some devices and perspectives were newly discovered as a result of two years of practice of telepsychological support and that psychologists in this study considered face-to-face interviews and telepsychological support to be separate and were flexible enough to use them when available and to move to face-to-face interviews when not appropriate.

Keywords: telepsychology, COVID-19, Corona, psychologist

Procedia PDF Downloads 71
12340 The Effect of Foreign Language Classroom Anxiety and Tolerance of Ambiguity on EFL Learners’ Listening Proficiency

Authors: Mohammad Hadi Mahmoodi, Azam Ghonchepoor, Sheilan Sohrabi

Abstract:

The present study was conducted to investigate the effect of foreign language classroom anxiety and ambiguity tolerance on EFL Learners’ listening proficiency. In so doing, 442 EFL learners were randomly selected form Azad University and some accredited language institutions in Hamaden, and were given the Foreign Language Classroom Anxiety Scale (FLCAS) (1983), and Second Language Tolerance of Ambiguity Scale (SLTAS) (1995). Participants’ listening proficiency level was determined through listening scores gained in standardized exams given by university professors or institutes in which they studied English. The results of two-way ANOVA revealed that listening proficiency was significantly affected by the interaction of anxiety and AT level of the participants. Each of the two variables were categorized in three levels of High, Mid, and Low. The highest mean score of listening belonged to the group with low degree of anxiety and high degree of ambiguity tolerance, and the lowest listening mean score was gained by the group with high level of anxiety and low level of tolerance of ambiguity. Also, the findings of multiple regressions confirmed that anxiety was the stronger predictor of listening comprehension in contrast with tolerance of ambiguity. Furthermore, the result of Pearson correlation coefficient showed that there was a significant negative relationship between the participants’ foreign language classroom anxiety and their ambiguity tolerance level.

Keywords: Foreign Language Classroom Anxiety, Second language tolerance of ambiguity, Listening proficiency

Procedia PDF Downloads 480
12339 Design Optimization of a Compact Quadrupole Electromagnet for CLS 2.0

Authors: Md. Armin Islam, Les Dallin, Mark Boland, W. J. Zhang

Abstract:

This paper reports a study on the optimal magnetic design of a compact quadrupole electromagnet for the Canadian Light Source (CLS 2.0). The nature of the design is to determine a quadrupole with low relative higher order harmonics and better field quality. The design problem was formulated as an optimization model, in which the objective function is the higher order harmonics (multipole errors) and the variable to be optimized is the material distribution on the pole. The higher order harmonics arose in the quadrupole due to truncating the ideal hyperbola at a certain point to make the pole. In this project, the arisen harmonics have been optimized both transversely and longitudinally by adjusting material on the poles in a controlled way. For optimization, finite element analysis (FEA) has been conducted. A better higher order harmonics amplitudes and field quality have been achieved through the optimization. On the basis of the optimized magnetic design, electrical and cooling calculation has been performed for the magnet.

Keywords: drift, electrical, and cooling calculation, integrated field, magnetic field gradient, multipole errors, quadrupole

Procedia PDF Downloads 118
12338 The Effect of Health Subsidies on Poverty Level in Indonesia

Authors: Ikhsan Fahmi, Hasti Amanda Ilmi Putri

Abstract:

The COVID-19 pandemic caused large scale social restrictions which have an impact on aspects of the nation’s life, such as the level of poverty. One of the causes of poverty is the lack level of public health. The calculation of poverty is seen as an inability from an economic side of basic food and nonfood needs, which is measured from the expenditure side, one of which is health expenditure. The purpose of this study is to analyze the effect of health subsidies on society on the level of poverty in 2020 in Indonesia. The main source used is the National Socio-Economic Survey of Consumption Expenditure and Cor, March 2020. From the result of the analysis, it was found that the percentage of poor people increased from the previous 9.78 percent to 9,92 percent, or there were 391,000 people who were previously not poor people who became poor when the health subsidies were revoked. There is a pattern of distribution of provinces in Indonesia between the average cost of health subsidies per capita per month if the government does not provide health subsidies and the increase in the percentage of poor people. This indicates that government intervention related to health subsidised is important in terms of poverty alleviation in Indonesia.

Keywords: poverty, health, subsidy, expenditure

Procedia PDF Downloads 162
12337 Entrepreneurial Predisposition and Intention of Students from the IFRN – Mossoró, Brazil

Authors: Giovane Gurgel, Cristina S. Rodrigues, Filipa D. Vieira

Abstract:

IFRN – Mossoró is a Brazilian technical education institute that develops several activities to encourage entrepreneurship, such as a curricular discipline about enterprise management and the existence of a business incubator. Despite efforts, the business incubator does not produce the expected effects. Therefore, what predisposes students to start their own business? If literature review explores determinant factors like the family and personal characteristics, it can be sustained that entrepreneurship skills can be taught since primary level, until university level. This paper presents the results of research project “Empreende IFRN” to understand the entrepreneurial predisposition and intention of the students from technical level courses. Data from 365 students from technical level courses reveal an increased entrepreneurial intention of students during time (from a 2 years period to someday in the future). The entrepreneurial behaviour of parents affects students’ perception about starting their own business. Students also present a cautions behaviour, preferring bank deposit and investment fund instead starting a business.

Keywords: Brazil, entrepreneurial intention, entrepreneurship, secondary technical students

Procedia PDF Downloads 264
12336 Critical Thinking Skills in Activities Included in 11th Grade Chemistry Textbook - An Analytical Study

Authors: Sozan H. Omar, Luluah A. Al Jabr

Abstract:

The current study aimed to identify critical thinking skills and its level of inclusion in all the activities (44) listed in 11th grade chemistry textbooks. The researcher used a descriptive analytical method by using the content analyzing design. An instrument was created for this purpose and tested for validity and reliability. Results showed that, all activities included critical thinking skills with different ratios as follow: conclusion skill was (87.72%), induction skill was (80.90%), interpretation skill was (77. 72%), discussion of evaluation skill was (68.64%), and assumption skill was (50.45%). Also, the study results indicated that, the level of inclusion of critical thinking skills in the scientific activities was more explicit than implicit with same order as the level of inclusions. In the light of the study's results, the researcher provided some recommendations including the need to provide and redistribute critical thinking skills in the activities listed the chemistry textbook, as well as the need to pay attention to the inclusion level of these skills more implicitly in the activities.

Keywords: critical thinking skills, chemistry textbooks, scientific activities

Procedia PDF Downloads 376
12335 Bitplanes Image Encryption/Decryption Using Edge Map (SSPCE Method) and Arnold Transform

Authors: Ali A. Ukasha

Abstract:

Data security needed in data transmission, storage, and communication to ensure the security. The single step parallel contour extraction (SSPCE) method is used to create the edge map as a key image from the different Gray level/Binary image. Performing the X-OR operation between the key image and each bit plane of the original image for image pixel values change purpose. The Arnold transform used to changes the locations of image pixels as image scrambling process. Experiments have demonstrated that proposed algorithm can fully encrypt 2D Gary level image and completely reconstructed without any distortion. Also shown that the analyzed algorithm have extremely large security against some attacks like salt & pepper and JPEG compression. Its proof that the Gray level image can be protected with a higher security level. The presented method has easy hardware implementation and suitable for multimedia protection in real time applications such as wireless networks and mobile phone services.

Keywords: SSPCE method, image compression, salt and peppers attacks, bitplanes decomposition, Arnold transform, lossless image encryption

Procedia PDF Downloads 463
12334 DNA Methylation Changes Caused by Lawsone

Authors: Zuzana Poborilova, Anna B. Ohlsson, Torkel Berglund, Anna Vildova, Petr Babula

Abstract:

Lawsone is a pigment that occurs naturally in plants. It has been used as a skin and hair dye for a long time. Moreover, its different biological activities have been reported. The present study focused on the effect of lawsone on a plant cell model represented by tobacco BY-2 cell suspension culture, which is used as a model comparable with the HeLa cells. It has been shown that lawsone inhibits the cell growth in the concentration-dependent manner. In addition, changes in DNA methylation level have been determined. We observed decreasing level of DNA methylation in the presence of increasing concentrations of lawsone. These results were accompanied with overproduction of reactive oxygen species (ROS). Since epigenetic modifications can be caused by different stress factors, there could be a connection between the changes in the level of DNA methylation and ROS production caused by lawsone.

Keywords: DNA methylation, lawsone, naphthoquinone, reactive oxygen species

Procedia PDF Downloads 397
12333 Modeling Food Popularity Dependencies Using Social Media Data

Authors: DEVASHISH KHULBE, MANU PATHAK

Abstract:

The rise in popularity of major social media platforms have enabled people to share photos and textual information about their daily life. One of the popular topics about which information is shared is food. Since a lot of media about food are attributed to particular locations and restaurants, information like spatio-temporal popularity of various cuisines can be analyzed. Tracking the popularity of food types and retail locations across space and time can also be useful for business owners and restaurant investors. In this work, we present an approach using off-the shelf machine learning techniques to identify trends and popularity of cuisine types in an area using geo-tagged data from social media, Google images and Yelp. After adjusting for time, we use the Kernel Density Estimation to get hot spots across the location and model the dependencies among food cuisines popularity using Bayesian Networks. We consider the Manhattan borough of New York City as the location for our analyses but the approach can be used for any area with social media data and information about retail businesses.

Keywords: Web Mining, Geographic Information Systems, Business popularity, Spatial Data Analyses

Procedia PDF Downloads 86
12332 Antigastritic Effect of Starch from Manihot utilissima on Male Wistar Rats Induced Aspirin

Authors: Naela Nabiela, Ahmad Hilmi Fahmi, M. Sukron, Ayu Elita Sari, Yusran, Suparmi

Abstract:

Aspirin is one of NSAIDs (non-steroid inflammatory drugs), can cause gastric ulcer as an side effect of prolonged consumption. The effort to prevent the increase of gastric HCl level can by treating with amylopectin was reported that can cover the gastric mucose. However, the effect of amylopectin in starch from Manihot utilissima which is believed as traditional treatment gastric ulcer have not been clear yet. This study was conducted to determine the effect of starch formed as syrup to HCl level and gastric histopatology. This experiment post test only control group design used 42 male wistar rats divided into 7 groups. All groups, except first group, were induced by 60 mg/100gBW/day aspirin for 3 days. The following day for 2 days each group was treated by starch syrup at dosed 0.45% w/v, 0.9% w/v, 1.8% w/v, 0% w/v, and sucralfate. Respectively, HCl level were measured by acidi-alkalimetri titration method, while the gastric histopathology were prepared by hematoxylin-eosin staining. The result shows that aspirin induction can increase the HCl level as 0,00767 N. Starch syrup at dose 1.8% w/v was effective to reduce HCl level and the grade of second gastric necrosis. It can be conclude that starch syrup is potention as a treatment to cure gastric ulcer caused by NSAIDs side effect.

Keywords: concentration of HCl stomach, gastric histopathology, gastritis, starch

Procedia PDF Downloads 432
12331 Design and Advancement of Hybrid Multilevel Inverter Interface with PhotoVoltaic

Authors: P.Kiruthika, K. Ramani

Abstract:

This paper presented the design and advancement of a single-phase 27-level Hybrid Multilevel DC-AC Converter interfacing with Photo Voltaic. In this context, the Multicarrier Pulse Width Modulation method can be implemented in 27-level Hybrid Multilevel Inverter for generating a switching pulse. Perturb & Observer algorithm can be used in the Maximum Power Point Tracking method for the Photo Voltaic system. By implementing Maximum Power Point Tracking with three separate solar panels as an input source to the 27-level Hybrid Multilevel Inverter. This proposed method can be simulated by using MATLAB/simulink. The result shown that the proposed method can achieve silky output wave forms, more flexibility in voltage range, and to reduce Total Harmonic Distortion in medium-voltage drives.

Keywords: Multi Carrier Pulse Width Modulation Technique (MCPWM), Multi Level Inverter (MLI), Maximum Power Point Tracking (MPPT), Perturb and Observer (P&O)

Procedia PDF Downloads 556
12330 The Investigation of Endogenous Intoxication and Lipid Peroxidation in Patients with Giardiasis Before and After Treatment

Authors: R. H. Begaydarova, B. Zh. Kultanov, B. T. Esilbaeva, G. E. Nasakaeva, Y. Yukhnevich, G. K. Alshynbekova, A. E. Dyusembaeva

Abstract:

Background: The level of middle molecules of peptides (MMP) allows to evaluate the severity and prognosis of the disease and is a criterion for the effectiveness of the treatment. The detection the products of lipidperoxidation cascade, such as conjugated dienes, malondialdehyde in biological material, has an important role in the development of pathogenesis, the diagnosis and prognosis in different parasitic diseases. Purpose of the study was to evaluate the state of endogenous intoxication and indicators of lipid peroxidation in patients with giardiasis before and after treatment. Materials and methods: Endogenous intoxication was evaluated in patients with giardiasis in the level of middle molecules of peptides (MMP) in the blood. The amount of MMP and products of lipid peroxidation were determined in the blood of 198 patients with giardiasis, 129 of them were women (65%), 69 were men (35%). The MMP level was detected for comparison in the blood of 84 healthy volunteers. The lipid peroxidation were determined in 40 healthy men and women without giardiasis and history of chronic diseases. Data were processed by conventional methods of variation statistics, we calculated the arithmetic mean (M) and standard dispersion (m). t-test (t) was used to assess differences. Results: The level of MMP in the blood was significantly higher in patients with giardiasis in comparison with group of healthy men and women. MMP concentration in the blood of women with Giardia was 2.5 times greater than that of the comparison groups of women. The level of MMP exceeds more than 6 times in men with giardiasis. The decrease in the intensity of endogenous intoxication was two weeks after antigiardia therapy, both men and women. According to the study, a statistically significant increase in the level of all the studied parameters lipid peroxidation cascade was observed in the blood of men with giardiasis, with the exception of the total primary production (NGN). The treatment of giardiasis helped to stabilize the level of almost all metabolites of lipid peroxidation cascade. The exception was level of malondialdehyde, it was significantly elevated to compare with the control group and after treatment. Conclusion: Thus, the MMP level was significantly higher in blood of patients with giardiasis than in comparison group. This is evidence of severe endogenous intoxication caused by giardia infection. The accumulation of primary and secondary products of lipid peroxidation was observed in the blood of men and women. These processes tend to be more active in men than in women. Antigiardiasis therapy contributed to the normalization of almost all the studied indicators of lipid peroxidation in the blood of participants, except the level malondialdehyde in the blood of men.

Keywords: enzymes of antioxidant protection, giardiasis, blood, treatment

Procedia PDF Downloads 213
12329 Model Estimation and Error Level for Okike’s Merged Irregular Transposition Cipher

Authors: Okike Benjamin, Garba E. J. D.

Abstract:

The researcher has developed a new encryption technique known as Merged Irregular Transposition Cipher. In this cipher method of encryption, a message to be encrypted is split into parts and each part encrypted separately. Before the encrypted message is transmitted to the recipient(s), the positions of the split in the encrypted messages could be swapped to ensure more security. This work seeks to develop a model by considering the split number, S and the average number of characters per split, L as the message under consideration is split from 2 through 10. Again, after developing the model, the error level in the model would be determined.

Keywords: merged irregular transposition, error level, model estimation, message splitting

Procedia PDF Downloads 285
12328 Fasted and Postprandial Response of Serum Physiological Response, Hepatic Antioxidant Abilities and Hsp70 Expression in M. amblycephala Fed Different Dietary Carbohydrate

Authors: Chuanpeng Zhou

Abstract:

The effect of dietary carbohydrate (CHO) level on serum physiological response, hepatic antioxidant abilities and heat shock protein 70 (HSP70) expression of Wuchang bream (Megalobrama amblycephala) was studied. Two isonitrogenous (28.56% crude protein) and isolipidic (5.28% crude lipid) diets were formulated to contain 30% or 53% wheat starch. Diets were fed for 90 days to fish in triplicate tanks (28 fish per tank). At the end of feeding trial, significantly higher serum triglyceride level, insulin level, cortisol level, malondialdehyde (MDA) content were observed in fish fed the 53% CHO diet, while significantly lower serum total protein content, alkaline phosphatase (AKP) activity, superoxide dismutase (SOD) activity and total antioxidative capacity (T-AOC) were found in fish fed the 53% CHO diet compared with those fed the 30% diet. The relative level of hepatic heat shock protein 70 mRNA was significantly higher in the 53% CHO group than that in the 30% CHO at 6, 12, and 48 h after feeding. The results of this study indicated that ingestion of 53% dietary CHO impacted the nonspecific immune ability and caused metabolic stress of Megalobrama amblycephala.

Keywords: Megalobrama amblycephala, carbohydrate, fasted and postprandial response, immunity, Hsp70

Procedia PDF Downloads 425
12327 Development of a Smart Liquid Level Controller

Authors: Adamu Mudi, Ibrahim Wahab Fawole, Abubakar Abba Kolo

Abstract:

In this research paper, we present a microcontroller-based liquid level controller that identifies the various levels of a liquid, carries out certain actions, and is capable of communicating with the human being and other devices through the GSM network. This project is useful in ensuring that a liquid is not wasted. It also contributes to the internet of things paradigm, which is the future of the internet. The method used in this work includes designing the circuit and simulating it. The circuit is then implemented on a solderless breadboard, after which it is implemented on a strip board. A C++ computer program is developed and uploaded into the microcontroller. This program instructs the microcontroller on how to carry out its actions. In other to determine levels of the liquid, an ultrasonic wave is sent to the surface of the liquid similar to radar or the method for detecting the level of sea bed. Message is sent to the phone of the user similar to the way computers send messages to phones of GSM users. It is concluded that the routine of observing the levels of a liquid in a tank, refilling the tank when the liquid level is too low can be entirely handled by a programmable device without wastage of the liquid or bothering a human being with such tasks.

Keywords: Arduino Uno, HC-SR04 ultrasonic sensor, internet of things, IoT, SIM900 GSM module

Procedia PDF Downloads 104
12326 Multilayer Perceptron Neural Network for Rainfall-Water Level Modeling

Authors: Thohidul Islam, Md. Hamidul Haque, Robin Kumar Biswas

Abstract:

Floods are one of the deadliest natural disasters which are very complex to model; however, machine learning is opening the door for more reliable and accurate flood prediction. In this research, a multilayer perceptron neural network (MLP) is developed to model the rainfall-water level relation, in a subtropical monsoon climatic region of the Bangladesh-India border. Our experiments show promising empirical results to forecast the water level for 1 day lead time. Our best performing MLP model achieves 98.7% coefficient of determination with lower model complexity which surpasses previously reported results on similar forecasting problems.

Keywords: flood forecasting, machine learning, multilayer perceptron network, regression

Procedia PDF Downloads 140
12325 Design and Assessment of Base Isolated Structures under Spectrum-Compatible Bidirectional Earthquakes

Authors: Marco Furinghetti, Alberto Pavese, Michele Rinaldi

Abstract:

Concave Surface Slider devices have been more and more used in real applications for seismic protection of both bridge and building structures. Several research activities have been carried out, in order to investigate the lateral response of such a typology of devices, and a reasonably high level of knowledge has been reached. If radial analysis is performed, the frictional force is always aligned with respect to the restoring force, whereas under bidirectional seismic events, a bi-axial interaction of the directions of motion occurs, due to the step-wise projection of the main frictional force, which is assumed to be aligned to the trajectory of the isolator. Nonetheless, if non-linear time history analyses have to be performed, standard codes provide precise rules for the definition of an averagely spectrum-compatible set of accelerograms in radial conditions, whereas for bidirectional motions different combinations of the single components spectra can be found. Moreover, nowadays software for the adjustment of natural accelerograms are available, which lead to a higher quality of spectrum-compatibility and to a smaller dispersion of results for radial motions. In this endeavor a simplified design procedure is defined, for building structures, base-isolated by means of Concave Surface Slider devices. Different case study structures have been analyzed. In a first stage, the capacity curve has been computed, by means of non-linear static analyses on the fixed-base structures: inelastic fiber elements have been adopted and different direction angles of lateral forces have been studied. Thanks to these results, a linear elastic Finite Element Model has been defined, characterized by the same global stiffness of the linear elastic branch of the non-linear capacity curve. Then, non-linear time history analyses have been performed on the base-isolated structures, by applying seven bidirectional seismic events. The spectrum-compatibility of bidirectional earthquakes has been studied, by considering different combinations of single components and adjusting single records: thanks to the proposed procedure, results have shown a small dispersion and a good agreement in comparison to the assumed design values.

Keywords: concave surface slider, spectrum-compatibility, bidirectional earthquake, base isolation

Procedia PDF Downloads 265
12324 Curriculum-Based Multi-Agent Reinforcement Learning for Robotic Navigation

Authors: Hyeongbok Kim, Lingling Zhao, Xiaohong Su

Abstract:

Deep reinforcement learning has been applied to address various problems in robotics, such as autonomous driving and unmanned aerial vehicle. However, because of the sparse reward penalty for a collision with obstacles during the navigation mission, the agent fails to learn the optimal policy or requires a long time for convergence. Therefore, using obstacles and enemy agents, in this paper, we present a curriculum-based boost learning method to effectively train compound skills during multi-agent reinforcement learning. First, to enable the agents to solve challenging tasks, we gradually increased learning difficulties by adjusting reward shaping instead of constructing different learning environments. Then, in a benchmark environment with static obstacles and moving enemy agents, the experimental results showed that the proposed curriculum learning strategy enhanced cooperative navigation and compound collision avoidance skills in uncertain environments while improving learning efficiency.

Keywords: curriculum learning, hard exploration, multi-agent reinforcement learning, robotic navigation, sparse reward

Procedia PDF Downloads 66
12323 Factors Impeding Learners’ Use of the Blackboard System in Kingdom of Saudi Arabia

Authors: Omran Alharbi, Victor Lally

Abstract:

In recent decades, a number of educational institutions around the world have come to depend on technology such as the Blackboard system to improve their educational environment. On the other hand, there are many factors that delay the usage of this technology, especially in developing nations such as Saudi Arabia. The goal of this study was to investigate learner’s views of the use of Blackboard in one Saudi university in order to gain a comprehensive view of the factors that delay the implementation of technology in Saudi institutions. This study utilizes a qualitative approach, with data being collected through semi-structured interviews. Six participants from different disciplines took part in this study. The findings indicated that there are two levels of factors that affect students’ use of the Blackboard system. These are factors at the institutional level, such as lack of technical support and lack of training support, which lead to insufficient training related to the Blackboard system. The second level of factors is at the individual level, for example, a lack of teacher motivation and encouragement. In addition, students do not have sufficient levels of skills or knowledge related to how to use the Blackboard in their learning. Conclusion: learners confronted and faced two main types of factors (at the institution level and individual level) that delayed and impeded their learning. Institutions in KSA should take steps and implement strategies to remove or reduce these factors in order to allow students to benefit from the latest technology in their learning.

Keywords: blackboard, factors, KSA, learners

Procedia PDF Downloads 192
12322 Hydrodynamic and Morphological Simulation of Karnafuli River Using CCHE2D Model

Authors: Shah Md. Imran Kabir, Md. Mostafa Ali

Abstract:

Karnafuli is one of the most important rivers of Bangladesh which is playing a vital role in our national economy. The major sea port of Bangladesh is the Chittagong port located on the right bank of Karnafuli River Bangladesh. Karnafuli river port is considered as the lifeline of the economic activities of the country. Therefore, it is always necessary to keep the river active and live in terms of its navigability. Due to man-made intervention, the river flow becomes interrupted and thereby may cause the change in the river morphology. The specific objective of this study is the application of 2D model to assess different hydrodynamic and morphological characteristics of the river due to normal flow condition and sea level rise condition. The model has been set with the recent bathymetry data collected from CPA hydrography division. For model setup, the river reach is selected between Kalurghat and Khal no-18. Time series discharge and water level data are used as boundary condition at upstream and downstream. Calibration and validation have been carried out with the recent water level data at Khal no-10 and Sadarghat. The total reach length of the river has been divided into four parts to determine different hydrodynamic and morphological assessments like variation of velocity, sediment erosion and deposition and bed level changes also have been studied. This model has been used for the assessment of river response due sediment transport and sea level rise. Model result shows slight increase in velocity. It also changes the rate of erosion and deposition at some location of the selected reach. It is hoped that the result of the model simulation will be helpful to suggest the effect of possible future development work to be implemented on this river.

Keywords: CCHE 2D, hydrodynamic, morphology, sea level rise

Procedia PDF Downloads 339
12321 Fungal Pigments For Fabrics Dyeing: Initial Tests Using Industrial Dyeing Conditions

Authors: Vicente A. Hernandez, Felipe Galleguillos, Rene Thibaut, Alejandro Muller

Abstract:

Natural pigments have been proposed as an eco-friendly alternative to artificial pigments. Among the diverse organisms able to synthesize natural pigments, several wood colonizing fungi produce extracellular pigments which have been tested to dye fabrics at laboratory conditions with good results. However, the dyeing conditions used at laboratory level not necessary meet the real conditions in which dyeing of fabrics is conducted at industrial level. In this work, yellow and red pigments from the fungi Penicillium murcianum and Talaromyces australis, respectively, were used to dye yarn and linen fabrics using dyeing processes optimized according to the standard conditions used at industrial level. After dyeing treatments, fabrics were tested for color fastness to wash and to wet and dry rubbing, but also to tensile strength tests. Satisfactory result was obtained with both yellow and red pigments in yarn and linen, when used alone or mixed to different proportions. According to these results, natural pigments synthesized by both wood colonizing fungi have a great potential to be used in dyeing processes at industrial level.

Keywords: natural pigments, fungal pigments, yarn, linen

Procedia PDF Downloads 299