Search results for: toxic and essential elements
6445 Investigations of the Service Life of Different Material Configurations at Solid-lubricated Rolling Bearings
Authors: Bernd Sauer, Michel Werner, Stefan Emrich, Michael Kopnarski, Oliver Koch
Abstract:
Friction reduction is an important aspect in the context of sustainability and energy transition. Rolling bearings are therefore used in many applications in which components move relative to each other. Conventionally lubricated rolling bearings are used in a wide range of applications, but are not suitable under certain conditions. Conventional lubricants such as grease or oil cannot be used at very high or very low temperatures. In addition, these lubricants evaporate at very low ambient pressure, e.g. in a high vacuum environment, making the use of solid lubricated bearings unavoidable. With the use of solid-lubricated bearings, predicting the service life becomes more complex. While the end of the service life of bearings with conventional lubrication is mainly caused by the failure of the bearing components due to material fatigue, solid-lubricated bearings fail at the moment when the lubrication layer is worn and the rolling elements come into direct contact with the raceway during operation. In order to extend the service life of these bearings beyond the service life of the initial coating, the use of transfer lubrication is recommended, in which pockets or sacrificial cages are used in which the balls run and can thus absorb the lubricant, which is then available for lubrication in tribological contact. This contribution presents the results of wear and service life tests on solid-lubricated rolling bearings with sacrificial cage pockets. The cage of the bearing consists of a polyimide (PI) matrix with 15% molybdenum disulfide (MoS2) and serves as a lubrication depot alongside the silver-coated balls. The bearings are tested under high vacuum (pE < 10-2 Pa) at a temperature of 300 °C on a four-bearing test rig. First, investigations of the bearing system within the bearing service life are presented and the torque curve, the wear mass and surface analyses are discussed. With regard to wear, it can be seen that the bearing rings tend to increase in mass over the service life of the bearing, while the balls and the cage tend to lose mass. With regard to the elementary surface properties, the surfaces of the bearing rings and balls are examined in terms of the mass of the elements on them. Furthermore, service life investigations with different material pairings are presented, whereby the focus here is on the service life achieved in addition to the torque curve, wear development and surface analysis. It was shown that MoS2 in the cage leads to a longer service life, while a silver (Ag) coating on the balls has no positive influence on the service life and even appears to reduce it in combination with MoS2.Keywords: ball bearings, molybdenum disulfide, solid lubricated bearings, solid lubrication mechanisms
Procedia PDF Downloads 476444 Induction Machine Bearing Failure Detection Using Advanced Signal Processing Methods
Authors: Abdelghani Chahmi
Abstract:
This article examines the detection and localization of faults in electrical systems, particularly those using asynchronous machines. First, the process of failure will be characterized, relevant symptoms will be defined and based on those processes and symptoms, a model of those malfunctions will be obtained. Second, the development of the diagnosis of the machine will be shown. As studies of malfunctions in electrical systems could only rely on a small amount of experimental data, it has been essential to provide ourselves with simulation tools which allowed us to characterize the faulty behavior. Fault detection uses signal processing techniques in known operating phases.Keywords: induction motor, modeling, bearing damage, airgap eccentricity, torque variation
Procedia PDF Downloads 1386443 Toxic Dyes Removal in Aqueous Solution Using Calcined and Uncalcined Anionic Clay Zn/Al+Fe
Authors: Bessaha Hassiba, Bouraada Mohamed
Abstract:
Layered double hydroxide with Zn/(Al+Fe) molar ratio of 3:1 was synthesized by co-precipitation method and their calcined product was obtained by heating treatment of ZAF-HT at 500°C. The calcined and uncalcined materials were used to remove weak acid dyes: indigo carmine (IC) and green bezanyl-F2B (F2B) in aqueous solution. The synthesized materials were characterized by XRD, SEM, FTIR and TG/DTA analysis confirming the formation of pure layered structure of ZAF-HT, the destruction of the original structure after calcination and the intercalation of the dyes molecules. Moreover, the interlayer distance increases from 7.645 Å in ZAF-HT to 19.102 Å after the dyes sorption. The dose of the adsorbents was chosen 0.5 g/l while the initial concentrations were 250 and 750 mg/l for indigo carmine and green bezanyl-F2B respectively. The sorption experiments were carried out at ambient temperature and without adjusting the initial solution pH (pHi = 6.10 for IC and pHi = 5.01 for F2B). In addition, the maximum adsorption capacities obtained by ZAF-HT and CZAF for both dyes followed the order: CZAF-F2B (1501.4 mg.g-1) > CZAF-IC (617.3 mg.g-1) > ZAF-HT-IC (41.4 mg.g-1) > ZAF-HT-F2B (28.9 mg.g-1). The removal of indigo carmine and green bezanyl-F2B by ZAF-HT was due to the anion exchange and/or the adsorption on the surface. By using the calcined material (CZAF), the removal of the dyes was based on a particular property, called ‘memory effect’. CZAF recover the pristine structure in the presence anionic molecules such as acid dyes where they occupy the interlayer space. The sorption process was spontaneous in nature and followed pseudo-second-order. The isotherms showed that the removal of IC and F2B by ZAF-HT and CZAF were consistent with Langmiur model.Keywords: acid dyes, adsorption, calcination, layered double hydroxides
Procedia PDF Downloads 2206442 Practical Challenges of Tunable Parameters in Matlab/Simulink Code Generation
Authors: Ebrahim Shayesteh, Nikolaos Styliaras, Alin George Raducu, Ozan Sahin, Daniel Pombo VáZquez, Jonas Funkquist, Sotirios Thanopoulos
Abstract:
One of the important requirements in many code generation projects is defining some of the model parameters tunable. This helps to update the model parameters without performing the code generation again. This paper studies the concept of embedded code generation by MATLAB/Simulink coder targeting the TwinCAT Simulink system. The generated runtime modules are then tested and deployed to the TwinCAT 3 engineering environment. However, defining the parameters tunable in MATLAB/Simulink code generation targeting TwinCAT is not very straightforward. This paper focuses on this subject and reviews some of the techniques tested here to make the parameters tunable in generated runtime modules. Three techniques are proposed for this purpose, including normal tunable parameters, callback functions, and mask subsystems. Moreover, some test Simulink models are developed and used to evaluate the results of proposed approaches. A brief summary of the study results is presented in the following. First of all, the parameters defined tunable and used in defining the values of other Simulink elements (e.g., gain value of a gain block) could be changed after the code generation and this value updating will affect the values of all elements defined based on the values of the tunable parameter. For instance, if parameter K=1 is defined as a tunable parameter in the code generation process and this parameter is used to gain a gain block in Simulink, the gain value for the gain block is equal to 1 in the gain block TwinCAT environment after the code generation. But, the value of K can be changed to a new value (e.g., K=2) in TwinCAT (without doing any new code generation in MATLAB). Then, the gain value of the gain block will change to 2. Secondly, adding a callback function in the form of “pre-load function,” “post-load function,” “start function,” and will not help to make the parameters tunable without performing a new code generation. This means that any MATLAB files should be run before performing the code generation. The parameters defined/calculated in this file will be used as fixed values in the generated code. Thus, adding these files as callback functions to the Simulink model will not make these parameters flexible since the MATLAB files will not be attached to the generated code. Therefore, to change the parameters defined/calculated in these files, the code generation should be done again. However, adding these files as callback functions forces MATLAB to run them before the code generation, and there is no need to define the parameters mentioned in these files separately. Finally, using a tunable parameter in defining/calculating the values of other parameters through the mask is an efficient method to change the value of the latter parameters after the code generation. For instance, if tunable parameter K is used in calculating the value of two other parameters K1 and K2 and, after the code generation, the value of K is updated in TwinCAT environment, the value of parameters K1 and K2 will also be updated (without any new code generation).Keywords: code generation, MATLAB, tunable parameters, TwinCAT
Procedia PDF Downloads 2256441 Methodologies for Deriving Semantic Technical Information Using an Unstructured Patent Text Data
Authors: Jaehyung An, Sungjoo Lee
Abstract:
Patent documents constitute an up-to-date and reliable source of knowledge for reflecting technological advance, so patent analysis has been widely used for identification of technological trends and formulation of technology strategies. But, identifying technological information from patent data entails some limitations such as, high cost, complexity, and inconsistency because it rely on the expert’ knowledge. To overcome these limitations, researchers have applied to a quantitative analysis based on the keyword technique. By using this method, you can include a technological implication, particularly patent documents, or extract a keyword that indicates the important contents. However, it only uses the simple-counting method by keyword frequency, so it cannot take into account the sematic relationship with the keywords and sematic information such as, how the technologies are used in their technology area and how the technologies affect the other technologies. To automatically analyze unstructured technological information in patents to extract the semantic information, it should be transformed into an abstracted form that includes the technological key concepts. Specific sentence structure ‘SAO’ (subject, action, object) is newly emerged by representing ‘key concepts’ and can be extracted by NLP (Natural language processor). An SAO structure can be organized in a problem-solution format if the action-object (AO) states that the problem and subject (S) form the solution. In this paper, we propose the new methodology that can extract the SAO structure through technical elements extracting rules. Although sentence structures in the patents text have a unique format, prior studies have depended on general NLP (Natural language processor) applied to the common documents such as newspaper, research paper, and twitter mentions, so it cannot take into account the specific sentence structure types of the patent documents. To overcome this limitation, we identified a unique form of the patent sentences and defined the SAO structures in the patents text data. There are four types of technical elements that consist of technology adoption purpose, application area, tool for technology, and technical components. These four types of sentence structures from patents have their own specific word structure by location or sequence of the part of speech at each sentence. Finally, we developed algorithms for extracting SAOs and this result offer insight for the technology innovation process by providing different perspectives of technology.Keywords: NLP, patent analysis, SAO, semantic-analysis
Procedia PDF Downloads 2616440 An Exploratory Case Study of the Transference of Skills and Dispositions Used by a Newly Qualified Teacher
Authors: Lynn Machin
Abstract:
Using the lens of a theoretical framework relating to learning to learn the intention of the case study was to explore how transferable the teaching and learning skills of a newly qualified teacher (post-compulsory education) were when used in an overseas, unfamiliar and challenging post-compulsory educational environment. Particularly, the research sought to explore how this newly qualified teacher made use of the skills developed during their teacher training and to ascertain if, and what, other skills were necessary in order for them to have a positive influence on their learners and for them to be able to thrive within a different country and learning milieu. This case study looks at the experience of a trainee teacher who recently qualified in the UK to teach in post compulsory education (i.e. post 16 education). Rather than gaining employment in a UK based academy or college of further education this newly qualified teacher secured her first employment as a teacher in a province in China. Moreover, the newly qualified teacher had limited travel experience and had never travelled to Asia. She was one of the quieter and more reserved members on the one year teacher training course and was the least likely of the group to have made the decision to work abroad. How transferable the pedagogical skills that she had gained during her training would be when used in a culturally different and therefore (to her, challenging) environment was a key focus of the study. Another key focus was to explore the dispositions being used by the newly qualified teacher in order for her to teach and to thrive in an overseas educational environment. The methodological approach used for this study was both interpretative and qualitative. Associated methods were: Observation: observing the wider and operational practice of the newly qualified teacher over a five day period, and their need, ability and willingness to be reflective, resilient, reciprocal and resourceful. Interview: semi-structured interview with the newly qualified teacher following the observation of her practice. Findings from this case study illuminate the modifications made by the newly qualified teacher to her bank of teaching and learning strategies as well as the essentiality of dispositions used by her to know how to learn and also, crucially, to be ready and willing to do so. Such dispositions include being resilient, resourceful, reciprocal and reflective; necessary in order to adapt to the emerging challenges encountered by the teacher during their first months of employment in China. It is concluded that developing the skills to teach is essential for good teaching and learning practices. Having dispositions that enable teachers to work in ever changing conditions and surroundings is, this paper argues, essential for transferability and longevity of use of these skills.Keywords: learning, post-compulsory, resilience, transferable
Procedia PDF Downloads 2916439 The Investigation of Cadmium Pollution in the Metal Production Factory in Relation to Environmental Health
Authors: Seyed Armin Hashemi, Somayeh Rahimzadeh
Abstract:
Toxic metals such as lead and cadmium are among the pollutants that are created by the metal production factories and disseminated in the nature. In order to study the quantity of cadmium pollution in the environment of the metal production factories, 50 saplings of the spruce species at the peripheries of the metal production factories were examined and the samples of the leaves, roots and stems of saplings planted around the factory and the soil of the environment of the factory were studied to investigate pollution with cadmium. They were compared to the soil and saplings of the spruce trees planted outside the factory as observer region. The results showed that the quantity of pollution in the leaves, stem, and roots of the trees planted inside the factory environment were estimated at 1.1 milligram/kilogram, 1.5 milligram/kilogram and 2.5 milligram/kilogram respectively and this indicated a significant difference with the observer region (P < 0.05). The quantity of cadmium in the soil of the peripheries of the metal production factory was estimated at 6.8 milligram/kilogram in the depth of 0-10 centimeters beneath the level of the soil. The length of roots in the saplings planted around the factory of metal production stood at 11 centimeters and 14.5 centimeters in the observer region which had a significant difference with the observer region (P < 0.05). The quantity of soil resources and spruce species’ pollution with cadmium in the region has been influenced by the production processes in the factory.Keywords: cadmium pollution, spruce, soil pollution, the factory of producing alloy metals
Procedia PDF Downloads 3316438 Neuromarketing in the Context of Food Marketing
Authors: Francesco Pinci
Abstract:
This research investigates the significance of product packaging as an effective marketing tool. By using commercially available pasta as an example, the study specifically examines the visual components of packaging, including color, shape, packaging material, and logo. The insights gained from studies like this are particularly valuable to food and beverage companies as they provide marketers with a deeper understanding of the factors influencing consumer purchasing decisions. The research analyzes data collected through surveys conducted via Google Forms and visual data obtained using iMotions eye-tracker software. The results affirm the importance of packaging design elements, such as color and product information, in shaping consumer buying behavior.Keywords: consumer behaviour, eyetracker, food marketing, neuromarketing
Procedia PDF Downloads 1126437 A Novel Environmentally Benign Positive Electrode Material with Improved Energy Density for Lithium Ion Batteries
Authors: Wassima El Mofid, Svetlozar Ivanov, Andreas Bund
Abstract:
The increasing requirements for high power and energy lithium ion batteries have led to the development of several classes of positive electrode materials. Among those one promising material is LiNixMnyCo1−x−yO2 due to its high reversible capacity and remarkable cycling performance. Further structural stabilization and improved electrochemical performance of this class of cathode materials can be achieved by cationic substitution to a transition metal such as Al, Mg, Cr, etc. The current study discusses a novel NMC type material obtained by simultaneous cationic substitution of the cobalt which is a toxic element, with aluminum and iron. A compound with the composition LiNi0.6Mn0.2Co0.15Al0.025Fe0.025O2 (NMCAF) was synthesized by the self-combustion method using sucrose as fuel. The material has a layered α-NaFeO2 type structure with a good hexagonal ordering. Rietveld refinement analysis of the XRD patterns revealed a very low cationic mixing compared to the non-substituted material LiNi0.6Mn0,2Co0.2O2 suggesting a structural stabilization. Galvanostatic cycling measurements indicate improved electrochemical performance after the metal substitution. An initial discharge capacity of about 190 mAh.g−1 at slow rate (C/20), and a good cycling stability even at moderately faster rates (C/5 and C) have been observed. The long term cycling displayed a capacity retention of about 90% after 10 cycles.Keywords: cationic substitution, lithium ion batteries, positive electrode material, self-combustion synthesis method
Procedia PDF Downloads 4126436 Unlocking the Health Benefits of Goat Meat
Authors: K. Makangali, G. Tokysheva, A. Shoman
Abstract:
Goat meat and goat meat products have garnered increasing attention within the realm of nutrition and health due to their potential to provide a myriad of benefits. This scientific article presents a comprehensive review of the health advantages associated with goat meat consumption and the products derived from it. The paper explores the nutritional content of goat meat, highlighting its favorable composition in terms of protein, essential minerals, and amino acids. It delves into the intricate balance of macronutrients, with lower fat and cholesterol levels compared to other meats, making goat meat a desirable choice for individuals seeking healthier dietary options.Keywords: goat meat, amino acid, nutrition, meat products, meat
Procedia PDF Downloads 786435 Hydro-Geochemistry and Groundwater Quality Assessment of Rajshahi City in Bangladesh
Authors: M. G. Mostafa, S. M. Helal Uddin, A. B. M. H. Haque, M. R. Hasan
Abstract:
The study was carried out to understand the hydro-geochemistry and ground water quality in Rajshahi City of Bangladesh. 240 groundwater (shallow and deep tubewell) samples were collected during the year 2009-2010 covering pre-monsoon, monsoon and post-monsoon seasons and analyzed for various physico-chemical parameters including major ions. The results reveal that the groundwater was slightly acidic to neutral in nature, total hardness observed in all samples fall under hard to very hard category. The concentration of calcium, iron, manganese, arsenic and lead ions were found far above the permissible limit in most of the shallow tubewells water samples. The analysis results show that the mean concentrations of cations and anions were observed in the order: Ca > Mg > Na > K > Fe > Mn > Pb > Zn > Cu > As (total) > Cd and HCO3-> Cl-> SO42-> NO3-, respectively. The concentrations of TH, TDS, HCO3-, NO3-, Ca, Fe, Zn, Cu, Pb, and As (total) were found to be higher during post-monsoon compare to pre-monsoon, whilst K, Mg, Cd, and Cl were found higher during pre-monsoon and monsoon. Ca-HCO3 was identified as the major hydro chemical facie using piper trilinear diagram. Higher concentration of toxic metals including Fe, Mn, As and Pb were found indicating various health hazards. The results also illustrate that the rock water interaction was the major geochemical process controlling the chemistry of groundwater in the study area.Keywords: physio-chemical parameters, groundwater, geochemistry, Rajshahi city
Procedia PDF Downloads 3136434 Alloying Effect on Hot Workability of M42 High Speed Steel
Authors: Jung-Ho Moon, Tae Kwon Ha
Abstract:
In the present study, the effect of Si, Al, Ti, Zr, and Nb addition on the microstructure and hot workability of cast M42 tool steels, basically consisting of 1.0C, 0.2Mn, 3.8Cr, 1.5W, 8.5Co, 9.2Mo, and 1.0V in weight percent has been investigated. Tool steels containing Si of 0.25 and 0.5 wt.%, Al of 0.06 and 0.12 wt.%, Ti of 0.3 wt.%, Zr of 0.3 wt.%, and Nb of 0.3 wt.% were cast into ingots of 140 mm´ 140 mm´ 330 mm by vacuum induction melting. After solution treatment at 1150°C for 1.5 hrs. followed by furnace cooling, hot rolling at 1180 °C was conducted on the ingots. Addition of titanium, zirconium and niobium was found to retard the decomposition of the eutectic carbides and result in the deterioration of hot workability of the tool steels, while addition of aluminium and silicon showed relatively well decomposed carbide structure and resulted in sound hot rolled plates.Keywords: high speed steels, alloying elements, eutectic carbides, microstructure, hot workability
Procedia PDF Downloads 3506433 Study of the Thermomechanical Behavior of a Concrete Element
Authors: Douhi Reda Bouabdellah, Khalafi Hamid, Belamri Samir
Abstract:
The desire to improve the safety of nuclear reactor containment has revealed the need for data on the thermo mechanical behavior of concrete in case of accident during which the concrete is exposed to high temperatures. The aim of the present work is to study the influence of high temperature on the behavior of ordinary concrete specimens loaded by an effort of compression. A thermal model is developed by discretization volume elements (CASTEM). The results of different simulations, combined with other findings help to bring a physical phenomenon explanation Thermo mechanical concrete structures, which allowed to obtain the variation of the stresses anywhere in point or node and each subsequent temperature different directions X, Y and Z.Keywords: concrete, thermic-gradient, fire resistant, simulation by CASTEM, mechanical strength
Procedia PDF Downloads 3056432 Anti Staphylococcus aureus and Methicillin Resistant Staphylococcus aureus Action of Thermophilic Fungi Acrophialophora levis IBSD19 and Determination of Its Mode of Action Using Electron Microscopy
Authors: Shivankar Agrawal, Indira Sarangthem
Abstract:
Staphylococcus aureus and Methicillin-resistant Staphylococcus aureus (MRSA) remains one of the major causes of healthcare-associated and community-onset infections worldwide. Hence the search for non-toxic natural compounds having antibacterial activity has intensified for future drug development. The exploration of less studied niches of Earth can highly increase the possibility to discover novel bioactive compounds. Therefore, in this study, the cultivable fraction of fungi from the sediments of natural hot springs has been studied to mine potential fungal candidates with antibacterial activity against the human pathogen Staphylococcus aureus and Methicillin-resistant Staphylococcus aureus. We isolated diverse strains of thermophilic fungi from a collection of samples from sediment. Following a standard method, we isolated a promising thermophilic fungus strain IBSD19, identified as Acrophialophora levis, possessing the potential to produce an anti-Staphylococcus aureus agent. The growth conditions were optimized and scaled to fermentation, and its produced extract was subjected to chemical extraction. The ethyl acetate fraction was found to display significant activity against Staphylococcus aureus and MRSA with a minimum inhibitory concentration (MIC) of 0.5 mg/ml and 4 mg/ml, respectively. The cell membrane integrity assay and SEM suggested that the fungal metabolites cause bacteria clustering and further lysis of the cell.Keywords: antibacterial activity, antioxidant, fungi, Staphylococcus aureus, MRSA, thermophiles
Procedia PDF Downloads 1336431 Investigation of Flame and Soot Propagation in Non-Air Conditioned Railway Locomotives
Authors: Abhishek Agarwal, Manoj Sarda, Juhi Kaushik, Vatsal Sanjay, Arup Kumar Das
Abstract:
Propagation of fire through a non-air conditioned railway compartment is studied by virtue of numerical simulations. Simultaneous computational fire dynamics equations, such as Navier-Stokes, lumped species continuity, overall mass and energy conservation, and heat transfer are solved using finite volume based (for radiation) and finite difference based (for all other equations) solver, Fire Dynamics Simulator (FDS). A single coupe with an eight berth occupancy is used to establish the numerical model, followed by the selection of a three coupe system as the fundamental unit of the locomotive compartment. Heat Release Rate Per Unit Area (HRRPUA) of the initial fire is varied to consider a wide range of compartmental fires. Parameters, such as air inlet velocity relative to the locomotive at the windows, the level of interaction with the ambiance and closure of middle berth are studied through a wide range of numerical simulations. Almost all the loss of lives and properties due to fire breakout can be attributed to the direct or indirect exposure to flames or to the inhalation of toxic gases and resultant suffocation due to smoke and soot. Therefore, the temporal stature of fire and smoke are reported for each of the considered cases which can be used in the present or extended form to develop guidelines to be followed in case of a fire breakout.Keywords: fire dynamics, flame propagation, locomotive fire, soot flow pattern, non-air-conditioned coaches
Procedia PDF Downloads 2916430 Isolation of a Bacterial Community with High Removal Efficiencies of the Insecticide Bendiocarb
Authors: Eusebio A. Jiménez-Arévalo, Deifilia Ahuatzi-Chacón, Juvencio Galíndez-Mayer, Cleotilde Juárez-Ramírez, Nora Ruiz-Ordaz
Abstract:
Bendiocarb is a known toxic xenobiotic that presents acute and chronic risks for freshwater invertebrates and estuarine and marine biota; thus, the treatment of water contaminated with the insecticide is of concern. In this paper, a bacterial community with the capacity to grow in bendiocarb as its sole carbon and nitrogen source was isolated by enrichment techniques in batch culture, from samples of a composting plant located in the northeast of Mexico City. Eight cultivable bacteria were isolated from the microbial community, by PCR amplification of 16 rDNA; Pseudoxanthomonas spadix (NC_016147.2, 98%), Ochrobacterium anthropi (NC_009668.1, 97%), Staphylococcus capitis (NZ_CP007601.1, 99%), Bosea thiooxidans. (NZ_LMAR01000067.1, 99%), Pseudomonas denitrificans. (NC_020829.1, 99%), Agromyces sp. (NZ_LMKQ01000001.1, 98%), Bacillus thuringiensis. (NC_022873.1, 97%), Pseudomonas alkylphenolia (NZ_CP009048.1, 98%). NCBI accession numbers and percentage of similarity are indicated in parentheses. These bacteria were regarded as the isolated species for having the best similarity matches. The ability to degrade bendiocarb by the immobilized bacterial community in a packed bed biofilm reactor, using as support volcanic stone fragments (tezontle), was evaluated. The reactor system was operated in batch using mineral salts medium and 30 mg/L of bendiocarb as carbon and nitrogen source. With this system, an overall removal efficiency (ηbend) rounding 90%, was reached.Keywords: bendiocarb, biodegradation, biofilm reactor, carbamate insecticide
Procedia PDF Downloads 2786429 Enhancing the Network Security with Gray Code
Authors: Thomas Adi Purnomo Sidhi
Abstract:
Nowadays, network is an essential need in almost every part of human daily activities. People now can seamlessly connect to others through the Internet. With advanced technology, our personal data now can be more easily accessed. One of many components we are concerned for delivering the best network is a security issue. This paper is proposing a method that provides more options for security. This research aims to improve network security by focusing on the physical layer which is the first layer of the OSI model. The layer consists of the basic networking hardware transmission technologies of a network. With the use of observation method, the research produces a schematic design for enhancing the network security through the gray code converter.Keywords: network, network security, grey code, physical layer
Procedia PDF Downloads 4996428 Intangible Cultural Heritage as a Strategic Place Branding Tool
Authors: L. Ozoliņa
Abstract:
Place branding as a strategic marketing tool is applied in Latvia since 2000. The main objective of the study is to find unique connecting aspects of the intangible cultural heritage elements on the development of sustainable place branding. The study is based on in-depth semi-structured interviews with Latvian place branding experts and content analysis of Latvia's place brand identities. The study indicates place branding as an internal co-creational and educational process of all involved stakeholders of the place and highlights a critical view on the local place branding practices on the notability of the in-depth research of the intangible cultural heritage.Keywords: belonging, identity, intangible cultural heritage, narrative, self-image, place branding
Procedia PDF Downloads 1426427 Human Thinking Explained with Basic Drives
Authors: Peter Pfeifer, Julian Pfeifer, Niko Pfeifer
Abstract:
Information processing is the focus of brain and cognition research. This work has a different perspective; it starts with behaviors. The detailed analysis of behaviors leads to the discovery that a significant proportion of them are based on only five basic drives. These basic drives are combinable, and the combinations result in the diversity of human behavior and thinking. The key elements are drive memories. They collect memories of drive-related situations and feelings. They contain variations of basic drives in numerous areas of life and build combinations with different meanings depending on the area. Human thinking could be explained with variations on these nested combinations of basic drives.Keywords: cognition, psycholinguistics, psychology, psychophysiology of cognition
Procedia PDF Downloads 1596426 Green Synthesis and Characterization of Zinc Oxide Nanoparticles Using Neem (Azadiractha Indica) Leaf Extract and Investigate Its Antibacterial Activities
Authors: Elmineh Tsegahun Gedif
Abstract:
Zinc oxide nanoparticles (ZnO NPs) have attracted huge attention due to catalytic, optical, photonic, and antibacterial activity. Zinc oxide nanoparticles were successfully synthesized via a fast, non-toxic, cost-effective, and eco-friendly method by biologically reducing Zn(NO3)2.6H2O solution with Neem (Azadirachta indica) leaf extract under optimum conditions (pH = 9). The presence of active flavonoids, phenolic groups, alkaloids, terpenoids, and tannins, which were in the biomass of the Neem leaf extract before and after reduction, was identified using qualitative screening methods (observing the color changes) and FT-IR Spectroscopy. The formation of ZnO NPs was visually indicated by the color changes from colorless to light yellow color. Biosynthesized nanoparticles were also characterized by UV-visible, FT-IR, and XRD spectroscopies. The reduction process was simple and convenient to handle and was monitored by UV-visible spectroscopy that showed surface plasmon resonance (SPR) of the ZnO NPs at 321 nm. This result clearly revealed the formation of ZnO NPs. X-ray diffraction was used to investigate the crystal structure. The average particle size of ZnO powder and around 20 nm using the line width of the plane, and the refraction peak using Scherrer’s equation. The synthesized zinc oxide nanoparticles were evaluated for antimicrobial activities against Gram-positive and Gram-negative bacteria. Zinc nanoparticles exhibited the maximum zone of inhibition against Escherichia coli (15 mm), while the least activity was seen against Staphylococcus aureus.Keywords: antimicrobial activity, azadirachta indica, green synthesis, ZnO NPs
Procedia PDF Downloads 1106425 Effectiveness of Essential Oils as Inhibitors of Quorum Sensing Activity Using Biomonitor Strain Chromobacterium Violaceum
Authors: Ivana Cabarkapa, Zorica Tomicic, Olivera Duragic
Abstract:
Antimicrobial resistance represents one of the major challenges facing humanity in the last decades. Increasing antibiotic-resistant pathogens indicates the need for the development of alternative antibacterial drugs and new treatment strategies. One of the innovative emerging treatments in overcoming multidrug-resistant pathogens certainly represents the inhibition anti-quorum sensing system. For most of the food-borne pathogens, the expression of the virulence depends on their capability communication with other members of the population by means of quorum sensing (QS). QS represents a specific way of bacterial intercellular communication, which enabled owing to their ability to detect and to respond to cell population density by gene regulation. QS mechanisms are responsible for controls the pathogenesis, virulence luminescence, motility, sporulation and biofilm formation of many organisms by regulating gene expression. Therefore, research in this field is being an attractive target for the development of new natural antibacterial agents. Anti-QS compounds are known to have the ability to prohibit bacterial pathogenicity. Considering the importance of quorum sensing during bacterial pathogenesis, this research has been focused on evaluation anti - QS properties of four essential oils (EOs) Origanum heracleoticum, Origanum vulgare, Thymus vulgare, and Thymus serpyllum, using biomonitor strain of Chromobacterium violaceum CV026. Tests conducted on Luria Bertani agar supplemented with N hexanol DL homoserine lacton (HHL) 10µl/50ml of agar. The anti-QS potential of the EOs was assayed in a range of concentrations of 200 – 0.39 µl/ml using the disc diffusion method. EOs of Th. vulgaris and T. serpyllum were exhibited anti-QS activity indicated by a non- pigmented ring with a dilution-dependent manner. The lowest dilution of EOs T. vulgaris and T. serpyllum in which they exhibited visually detectable inhibition of violacein synthesis was 6.25 µl/ml for both tested EOs. EOs of O. heracleoticum and O. vulgare were displayed different active principles, i.e., antimicrobial activity indicated by the inner clear ring and anti-QS activity indicated by the outer non-pigmented ring, in a concentration-dependent manner. The lowest dilution of EOs of O. heracleoticum and O. vulgare in which exhibited visually detectable inhibition of violacein synthesis was 1.56 and 3.25 µl/ml, respectively. Considering that, the main constituents of the tested EOs represented by monoterpenes (carvacrol, thymol, γ-terpinene, and p-cymene), anti - QS properties of tested EOs can be mainly attributed to their activity. In particular, from the scientific literature, carvacrol and thymol show a sub-inhibitory effect against foodborne pathogens. Previous studies indicated that sub-lethal concentrations of carvacrol reduced the mobility of bacteria due to the ability of interference using QS mechanism between the bacterial cells, and thereby reducing the ability of biofilm formation The precise mechanism by which carvacrol inhibits biofilm formation is still not fully understood. Our results indicated that EOs displayed different active principles, i.e., antimicrobial activity indicated by the inner clear ring and anti-QS activity indicated by an outer non- pigmented ring with visually detectable inhibition of violacein. Preliminary results suggest that EOs represent a promising alternative for effective control of the emergence and spread of resistant pathogens.Keywords: anti-quorum sensing activity, Chromobacterium violaceum, essential oils, violacein
Procedia PDF Downloads 1366424 AIR SAFE: an Internet of Things System for Air Quality Management Leveraging Artificial Intelligence Algorithms
Authors: Mariangela Viviani, Daniele Germano, Simone Colace, Agostino Forestiero, Giuseppe Papuzzo, Sara Laurita
Abstract:
Nowadays, people spend most of their time in closed environments, in offices, or at home. Therefore, secure and highly livable environmental conditions are needed to reduce the probability of aerial viruses spreading. Also, to lower the human impact on the planet, it is important to reduce energy consumption. Heating, Ventilation, and Air Conditioning (HVAC) systems account for the major part of energy consumption in buildings [1]. Devising systems to control and regulate the airflow is, therefore, essential for energy efficiency. Moreover, an optimal setting for thermal comfort and air quality is essential for people’s well-being, at home or in offices, and increases productivity. Thanks to the features of Artificial Intelligence (AI) tools and techniques, it is possible to design innovative systems with: (i) Improved monitoring and prediction accuracy; (ii) Enhanced decision-making and mitigation strategies; (iii) Real-time air quality information; (iv) Increased efficiency in data analysis and processing; (v) Advanced early warning systems for air pollution events; (vi) Automated and cost-effective m onitoring network; and (vii) A better understanding of air quality patterns and trends. We propose AIR SAFE, an IoT-based infrastructure designed to optimize air quality and thermal comfort in indoor environments leveraging AI tools. AIR SAFE employs a network of smart sensors collecting indoor and outdoor data to be analyzed in order to take any corrective measures to ensure the occupants’ wellness. The data are analyzed through AI algorithms able to predict the future levels of temperature, relative humidity, and CO₂ concentration [2]. Based on these predictions, AIR SAFE takes actions, such as opening/closing the window or the air conditioner, to guarantee a high level of thermal comfort and air quality in the environment. In this contribution, we present the results from the AI algorithm we have implemented on the first s et o f d ata c ollected i n a real environment. The results were compared with other models from the literature to validate our approach.Keywords: air quality, internet of things, artificial intelligence, smart home
Procedia PDF Downloads 926423 The Zen Socrates Archetype and the Priority of the Unanswerable Question
Authors: Shawn Thompson
Abstract:
Socrates and Zen Buddhism are separated by time, distance, and cultures in a way that it is unlikely that they influenced each other. And yet the two have an amazing similarity in the principle that paradoxical and unanswerable questions can be a form of wisdom that produces a healthy psyche. Both have a sense that the limit of human awareness is a wisdom of this uncertainty. Both are at odds with the dogma of answers and of a western rationality that prioritizes the answer. Both have enigmatic answers that perpetuate the question. Both use the form of a dialogue of interaction with mutual illumination rather than the form of a lecture to passive recipients. If these premises are true, Socrates and Zen Buddhism has elements in common that reflect basic human needs for a good life. It can be argued that there is a joint archetypal experience of the wisdom of uncertainty and unanswerable questions in Socrates and Zen Buddhism.Keywords: zen buddhism, socrates, unanswerable questions, aporia
Procedia PDF Downloads 746422 The Contract for Educational Services: Civil and Administrative Aspects
Authors: Yuliya Leonidovna Kiva-Khamzina
Abstract:
The legal nature of the contract for educational services causes a lot of controversies. In particular, it raises the question about industry sector relationships, which require making a contract for educational services. The article describes the different types of contracts classifications for services provision from the perspective of civil law, deals with the specifics of the contract on rendering educational services; the author makes the conclusion that the contract for the provision of educational services is a complex institution that includes elements of the civil and administrative law. The following methods were used to conduct the study: dialectical method of cognition, the historical method, systemic analysis, classification.Keywords: administrative aspect, civil aspect, educational service, industry, legal nature, services provision
Procedia PDF Downloads 3236421 Spatial and Seasonal Distribution of Persistent Organic Pollutant (Polychlorinated Biphenyl) Along the Course of Buffalo River, Eastern Cape Province, South Africa
Authors: Abdulrazaq Yahaya, Omobola Okoh, Anthony Okoh
Abstract:
Polychlorinated biphenyls (PCBs) are generated from short emission or leakage from capacitors and electrical transformers, industrial chemicals wastewater discharge and careless disposal of wastes. They are toxic, semi-volatile compounds which can persist in the environment, hence classified as persistent organic pollutants. Their presence in the environmental matrices has become a global concern. In this study, we assessed the concentrations and distribution patterns of 19 polychlorinated biphenyls congeners (PCB 1, 5, 18, 31, 44, 52, 66, 87, 101, 110, 138, 141, 151, 153, 170, 180, 183, 187, and 206) at six sampling points in water along the course of Buffalo River, Eastern Cape, South Africa. Solvent extraction followed by sulphuric acid, potassium permanganate and silica gel cleanup were used in this study. The analysis was done with gas chromatography electron capture detector (GC-ECD). The results of the analysis of all the 19 PCBs congeners ranged from not detectable to 0.52 ppb and 2.5 ppb during summer and autumn periods respectively. These values are generally higher than the World Health Organization (WHO) maximum permissible limit. Their presence in the waterbody suggests an increase in anthropogenic activities over the seasons. In view of their volatility, the compounds are transportable over long distances by air currents away from their point of origin putting the health of the communities at risk, thus suggesting the need for strict regulations on the use as well as save disposal of this group of compounds in the communities.Keywords: organic pollutants, polychlorinated biphenyls, pollution, solvent extraction
Procedia PDF Downloads 3166420 Programming with Grammars
Authors: Peter M. Maurer Maurer
Abstract:
DGL is a context free grammar-based tool for generating random data. Many types of simulator input data require some computation to be placed in the proper format. For example, it might be necessary to generate ordered triples in which the third element is the sum of the first two elements, or it might be necessary to generate random numbers in some sorted order. Although DGL is universal in computational power, generating these types of data is extremely difficult. To overcome this problem, we have enhanced DGL to include features that permit direct computation within the structure of a context free grammar. The features have been implemented as special types of productions, preserving the context free flavor of DGL specifications.Keywords: DGL, Enhanced Context Free Grammars, Programming Constructs, Random Data Generation
Procedia PDF Downloads 1466419 Effect of Silver Nanoparticles on Seed Germination of Crop Plants
Authors: Zainab M. Almutairi, Amjad Alharbi
Abstract:
The use of engineered nanomaterials has increased as a result of their positive impact on many sectors of the economy, including agriculture. Silver nanoparticles (AgNPs) are now used to enhance seed germination, plant growth, and photosynthetic quantum efficiency and as antimicrobial agents to control plant diseases. In this study, we examined the effect of AgNP dosage on the seed germination of three plant species: corn (Zea mays L.), watermelon (Citrullus lanatus [Thunb.] Matsum. & Nakai) and zucchini (Cucurbita pepo L.). This experiment was designed to study the effect of AgNPs on germination percentage, germination rate, mean germination time, root length and fresh and dry weight of seedlings for the three species. Seven concentrations (0.05, 0.1, 0.5, 1, 1.5, 2, and 2.5 mg/ml) of AgNPs were examined at the seed germination stage. The three species had different dose responses to AgNPs in terms of germination parameters and the measured growth characteristics. The germination rates of the three plants were enhanced in response to AgNPs. Significant enhancement of the germination percentage values was observed after treatment of the watermelon and zucchini plants with AgNPs in comparison with untreated seeds. AgNPs showed a toxic effect on corn root elongation, whereas watermelon and zucchini seedling growth were positively affected by certain concentrations of AgNPs. This study showed that exposure to AgNPs caused both positive and negative effects on plant growth and germination.Keywords: citrullus lanatus, cucurbita pepo, seed germination, seedling growth, silver nanoparticles, zea mays
Procedia PDF Downloads 3076418 The Need for Automation in the Domestic Food Processing Sector and its Impact
Authors: Shantam Gupta
Abstract:
The objective of this study is to address the critical need for automation in the domestic food processing sector and study its impact. Food is the one of the most basic physiological needs essential for the survival of a living being. Some of them have the capacity to prepare their own food (like most plants) and henceforth are designated as primary food producers; those who depend on these primary food producers for food form the primary consumers’ class (herbivores). Some of the organisms relying on the primary food are the secondary food consumers (carnivores). There is a third class of consumers called tertiary food consumers/apex food consumers that feed on both the primary and secondary food consumers. Humans form an essential part of the apex predators and are generally at the top of the food chain. But still further disintegration of the food habits of the modern human i.e. Homo sapiens, reveals that humans depend on other individuals for preparing their own food. The old notion of eating raw/brute food is long gone and food processing has become very trenchant in lives of modern human. This has led to an increase in dependence on other individuals for ‘processing’ the food before it can be actually consumed by the modern human. This has led to a further shift of humans in the classification of food chain of consumers. The effects of the shifts shall be systematically investigated in this paper. The processing of food has a direct impact on the economy of the individual (consumer). Also most individuals depend on other processing individuals for the preparation of food. This dependency leads to establishment of a vital link of dependency in the food web which when altered can adversely affect the food web and can have dire consequences on the health of the individual. This study investigates the challenges arising out due to this dependency and the impact of food processing on the economy of the individual. A comparison of Industrial food processing and processing at domestic platforms (households and restaurants) has been made to provide an idea about the present scenario of automation in the food processing sector. A lot of time and energy is also consumed while processing food at home for consumption. The high frequency of consumption of meals (greater than 2 times a day) makes it even more laborious. Through the medium of this study a pressing need for development of an automatic cooking machine is proposed with a mission to reduce the inter-dependency & human effort of individuals required for the preparation of food (by automation of the food preparation process) and make them more self-reliant The impact of development of this product has also further been profoundly discussed. Assumption used: The individuals those who process food also consume the food that they produce. (They are also termed as ‘independent’ or ‘self-reliant’ modern human beings.)Keywords: automation, food processing, impact on economy, processing individual
Procedia PDF Downloads 4686417 Morphological and Property Rights Control of Plot Pattern in Urban Regeneration: Case Inspiration from Germany and the United States
Abstract:
As a morphological element reflecting the land property rights structure, the plot pattern plays a crucial role in shaping the form and quality of the built environment. Therefore, it is one of the core control elements of urban regeneration. As China's urban development mode is shifting from growth-based development to urban regeneration, it is urgent to explore a more refined way for the planning control of the plot pattern, which further promotes the optimization of urban form and land property structure. European and American countries such as Germany and the United States began to deal with the planning control of plot patterns in urban regeneration earlier and established relatively mature methods and mechanisms. Therefore, this paper summarizes two typical scenarios of plot pattern regeneration in old cities in China: the first one is "limited scale plot pattern rezoning", which mainly deals with the regeneration scenario of tearing down the old and building the new, and the focus of its control is to establish an adaptive plot pattern rezoning methodology and mechanism; The second is "localized parcel regeneration under the existing property rights," which mainly deals with the renewal scenario of alteration and addition, and its control focuses on the establishment of control rules for individual plot regeneration. For the two typical plot pattern regeneration scenarios, Germany (Berlin) and the United States (New York) are selected as two international cases with reference significance, and the framework of plot pattern form and property rights control elements of urban regeneration is established from four latitudes, namely, the overall operation mode, form control methods, property rights control methods, and effective implementation prerequisites, so as to compare and analyze the plot pattern control methods of the two countries under different land systems and regeneration backgrounds. Among them, the German construction planning system has formed a more complete technical methodology for block-scale rezoning, and together with the overall urban design, it has created a practical example in the critical redevelopment of the inner city of Berlin. In the United States (New York), the zoning method establishes fine zoning regulations and rules for adjusting development rights based on the morphological indicators plots so as to realize effective control over the regeneration of local plots under the existing property rights pattern. On the basis of summarizing the international experience, we put forward the proposal of plot pattern and property rights control for the organic regeneration of old cities in China.Keywords: plot pattern, urban regeneration, urban morphology, property rights, regulatory planning
Procedia PDF Downloads 426416 Equity, Bonds, Institutional Debt and Economic Growth: Evidence from South Africa
Authors: Ashenafi Beyene Fanta, Daniel Makina
Abstract:
Economic theory predicts that finance promotes economic growth. Although the finance-growth link is among the most researched areas in financial economics, our understanding of the link between the two is still incomplete. This is caused by, among others, wrong econometric specifications, using weak proxies of financial development, and inability to address the endogeneity problem. Studies on the finance growth link in South Africa consistently report economic growth driving financial development. Early studies found that economic growth drives financial development in South Africa, and recent studies have confirmed this using different econometric models. However, the monetary aggregate (i.e. M2) utilized used in these studies is considered a weak proxy for financial development. Furthermore, the fact that the models employed do not address the endogeneity problem in the finance-growth link casts doubt on the validity of the conclusions. For this reason, the current study examines the finance growth link in South Africa using data for the period 1990 to 2011 by employing a generalized method of moments (GMM) technique that is capable of addressing endogeneity, simultaneity and omitted variable bias problems. Unlike previous cross country and country case studies that have also used the same technique, our contribution is that we account for the development of bond markets and non-bank financial institutions rather than being limited to stock market and banking sector development. We find that bond market development affects economic growth in South Africa, and no similar effect is observed for the bank and non-bank financial intermediaries and the stock market. Our findings show that examination of individual elements of the financial system is important in understanding the unique effect of each on growth. The observation that bond markets rather than private credit and stock market development promotes economic growth in South Africa induces an intriguing question as to what unique roles bond markets play that the intermediaries and equity markets are unable to play. Crucially, our results support observations in the literature that using appropriate measures of financial development is critical for policy advice. They also support the suggestion that individual elements of the financial system need to be studied separately to consider their unique roles in advancing economic growth. We believe that our understanding of the channels through which bond market contribute to growth would be a fertile ground for future research.Keywords: bond market, finance, financial sector, growth
Procedia PDF Downloads 421