Search results for: deep composite kernel
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 4219

Search results for: deep composite kernel

3079 A Deep Learning Approach to Online Social Network Account Compromisation

Authors: Edward K. Boahen, Brunel E. Bouya-Moko, Changda Wang

Abstract:

The major threat to online social network (OSN) users is account compromisation. Spammers now spread malicious messages by exploiting the trust relationship established between account owners and their friends. The challenge in detecting a compromised account by service providers is validating the trusted relationship established between the account owners, their friends, and the spammers. Another challenge is the increase in required human interaction with the feature selection. Research available on supervised learning (machine learning) has limitations with the feature selection and accounts that cannot be profiled, like application programming interface (API). Therefore, this paper discusses the various behaviours of the OSN users and the current approaches in detecting a compromised OSN account, emphasizing its limitations and challenges. We propose a deep learning approach that addresses and resolve the constraints faced by the previous schemes. We detailed our proposed optimized nonsymmetric deep auto-encoder (OPT_NDAE) for unsupervised feature learning, which reduces the required human interaction levels in the selection and extraction of features. We evaluated our proposed classifier using the NSL-KDD and KDDCUP'99 datasets in a graphical user interface enabled Weka application. The results obtained indicate that our proposed approach outperformed most of the traditional schemes in OSN compromised account detection with an accuracy rate of 99.86%.

Keywords: computer security, network security, online social network, account compromisation

Procedia PDF Downloads 101
3078 The Functional Rehabilitation of Peri-Implant Tissue Defects: A Case Report

Authors: Özgür Öztürk, Cumhur Sipahi, Hande Yeşil

Abstract:

Implant retained restorations commonly consist of a metal-framework veneered with ceramic or composite facings. The increasing and expanding use of indirect resin composites in dentistry is a result of innovations in materials and processing techniques. Of special interest to the implant restorative field is the possibility that composites present significantly lower peak vertical and transverse forces transmitted at the peri-implant level compared to metal-ceramic supra structures in implant-supported restorations. A 43-year-old male patient referred to the department of prosthodontics for an implant retained fixed prosthesis. The clinical and radiographic examination of the patient demonstrated the presence of an implant in the right mandibular first molar tooth region. A considerable amount of marginal bone loss around the implant was detected in radiographic examinations combined with a remarkable peri-implant soft tissue deficiency. To minimize the chewing loads transmitted to the implant-bone interface it was decided to fabricate an indirect composite resin veneered single metal crown over a screw-retained abutment. At the end of the treatment, the functional and aesthetic deficiencies were fully compensated. After a 6 months clinical and radiographic follow-up period the not any additional pathologic invasion was detected in the implant-bone interface and implant retained restoration did not reveal any vehement complication.

Keywords: dental implant, fixed partial dentures, indirect composite resin, peri-implant defects

Procedia PDF Downloads 251
3077 Feature Engineering Based Detection of Buffer Overflow Vulnerability in Source Code Using Deep Neural Networks

Authors: Mst Shapna Akter, Hossain Shahriar

Abstract:

One of the most important challenges in the field of software code audit is the presence of vulnerabilities in software source code. Every year, more and more software flaws are found, either internally in proprietary code or revealed publicly. These flaws are highly likely exploited and lead to system compromise, data leakage, or denial of service. C and C++ open-source code are now available in order to create a largescale, machine-learning system for function-level vulnerability identification. We assembled a sizable dataset of millions of opensource functions that point to potential exploits. We developed an efficient and scalable vulnerability detection method based on deep neural network models that learn features extracted from the source codes. The source code is first converted into a minimal intermediate representation to remove the pointless components and shorten the dependency. Moreover, we keep the semantic and syntactic information using state-of-the-art word embedding algorithms such as glove and fastText. The embedded vectors are subsequently fed into deep learning networks such as LSTM, BilSTM, LSTM-Autoencoder, word2vec, BERT, and GPT-2 to classify the possible vulnerabilities. Furthermore, we proposed a neural network model which can overcome issues associated with traditional neural networks. Evaluation metrics such as f1 score, precision, recall, accuracy, and total execution time have been used to measure the performance. We made a comparative analysis between results derived from features containing a minimal text representation and semantic and syntactic information. We found that all of the deep learning models provide comparatively higher accuracy when we use semantic and syntactic information as the features but require higher execution time as the word embedding the algorithm puts on a bit of complexity to the overall system.

Keywords: cyber security, vulnerability detection, neural networks, feature extraction

Procedia PDF Downloads 72
3076 Production and Quality Assessment of Antioxidant-Rich Biscuit Produced from Pearl Millet and Orange Peel Flour Blends

Authors: Oloniyo Rebecca Olajumoke

Abstract:

The unstable free radicals molecules oxidize cells throughout the body to cause oxidative stress, which has been implicated in the pathogenesis of many chronic diseases. Thus, the consumption of antioxidant-rich snacks could help to reduce the production of these free radicals in the body. This study aimed at producing antioxidant–rich biscuits from an underutilized pearl millet and agricultural waste from orange peel flour (PMF and OPF, respectively) blends. Biscuits were produced from PMF, and OPF blends using various proportions (95:05; 90:10; 85:15; 80:20 with 100% PMF as control. The functional properties of the flours, as well as the antioxidant properties, physical evaluation, and consumer acceptability of the biscuits, were evaluated. The functional properties of the composite flour showed an increase in oil absorption capacity (7.73-8.80 g/ml), water absorption capacity (6.82-7.21 g/ml), foaming (3.91-5.88 g/ml), and emulsification (52.85-58.82 g/ml) properties. The increased addition of OPF significantly (p<0.05) increased the antioxidant properties of the biscuits produced from the composite flour. For instance, the ferric reducing properties (0.10-0.4 mgAAE/g), total flavonoid (1.20-8.12 mg QE/g), and ABTS radical scavenging (1.17-2.19 mmol/TEAC/g) of the composite flours were increasingly comparable to those of 100% PMF. The physical parameters of the biscuit were significantly different (p<0.05) from one another. The addition of OPF into PMF reduced the weight, diameter, and spread ratio of biscuits produced while contrarily increasing the height of the biscuit. The incorporation of OPF at 5% (95:05) substitution yielded a consumedly acceptable biscuit product. The significant increase in antioxidant properties with an increase in OPF during the production of biscuits would therefore increase the nutritional value and potential health benefits.

Keywords: orange peel, biscuit, antioxidant, pearl millet

Procedia PDF Downloads 80
3075 Understanding and Improving Neural Network Weight Initialization

Authors: Diego Aguirre, Olac Fuentes

Abstract:

In this paper, we present a taxonomy of weight initialization schemes used in deep learning. We survey the most representative techniques in each class and compare them in terms of overhead cost, convergence rate, and applicability. We also introduce a new weight initialization scheme. In this technique, we perform an initial feedforward pass through the network using an initialization mini-batch. Using statistics obtained from this pass, we initialize the weights of the network, so the following properties are met: 1) weight matrices are orthogonal; 2) ReLU layers produce a predetermined number of non-zero activations; 3) the output produced by each internal layer has a unit variance; 4) weights in the last layer are chosen to minimize the error in the initial mini-batch. We evaluate our method on three popular architectures, and a faster converge rates are achieved on the MNIST, CIFAR-10/100, and ImageNet datasets when compared to state-of-the-art initialization techniques.

Keywords: deep learning, image classification, supervised learning, weight initialization

Procedia PDF Downloads 119
3074 Mechanical Properties of Sugar Palm Fibre Reinforced Thermoplastic Polyurethane Composites

Authors: Dandi Bachtiar, Mohammed Ausama Abbas, Januar Parlaungan Siregar, Mohd Ruzaimi Bin Mat Rejab

Abstract:

Short sugar palm fibre and thermoplastic polyurethane were combined to produce new composites by using the extrude method. Two techniques used to prepare a new composite material, firstly, extrusion of the base material with short fibre, secondly hot pressing them. The size of sugar palm fibre was fixed at 250µm. Different weight percent (10 wt%, 20 wt% and 30 wt%) were used in order to optimise preparation process. The optimization of process depended on the characterization mechanical properties such as impact, tensile, and flexural of the new (TPU/SPF) composite material. The results proved that best tensile and impact properties of weight additive fibre applied 10 wt%. There was an increasing trend recorded of flexural properties during increased the fibre loading. Meanwhile, the maximum tensile strength was 14.0 MPa at 10 wt% of the fibre. Moreover, there was no significant effect for additions more than 30 wt% of the fibre.

Keywords: composites, natural fibre, polyurethane, sugar palm

Procedia PDF Downloads 370
3073 Properties of Composite Materials Made from Surface Treated Particles from Annual Plants

Authors: Štěpán Hýsek, Petra Gajdačová, Milan Podlena

Abstract:

Annual plants are becoming more and more popular source of lignin and cellulose. In those days a lot of research is carried out in order to evaluate the possibility of utilization of fibres and particles from these plants in composite materials production. These lingo-cellulosic materials seem to be a great alternative to wood, however, due to waxy and silica layers on the surface of these stalks, one additional technological step is needed–erosion of the layers for the purpose of achieving better adhesion between particle and adhesive. In this research, we used several kinds of particle pre-treatment, in order to modify surface properties of these particles. Further, an adhesive was applied to the particles using laboratory blender and board were produced using laboratory press. Both physical and mechanical properties of boards were observed. It was found out that the surface modification of particles had statistically significant effect on properties of produced boards.

Keywords: annual plant, composites, mechanical properties, particleboard

Procedia PDF Downloads 185
3072 Predicting and Optimizing the Mechanical Behavior of a Flax Reinforced Composite

Authors: Georgios Koronis, Arlindo Silva

Abstract:

This study seeks to understand the mechanical behavior of a natural fiber reinforced composite (epoxy/flax) in more depth, utilizing both experimental and numerical methods. It is attempted to identify relationships between the design parameters and the product performance, understand the effect of noise factors and reduce process variations. Optimization of the mechanical performance of manufactured goods has recently been implemented by numerous studies for green composites. However, these studies are limited and have explored in principal mass production processes. It is expected here to discover knowledge about composite’s manufacturing that can be used to design artifacts that are of low batch and tailored to niche markets. The goal is to reach greater consistency in the performance and further understand which factors play significant roles in obtaining the best mechanical performance. A prediction of response function (in various operating conditions) of the process is modeled by the DoE. Normally, a full factorial designed experiment is required and consists of all possible combinations of levels for all factors. An analytical assessment is possible though with just a fraction of the full factorial experiment. The outline of the research approach will comprise of evaluating the influence that these variables have and how they affect the composite mechanical behavior. The coupons will be fabricated by the vacuum infusion process defined by three process parameters: flow rate, injection point position and fiber treatment. Each process parameter is studied at 2-levels along with their interactions. Moreover, the tensile and flexural properties will be obtained through mechanical testing to discover the key process parameters. In this setting, an experimental phase will be followed in which a number of fabricated coupons will be tested to allow for a validation of the design of the experiment’s setup. Finally, the results are validated by performing the optimum set of in a final set of experiments as indicated by the DoE. It is expected that after a good agreement between the predicted and the verification experimental values, the optimal processing parameter of the biocomposite lamina will be effectively determined.

Keywords: design of experiments, flax fabrics, mechanical performance, natural fiber reinforced composites

Procedia PDF Downloads 192
3071 Nanofluid based on Zinc Oxide/Ferric Oxide Nanocomposite as Additive for Geothermal Drilling Fluids

Authors: Anwaar O. Ali, Mahmoud Fathy Mubarak, Mahmoud Ibrahim Abdou, Hector Cano Esteban, Amany A. Aboulrous

Abstract:

Corrosion resistance and lubrication are crucial characteristics required for geothermal drilling fluids. In this study, a ZnO/Fe₂O₃ nanocomposite was fabricated and incorporated into the structure of Cetyltrimethylammonium bromide (CTAB). Several physicochemical techniques were utilized to analyze and describe the synthesized nanomaterials. The surface morphology of the composite was assessed through scanning electron microscopy (SEM) and energy-dispersive X-ray spectroscopy (EDAX). The corrosion inhibition capabilities of these materials were explored across various corrosive environments. The weight loss and electrochemical methods were utilized to determine the corrosion inhibition activity of the prepared nanomaterials. The results demonstrate a high level of protection achieved by the composite. Additionally, the lubricant coefficient and extreme pressure properties were evaluated.

Keywords: nanofluid, corrosion, geothermal drilling fluids, ZnO/Fe2O3

Procedia PDF Downloads 55
3070 Experimental Study on Stabilisation of a Soft Soil by Alkaline Activation of Industrial By-Products

Authors: Mohammadjavad Yaghoubi, Arul Arulrajah, Mahdi M. Disfani, Suksun Horpibulsuk, Myint W. Bo, Stephen P. Darmawan

Abstract:

Utilising waste materials, such as fly ash (FA) and slag (S) stockpiled in landfills, has drawn the attention of researchers and engineers in the recent years. There is a great potential for usage of these wastes in ground improvement projects, especially where deep deposits of soft compressible soils exist. This paper investigates the changes in the strength development of a high water content soft soil stabilised with alkaline activated FA and S, termed as geopolymer binder, to use in deep soil mixing technology. The strength improvement and the changes in the microstructure of the mixtures have been studied. The results show that using FA and S-based geopolymers can increases the strength significantly. Furthermore, utilising FA and S in ground improvement projects, where large amounts of binders are required, can be a solution to the disposal of these wastes.

Keywords: alkaline activation, fly ash, geopolymer, slag, strength development

Procedia PDF Downloads 251
3069 Application of Geosynthetics for the Recovery of Located Road on Geological Failure

Authors: Rideci Farias, Haroldo Paranhos

Abstract:

The present work deals with the use of drainage geo-composite as a deep drainage and geogrid element to reinforce the base of the body of the landfill destined to the road pavement on geological faults in the stretch of the TO-342 Highway, between the cities of Miracema and Miranorte, in the State of Tocantins / TO, Brazil, which for many years was the main link between TO-010 and BR-153, after the city of Palmas, also in the state of Tocantins / TO, Brazil. For this application, geotechnical and geological studies were carried out by means of SPT percussion drilling, drilling and rotary drilling, to understand the problem, identifying the type of faults, filling material and the definition of the water table. According to the geological and geotechnical studies carried out, the area where the route was defined, passes through a zone of longitudinal fault to the runway, with strong breaking / fracturing, with presence of voids, intense alteration and with advanced argilization of the rock and with the filling up parts of the faults by organic and compressible soils leachate from other horizons. This geology presents as a geotechnical aggravating agent a medium of high hydraulic load and very low resistance to penetration. For more than 20 years, the region presented constant excessive deformations in the upper layers of the pavement, which after routine services of regularization, reconformation, re-compaction of the layers and application of the asphalt coating. The faults were quickly propagated to the surface of the asphalt pavement, generating a longitudinal shear, forming steps (unevenness), close to 40 cm, causing numerous accidents and discomfort to the drivers, since the geometric positioning was in a horizontal curve. Several projects were presented to the region's highway department to solve the problem. Due to the need for partial closure of the runway, the short time for execution, the use of geosynthetics was proposed and the most adequate solution for the problem was taken into account the movement of existing geological faults and the position of the water level in relation to several Layers of pavement and failure. In order to avoid any flow of water in the body of the landfill and in the filling material of the faults, a drainage curtain solution was used, carried out at 4.0 meters depth, with drainage geo-composite and as reinforcement element and inhibitor of the possible A geogrid of 200 kN / m of resistance was inserted at the base of the reconstituted landfill. Recent evaluations, after 13 years of application of the solution, show the efficiency of the technique used, supported by the geotechnical studies carried out in the area.

Keywords: geosynthetics, geocomposite, geogrid, road, recovery, geological failure

Procedia PDF Downloads 158
3068 Non-Differentiable Mond-Weir Type Symmetric Duality under Generalized Invexity

Authors: Jai Prakash Verma, Khushboo Verma

Abstract:

In the present paper, a pair of Mond-Weir type non-differentiable multiobjective second-order programming problems, involving two kernel functions, where each of the objective functions contains support function, is formulated. We prove weak, strong and converse duality theorem for the second-order symmetric dual programs under η-pseudoinvexity conditions.

Keywords: non-differentiable multiobjective programming, second-order symmetric duality, efficiency, support function, eta-pseudoinvexity

Procedia PDF Downloads 239
3067 Development of a Table-Top Composite Wire Fabrication System for Additive Manufacturing

Authors: Krishna Nand, Mohammad Taufik

Abstract:

Fused Filament Fabrication (FFF) is one of the most popular additive manufacturing (AM) technology. In FFF technology, a wire form material (filament) is fed inside a heated chamber, where it gets converted into semi-solid form and extruded out of a nozzle to be deposited on the build platform to fabricate the part. FFF technology is expanding and covering the market at a very rapid rate, so the need of raw materials for 3D printing is also increasing. The cost of 3D printing is directly affected by filament cost. To make 3D printing more economic, a compact and portable filament/wire extrusion system is needed. Wire extrusion systems to extrude ordinary wire/filament made of a single material are available in the market. However, extrusion system to make a composite wire/filament are not available. Hence, in this study, initial efforts have been made to develop a table-top composite wire extruder. The developed system is consisted of mechanical parts, electronics parts, and a control system. A multiple channel hopper, extrusion screw, melting chamber and nozzle, cooling zone, and spool winder are some mechanical parts. While motors, heater, temperature sensor, cooling fans are some electronics parts, which are used to develop this system. A control board has been used to control the various process parameters like – temperature and speed of motors. For the production of composite wire/filament, two different materials could be fed through two channels of hopper, which will be mixed and carried to the heated zone by extrusion screw. The extrusion screw is rotated by a motor, and the speed of this motor will be controlled by the controller as per the requirement of material extrusion rate. In the heated zone, the material will melt with the help of a heating element and extruded out of the nozzle in the form of wire. The developed system occupies less floor space due to the vertical orientation of its heating chamber. It is capable to extrude ordinary filament as well as composite filament, which are compatible with 3D printers available in the market. Further, the developed system could be employed in the research and development of materials, processing, and characterization for 3D printer. The developed system presented in this study could be a better choice for hobbyists and researchers dealing with the fused filament fabrication process to reduce the 3D printing cost significantly by recycling the waste material into 3D printer feed material. Further, it could also be explored as a better alternative for filament production at the commercial level.

Keywords: additive manufacturing, 3D Printing, filament extrusion, pellet extrusion

Procedia PDF Downloads 156
3066 Investigation of the Progressive Collapse Potential in Steel Buildings with Composite Floor System

Authors: Pouya Kaafi, Gholamreza Ghodrati Amiri

Abstract:

Abnormal loads due to natural events, implementation errors and some other issues can lead to occurrence of progressive collapse in structures. Most of the past researches consist of 2- Dimensional (2D) models of steel frames without consideration of the floor system effects, which reduces the accuracy of the modeling. While employing a 3-Dimensional (3D) model and modeling the concrete slab system for the floors have a crucial role in the progressive collapse evaluation. In this research, a 3D finite element model of a 5-story steel building is modeled by the ABAQUS software once with modeling the slabs, and the next time without considering them. Then, the progressive collapse potential is evaluated. The results of the analyses indicate that the lack of the consideration of the slabs during the analyses, can lead to inaccuracy in assessing the progressive failure potential of the structure.

Keywords: abnormal loads, composite floor system, intermediate steel moment resisting frame system, progressive collapse

Procedia PDF Downloads 449
3065 Visual Inspection of Road Conditions Using Deep Convolutional Neural Networks

Authors: Christos Theoharatos, Dimitris Tsourounis, Spiros Oikonomou, Andreas Makedonas

Abstract:

This paper focuses on the problem of visually inspecting and recognizing the road conditions in front of moving vehicles, targeting automotive scenarios. The goal of road inspection is to identify whether the road is slippery or not, as well as to detect possible anomalies on the road surface like potholes or body bumps/humps. Our work is based on an artificial intelligence methodology for real-time monitoring of road conditions in autonomous driving scenarios, using state-of-the-art deep convolutional neural network (CNN) techniques. Initially, the road and ego lane are segmented within the field of view of the camera that is integrated into the front part of the vehicle. A novel classification CNN is utilized to identify among plain and slippery road textures (e.g., wet, snow, etc.). Simultaneously, a robust detection CNN identifies severe surface anomalies within the ego lane, such as potholes and speed bumps/humps, within a distance of 5 to 25 meters. The overall methodology is illustrated under the scope of an integrated application (or system), which can be integrated into complete Advanced Driver-Assistance Systems (ADAS) systems that provide a full range of functionalities. The outcome of the proposed techniques present state-of-the-art detection and classification results and real-time performance running on AI accelerator devices like Intel’s Myriad 2/X Vision Processing Unit (VPU).

Keywords: deep learning, convolutional neural networks, road condition classification, embedded systems

Procedia PDF Downloads 118
3064 Influence of Nano-ATH on Electrical Performance of LSR for HVDC Insulation

Authors: Ju-Na Hwang, Min-Hae Park, Kee-Joe Lim

Abstract:

Many studies have been conducted on DC transmission. Of power apparatus for DC transmission, High Voltage Direct Current (HVDC) cable systems are being evaluated because of the increase in power demand and transmission distance. Therefore, dc insulation characteristics of Liquid Silicone Rubber (LSR), which has various advantages such as short curing time and the ease of maintenance, were investigated to assess its performance as a HVDC insulation material for cable joints. The electrical performance of LSR added to Nano-Aluminum Trihydrate (ATH) was confirmed by measurements of the breakdown strength and electrical conductivity. In addition, field emission scanning electron microscope (FE-SEM) was used as a means of confirmation of nano-filler dispersion state. The LSR nano-composite was prepared by compounding LSR filled nano-sized ATH filler. The DC insulation properties of LSR added to nano-sized ATH fillers were found to be superior to those of the LSR without filler.

Keywords: liquid silicone rubber, nano-composite, HVDC insulation, cable joints

Procedia PDF Downloads 450
3063 High Temperature Oxidation of Additively Manufactured Silicon Carbide/Carbon Fiber Nanocomposites

Authors: Saja M. Nabat Al-Ajrash, Charles Browning, Rose Eckerle, Li Cao, Robyn L. Bradford, Donald Klosterman

Abstract:

An additive manufacturing process and subsequent pyrolysis cycle were used to fabricate SiC matrix/carbon fiber hybrid composites. The matrix was fabricated using a mixture of preceramic polymer and acrylate monomers, while polyacrylonitrile (PAN) precursor was used to fabricate fibers via electrospinning. The precursor matrix and reinforcing fibers at 0, 2, 5, or 10 wt% were printed using digital light processing, and both were simultaneously pyrolyzed to yield the final ceramic matrix composite structure. After pyrolysis, XRD and SEAD analysis proved the existence of SiC nanocrystals and turbostratic carbon structure in the matrix, while the reinforcement phase was shown to have a turbostratic carbon structure similar to commercial carbon fibers. Thermogravimetric analysis (TGA) in the air up to 1400 °C was used to evaluate the oxidation resistance of this material. TGA results showed some weight loss due to oxidation of SiC and/or carbon up to about 900 °C, followed by weight gain to about 1200 °C due to the formation of a protective SiO2 layer. Although increasing carbon fiber content negatively impacted the total mass loss for the first heating cycle, exposure of the composite to second-run air revealed negligible weight chance. This is explained by SiO2 layer formation, which acts as a protective film that prevents oxygen diffusion. Oxidation of SiC and the formation of a glassy layer has been proven to protect the sample from further oxidation, as well as provide healing of surface cracks and defects, as revealed by SEM analysis.

Keywords: silicon carbide, carbon fibers, additive manufacturing, composite

Procedia PDF Downloads 60
3062 Study of Tribological Behaviour of Al6061/Silicon Carbide/Graphite Hybrid Metal Matrix Composite Using Taguchi's Techniques

Authors: Mohamed Zakaulla, A. R. Anwar Khan

Abstract:

Al6061 alloy base matrix, reinforced with particles of silicon carbide (10 wt %) and Graphite powder (1wt%), known as hybrid composites have been fabricated by liquid metallurgy route (stir casting technique) and optimized at different parameters like applied load, sliding speed and sliding distance by taguchi method. A plan of experiment generated through taguchi technique was used to perform experiments based on L27 orthogonal array. The developed ANOVA and regression equations are used to find the optimum coefficient of friction and wear under the influence of applied load, sliding speed and sliding distance. On the basis of “smaller the best” the dry sliding wear resistance was analysed and finally confirmation tests were carried out to verify the experimental results.

Keywords: analysis of variance, dry sliding wear, hybrid composite, orthogonal array, Taguchi technique

Procedia PDF Downloads 452
3061 Study of Rheological, Physic-Mechanical and Morphological Properties of Nitrile Butadiene Rubber Loaded with Organo-Bentonite

Authors: Doaa S. Mahmoud, Nivin M. Ahmed, Salwa H. El-Sabbagh

Abstract:

The rheometric characteristics and physicomechanical properties of bentonite / acrylonitrile-butadiene rubber (NBR) were investigated. The influences of adding bentonite (Bt) and / or modified bentonite (organo-Bt) to the rubber were observed. Scanning electron microscopy (SEM) showed that the rubber chains may be confined within the interparticle space and the Bt particles presented a physical dispersion in NBR matrix. Bentonite (Bt) was modified with tetra butyl phosphonium bromide (TBP) in order to produce organo-Bt. The modification was carried out at 0.5, 1 and 2 cation exchange capacity (CEC) of bentonite. Results showed that the maximum torque of organo-Bt / NBR composite increases at high bentonite loading. The scorch time (tS2) and cure time (tC90) of the organo-Bt / NBR composites decreased simultaneously relative to those of the neat NBR. The prepared composite exhibited significant improvement in mechanical compared with that of neat NBR.

Keywords: acrylonitrile-butadiene rubber, bentonite, composites, physico-mechanical properties

Procedia PDF Downloads 250
3060 A Case Report of Aberrant Vascular Anatomy of the Deep Inferior Epigastric Artery Flap

Authors: Karissa Graham, Andrew Campbell-Lloyd

Abstract:

The deep inferior epigastric artery perforator flap (DIEP) is used to reconstruct large volumes of tissue. The DIEP flap is based on the deep inferior epigastric artery (DIEA) and vein. Accurate knowledge of the anatomy of these vessels allows for efficient dissection of the flap, minimal damage to surrounding tissue, and a well vascularized flap. A 54 year old lady was assessed for bilateral delayed autologous reconstruction with DIEP free flaps. The right DIEA was consistent with the described anatomy. The left DIEA had a vessel branching shortly after leaving the external iliac artery and before entering the muscle. This independent branch entered the muscle and had a long intramuscular course to the largest perforator. The main DIEA vessel demonstrated a type II branching pattern but had perforators that were too small to have a viable DIEP flap. There were no communicating arterial branches between the independent vessel and DIEA, however, there was one venous communication between them. A muscle sparing transverse rectus abdominis muscle flap was raised using the main periumbilical perforator from the independent vessel. Our case report demonstrated an unreported anatomical variant of the DIEA. A few anatomical variants have been described in the literature, including a unilateral absent DIEA and peritoneal-cutaneous perforators that had no connection to the DIEA. Doing a pre-operative CTA helps to identify these rare anatomical variations, which leads to safer, more efficient, and effective operating.

Keywords: aberrant anatomy, CT angiography, DIEP anatomy, free flap

Procedia PDF Downloads 120
3059 Automatic Classification for the Degree of Disc Narrowing from X-Ray Images Using CNN

Authors: Kwangmin Joo

Abstract:

Automatic detection of lumbar vertebrae and classification method is proposed for evaluating the degree of disc narrowing. Prior to classification, deep learning based segmentation is applied to detect individual lumbar vertebra. M-net is applied to segment five lumbar vertebrae and fine-tuning segmentation is employed to improve the accuracy of segmentation. Using the features extracted from previous step, clustering technique, k-means clustering, is applied to estimate the degree of disc space narrowing under four grade scoring system. As preliminary study, techniques proposed in this research could help building an automatic scoring system to diagnose the severity of disc narrowing from X-ray images.

Keywords: Disc space narrowing, Degenerative disc disorders, Deep learning based segmentation, Clustering technique

Procedia PDF Downloads 111
3058 A Custom Convolutional Neural Network with Hue, Saturation, Value Color for Malaria Classification

Authors: Ghazala Hcini, Imen Jdey, Hela Ltifi

Abstract:

Malaria disease should be considered and handled as a potential restorative catastrophe. One of the most challenging tasks in the field of microscopy image processing is due to differences in test design and vulnerability of cell classifications. In this article, we focused on applying deep learning to classify patients by identifying images of infected and uninfected cells. We performed multiple forms, counting a classification approach using the Hue, Saturation, Value (HSV) color space. HSV is used since of its superior ability to speak to image brightness; at long last, for classification, a convolutional neural network (CNN) architecture is created. Clusters of focus were used to deliver the classification. The highlights got to be forbidden, and a few more clamor sorts are included in the information. The suggested method has a precision of 99.79%, a recall value of 99.55%, and provides 99.96% accuracy.

Keywords: deep learning, convolutional neural network, image classification, color transformation, HSV color, malaria diagnosis, malaria cells images

Procedia PDF Downloads 76
3057 Progressive Damage Analysis of Mechanically Connected Composites

Authors: Şeyma Saliha Fidan, Ozgur Serin, Ata Mugan

Abstract:

While performing verification analyses under static and dynamic loads that composite structures used in aviation are exposed to, it is necessary to obtain the bearing strength limit value for mechanically connected composite structures. For this purpose, various tests are carried out in accordance with aviation standards. There are many companies in the world that perform these tests in accordance with aviation standards, but the test costs are very high. In addition, due to the necessity of producing coupons, the high cost of coupon materials, and the long test times, it is necessary to simulate these tests on the computer. For this purpose, various test coupons were produced by using reinforcement and alignment angles of the composite radomes, which were integrated into the aircraft. Glass fiber reinforced and Quartz prepreg is used in the production of the coupons. The simulations of the tests performed according to the American Society for Testing and Materials (ASTM) D5961 Procedure C standard were performed on the computer. The analysis model was created in three dimensions for the purpose of modeling the bolt-hole contact surface realistically and obtaining the exact bearing strength value. The finite element model was carried out with the Analysis System (ANSYS). Since a physical break cannot be made in the analysis studies carried out in the virtual environment, a hypothetical break is realized by reducing the material properties. The material properties reduction coefficient was determined as 10%, which is stated to give the most realistic approach in the literature. There are various theories in this method, which is called progressive failure analysis. Because the hashin theory does not match our experimental results, the puck progressive damage method was used in all coupon analyses. When the experimental and numerical results are compared, the initial damage and the resulting force drop points, the maximum damage load values ​​, and the bearing strength value are very close. Furthermore, low error rates and similar damage patterns were obtained in both test and simulation models. In addition, the effects of various parameters such as pre-stress, use of bushing, the ratio of the distance between the bolt hole center and the plate edge to the hole diameter (E/D), the ratio of plate width to hole diameter (W/D), hot-wet environment conditions were investigated on the bearing strength of the composite structure.

Keywords: puck, finite element, bolted joint, composite

Procedia PDF Downloads 86
3056 Post Growth Annealing Effect on Deep Level Emission and Raman Spectra of Hydrothermally Grown ZnO Nanorods Assisted by KMnO4

Authors: Ashish Kumar, Tejendra Dixit, I. A. Palani, Vipul Singh

Abstract:

Zinc oxide, with its interesting properties such as large band gap (3.37eV), high exciton binding energy (60 meV) and intense UV absorption has been studied in literature for various applications viz. optoelectronics, biosensors, UV-photodetectors etc. The performance of ZnO devices is highly influenced by morphologies, size, crystallinity of the ZnO active layer and processing conditions. Recently, our group has shown the influence of the in situ addition of KMnO4 in the precursor solution during the hydrothermal growth of ZnO nanorods (NRs) on their near band edge (NBE) emission. In this paper, we have investigated the effect of post-growth annealing on the variations in NBE and deep level (DL) emissions of as grown ZnO nanorods. These observed results have been explained on the basis of X-ray Diffraction (XRD) and Raman spectroscopic analysis, which clearly show that improved crystalinity and quantum confinement in ZnO nanorods.

Keywords: ZnO, nanorods, hydrothermal, KMnO4

Procedia PDF Downloads 384
3055 Mercury Detection in Two Fishes from the Persian Gulf

Authors: Zahra Khoshnood, Mehdi Kazaie, Sajedeh Neisi

Abstract:

In 2013, 24 fish samples were taken from two fishery regions in the north of Persian Gulf near the Iranian coastal lines. The two flatfishes were Yellofin seabream (Acanthopagrus latus) and Longtail tuna (Thannus tonggol). We analyzed total Hg concentration of liver and muscle tissues by Mercury Analyzer (model LECO AMA 254). The average concentration of total Hg in edible Muscle tissue of deep-Flounder was measured in Bandar-Abbas and was found to be 18.92 and it was 10.19 µg.g-1 in Bandar-Lengeh. The corresponding values for Oriental sole were 8.47 and 0.08 µg.g-1. The average concentration of Hg in liver tissue of deep-Flounder, in Bandar-Abbas was 25.49 and that in Bandar-Lengeh was 12.52 µg.g-1.the values for Oriental sole were 11.88 and 3.2 µg.g-1 in Bandar-Abbas and Bandar-Lengeh, respectively.

Keywords: mercury, Acanthopagrus latus, Thannus tonggol, Persian Gulf

Procedia PDF Downloads 589
3054 Synthesis of Graphene Oxide/Chitosan Nanocomposite for Methylene Blue Adsorption

Authors: S. Melvin Samuel, Jayanta Bhattacharya

Abstract:

In the present study, a graphene oxide/chitosan (GO-CS) composite material was prepared and used as an adsorbent for the removal of methylene blue (MB) from aqueous solution. The synthesized GO-CS adsorbent was characterized by Fourier transform infrared spectroscopy (FT-IR), X-ray diffraction (XRD), scanning electron microscopes (SEM), transmission electron microscopy (TEM), Raman spectroscopy and thermogravimetric analysis (TGA). The removal of MB was conducted in batch mode. The effect of parameters influencing the adsorption of MB such as pH of the solution, initial MB concentration, shaking speed, contact time and adsorbent dosage were studied. The results showed that the GO-CS composite material has high adsorption capacity of 196 mg/g of MB solution at pH 9.0. Further, the adsorption of MB on GO-CS followed pseudo second order kinetics and equilibrium adsorption data well fitted by the Langmuir isotherm model. The study suggests that the GO-CS is a favorable adsorbent for the removal of MB from aqueous solution.

Keywords: Methylene blue, Graphene oxide-chitosan, Isotherms, Kinetics.

Procedia PDF Downloads 170
3053 Reinforcement Learning for Classification of Low-Resolution Satellite Images

Authors: Khadija Bouzaachane, El Mahdi El Guarmah

Abstract:

The classification of low-resolution satellite images has been a worthwhile and fertile field that attracts plenty of researchers due to its importance in monitoring geographical areas. It could be used for several purposes such as disaster management, military surveillance, agricultural monitoring. The main objective of this work is to classify efficiently and accurately low-resolution satellite images by using novel technics of deep learning and reinforcement learning. The images include roads, residential areas, industrial areas, rivers, sea lakes, and vegetation. To achieve that goal, we carried out experiments on the sentinel-2 images considering both high accuracy and efficiency classification. Our proposed model achieved a 91% accuracy on the testing dataset besides a good classification for land cover. Focus on the parameter precision; we have obtained 93% for the river, 92% for residential, 97% for residential, 96% for the forest, 87% for annual crop, 84% for herbaceous vegetation, 85% for pasture, 78% highway and 100% for Sea Lake.

Keywords: classification, deep learning, reinforcement learning, satellite imagery

Procedia PDF Downloads 190
3052 Water Quality Assessment of Deep Wells in Western Misamis Oriental, Philippines

Authors: Girlie D. Leopoldo, Myrna S. Ceniza, Ronnie L. Besagas, Antonio Y. Asoy, Noel T. Dael, Romeo M. Del Rosario

Abstract:

The quality of groundwater from main deep well sources of seven (7) municipalities in Western Misamis Oriental, Philippines was examined. The study looks at the well waters’ physicochemical properties (temperture, pH, turbidity, conductivity, TDS, salinity, chlorides, TOC, and total hardness), the heavy metals and other metals (Pb, Cd, Al, As, Hg, Sb, Zn, Cu, Fe) and their microbiological (total coliform and E. coli) characteristics. The physicochemical properties of groundwater samples were found to be within the Philippine National Standards for Drinking Water (PNSDW)/US-EPA except for the TDS, chlorides, and hardness of some sources. Well waters from both Initao and Gitagum municipalities have TDS values of 643.2 mg/L and 578.4 mg/L, respectively, as compared to PNSDW/US-EPA standard limit of 500 mg/L. These same two municipalities Initao and Gitagum as well as the municipality of Libertad also have chloride levels beyond the 250 mg/L limit of PNSDW/US-EPA/EU with values at 360, 318 and 277 mg/L respectively. The Libertad sample also registered a total hardness of 407.5 mg/L CaCO3 as compared to the 300 mg/L PNSDW limit. These mentioned three (3) municipalities are noticed to have similar geologic structures. Although metal analyses revealed the presence of Zn, Cu and Fe in almost all well water sources, their concentrations are below allowable limit. All well waters from the seven municipalities failed in total coliform count. Escherichia coli were also found in well waters from four (4) municipalities including Laguindingan, Lugait, Gitagum, and Libertad. The presence of these pathogens in the well waters needs to be addressed to make the waters suitable for human consumption.

Keywords: groundwater, deep well, physico-chemical, heavy metal, microbiological

Procedia PDF Downloads 573
3051 Sharp Estimates of Oscillatory Singular Integrals with Rough Kernels

Authors: H. Al-Qassem, L. Cheng, Y. Pan

Abstract:

In this paper, we establish sharp bounds for oscillatory singular integrals with an arbitrary real polynomial phase P. Our kernels are allowed to be rough both on the unit sphere and in the radial direction. We show that the bounds grow no faster than log (deg(P)), which is optimal and was first obtained by Parissis and Papadimitrakis for kernels without any radial roughness. Our results substantially improve many previously known results. Among key ingredients of our methods are an L¹→L² sharp estimate and using extrapolation.

Keywords: oscillatory singular integral, rough kernel, singular integral, orlicz spaces, block spaces, extrapolation, L^{p} boundedness

Procedia PDF Downloads 448
3050 Numerical Investigation of a Spiral Bladed Tidal Turbine

Authors: Mohammad Fereidoonnezhad, Seán Leen, Stephen Nash, Patrick McGarry

Abstract:

From the perspective of research innovation, the tidal energy industry is still in its early stages. While a very small number of turbines have progressed to utility-scale deployment, blade breakage is commonly reported due to the enormous hydrodynamic loading applied to devices. The aim of this study is the development of computer simulation technologies for the design of next-generation fibre-reinforced composite tidal turbines. This will require significant technical advances in the areas of tidal turbine testing and multi-scale computational modelling. The complex turbine blade profiles are designed to incorporate non-linear distributions of airfoil sections to optimize power output and self-starting capability while reducing power fluctuations. A number of candidate blade geometries are investigated, ranging from spiral geometries to parabolic geometries, with blades arranged in both cylindrical and spherical configurations on a vertical axis turbine. A combined blade element theory (BET-start-up model) is developed in MATLAB to perform computationally efficient parametric design optimisation for a range of turbine blade geometries. Finite element models are developed to identify optimal fibre-reinforced composite designs to increase blade strength and fatigue life. Advanced fluid-structure-interaction models are also carried out to compute blade deflections following design optimisation.

Keywords: tidal turbine, composite materials, fluid-structure-interaction, start-up capability

Procedia PDF Downloads 105