Search results for: moment based boundary condition
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 31811

Search results for: moment based boundary condition

27581 Cobb Angle Measurement from Coronal X-Rays Using Artificial Neural Networks

Authors: Andrew N. Saylor, James R. Peters

Abstract:

Scoliosis is a complex 3D deformity of the thoracic and lumbar spines, clinically diagnosed by measurement of a Cobb angle of 10 degrees or more on a coronal X-ray. The Cobb angle is the angle made by the lines drawn along the proximal and distal endplates of the respective proximal and distal vertebrae comprising the curve. Traditionally, Cobb angles are measured manually using either a marker, straight edge, and protractor or image measurement software. The task of measuring the Cobb angle can also be represented by a function taking the spine geometry rendered using X-ray imaging as input and returning the approximate angle. Although the form of such a function may be unknown, it can be approximated using artificial neural networks (ANNs). The performance of ANNs is affected by many factors, including the choice of activation function and network architecture; however, the effects of these parameters on the accuracy of scoliotic deformity measurements are poorly understood. Therefore, the objective of this study was to systematically investigate the effect of ANN architecture and activation function on Cobb angle measurement from the coronal X-rays of scoliotic subjects. The data set for this study consisted of 609 coronal chest X-rays of scoliotic subjects divided into 481 training images and 128 test images. These data, which included labeled Cobb angle measurements, were obtained from the SpineWeb online database. In order to normalize the input data, each image was resized using bi-linear interpolation to a size of 500 × 187 pixels, and the pixel intensities were scaled to be between 0 and 1. A fully connected (dense) ANN with a fixed cost function (mean squared error), batch size (10), and learning rate (0.01) was developed using Python Version 3.7.3 and TensorFlow 1.13.1. The activation functions (sigmoid, hyperbolic tangent [tanh], or rectified linear units [ReLU]), number of hidden layers (1, 3, 5, or 10), and number of neurons per layer (10, 100, or 1000) were varied systematically to generate a total of 36 network conditions. Stochastic gradient descent with early stopping was used to train each network. Three trials were run per condition, and the final mean squared errors and mean absolute errors were averaged to quantify the network response for each condition. The network that performed the best used ReLU neurons had three hidden layers, and 100 neurons per layer. The average mean squared error of this network was 222.28 ± 30 degrees2, and the average mean absolute error was 11.96 ± 0.64 degrees. It is also notable that while most of the networks performed similarly, the networks using ReLU neurons, 10 hidden layers, and 1000 neurons per layer, and those using Tanh neurons, one hidden layer, and 10 neurons per layer performed markedly worse with average mean squared errors greater than 400 degrees2 and average mean absolute errors greater than 16 degrees. From the results of this study, it can be seen that the choice of ANN architecture and activation function has a clear impact on Cobb angle inference from coronal X-rays of scoliotic subjects.

Keywords: scoliosis, artificial neural networks, cobb angle, medical imaging

Procedia PDF Downloads 127
27580 Synthesis of Rare Earth Doped Nano-Phosphors through the Use of Isobutyl Nitrite and Urea Fuels: Study of Microstructure and Luminescence Properties

Authors: Seyed Mahdi Rafiaei

Abstract:

In this investigation, red emitting Eu³⁺ doped YVO₄ nano-phosphors have been synthesized via the facile combustion method using isobutyl nitrite and urea fuels, individually. Field-emission scanning electron microscope (FE-SEM) images, high resolution transmission electron microscope (TEM) images and X-ray diffraction (XRD) spectra reveal that the mentioned fuels can be used successfully to synthesis YVO₄: Eu³⁺ nano-particles. Interestingly, the fuels have a large effect on the size and morphology of nano-phosphors as well as luminescence properties. Noteworthy the use of isobutyl nitrite provides an average particle size of 65 nm, while the employment of urea, results in the formation of larger particles and also provides higher photoluminescence emission intensity. The improved luminescence performance is attributed to the condition of chemical reaction via the combustion synthesis and the size of synthesized phosphors.

Keywords: phosphors, combustion, fuels, luminescence, nanostructure

Procedia PDF Downloads 133
27579 Use of Predictive Food Microbiology to Determine the Shelf-Life of Foods

Authors: Fatih Tarlak

Abstract:

Predictive microbiology can be considered as an important field in food microbiology in which it uses predictive models to describe the microbial growth in different food products. Predictive models estimate the growth of microorganisms quickly, efficiently, and in a cost-effective way as compared to traditional methods of enumeration, which are long-lasting, expensive, and time-consuming. The mathematical models used in predictive microbiology are mainly categorised as primary and secondary models. The primary models are the mathematical equations that define the growth data as a function of time under a constant environmental condition. The secondary models describe the effects of environmental factors, such as temperature, pH, and water activity (aw) on the parameters of the primary models, including the maximum specific growth rate and lag phase duration, which are the most critical growth kinetic parameters. The combination of primary and secondary models provides valuable information to set limits for the quantitative detection of the microbial spoilage and assess product shelf-life.

Keywords: shelf-life, growth model, predictive microbiology, simulation

Procedia PDF Downloads 206
27578 Reinforced Concrete Slab under Static and Dynamic Loading

Authors: Aaron Aboshio, Jianqiao Ye

Abstract:

In this study, static and dynamic responses of a typical reinforced concrete flat slab, designed to British Standard (BS 8110, 1997) and under self and live loadings for dance halls are reported. Linear perturbation analysis using finite element method was employed for modal, impulse loading and frequency response analyses of the slab under the aforementioned loading condition. Results from the static and dynamic analyses, comprising of the slab fundamental frequencies and mode shapes, dynamic amplification factor, maximum deflection, stress distributions among other valuable outcomes are presented and discussed. These were gauged with the limiting provisions in the design code with a view to optimise the structure and ensure both adequate strength and economical section for large clear span slabs. This is necessary owing to the continued increase in cost of erecting building structures and the squeeze on public finance globally.

Keywords: economical design, finite element method, modal dynamics, reinforced concrete, slab

Procedia PDF Downloads 318
27577 Rest API Based System-level Test Automation for Mobile Applications

Authors: Jisoo Song

Abstract:

Today’s mobile applications are communicating with servers more and more in order to access external services or information. Also, server-side code changes are more frequent than client-side code changes in a mobile application. The frequent changes lead to an increase in testing cost increase. To reduce costs, UI based test automation can be one of the solutions. It is a common automation technique in system-level testing. However, it can be unsuitable for mobile applications. When you automate tests based on UI elements for mobile applications, there are some limitations such as the overhead of script maintenance or the difficulty of finding invisible defects that UI elements cannot represent. To overcome these limitations, we present a new automation technique based on Rest API. You can automate system-level tests through test scripts that you write. These scripts call a series of Rest API in a user’s action sequence. This technique does not require testers to know the internal implementation details, only input and expected output of Rest API. You can easily modify test cases by modifying Rest API input values and also find problems that might not be evident from the UI level by validating output values. For example, when an application receives price information from a payment server and user cannot see it at UI level, Rest API based scripts can check whether price information is correct or not. More than 10 mobile applications at our company are being tested automatically based on Rest API scripts whenever application source code, mostly server source code, is built. We are finding defects right away by setting a script as a build job in CI server. The build job starts when application code builds are completed. This presentation will also include field cases from our company.

Keywords: case studies at SK Planet, introduction of rest API based test automation, limitations of UI based test automation

Procedia PDF Downloads 441
27576 Ab Initio Studies of Organic Electrodes for Li and Na Ion Batteries Based on Tetracyanoethylene

Authors: Yingqian Chen, Sergei Manzhos

Abstract:

Organic electrodes are a way to achieve high rate (high power) and environment-friendly batteries. We present a computational density functional theory study of Li and Na storage in tetracyanoethylene based molecular and crystalline materials. Up to five Li and Na atoms can be stored on TCNE chemisorbed on doped graphene (corresponding to ~1000 mAh/gTCNE), with binding energies stronger than cohesive energies of the Li and Na metals by 1-2 eV. TCNE has been experimentally shown to form a crystalline material with Li with stoichiometry Li-TCNE. We confirm this computationally and also predict that a similar crystal based of Na-TCNE is also stable. These crystalline materials have well defined channels for facile Li or Na ion insertion and diffusion. Specifically, Li and Na binding energies in Li-TCNE and Na-TCNE crystals are about 1.5 eV and stronger than the cohesive energy of Li and Na, respectively. TCNE immobilized on conducting graphene-based substrates and Li/Na-TCNE crystals could therefore become efficient anode materials for organic Li and Na ion batteries, with which it should also be possible to avoid reduction of common battery electrolytes.

Keywords: organic ion batteries, tetracyanoethylene, cohesive energies, electrolytes

Procedia PDF Downloads 638
27575 Using RASCAL and ALOHA Codes to Establish an Analysis Methodology for Hydrogen Fluoride Evaluation

Authors: J. R. Wang, Y. Chiang, W. S. Hsu, H. C. Chen, S. H. Chen, J. H. Yang, S. W. Chen, C. Shih

Abstract:

In this study, the RASCAL and ALOHA codes are used to establish an analysis methodology for hydrogen fluoride (HF) evaluation. There are three main steps in this study. First, the UF6 data were collected. Second, one postulated case was analyzed by using the RASCAL and UF6 data. This postulated case assumes that fire occurring and UF6 is releasing from a building. Third, the results of RASCAL for HF mass were as the input data of ALOHA. Two postulated cases of HF were analyzed by using ALOHA code and the results of RASCAL. These postulated cases assume fire occurring and HF is releasing with no raining (Case 1) or raining (Case 2) condition. According to the analysis results of ALOHA, the HF concentration of Case 2 is smaller than Case 1. The results can be a reference for the preparing of emergency plans for the release of HF.

Keywords: RASCAL, ALOHA, UF₆, hydrogen fluoride

Procedia PDF Downloads 743
27574 A Collaborative Learning Model in Engineering Science Based on a Cyber-Physical Production Line

Authors: Yosr Ghozzi

Abstract:

The Cyber-Physical Systems terminology has been well received by the industrial community and specifically appropriated in educational settings. Indeed, our latest educational activities are based on the development of experimental platforms on an industrial scale. In fact, we built a collaborative learning model because of an international market study that led us to place ourselves at the heart of this technology. To align with these findings, a competency-based approach study was conducted, and program content was revised by reflecting the projectbased approach. Thus, this article deals with the development of educational devices according to a generated curriculum and specific educational activities while respecting the repository of skills adopted from what constitutes the educational cyber-physical production systems and the laboratories that are compliant and adapted to them. The implementation of these platforms was systematically carried out in the school's workshops spaces. The objective has been twofold, both research and teaching for the students in mechatronics and logistics of the electromechanical department. We act as trainers and industrial experts to involve students in the implementation of possible extension systems around multidisciplinary projects and reconnect with industrial projects for better professional integration.

Keywords: education 4.0, competency-based learning, teaching factory, project-based learning, cyber-physical systems, industry 4.0

Procedia PDF Downloads 102
27573 The Effect of Gas Pollutants on Museum Environment: Case Study of an Oil Paintings in Ethnographic Museum, Egypt

Authors: Hagar Ezzat, Mostafa Attia, Ahmed Bedeir, Abdelrazek Elnagger, Matija Strlic

Abstract:

Ethnographic Museum in Cairo- Egypt is a place of valuable collections (manuscripts, paintings, textiles and other ethnographic materials), the museum experiences serious neglecting with unacceptable display and storage conditions, the museum is located in Tahrir sq., which consider a high traffic area where pollution levels exceed the acceptable levels in museums. The materials used in manufacturing the display cases are expected to be source of many pollutants which affecting the sensitive oil paintings objects in the galleries. 24 diffusion tubes (12 No2, So2 & 12 O3) have been used in "winter 2014 and spring 2014" for monitoring museum environment with three cases "outdoor & indoor and in the gallery display". A series of analytical techniques with scientific tools: Ion Chromatography have been used to assess measurements and effects of gas pollutants on the museum which help us to make good assessment for the damage of oil paintings objects and the condition of the museum and understand the effect of the museum environment on the deterioration of the sensitive oil paintings.

Keywords: environment, museum, paintings, ethnographic, conservation

Procedia PDF Downloads 236
27572 Developing a Web-Based Tender Evaluation System Based on Fuzzy Multi-Attributes Group Decision Making for Nigerian Public Sector Tendering

Authors: Bello Abdullahi, Yahaya M. Ibrahim, Ahmed D. Ibrahim, Kabir Bala

Abstract:

Public sector tendering has traditionally been conducted using manual paper-based processes which are known to be inefficient, less transparent and more prone to manipulations and errors. The advent of the Internet and the World Wide Web has led to the development of numerous e-Tendering systems that addressed some of the problems associated with the manual paper-based tendering system. However, most of these systems rarely support the evaluation of tenders and where they do it is mostly based on the single decision maker which is not suitable in public sector tendering, where for the sake of objectivity, transparency, and fairness, it is required that the evaluation is conducted through a tender evaluation committee. Currently, in Nigeria, the public tendering process in general and the evaluation of tenders, in particular, are largely conducted using manual paper-based processes. Automating these manual-based processes to digital-based processes can help in enhancing the proficiency of public sector tendering in Nigeria. This paper is part of a larger study to develop an electronic tendering system that supports the whole tendering lifecycle based on Nigerian procurement law. Specifically, this paper presents the design and implementation of part of the system that supports group evaluation of tenders based on a technique called fuzzy multi-attributes group decision making. The system was developed using Object-Oriented methodologies and Unified Modelling Language and hypothetically applied in the evaluation of technical and financial proposals submitted by bidders. The system was validated by professionals with extensive experiences in public sector procurement. The results of the validation showed that the system called NPS-eTender has an average rating of 74% with respect to correct and accurate modelling of the existing manual tendering domain and an average rating of 67.6% with respect to its potential to enhance the proficiency of public sector tendering in Nigeria. Thus, based on the results of the validation, the automation of the evaluation process to support tender evaluation committee is achievable and can lead to a more proficient public sector tendering system.

Keywords: e-Tendering, e-Procurement, group decision making, tender evaluation, tender evaluation committee, UML, object-oriented methodologies, system development

Procedia PDF Downloads 258
27571 Pre-Soaking Application of Salicylic Acid on Four Wheat Cultivars under Saline Concentrations

Authors: Saad M. Howladar, Mike Dennett

Abstract:

The effect of salinity (0-200 mMNaCl) on wheat growth (leaf and tiller numbers, and fresh and dry weights) underseed soaking (6 and 24 hs) insalicylic acid (SA) was investigated. The impact of salinity was less pronounced in salt tolerant cultivars (Sakha 93 and S24) than Paragon and S24. Chlorophyll content was increased as a response to salinity stress. It was raised in 100 mMNaCl more than 200 mMNaCl. The same trend was found in 24 hs soaking, except chlorophyll content in Paragon and S24 under 200 mMNaCl was more than 100 mMNaCl. SA application induced a positive effect on growth parameters in some cultivars, particularly Paragon under saline and non-saline condition. Soaking for 6 hs was more effective than 24 hs soaking, especially in Paragon and Sakha 93. SA supply caused a slight effect on chlorophyll content but this was not significant and there was no significant difference between both soaking hs. The effect of SA on growth parameters and chlorophyll content depends on cultivar genotype and SA concentration.

Keywords: salinity, salicylic acid, growth parameters, chlorophyll content, wheat cultivars

Procedia PDF Downloads 542
27570 Carbon Footprint of Road Project for Sustainable Development: Lessons Learnt from Traffic Management of a Developing Urban Centre

Authors: Sajjad Shukur Ullah, Syed Shujaa Safdar Gardezi

Abstract:

Road infrastructure plays a vital role in the economic activities of any economy. Besides derived benefits from these facilities, the utilization of extensive energy resources, fuels, and materials results in a negative impact on the environment in terms of carbon footprint; carbon footprint is the overall amount of greenhouse gas (GHG) generated from any action. However, this aspect of environmental impact from road structure is not seriously considered during such developments, thus undermining a critical factor of sustainable development, which usually remains unaddressed, especially in developing countries. The current work investigates the carbon footprint impact of a small road project (0.8 km, dual carriageway) initiated for traffic management in an urban centre. Life cycle assessment (LCA) with boundary conditions of cradle to the site has been adopted. The only construction phase of the life cycle has been assessed at this stage. An impact of 10 ktons-CO2 (6260 ton-CO2/km) has been assessed. The rigid pavement dominated the contributions as compared to a flexible component. Among the structural elements, the underpass works shared the major portion. Among the materials, the concrete and steel utilized for various structural elements resulted in more than 90% of the impact. The earth-moving equipment was dominant in operational carbon. The results have highlighted that road infrastructure projects pose serious threats to the environment during their construction and which need to be considered during the approval stages. This work provides a guideline for supporting sustainable development that could only be ensured when such endeavours are properly assessed by industry professionals and decide various alternative environmental conscious solutions for the future.

Keywords: construction waste management, kiloton, life cycle assessment, rigid pavement

Procedia PDF Downloads 96
27569 Studying Roughness Effects on Flow Regimes in Offshore Pipelines

Authors: Mohammad Sadegh Narges, Zahra Ghadampour

Abstract:

Due to the specific condition, offshore pipelines are given careful consideration and care in both design and operation. Most of the offshore pipeline flows are multi-phase. Multi-phase flows construct different pattern or flow regimes (in simultaneous gas-liquid flow, flow regimes like slug flow, wave and …) under different circumstances. One of the influencing factors on the flow regime is the pipeline roughness value. So far, roughness value influences and the sensitivity of the present models to this parameter have not been taken into consideration. Therefore, roughness value influences on the flow regimes in offshore pipelines are discussed in this paper. Results showed that geometry, absolute pipeline roughness value (materials that the pipeline is made of) and flow phases prevailing the system are of the influential parameters on the flow regimes prevailing multi-phase pipelines in a way that a change in any of these parameters results in a change in flow regimes in all or part of the pipeline system.

Keywords: absolute roughness, flow regime, multi-phase flow, offshore pipelines

Procedia PDF Downloads 368
27568 One-Dimensional Numerical Simulation of the Nonlinear Instability Behavior of an Electrified Viscoelastic Liquid Jet

Authors: Fang Li, Xie-Yuan Yin, Xie-Zhen Yin

Abstract:

Instability and breakup of electrified viscoelastic liquid jets are involved in various applications such as inkjet printing, fuel atomization, the pharmaceutical industry, electrospraying, and electrospinning. Studying on the instability of electrified viscoelastic liquid jets is of theoretical and practical significance. We built a one-dimensional electrified viscoelastic model to study the nonlinear instability behavior of a perfecting conducting, slightly viscoelastic liquid jet under a radial electric field. The model is solved numerically by using an implicit finite difference scheme together with a boundary element method. It is found that under a radial electric field a viscoelastic liquid jet still evolves into a beads-on-string structure with a thin filament connecting two adjacent droplets as in the absence of an electric field. A radial electric field exhibits limited influence on the decay of the filament thickness in the nonlinear evolution process of a viscoelastic jet, in contrast to its great enhancing effect on the linear instability of the jet. On the other hand, a radial electric field can induce axial non-uniformity of the first normal stress difference within the filament. Particularly, the magnitude of the first normal stress difference near the midpoint of the filament can be greatly decreased by a radial electric field. Decreasing the extensional stress by a radial electric field may found applications in spraying, spinning, liquid bridges and others. In addition, the effect of a radial electric field on the formation of satellite droplets is investigated on the parametric plane of the dimensionless wave number and the electrical Bond number. It is found that satellite droplets may be formed for a larger axial wave number at a larger radial electric field. The present study helps us gain insight into the nonlinear instability characteristics of electrified viscoelastic liquid jets.

Keywords: non linear instability, one-dimensional models, radial electric fields, viscoelastic liquid jets

Procedia PDF Downloads 384
27567 Stress-Strain Behavior of Banana Fiber Reinforced and Biochar Amended Compressed Stabilized Earth Blocks

Authors: Farnia Nayar Parshi, Mohammad Shariful Islam

Abstract:

Though earth construction is an ancient technology, researchers are working on increasing its strength by adding different types of stabilizers. Ordinary Portland cement for sandy soil and lime for clayey soil is very popular practice as well as recommended by various authorities for making stabilized blocks for satisfactory performance. The addition of these additives improves compressive strength but fails to improve ductility. The addition of both synthetic and natural fibers increases both compressive strength and ductility. Studies are conducted to make earth blocks more cost-effective, energy-efficient and sustainable. In this experiment, an agricultural waste banana fiber and biochar is used to study the compressive stress-strain behavior of earth blocks made with four types of soil low plastic clay, sandy low plastic clay, very fine sand and medium to fine sand. Biochar is a charcoal-like carbon usually produced from organic or agricultural waste in high temperatures through a controlled condition called pyrolysis. In this experimental study, biochar was collected from BBI (Bangladesh Biochar Initiative) produced from wood flakes around 400 deg. Celsius. Locally available PPC (Portland Pozzolana Cement) is used. 5 cm × 5 cm × 5 cm earth blocks were made with eight different combinations such as bare soil, soil with 6% cement, soil with 6% cement and 5% biochar, soil with 6% cement, 5% biochar and 1% fiber, soil with 1% fiber, soil with 5% biochar and 1% fiber and soil with 6% cement and 1% fiber. All samples were prepared with 10-12% water content. Uniaxial compressive strength tests were conducted on 21 days old earth blocks. Stress-strain diagram shows that the addition of banana fiber improved compressive strength drastically, but the combined effect of fiber and biochar is different based on different soil types. For clayey soil, 6% cement and 1% fiber give maximum compressive strength of 991 kPa, and for very fine sand, a combination of 5% biochar, 6% cement and 1% fiber gives maximum compressive strength of 522 kPa as well as ductility. For medium-to-find sand, 6% cement and 1% fiber give the best result, 1530 kPa, among other combinations. The addition of fiber increases not only ductility but also compressive strength as well. The effect of biochar with fiber varies with the soil type.

Keywords: banana fiber, biochar, cement, compressed stabilized earth blocks, compressive strength

Procedia PDF Downloads 118
27566 Durability Analysis of a Knuckle Arm Using VPG System

Authors: Geun-Yeon Kim, S. P. Praveen Kumar, Kwon-Hee Lee

Abstract:

A steering knuckle arm is the component that connects the steering system and suspension system. The structural performances such as stiffness, strength, and durability are considered in its design process. The former study suggested the lightweight design of a knuckle arm considering the structural performances and using the metamodel-based optimization. The six shape design variables were defined, and the optimum design was calculated by applying the kriging interpolation method. The finite element method was utilized to predict the structural responses. The suggested knuckle was made of the aluminum Al6082, and its weight was reduced about 60% in comparison with the base steel knuckle, satisfying the design requirements. Then, we investigated its manufacturability by performing foraging analysis. The forging was done as hot process, and the product was made through two-step forging. As a final step of its developing process, the durability is investigated by using the flexible dynamic analysis software, LS-DYNA and the pre and post processor, eta/VPG. Generally, a car make does not provide all the information with the part manufacturer. Thus, the part manufacturer has a limit in predicting the durability performance with the unit of full car. The eta/VPG has the libraries of suspension, tire, and road, which are commonly used parts. That makes a full car modeling. First, the full car is modeled by referencing the following information; Overall Length: 3,595mm, Overall Width: 1,595mm, CVW (Curve Vehicle Weight): 910kg, Front Suspension: MacPherson Strut, Rear Suspension: Torsion Beam Axle, Tire: 235/65R17. Second, the road is selected as the cobblestone. The road condition of the cobblestone is almost 10 times more severe than that of usual paved road. Third, the dynamic finite element analysis using the LS-DYNA is performed to predict the durability performance of the suggested knuckle arm. The life of the suggested knuckle arm is calculated as 350,000km, which satisfies the design requirement set up by the part manufacturer. In this study, the overall design process of a knuckle arm is suggested, and it can be seen that the developed knuckle arm satisfies the design requirement of the durability with the unit of full car. The VPG analysis is successfully performed even though it does not an exact prediction since the full car model is very rough one. Thus, this approach can be used effectively when the detail to full car is not given.

Keywords: knuckle arm, structural optimization, Metamodel, forging, durability, VPG (Virtual Proving Ground)

Procedia PDF Downloads 416
27565 Cell-Based and Exosome Treatments for Hair Restoration

Authors: Armin Khaghani Boroujeni, Leila Dehghani, Parham Talebi Boroujeni, Sahar Rostamian, Ali Asilian

Abstract:

Background: Hair loss is a common complaint observed in both genders. Androgenetic alopecia is known pattern for hair loss. To assess new regenerative strategies (PRP, A-SC-BT, conditioned media, exosome-based treatments) compared to conventional therapies for hair loss or hair regeneration, an updated review was undertaken. To address this issue, we carried out this systematic review to comprehensively evaluate the efficacy of cell-based therapies on hair loss. Methods: The available online databases, including ISI Web of Science, Scopus, and PubMed, were searched systematically up to February 2022. The quality assessment of included studies was done using the Cochrane Collaboration's tool. Results: As a result, a total of 90 studies involving 2345 participants were included in the present study. The enrolled studies were conducted between 2010 and 2022. The subjects’ mean age ranged from 19 to 55.11 years old. Approaches using platelet rich plasma (PRP) provide a beneficial impact on hair regrowth. However, other cell-based therapies, including stem cell transplant, stem cell-derived conditioned medium, and stem cell-derived exosomes, revealed conflicting evidence. Conclusion: However, cell-based therapies for hair loss are still in their infancy, and more robust clinical studies are needed to better evaluate their mechanisms of action, efficacy, safety, benefits, and limitations. In this review, we provide the resources to the latest clinical studies and a more detailed description of the latest clinical studies concerning cell-based therapies in hair loss.

Keywords: cell-based therapy, exosome, hair restoration, systematic review

Procedia PDF Downloads 72
27564 Review on Wear Behavior of Magnesium Matrix Composites

Authors: Amandeep Singh, Niraj Bala

Abstract:

In the last decades, light-weight materials such as magnesium matrix composites have become hot topic for material research due to their excellent mechanical and physical properties. However, relatively very less work has been done related to the wear behavior of these composites. Magnesium matrix composites have wide applications in automobile and aerospace sector. In this review, attempt has been done to collect the literature related to wear behavior of magnesium matrix composites fabricated through various processing techniques such as stir casting, powder metallurgy, friction stir processing etc. Effect of different reinforcements, reinforcement content, reinforcement size, wear load, sliding speed and time have been studied by different researchers in detail. Wear mechanism under different experimental condition has been reviewed in detail. The wear resistance of magnesium and its alloys can be enhanced with the addition of different reinforcements. Wear resistance can further be enhanced by increasing the percentage of added reinforcements. Increase in applied load during wear test leads to increase in wear rate of magnesium composites.

Keywords: hardness, magnesium matrix composites, reinforcement, wear

Procedia PDF Downloads 325
27563 A Digital Clone of an Irrigation Network Based on Hardware/Software Simulation

Authors: Pierre-Andre Mudry, Jean Decaix, Jeremy Schmid, Cesar Papilloud, Cecile Munch-Alligne

Abstract:

In most of the Swiss Alpine regions, the availability of water resources is usually adequate even in times of drought, as evidenced by the 2003 and 2018 summers. Indeed, important natural stocks are for the moment available in the form of snow and ice, but the situation is likely to change in the future due to global and regional climate change. In addition, alpine mountain regions are areas where climate change will be felt very rapidly and with high intensity. For instance, the ice regime of these regions has already been affected in recent years with a modification of the monthly availability and extreme events of precipitations. The current research, focusing on the municipality of Val de Bagnes, located in the canton of Valais, Switzerland, is part of a project led by the Altis company and achieved in collaboration with WSL, BlueArk Entremont, and HES-SO Valais-Wallis. In this region, water occupies a key position notably for winter and summer tourism. Thus, multiple actors want to apprehend the future needs and availabilities of water, on both the 2050 and 2100 horizons, in order to plan the modifications to the water supply and distribution networks. For those changes to be salient and efficient, a good knowledge of the current water distribution networks is of most importance. In the current case, the water drinking network is well documented, but this is not the case for the irrigation one. Since the water consumption for irrigation is ten times higher than for drinking water, data acquisition on the irrigation network is a major point to determine future scenarios. This paper first presents the instrumentation and simulation of the irrigation network using custom-designed IoT devices, which are coupled with a digital clone simulated to reduce the number of measuring locations. The developed IoT ad-hoc devices are energy-autonomous and can measure flows and pressures using industrial sensors such as calorimetric water flow meters. Measurements are periodically transmitted using the LoRaWAN protocol over a dedicated infrastructure deployed in the municipality. The gathered values can then be visualized in real-time on a dashboard, which also provides historical data for analysis. In a second phase, a digital clone of the irrigation network was modeled using EPANET, a software for water distribution systems that performs extended-period simulations of flows and pressures in pressurized networks composed of reservoirs, pipes, junctions, and sinks. As a preliminary work, only a part of the irrigation network was modelled and validated by comparisons with the measurements. The simulations are carried out by imposing the consumption of water at several locations. The validation is performed by comparing the simulated pressures are different nodes with the measured ones. An accuracy of +/- 15% is observed on most of the nodes, which is acceptable for the operator of the network and demonstrates the validity of the approach. Future steps will focus on the deployment of the measurement devices on the whole network and the complete modelling of the network. Then, scenarios of future consumption will be investigated. Acknowledgment— The authors would like to thank the Swiss Federal Office for Environment (FOEN), the Swiss Federal Office for Agriculture (OFAG) for their financial supports, and ALTIS for the technical support, this project being part of the Swiss Pilot program 'Adaptation aux changements climatiques'.

Keywords: hydraulic digital clone, IoT water monitoring, LoRaWAN water measurements, EPANET, irrigation network

Procedia PDF Downloads 141
27562 Effect of Cryogenic Pre-stretching on the Room Temperature Tensile Behavior of AZ61 Magnesium Alloy and Dominant Grain Growth Mechanisms During Subsequent Annealing

Authors: Umer Masood Chaudry, Hafiz Muhammad Rehan Tariq, Chung-soo Kim, Tea-sung Jun

Abstract:

This study explored the influence of pre-stretching temperature on the microstructural characteristics and deformation behavior of AZ61 magnesium alloy and its implications on grain growth during subsequent annealing. AZ61 alloy was stretched to 5% plastic strain along rolling (RD) and transverse direction (TD) at room (RT) and cryogenic temperature (-150 oC, CT) followed by annealing at 320 oC for 1 h to investigate the twinning and dislocation evolution and its consequent effect on the flow stress, plastic strain and strain hardening rate. Compared to RT-stretched samples, significant improvement in yield stress, strain hardening rate and moderate reduction in elongation to failure were witnessed for CT-stretched samples along RD and TD. The subsequent EBSD analysis revealed the increased fraction of fine {10-12} twins and nucleation of multiple {10-12} twin variants caused by higher local stress concentration at the grain boundaries in CT-stretched samples as manifested by the kernel average misorientation. This higher twin fraction and twin-twin interaction imposed the strengthening by restricting the mean free path of dislocations, leading to higher flow stress and strain hardening rate. During annealing of the RT/CT-stretched samples, the residual strain energy and twin boundaries were decreased due to static recovery, leading to a coarse-grained twin-free microstructure. Strain induced boundary migration (SBIM) was found to be the predominant mechanism governing the grain growth during annealing via movement of high angle grain boundaries.

Keywords: magnesium, twinning, twinning variant selection, EBSD, cryogenic deformation

Procedia PDF Downloads 62
27561 Inter-Filling of CaO and MgO Mixed Layer in Surface Behavior of Al-Mg Alloys Containing Al2Ca

Authors: Seong-Ho Ha, Young-Ok Yoon, Shae K. Kim

Abstract:

Oxide layer of normal Al-Mg alloy can be characterized by upper MgO and lower MgAl2O4 spinel. The formation of the MgO outmost layer occurs by the surface segregation of Mg in the initial oxidation. After then, the oxidation is proceeded with the formation of MgA12O4 spinel beneath the MgO. Growth of the oxide layer is accelerated by constant formation of MgA12O4 spinel. On the other hand, the oxidation resistance of Al-Mg alloys can be significantly improved simply by Mg+Al2Ca master alloy use as the Mg alloying element and such an improvement is attributed to the CaO/MgO mixed layer. Al-Mg alloy containing Al2Ca shows CaO as the upper layer and MgO as the lower one without MgA12O4 spinel. Such a dense oxide film acts as a protective layer. However, the CaO/MgO scale has the outmost MgO, partly, after a long time exposure to a harsh oxidation condition. The aim of this study is to investigate the inter-filling behaviour of CaO and MgO mixed layer in oxidation resistance mechanism of Al-Mg alloys containing Al2Ca. The process of outmost MgO layer formation will be clarified.

Keywords: Al-Mg alloy, Al2Ca, oxidation, MgO

Procedia PDF Downloads 279
27560 Head-Mounted Displays for HCI Validations While Driving

Authors: D. Reich, R. Stark

Abstract:

To provide reliable and valid findings when evaluating innovative in-car devices in the automotive context highly realistic driving environments are recommended. Nowadays, in-car devices are mostly evaluated due to driving simulator studies followed by real car driving experiments. Driving simulators are characterized by high internal validity, but weak regarding ecological validity. Real car driving experiments are ecologically valid, but difficult to standardize, more time-robbing and costly. One economizing suggestion is to implement more immersive driving environments when applying driving simulator studies. This paper presents research comparing non-immersive standard PC conditions with mobile and highly immersive Oculus Rift conditions while performing the Lane Change Task (LCT). Subjective data with twenty participants show advantages regarding presence and immersion experience when performing the LCT with the Oculus Rift, but affect adversely cognitive workload and simulator sickness, compared to non-immersive PC condition.

Keywords: immersion, oculus rift, presence, situation awareness

Procedia PDF Downloads 183
27559 Cavitating Jet Design for Enhanced Drilling Performance

Authors: Abdullah Ababtain, Mouhammad El Hassan, Hassan Assoum, Anas Sakout

Abstract:

In this paper, a brief literature review on cavitation jets is presented in order to introduce the cavitation mechanism, strategies to assess when cavitation occurs, and the factors that influence cavitation in cavitating jets. The objectivity of the cavitation number often used to predict cavitation is also discussed. The results show that cavitation cannot be foreseen just using the cavitation number. Therefore, more efforts are needed to innovate and develop a self-resonating jet geometry that would be maintains the flow and the pressure in the cavitation condition just earlier than the flow acts on the target that would be used in such operating conditions. This study focused on a particular aspect related to improving drilling efficiency and the rate of penetration (ROP). In addition, a discussion on the methods used to measure cavitation and the factors that affect cavitation occurrence will be discussed. Two different types of cavitation nozzles were designed and tested. It has been shown that the self-resonating cavitation nozzle presents greater performance than standard non-resonating nozzle. It is thus concluded that a self-resonating cavitation jet present a high potential for improving drilling performance.

Keywords: cavitating jet, erosion, cavitation number, rate of penetration (ROP)

Procedia PDF Downloads 190
27558 Study of the Business Ethics Based on Daimler Bribery Case in China

Authors: Yuandi Hu, Gang Yang

Abstract:

In order to study the business ethics of the international enterprise, the thirteenth-largest car manufacturer and second-largest truck manufacturer in the world, Daimler AG was taken as research object. At first, Daimler AG is briefly introduced and the bribery affairs of Daimler AG in China are simply reviewed. Subsequently, the causes of the bribery are discussed in depth and the manifestations of the value conflict are analyzed in detail. Based on the analyzed results, the reasons why they bribe are investigated. Furthermore, some proposals for improving business ethics of international enterprises are put forward based on the study of Daimler bribery case.

Keywords: business ethics, Daimler AG, bribe, cultural conflict

Procedia PDF Downloads 376
27557 A Review of Methods for Handling Missing Data in the Formof Dropouts in Longitudinal Clinical Trials

Authors: A. Satty, H. Mwambi

Abstract:

Much clinical trials data-based research are characterized by the unavoidable problem of dropout as a result of missing or erroneous values. This paper aims to review some of the various techniques to address the dropout problems in longitudinal clinical trials. The fundamental concepts of the patterns and mechanisms of dropout are discussed. This study presents five general techniques for handling dropout: (1) Deletion methods; (2) Imputation-based methods; (3) Data augmentation methods; (4) Likelihood-based methods; and (5) MNAR-based methods. Under each technique, several methods that are commonly used to deal with dropout are presented, including a review of the existing literature in which we examine the effectiveness of these methods in the analysis of incomplete data. Two application examples are presented to study the potential strengths or weaknesses of some of the methods under certain dropout mechanisms as well as to assess the sensitivity of the modelling assumptions.

Keywords: incomplete longitudinal clinical trials, missing at random (MAR), imputation, weighting methods, sensitivity analysis

Procedia PDF Downloads 410
27556 Comparison Serum Vitamin D by Geographic between the Highland and Lowland Schizophrenic Patient in the Sumatera Utara

Authors: Novita Linda Akbar, Elmeida Effendy, Mustafa M. Amin

Abstract:

Background: The most common of psychotic disorders is schizophrenia. Vitamin D is made from sunlight, and in the skin from UVB radiation from sunlight. If people with Vitamin D deficiency is common severe mental illness such as schizophrenia.Schizophrenia is a chronic mental illness characterised by positive symptoms and negatives symptoms, such as hallucinations and delusions, flat affect and lack of motivation we can found. In patients with Schizophrenia maybe have several environmental risk factors for schizophrenia, such as season of birth, latitude, and climate has been linked to vitamin D deficiency. There is also relationship between the risk of schizophrenia and latitude, and with an increased incidence rate of schizophrenia seen at a higher latitude. Methods: This study was an analytical study, conducted in BLUD RS Jiwa Propinsi Sumatera Utara and RSUD Deli Serdang, the period in May 2016 and ended in June 2016 with a sample of the study 60 sample (20 patients live in the Highland and Lowland, 20 healthy controls). Inclusion criteria were schizophrenic patients both men and women, aged between 18 to 60 years old, acute phase no agitation or abstinence antipsychotic drugs for two weeks, live in the Highland and Lowland, and willing to participate this study. Exclusion criteria were history of other psychotic disorders, comorbidities with other common medical condition, a history of substance abuse. Sample inspection for serum vitamin D using ELFA method. Statistical analysis using numeric comparative T-independent test. Results: The results showed that average levels of vitamin D for a group of subjects living in areas of high land was 227.6 ng / mL with a standard deviation of 86.78 ng / mL, the lowest levels of vitamin D is 138 ng / mL and the highest 482 ng / mL. In the group of subjects who settled in the low lands seem mean vitamin D levels higher than the mountainous area with an average 237.8 ng / mL with a standard deviation of 100.16 ng / mL. Vitamin D levels are lowest and the highest 138-585 ng / mL. Conclusion and Suggestion: The results of the analysis using the Mann Whitney test showed that there were no significant differences between the mean for the levels of vitamin D based on residence subject with a value of p = 0.652.

Keywords: latitude, schizophrenia, Vitamin D, Sumatera Utara

Procedia PDF Downloads 252
27555 Surface Sterilization of Aquatic Plant, Cryptopcoryne affinis by Using Clorox and Mercury Chloride

Authors: Sridevi Devadas

Abstract:

This study was aimed to examine the combination efficiency of Clorox (5.25% Sodium Hypochlorite) and mercury chloride (HgCl2) as reagent for surface sterilization process of aquatic plant, Cryptocoryne affinis (C. affinis). The treatment applied 10% of the Clorox and 0.1 ppm of mercury chloride. The maximum exposure time for Clorox and mercury chloride was 10 min and 60 sec respectively. After exposed to the treatments protocols (T1-T15) the explants were transferred to culture room under control temperature at 25°C ± 2°C and subjected to 16 hours fluorescence light (2000 lumens) for 30 days. The both sterilizing agents were not applied on control specimens. Upon analysis, the result indicates all of the treatments protocols produced sterile explants at range of minimum 1.5 ± 0.7 (30%) to maximum 5.0 ± 0.0 (100%). Meanwhile, maximum 1.0 ± 0.7 numbers of leaves and 1.4 ± 0.6 numbers of roots have been produced. The optimized exposure time was 0 to 15 min for Clorox and 30 sec for HgCl2 whereby 90% to 100% sterilization was archived at this condition.

Keywords: Cryptocoryne affinis, surface sterilization, tissue culture, clorox, mercury chloride

Procedia PDF Downloads 594
27554 Spatially Distributed Rainfall Prediction Based on Automated Kriging for Landslide Early Warning Systems

Authors: Ekrem Canli, Thomas Glade

Abstract:

The precise prediction of rainfall in space and time is a key element to most landslide early warning systems. Unfortunately, the spatial variability of rainfall in many early warning applications is often disregarded. A common simplification is to use uniformly distributed rainfall to characterize aerial rainfall intensity. With spatially differentiated rainfall information, real-time comparison with rainfall thresholds or the implementation in process-based approaches might form the basis for improved landslide warnings. This study suggests an automated workflow from the hourly, web-based collection of rain gauge data to the generation of spatially differentiated rainfall predictions based on kriging. Because the application of kriging is usually a labor intensive task, a simplified and consequently automated variogram modeling procedure was applied to up-to-date rainfall data. The entire workflow was carried out purely with open source technology. Validation results, albeit promising, pointed out the challenges that are involved in pure distance based, automated geostatistical interpolation techniques for ever-changing environmental phenomena over short temporal and spatial extent.

Keywords: kriging, landslide early warning system, spatial rainfall prediction, variogram modelling, web scraping

Procedia PDF Downloads 277
27553 Comparative Analysis of Control Techniques Based Sliding Mode for Transient Stability Assessment for Synchronous Multicellular Converter

Authors: Rihab Hamdi, Amel Hadri Hamida, Fatiha Khelili, Sakina Zerouali, Ouafae Bennis

Abstract:

This paper features a comparative study performance of sliding mode controller (SMC) for closed-loop voltage control of direct current to direct current (DC-DC) three-cells buck converter connected in parallel, operating in continuous conduction mode (CCM), based on pulse-width modulation (PWM) with SMC based on hysteresis modulation (HM) where an adaptive feedforward technique is adopted. On one hand, for the PWM-based SM, the approach is to incorporate a fixed-frequency PWM scheme which is effectively a variant of SM control. On the other hand, for the HM-based SM, oncoming an adaptive feedforward control that makes the hysteresis band variable in the hysteresis modulator of the SM controller in the aim to restrict the switching frequency variation in the case of any change of the line input voltage or output load variation are introduced. The results obtained under load change, input change and reference change clearly demonstrates a similar dynamic response of both proposed techniques, their effectiveness is fast and smooth tracking of the desired output voltage. The PWM-based SM technique has greatly improved the dynamic behavior with a bit advantageous compared to the HM-based SM technique, as well as provide stability in any operating conditions. Simulation studies in MATLAB/Simulink environment have been performed to verify the concept.

Keywords: DC-DC converter, hysteresis modulation, parallel multi-cells converter, pulse-width modulation, robustness, sliding mode control

Procedia PDF Downloads 165
27552 Slope Stability Assessment of Himalayan Slope under Static and Seismic Conditions

Authors: P. Singh, S. Mittal

Abstract:

Stability of slope in Chamoli Distt. near River Alaknanda in Uttarakhand is essential to safeguard the infrastructure of the slope where a dam is proposed to be built near this slope. Every year the areas near the slope have been facing severe landslides (small or big) due to intensive precipitation inflicting substantial damages as per Geological Survey of India records. The stability analysis of the slope under static and pseudo static conditions are presented in this study by using FEM software PHASE2. As per the earthquake zonation map of India, the slope is found in zone V, and hence, pseudo static stability of slope has been performed considering pseudo static analysis. For analysing the slope Mohr-Coulomb shear strength criteria is adopted for soil material and self-drilling anchors are modelled as bolts with parameters like modulus of elasticity, diameter of anchors and peak pull-out resistance of the anchors with the soil present there. The slope is found to be unstable under pseudo static conditions with computed factor of safety= 0.93. Stability is provided to the slope by using Self Drilling Anchors (SDA) which gives factor of safety= 1.15 under pseudo static condition.

Keywords: FEM, pseudo static, self-drilling anchors, slope stability

Procedia PDF Downloads 239