Search results for: engineering materials and applications
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 13968

Search results for: engineering materials and applications

4068 The Impact of Distributed Epistemologies on Software Engineering

Authors: Thomas Smith

Abstract:

Many hackers worldwide would agree that, had it not been for linear-time theory, the refinement of Byzantine fault tolerance might never have occurred. After years of significant research into extreme programming, we validate the refinement of simulated annealing. Maw, our new framework for unstable theory, is the solution to all of these issues.

Keywords: distributed, software engineering, DNS, DHCP

Procedia PDF Downloads 347
4067 Integrating Cyber-Physical System toward Advance Intelligent Industry: Features, Requirements and Challenges

Authors: V. Reyes, P. Ferreira

Abstract:

In response to high levels of competitiveness, industrial systems have evolved to improve productivity. As a consequence, a rapid increase in volume production and simultaneously, a customization process require lower costs, more variety, and accurate quality of products. Reducing time-cycle production, enabling customizability, and ensure continuous quality improvement are key features in advance intelligent industry. In this scenario, customers and producers will be able to participate in the ongoing production life cycle through real-time interaction. To achieve this vision, transparency, predictability, and adaptability are key features that provide the industrial systems the capability to adapt to customer demands modifying the manufacturing process through an autonomous response and acting preventively to avoid errors. The industrial system incorporates a diversified number of components that in advanced industry are expected to be decentralized, end to end communicating, and with the capability to make own decisions through feedback. The evolving process towards advanced intelligent industry defines a set of stages to empower components of intelligence and enhancing efficiency to achieve the decision-making stage. The integrated system follows an industrial cyber-physical system (CPS) architecture whose real-time integration, based on a set of enabler technologies, links the physical and virtual world generating the digital twin (DT). This instance allows incorporating sensor data from real to virtual world and the required transparency for real-time monitoring and control, contributing to address important features of the advanced intelligent industry and simultaneously improve sustainability. Assuming the industrial CPS as the core technology toward the latest advanced intelligent industry stage, this paper reviews and highlights the correlation and contributions of the enabler technologies for the operationalization of each stage in the path toward advanced intelligent industry. From this research, a real-time integration architecture for a cyber-physical system with applications to collaborative robotics is proposed. The required functionalities and issues to endow the industrial system of adaptability are identified.

Keywords: cyber-physical systems, digital twin, sensor data, system integration, virtual model

Procedia PDF Downloads 112
4066 A Reminder of a Rare Anatomical Variant of the Spinal Accessory Nerve Encountered During Routine Neck Dissection: A Case Report and Updated Review of the Literature

Authors: Sophie Mills, Constantinos Aristotelous, Leila L. Touil, Richard C. W. James

Abstract:

Objectives: Historical studies of the anatomy of the spinal accessory nerve (SAN) have reported conflicting results regarding its relationship with the internal jugular vein (IJV). A literature review was undertaken to establish the prevalence of anatomical variations of the SAN encountered during routine neck dissection surgery in order to increase awareness and reduce morbidity associated with iatrogenic SAN injury. Materials and Methods: The largest systematic review to date was performed using PRISMA-ScR guidelines, which yielded nine articles following the application of inclusion and exclusion criteria. A case report is also included, which demonstrates the rare anatomical relationship of the SAN traversing a fenestrated IJV, seen for the first time in the senior author’s career. Results: The mean number of dissections per study was 119, of which 55.6% (n=5) studies were performed on cadaver subjects, and 44.4% (n=4) were surgical dissections. Incidences of the SAN lateral to the IJV and medial to the IJV ranged from 38.9%-95.7% and 2.8%-57.4%, respectively. Over half of the studies reported incidences of the SAN traversing the IJV in 0.9%-2.8% of dissections. One study reported an isolated variant of the SAN dividing around the IJV with a prevalence of 0.5%. Conclusion: At the level of the posterior belly of the digastric muscle, the surgeon can anticipate the identification of the SAN lateral to the IJV in approximately three-quarters of cases, whilst around one-quarter are estimated to be medial. A mean of 1.6% of SANs traverses a fenestration of the vein. It is essential for surgeons to be aware of these anatomical variations and their prevalence to prevent injury to vital structures during surgery.

Keywords: anatomical variant, internal jugular vein, neck dissection, spinal accessory nerve

Procedia PDF Downloads 135
4065 Investigations into the Efficiencies of Steam Conversion in Three Reactor Chemical Looping

Authors: Ratnakumar V. Kappagantula, Gordon D. Ingram, Hari B. Vuthaluru

Abstract:

This paper analyzes a three reactor chemical looping process for hydrogen production from natural gas, allowing for carbon dioxide capture through chemical looping technology. An oxygen carrier is circulated to separate carbon dioxide, to reduce steam for hydrogen production and to supply oxygen for combustion. In this study, the emphasis is placed on the steam conversion in the steam reactor by investigating the hydrogen efficiencies of the complete system at steam conversions of 15.8% and 50%. An Aspen Plus model was developed for a Three Reactor Chemical Looping process to study the effects of operational parameters on hydrogen production is investigated. Maximum hydrogen production was observed under stoichiometric conditions. Different conversions in the steam reactor, which was modelled as a Gibbs reactor, were found when Gibbs-identified products and user identified products were chosen. Simulations were performed for different oxygen carriers, which consist of an active metal oxide on an inert support material. For the same metal oxide mass flowrate, the fuel reactor temperature decreased for different support materials in the order: aluminum oxide (Al2O3) > magnesium aluminate (MgAl2O4) > zirconia (ZrO2). To achieve the same fuel reactor temperature for the same oxide mass flow rate, the inert mass fraction was found to be 0.825 for ZrO2, 0.7 for MgAl2O4 and 0.6 for Al2O3. The effect of poisoning of the oxygen carrier was also analyzed. With 3000 ppm sulfur-based impurities in the feed gas, the hydrogen product energy rate of the process were found to decrease by 0.4%.

Keywords: aspen plus, chemical looping combustion, inert support balls, oxygen carrier

Procedia PDF Downloads 319
4064 RA-Apriori: An Efficient and Faster MapReduce-Based Algorithm for Frequent Itemset Mining on Apache Flink

Authors: Sanjay Rathee, Arti Kashyap

Abstract:

Extraction of useful information from large datasets is one of the most important research problems. Association rule mining is one of the best methods for this purpose. Finding possible associations between items in large transaction based datasets (finding frequent patterns) is most important part of the association rule mining. There exist many algorithms to find frequent patterns but Apriori algorithm always remains a preferred choice due to its ease of implementation and natural tendency to be parallelized. Many single-machine based Apriori variants exist but massive amount of data available these days is above capacity of a single machine. Therefore, to meet the demands of this ever-growing huge data, there is a need of multiple machines based Apriori algorithm. For these types of distributed applications, MapReduce is a popular fault-tolerant framework. Hadoop is one of the best open-source software frameworks with MapReduce approach for distributed storage and distributed processing of huge datasets using clusters built from commodity hardware. However, heavy disk I/O operation at each iteration of a highly iterative algorithm like Apriori makes Hadoop inefficient. A number of MapReduce-based platforms are being developed for parallel computing in recent years. Among them, two platforms, namely, Spark and Flink have attracted a lot of attention because of their inbuilt support to distributed computations. Earlier we proposed a reduced- Apriori algorithm on Spark platform which outperforms parallel Apriori, one because of use of Spark and secondly because of the improvement we proposed in standard Apriori. Therefore, this work is a natural sequel of our work and targets on implementing, testing and benchmarking Apriori and Reduced-Apriori and our new algorithm ReducedAll-Apriori on Apache Flink and compares it with Spark implementation. Flink, a streaming dataflow engine, overcomes disk I/O bottlenecks in MapReduce, providing an ideal platform for distributed Apriori. Flink's pipelining based structure allows starting a next iteration as soon as partial results of earlier iteration are available. Therefore, there is no need to wait for all reducers result to start a next iteration. We conduct in-depth experiments to gain insight into the effectiveness, efficiency and scalability of the Apriori and RA-Apriori algorithm on Flink.

Keywords: apriori, apache flink, Mapreduce, spark, Hadoop, R-Apriori, frequent itemset mining

Procedia PDF Downloads 287
4063 Competing Interactions, and Magnetization Dynamics in Doped Rare-Earth Manganites Nanostructural System

Authors: Wiqar Hussain Shah

Abstract:

The Structural, magnetic and transport behavior of La1-xCaxMnO3+ (x=0.48, 0.50, 0.52 and 0.55 and =0.015) compositions close to charge ordering, was studied through XRD, resistivity, DC magnetization and AC susceptibility measurements. With time and thermal cycling (T<300 K) there is an irreversible transformation of the low-temperature phase from a partially ferromagnetic and metallic to one that is less ferromagnetic and highly resistive. For instance, an increase of resistivity can be observed by thermal cycling, where no effect is obtained for lower Ca concentration. The time changes in the magnetization are logarithmic in general and activation energies are consistent with those expected for electron transfer between Mn ions. The data suggest that oxygen non-stoichiometry results in mechanical strains in this two-phase system, leading to the development of irreversible metastable states, which relax towards the more stable charge-ordered and antiferromagnetic microdomains at the nano-meter size. This behavior is interpreted in terms of strains induced charge localization at the interface between FM/AFM domains in the antiferromagnetic matrix. Charge, orbital ordering and phase separation play a prominent role in the appearance of such properties, since they can be modified in a spectacular manner by external factor, making the different physical properties metastable. Here we describe two factors that deeply modify those properties, viz. the doping concentration and the thermal cycling. The metastable state is recovered by the high temperature annealing. We also measure the magnetic relaxation in the metastable state and also the revival of the metastable state (in a relaxed sample) due to high temperature (800 ) thermal treatment.

Keywords: Rare-earth maganites, nano-structural materials, doping effects on electrical, magnetic properties, competing interactions

Procedia PDF Downloads 122
4062 Analysis of Lift Force in Hydrodynamic Transport of a Finite Sized Particle in Inertial Microfluidics with a Rectangular Microchannel

Authors: Xinghui Wu, Chun Yang

Abstract:

Inertial microfluidics is a competitive fluidic method with applications in separation of particles, cells and bacteria. In contrast to traditional microfluidic devices with low Reynolds number, inertial microfluidics works in the intermediate Re number range which brings about several intriguing inertial effects on particle separation/focusing to meet the throughput requirement in the real-world. Geometric modifications to make channels become irregular shapes can leverage fluid inertia to create complex secondary flow for adjusting the particle equilibrium positions and thus enhance the separation resolution and throughput. Although inertial microfluidics has been extensively studied by experiments, our current understanding of its mechanisms is poor, making it extremely difficult to build rational-design guidelines for the particle focusing locations, especially for irregularly shaped microfluidic channels. Inertial particle microfluidics in irregularly shaped channels were investigated in our group. There are several fundamental issues that require us to address. One of them is about the balance between the inertial lift forces and the secondary drag forces. Also, it is critical to quantitatively describe the dependence of the life forces on particle-particle interactions in irregularly shaped channels, such as a rectangular one. To provide physical insights into the inertial microfluidics in channels of irregular shapes, in this work the immersed boundary-lattice Boltzmann method (IB-LBM) was introduced and validated to explore the transport characteristics and the underlying mechanisms of an inertial focusing single particle in a rectangular microchannel. The transport dynamics of a finitesized particle were investigated over wide ranges of Reynolds number (20 < Re < 500) and particle size. The results show that the inner equilibrium positions are more difficult to occur in the rectangular channel, which can be explained by the secondary flow caused by the presence of a finite-sized particle. Furthermore, force decoupling analysis was utilized to study the effect of each type of lift force on the inertia migration, and a theoretical model for the lateral lift force of a finite-sized particle in the rectangular channel was established. Such theoretical model can be used to provide theoretical guidance for the design and operation of inertial microfluidics.

Keywords: inertial microfluidics, particle focuse, life force, IB-LBM

Procedia PDF Downloads 67
4061 Clinical and Radiological Features of Adenomyosis and Its Histopathological Correlation

Authors: Surabhi Agrawal Kohli, Sunita Gupta, Esha Khanuja, Parul Garg, P. Gupta

Abstract:

Background: Adenomyosis is a common gynaecological condition that affects the menstruating women. Uterine enlargement, dysmenorrhoea, and menorrhagia are regarded as the cardinal clinical symptoms of adenomyosis. Classically it was thought, compared with ultrasonography, when adenomyosis is suspected, MRI enables more accurate diagnosis of the disease. Materials and Methods: 172 subjects were enrolled after an informed consent that had complaints of HMB, dyspareunia, dysmenorrhea, and chronic pelvic pain. Detailed history of the enrolled subjects was taken, followed by a clinical examination. These patients were then subjected to TVS where myometrial echo texture, presence of myometrial cysts, blurring of endomyometrial junction was noted. MRI was followed which noted the presence of junctional zone thickness and myometrial cysts. After hysterectomy, histopathological diagnosis was obtained. Results: 78 participants were analysed. The mean age was 44.2 years. 43.5% had parity of 4 or more. heavy menstrual bleeding (HMB) was present in 97.8% and dysmenorrhea in 93.48 % of HPE positive patient. Transvaginal sonography (TVS) and MRI had a sensitivity of 89.13% and 80.43%, specificity of 90.62% and 84.37%, positive likelihood ratio of 9.51 and 5.15, negative likelihood ratio of 0.12 and 0.23, positive predictive value of 93.18% and 88.1%, negative predictive value of 85.29% and 75% and a diagnostic accuracy of 89.74% and 82.5%. Comparison of sensitivity (p=0.289) and specificity (p=0.625) showed no statistically significant difference between TVS and MRI. Conclusion: Prevalence of 30.23%. HMB with dysmenorrhoea and chronic pelvic pain helps in diagnosis. TVS (Endomyometrial junction blurring) is both sensitive and specific in diagnosing adenomyosis without need for additional diagnostic tool. Both TVS and MRI are equally efficient, however because of certain additional advantages of TVS over MRI, it may be used as the first choice of imaging. MRI may be used additionally in difficult cases as well as in patients with existing co-pathologies.

Keywords: adenomyosis, heavy menstrual bleeding, MRI, TVS

Procedia PDF Downloads 486
4060 Effect of Various Durations of Type 2 Diabetes on Muscle Performance

Authors: Santosh Kumar Yadav, Shobha Keswani, Nishat Quddus, Sohrab Ahmad Khan, Zuheb Ahmad Shiddiqui, Varsha Chorsiya

Abstract:

Introduction: Early onset diabetes is more aggressive than the late onset diabetes. Diabetic individual has a greater spectrum of life period to suffer from its damage, complications, and long-term disability. This study aimed at assessing knee joint muscle performance under various durations of diabetes. Method and Materials: A total of 30 diabetic subjects (18 male and 12 females) without diabetic neuropathy were included for the study. They were divided into three groups with 5 years, 10 years and 15 years of duration of disease each. Muscle performance was evaluated through strength and flexibility. Peak torque for quadriceps muscle was measured using isokinetic dynamometer. Flexibility for quadriceps and hamstring muscles were measured through Ducan’s Elys test and 90/90 test. Results: The result showed significant difference in muscle strength (p<0.05), flexibility (p≤0.05) between groups. Discussion: Optimal muscle strength and flexibility are vital for musculoskeletal health and functional independence. Conclusion: The reduced muscle performance and functional impairment in nonneuropathic diabetic patients suggest that other mechanism besides neuropathy that contribute to altered biomechanics. These findings of this study project early management of these altered parameters through disease-specific physical therapy and assessment-based intervention. Clinical Relevance: Managing disability is more costly than managing disease. Prompt and timely identification and management strategy can dramatically reduce the cost of care for diabetic patients.

Keywords: muscle flexibility, muscle performance, muscle torque, type 2 diabetes

Procedia PDF Downloads 325
4059 On Crack Tip Stress Field in Pseudo-Elastic Shape Memory Alloys

Authors: Gulcan Ozerim, Gunay Anlas

Abstract:

In shape memory alloys, upon loading, stress increases around crack tip and a martensitic phase transformation occurs in early stages. In many studies the stress distribution in the vicinity of the crack tip is represented by using linear elastic fracture mechanics (LEFM) although the pseudo-elastic behavior results in a nonlinear stress-strain relation. In this study, the HRR singularity (Hutchinson, Rice and Rosengren), that uses Rice’s path independent J-integral, is tried to formulate the stress distribution around the crack tip. In HRR approach, the Ramberg-Osgood model for the stress-strain relation of power-law hardening materials is used to represent the elastic-plastic behavior. Although it is recoverable, the inelastic portion of the deformation in martensitic transformation (up to the end of transformation) resembles to that of plastic deformation. To determine the constants of the Ramberg-Osgood equation, the material’s response is simulated in ABAQUS using a UMAT based on ZM (Zaki-Moumni) thermo-mechanically coupled model, and the stress-strain curve of the material is plotted. An edge cracked shape memory alloy (Nitinol) plate is loaded quasi-statically under mode I and modeled using ABAQUS; the opening stress values ahead of the cracked tip are calculated. The stresses are also evaluated using the asymptotic equations of both LEFM and HRR. The results show that in the transformation zone around the crack tip, the stress values are much better represented when the HRR singularity is used although the J-integral does not show path independent behavior. For the nodes very close to the crack tip, the HRR singularity is not valid due to the non-proportional loading effect and high-stress values that go beyond the transformation finish stress.

Keywords: crack, HRR singularity, shape memory alloys, stress distribution

Procedia PDF Downloads 322
4058 Resonant Fluorescence in a Two-Level Atom and the Terahertz Gap

Authors: Nikolai N. Bogolubov, Andrey V. Soldatov

Abstract:

Terahertz radiation occupies a range of frequencies somewhere from 100 GHz to approximately 10 THz, just between microwaves and infrared waves. This range of frequencies holds promise for many useful applications in experimental applied physics and technology. At the same time, reliable, simple techniques for generation, amplification, and modulation of electromagnetic radiation in this range are far from been developed enough to meet the requirements of its practical usage, especially in comparison to the level of technological abilities already achieved for other domains of the electromagnetic spectrum. This situation of relative underdevelopment of this potentially very important range of electromagnetic spectrum is known under the name of the 'terahertz gap.' Among other things, technological progress in the terahertz area has been impeded by the lack of compact, low energy consumption, easily controlled and continuously radiating terahertz radiation sources. Therefore, development of new techniques serving this purpose as well as various devices based on them is of obvious necessity. No doubt, it would be highly advantageous to employ the simplest of suitable physical systems as major critical components in these techniques and devices. The purpose of the present research was to show by means of conventional methods of non-equilibrium statistical mechanics and the theory of open quantum systems, that a thoroughly studied two-level quantum system, also known as an one-electron two-level 'atom', being driven by external classical monochromatic high-frequency (e.g. laser) field, can radiate continuously at much lower (e.g. terahertz) frequency in the fluorescent regime if the transition dipole moment operator of this 'atom' possesses permanent non-equal diagonal matrix elements. This assumption contradicts conventional assumption routinely made in quantum optics that only the non-diagonal matrix elements persist. The conventional assumption is pertinent to natural atoms and molecules and stems from the property of spatial inversion symmetry of their eigenstates. At the same time, such an assumption is justified no more in regard to artificially manufactured quantum systems of reduced dimensionality, such as, for example, quantum dots, which are often nicknamed 'artificial atoms' due to striking similarity of their optical properties to those ones of the real atoms. Possible ways to experimental observation and practical implementation of the predicted effect are discussed too.

Keywords: terahertz gap, two-level atom, resonant fluorescence, quantum dot, resonant fluorescence, two-level atom

Procedia PDF Downloads 265
4057 Solid State Fermentation Process Development for Trichoderma asperellum Using Inert Support in a Fixed Bed Fermenter

Authors: Mauricio Cruz, Andrés Díaz García, Martha Isabel Gómez, Juan Carlos Serrato Bermúdez

Abstract:

The disadvantages of using natural substrates in SSF processes have been well recognized and mainly are associated to gradual decomposition of the substrate, formation of agglomerates and decrease of porosity bed generating limitations in the mass and heat transfer. Additionally, in several cases, materials with a high agricultural value such as sour milk, beets, rice, beans and corn have been used. Thus, the use of economic inert supports (natural or synthetic) in combination with a nutrient suspension for the production of biocontrol microorganisms is a good alternative in SSF processes, but requires further studies in the fields of modeling and optimization. Therefore, the aim of this work is to compare the performance of two inert supports, a synthetic (polyurethane foam) and a natural one (rice husk), identifying the factors that have the major effects on the productivity of T. asperellum Th204 and the maximum specific growth rate in a PROPHYTA L05® fixed bed bioreactor. For this, the six factors C:N ratio, temperature, inoculation rate, bed height, air moisture content and airflow were evaluated using a fractional design. The factors C:N and air flow were identified as significant on the productivity (expressed as conidia/dry substrate•h). The polyurethane foam showed higher maximum specific growth rate (0.1631 h-1) and productivities of 3.89 x107 conidia/dry substrate•h compared to rice husk (2.83x106) and natural substrate based on rice (8.87x106) used as control. Finally, a quadratic model was generated and validated, obtaining productivities higher than 3.0x107 conidia/dry substrate•h with air flow at 0.9 m3/h and C:N ratio at 18.1.

Keywords: bioprocess, scale up, fractional design, C:N ratio, air flow

Procedia PDF Downloads 505
4056 “I” on the Web: Social Penetration Theory Revised

Authors: Dr. Dionysis Panos Dpt. Communication, Internet Studies Cyprus University of Technology

Abstract:

The widespread use of New Media and particularly Social Media, through fixed or mobile devices, has changed in a staggering way our perception about what is “intimate" and "safe" and what is not, in interpersonal communication and social relationships. The distribution of self and identity-related information in communication now evolves under new and different conditions and contexts. Consequently, this new framework forces us to rethink processes and mechanisms, such as what "exposure" means in interpersonal communication contexts, how the distinction between the "private" and the "public" nature of information is being negotiated online, how the "audiences" we interact with are understood and constructed. Drawing from an interdisciplinary perspective that combines sociology, communication psychology, media theory, new media and social networks research, as well as from the empirical findings of a longitudinal comparative research, this work proposes an integrative model for comprehending mechanisms of personal information management in interpersonal communication, which can be applied to both types of online (Computer-Mediated) and offline (Face-To-Face) communication. The presentation is based on conclusions drawn from a longitudinal qualitative research study with 458 new media users from 24 countries for almost over a decade. Some of these main conclusions include: (1) There is a clear and evidenced shift in users’ perception about the degree of "security" and "familiarity" of the Web, between the pre- and the post- Web 2.0 era. The role of Social Media in this shift was catalytic. (2) Basic Web 2.0 applications changed dramatically the nature of the Internet itself, transforming it from a place reserved for “elite users / technical knowledge keepers" into a place of "open sociability” for anyone. (3) Web 2.0 and Social Media brought about a significant change in the concept of “audience” we address in interpersonal communication. The previous "general and unknown audience" of personal home pages, converted into an "individual & personal" audience chosen by the user under various criteria. (4) The way we negotiate the nature of 'private' and 'public' of the Personal Information, has changed in a fundamental way. (5) The different features of the mediated environment of online communication and the critical changes occurred since the Web 2.0 advance, lead to the need of reconsideration and updating the theoretical models and analysis tools we use in our effort to comprehend the mechanisms of interpersonal communication and personal information management. Therefore, is proposed here a new model for understanding the way interpersonal communication evolves, based on a revision of social penetration theory.

Keywords: new media, interpersonal communication, social penetration theory, communication exposure, private information, public information

Procedia PDF Downloads 362
4055 Evaluation of the CRISP-DM Business Understanding Step: An Approach for Assessing the Predictive Power of Regression versus Classification for the Quality Prediction of Hydraulic Test Results

Authors: Christian Neunzig, Simon Fahle, Jürgen Schulz, Matthias Möller, Bernd Kuhlenkötter

Abstract:

Digitalisation in production technology is a driver for the application of machine learning methods. Through the application of predictive quality, the great potential for saving necessary quality control can be exploited through the data-based prediction of product quality and states. However, the serial use of machine learning applications is often prevented by various problems. Fluctuations occur in real production data sets, which are reflected in trends and systematic shifts over time. To counteract these problems, data preprocessing includes rule-based data cleaning, the application of dimensionality reduction techniques, and the identification of comparable data subsets to extract stable features. Successful process control of the target variables aims to centre the measured values around a mean and minimise variance. Competitive leaders claim to have mastered their processes. As a result, much of the real data has a relatively low variance. For the training of prediction models, the highest possible generalisability is required, which is at least made more difficult by this data availability. The implementation of a machine learning application can be interpreted as a production process. The CRoss Industry Standard Process for Data Mining (CRISP-DM) is a process model with six phases that describes the life cycle of data science. As in any process, the costs to eliminate errors increase significantly with each advancing process phase. For the quality prediction of hydraulic test steps of directional control valves, the question arises in the initial phase whether a regression or a classification is more suitable. In the context of this work, the initial phase of the CRISP-DM, the business understanding, is critically compared for the use case at Bosch Rexroth with regard to regression and classification. The use of cross-process production data along the value chain of hydraulic valves is a promising approach to predict the quality characteristics of workpieces. Suitable methods for leakage volume flow regression and classification for inspection decision are applied. Impressively, classification is clearly superior to regression and achieves promising accuracies.

Keywords: classification, CRISP-DM, machine learning, predictive quality, regression

Procedia PDF Downloads 137
4054 Plasma Engineered Nanorough Substrates for Stem Cells in vitro Culture

Authors: Melanie Macgregor-Ramiasa, Isabel Hopp, Patricia Murray, Krasimir Vasilev

Abstract:

Stem cells based therapies are one of the greatest promises of new-age medicine due to their potential to help curing most dreaded conditions such as cancer, diabetes and even auto-immune disease. However, establishing suitable in vitro culture materials allowing to control the fate of stem cells remain a challenge. Amongst the factor influencing stem cell behavior, substrate chemistry and nanotopogaphy are particularly critical. In this work, we used plasma assisted surface modification methods to produce model substrates with tailored nanotopography and controlled chemistry. Three different sizes of gold nanoparticles were bound to amine rich plasma polymer layers to produce homogeneous and gradient surface nanotopographies. The outer chemistry of the substrate was kept constant for all substrates by depositing a thin layer of our patented biocompatible polyoxazoline plasma polymer on top of the nanofeatures. For the first time, protein adsorption and stem cell behaviour (mouse kidney stem cells and mesenchymal stem cells) were evaluated on nanorough plasma deposited polyoxazoline thin films. Compared to other nitrogen rich coatings, polyoxazoline plasma polymer supports the covalent binding of proteins. Moderate surface nanoroughness, in both size and density, triggers cell proliferation. In association with polyoxazoline coating, cell proliferation is further enhanced on nanorough substrates. Results are discussed in term of substrates wetting properties. These findings provide valuable insights on the mechanisms governing the interactions between stem cells and their growth support.

Keywords: nanotopography, stem cells, differentiation, plasma polymer, oxazoline, gold nanoparticles

Procedia PDF Downloads 276
4053 Surface Modification of Pineapple Leaf Fibre Reinforced Polylactic Acid Composites

Authors: Januar Parlaungan Siregar, Davindra Brabu Mathivanan, Dandi Bachtiar, Mohd Ruzaimi Mat Rejab, Tezara Cionita

Abstract:

Natural fibres play a significant role in mass industries such as automotive, construction and sports. Many researchers have found that the natural fibres are the best replacement for the synthetic fibres in terms of cost, safety, and degradability due to the shortage of landfill and ingestion of non biodegradable plastic by animals. This study mainly revolved around pineapple leaf fibre (PALF) which is available abundantly in tropical countries and with excellent mechanical properties. The composite formed in this study is highly biodegradable as both fibre and matrix are both derived from natural based products. The matrix which is polylactic acid (PLA) is made from corn starch which gives the upper hand as both material are renewable resources are easier to degrade by bacteria or enzyme. The PALF is treated with different alkaline solution to remove excessive moisture in the fibre to provide better interfacial bonding with PLA. Thereafter the PALF is washed with distilled water several times before placing in vacuum oven at 80°C for 48 hours. The dried PALF later were mixed with PLA using extrusion method using fibre in percentage of 30 by weight. The temperature for all zone were maintained at 160°C with the screw speed of 50 rpm for better bonding and afterwards the products of the mixture were pelletized using pelletizer. The pellets were placed in the specimen-sized mould for hot compression under the temperature of 170°C at 5 MPa for 5 min and subsequently were cold pressed under room temperature at 5 MPa for 5 min. The specimen were tested for tensile and flexure strength according to American Society for Testing and Materials (ASTM) D638 and D790 respectively. The effect of surface modification on PALF with different alkali solution will be investigated and compared.

Keywords: natural fibre, PALF, PLA, composite

Procedia PDF Downloads 294
4052 Development of Materials Based on Phosphates of NaZr2(PO4)3 with Low Thermal Expansion

Authors: V. Yu. Volgutov, A. I. Orlova, S. A. Khainakov

Abstract:

NaZr2(PO4)3 (NZP) and their structural analogues are characterized by a peculiar behaviors on heating – they have different expansion and contraction along different crystallographic directions due to specific arrangements of crystal structure in these compounds. An important feature of such structures is the ability to incorporate into their structural analogues wide variety of metal cations having different size and oxidation states, with different combinations and concentrations. These cations are located in different crystallographic non-equivalent positions of octahedral tetrahedral crystal framework as well as in inter-framework cavities. Through, due to iso- and hetero-valent isomorphism of the cations (and the anions) in NZP, it becomes possible to tuning the compositions and to obtain the compounds with ‘on a plan’ properties. For the design of compounds with low and ultra-low thermal expansion including those with tailored thermal expansion properties, the following crystallochemical principles it seems are promising: 1) Insertion into crystal M1 position the cations having different sizes and, 2) the variation in the composition of compounds, providing different occupation of crystal M1 position. Following these principles we have designed and synthesized the next NZP-type phosphates series: a) where radii of the cations in the M1 crystal position was varied: Zr1/4Zr2(PO4)3 - Th1/4Zr2(PO4)3 (series I); R1/3Zr2(PO4)3 where R= Nd, Eu, Er (series II), b) where the occupation of M1 crystal position was varied: Zr1/4Zr2(PO4)3-Er1/3Zr2(PO4)3 (series III) and Zr1/4Zr2(PO4)3-Sr1/2Zr2(PO4)3 (series IV). The thermal expansion parameters were determined over the range of 25-800ºC. For each series the minimum axial coefficient of thermal expansion αa = αb, αc and their anisotropy Δα = Iαa - αcI, 10-6 K-1 was found as next: -1.51, 1.07, 2.58 for Th1/4Zr2(PO4)3 (series I); -0.72, 0.10, 0.81 for Nd1/3Zr2(PO4)3 (series II); -2.78, 1.35, 4.12 for Er1/6Zr1/8Zr2(PO4)3 (series III); 2.23, 1.32, 0.91 for Sr1/2Zr2(PO4)3 (series IV). The measured tendencies of the thermal expansion of crystals were in good agreement with predicted ones. For one of the members from the studied phosphates namely Th1/16Zr3/16Zr2(PO4)3 structural refinement have been carried out at 25, 200, 600, and 800°C. The dependencies of the structural parameters with the temperature have been determined.

Keywords: high-temperature crystallography, NaZr2(PO4)3, (NZP) analogs, structural-chemical principles, tuning thermal expansion

Procedia PDF Downloads 230
4051 Magnetoresistance Transition from Negative to Positive in Functionalization of Carbon Nanotube and Composite with Polyaniline

Authors: Krishna Prasad Maity, Narendra Tanty, Ananya Patra, V. Prasad

Abstract:

Carbon nanotube (CNT) is a well-known material for very good electrical, thermal conductivity and high tensile strength. Because of that, it’s widely used in many fields like nanotechnology, electronics, optics, etc. In last two decades, polyaniline (PANI) with CNT and functionalized CNT (fCNT) have been promising materials in application of gas sensing, electromagnetic shielding, electrode of capacitor etc. So, the study of electrical conductivity of PANI/CNT and PANI/fCNT is important to understand the charge transport and interaction between PANI and CNT in the composite. It is observed that a transition in magnetoresistance (MR) with lowering temperature, increasing magnetic field and decreasing CNT percentage in CNT/PANI composite. Functionalization of CNT prevent the nanotube aggregation, improves interfacial interaction, dispersion and stabilized in polymer matrix. However, it shortens the length, breaks C-C sp² bonds and enhances the disorder creating defects on the side walls. We have studied electrical resistivity and MR in PANI with CNT and fCNT composites for different weight percentages down to the temperature 4.2K and up to magnetic field 5T. Resistivity increases significantly in composite at low temperature due to functionalization of CNT compared to only CNT. Interestingly a transition from negative to positive magnetoresistance has been observed when the filler is changed from pure CNT to functionalized CNT after a certain percentage (10wt%) as the effect of more disorder in fCNT/PANI composite. The transition of MR has been explained on the basis of polaron-bipolaron model. The long-range Coulomb interaction between two polarons screened by disorder in the composite of fCNT/PANI, increases the effective on-site Coulomb repulsion energy to form bipolaron which leads to change the sign of MR from negative to positive.

Keywords: coulomb interaction, magnetoresistance transition, polyaniline composite, polaron-bipolaron

Procedia PDF Downloads 160
4050 Nutriscience Project: A Web-Based Intervention to Improve Nutritional Literacy among Families and Educators of Pre-School Children

Authors: R. Barros, J. Azevedo, P. Padrão, M. Gregório, I. Pádua, C. Almeida, C. Rodrigues, P. Fontes, A. Coelho

Abstract:

Recent evidence shows a positive association between nutritional literacy and healthy eating. Traditional nutrition education strategies for childhood obesity prevention have shown weak effect. The Nutriscience project aims to create and evaluate an innovative and multidisciplinary strategy for promoting effective and accessible nutritional information to children, their families, and educators. Nutriscience is a one-year prospective follow-up evaluation study including pre-school children (3-5 y), who attend national schools’ network (29). The project is structured around a web-based intervention, using an on-line interactive platform, and focus on increasing fruit and vegetable consumption, and reducing sugar and salt intake. The platform acts as a social network where educational materials, games, and nutritional challenges are proposed in a gamification approach that promotes family and community social ties. A nutrition Massive Online Open Course is developed for educators, and a national healthy culinary contest will be promoted on TV channel. A parental self-reported questionnaire assessing sociodemographic and nutritional literacy (knowledge, attitudes, skills) is administered (baseline and end of the intervention). We expect that results on nutritional literacy from the presented strategy intervention will give us important information about the best practices for health intervention with kindergarten families. This intervention program using a digital interactive platform could be an educational tool easily adapted and disseminated for childhood obesity prevention.

Keywords: childhood obesity, educational tool, nutritional literacy, web-based intervention

Procedia PDF Downloads 331
4049 Reflections on Opportunities and Challenges for Systems Engineering

Authors: Ali E. Abbas

Abstract:

This paper summarizes some of the discussions that occurred in a workshop in West Virginia, U.S.A which was sponsored by the National Science Foundation (NSF) in February 2016. The goal of the workshop was to explore the opportunities and challenges for applying systems engineering in large enterprises, and some of the issues that still persist. The main topics of the discussion included challenges with elaboration and abstraction in large systems, interfacing physical and social systems, and the need for axiomatic frameworks for large enterprises. We summarize these main points of discussion drawing parallels with decision making in organizations to instigate research in these discussion areas.

Keywords: decision analysis, systems engineering, framing, value creation

Procedia PDF Downloads 324
4048 A Collaborative Application of Six Sigma and Value Engineering in Supply Chain and Logistics

Authors: Arun Raja, Kevin Thomas, Sreyas Tribhu, S. P. Anbuudayasankar

Abstract:

This paper deals with the application of six sigma methodology in supply chain (SC) and logistics. A detailed cram about how the SC can be improved and its impact on the organization are dealt with and also how the quality plays a vital role in improving SC and logistics are identified. A simulation has been performed using the ARENA software to determine the process efficiency of a bottle manufacturing unit. Further, a Value Stream Mapping (VSM) analysis has been executed on the manufacturing process flow model and the manner by which Value Engineering (VE) holds a significant importance for quality assertion on the products is also studied.

Keywords: supply chain, six sigma, value engineering, logistics, quality

Procedia PDF Downloads 671
4047 Frequency of Alloimmunization in Sickle Cell Disease Patients in Africa: A Systematic Review with Meta-analysis

Authors: Theresa Ukamaka Nwagha, Angela Ogechukwu Ugwu, Martins Nweke

Abstract:

Background and Objectives: Blood transfusion is an effective and proven treatment for some severe complications of sickle cell disease. Recurrent transfusions have put patients with sickle cell disease at risk of developing antibodies against the various antigens they were exposed to. This study aims to investigate the frequency of red blood cell alloimmunization in patients with sickle disease in Africa. Materials and Methods: This is a systematic review of peer-reviewed literature published in English. The review was conducted consistent with the Preferred Reporting Items for Systematic Reviews and Meta-Analyses checklist. Data sources for the review include MEDLINE, PubMed, CINAHL, and Academic Search Complete. Included in this review are articles that reported the frequency/prevalence of red blood cell alloimmunization in sickle cell disease patients in Africa. Eligible studies were subjected to independent full-text screening and data extraction. Risk of bias assessment was conducted with the aid of the mixed method appraisal tool. We employed a random-effects model of meta-analysis to estimate the pooled prevalence. We computed Cochrane’s Q statistics and I2 and prediction interval to quantify heterogeneity in effect size. Results: The prevalence estimates range from 2.6% to 29%. Pooled prevalence was estimated to be 10.4% (CI 7.7.–13.8); PI = 3.0 – 34.0%), with significant heterogeneity (I2 = 84.62; PI = 2.0-32.0%) and publication bias (Egger’s t-test = 1.744, p = 0.0965). Conclusion: The frequency of red cell alloantibody varies considerably in Africa. The alloantibodies appeared frequent in this order: the Rhesus, Kell, Lewis, Duffy, MNS, and Lutheran

Keywords: frequency, red blood cell, alloimmunization, sickle cell disease, Africa

Procedia PDF Downloads 92
4046 Concept of the Active Flipped Learning in Engineering Mechanics

Authors: Lin Li, Farshad Amini

Abstract:

The flipped classroom has been introduced to promote collaborative learning and higher-order learning objectives. In contrast to the traditional classroom, the flipped classroom has students watch prerecorded lecture videos before coming to class and then “class becomes the place to work through problems, advance concepts, and engage in collaborative learning”. In this paper, the active flipped learning combines flipped classroom with active learning that is to establish an active flipped learning (AFL) model, aiming to promote active learning, stress deep learning, encourage student engagement and highlight data-driven personalized learning. Because students have watched the lecture prior to class, contact hours can be devoted to problem-solving and gain a deeper understanding of the subject matter. The instructor is able to provide students with a wide range of learner-centered opportunities in class for greater mentoring and collaboration, increasing the possibility to engage students. Currently, little is known about the extent to which AFL improves engineering students’ performance. This paper presents the preliminary study on the core course of sophomore students in Engineering Mechanics. A series of survey and interviews have been conducted to compare students’ learning engagement, empowerment, self-efficacy, and satisfaction with the AFL. It was found that the AFL model taking advantage of advanced technology is a convenient and professional avenue for engineering students to strengthen their academic confidence and self-efficacy in the Engineering Mechanics by actively participating in learning and fostering their deep understanding of engineering statics and dynamics

Keywords: active learning, engineering mechanics, flipped classroom, performance

Procedia PDF Downloads 286
4045 A Study on the Effect of Design Factors of Slim Keyboard’s Tactile Feedback

Authors: Kai-Chieh Lin, Chih-Fu Wu, Hsiang Ling Hsu, Yung-Hsiang Tu, Chia-Chen Wu

Abstract:

With the rapid development of computer technology, the design of computers and keyboards moves towards a trend of slimness. The change of mobile input devices directly influences users’ behavior. Although multi-touch applications allow entering texts through a virtual keyboard, the performance, feedback, and comfortableness of the technology is inferior to traditional keyboard, and while manufacturers launch mobile touch keyboards and projection keyboards, the performance has not been satisfying. Therefore, this study discussed the design factors of slim pressure-sensitive keyboards. The factors were evaluated with an objective (accuracy and speed) and a subjective evaluation (operability, recognition, feedback, and difficulty) depending on the shape (circle, rectangle, and L-shaped), thickness (flat, 3mm, and 6mm), and force (35±10g, 60±10g, and 85±10g) of the keyboard. Moreover, MANOVA and Taguchi methods (regarding signal-to-noise ratios) were conducted to find the optimal level of each design factor. The research participants, by their typing speed (30 words/ minute), were divided in two groups. Considering the multitude of variables and levels, the experiments were implemented using the fractional factorial design. A representative model of the research samples were established for input task testing. The findings of this study showed that participants with low typing speed primarily relied on vision to recognize the keys, and those with high typing speed relied on tactile feedback that was affected by the thickness and force of the keys. In the objective and subjective evaluation, a combination of keyboard design factors that might result in higher performance and satisfaction was identified (L-shaped, 3mm, and 60±10g) as the optimal combination. The learning curve was analyzed to make a comparison with a traditional standard keyboard to investigate the influence of user experience on keyboard operation. The research results indicated the optimal combination provided input performance to inferior to a standard keyboard. The results could serve as a reference for the development of related products in industry and for applying comprehensively to touch devices and input interfaces which are interacted with people.

Keywords: input performance, mobile device, slim keyboard, tactile feedback

Procedia PDF Downloads 296
4044 Impact of Pedagogical Techniques on the Teaching of Sports Sciences

Authors: Muhammad Saleem

Abstract:

Background: The teaching of sports sciences encompasses a broad spectrum of disciplines, including biomechanics, physiology, psychology, and coaching. Effective pedagogical techniques are crucial in imparting both theoretical knowledge and practical skills necessary for students to excel in the field. The impact of these techniques on students’ learning outcomes, engagement, and professional preparedness remains a vital area of study. Objective: This study aims to evaluate the effectiveness of various pedagogical techniques used in the teaching of sports sciences. It seeks to identify which methods most significantly enhance student learning, retention, engagement, and practical application of knowledge. Methods: A mixed-methods approach was employed, including both quantitative and qualitative analyses. The study involved a comparative analysis of traditional lecture-based teaching, experiential learning, problem-based learning (PBL), and technology-enhanced learning (TEL). Data were collected through surveys, interviews, and academic performance assessments from students enrolled in sports sciences programs at multiple universities. Statistical analysis was used to evaluate academic performance, while thematic analysis was applied to qualitative data to capture student experiences and perceptions. Results: The findings indicate that experiential learning and PBL significantly improve students' understanding and retention of complex sports science concepts compared to traditional lectures. TEL was found to enhance engagement and provide students with flexible learning opportunities, but its impact on deep learning varied depending on the quality of the digital resources. Overall, a combination of experiential learning, PBL, and TEL was identified as the most effective pedagogical approach, leading to higher student satisfaction and better preparedness for real-world applications. Conclusion: The study underscores the importance of adopting diverse and student-centered pedagogical techniques in the teaching of sports sciences. While traditional lectures remain useful for foundational knowledge, integrating experiential learning, PBL, and TEL can substantially improve student outcomes. These findings suggest that educators should consider a blended approach to pedagogy to maximize the effectiveness of sports science education.

Keywords: sport sciences, pedagogical techniques, health and physical education, problem-based learning, student engagement

Procedia PDF Downloads 13
4043 Innovations and Challenges: Multimodal Learning in Cybersecurity

Authors: Tarek Saadawi, Rosario Gennaro, Jonathan Akeley

Abstract:

There is rapidly growing demand for professionals to fill positions in Cybersecurity. This is recognized as a national priority both by government agencies and the private sector. Cybersecurity is a very wide technical area which encompasses all measures that can be taken in an electronic system to prevent criminal or unauthorized use of data and resources. This requires defending computers, servers, networks, and their users from any kind of malicious attacks. The need to address this challenge has been recognized globally but is particularly acute in the New York metropolitan area, home to some of the largest financial institutions in the world, which are prime targets of cyberattacks. In New York State alone, there are currently around 57,000 jobs in the Cybersecurity industry, with more than 23,000 unfilled positions. The Cybersecurity Program at City College is a collaboration between the Departments of Computer Science and Electrical Engineering. In Fall 2020, The City College of New York matriculated its first students in theCybersecurity Master of Science program. The program was designed to fill gaps in the previous offerings and evolved out ofan established partnership with Facebook on Cybersecurity Education. City College has designed a program where courses, curricula, syllabi, materials, labs, etc., are developed in cooperation and coordination with industry whenever possible, ensuring that students graduating from the program will have the necessary background to seamlessly segue into industry jobs. The Cybersecurity Program has created multiple pathways for prospective students to obtain the necessary prerequisites to apply in order to build a more diverse student population. The program can also be pursued on a part-time basis which makes it available to working professionals. Since City College’s Cybersecurity M.S. program was established to equip students with the advanced technical skills needed to thrive in a high-demand, rapidly-evolving field, it incorporates a range of pedagogical formats. From its outset, the Cybersecurity program has sought to provide both the theoretical foundations necessary for meaningful work in the field along with labs and applied learning projects aligned with skillsets required by industry. The efforts have involved collaboration with outside organizations and with visiting professors designing new courses on topics such as Adversarial AI, Data Privacy, Secure Cloud Computing, and blockchain. Although the program was initially designed with a single asynchronous course in the curriculum with the rest of the classes designed to be offered in-person, the advent of the COVID-19 pandemic necessitated a move to fullyonline learning. The shift to online learning has provided lessons for future development by providing examples of some inherent advantages to the medium in addition to its drawbacks. This talk will address the structure of the newly-implemented Cybersecurity Master’s Program and discuss the innovations, challenges, and possible future directions.

Keywords: cybersecurity, new york, city college, graduate degree, master of science

Procedia PDF Downloads 140
4042 Remote Training with Self-Assessment in Electrical Engineering

Authors: Zoja Raud, Valery Vodovozov

Abstract:

The paper focuses on the distance laboratory organisation for training the electrical engineering staff and students in the fields of electrical drive and power electronics. To support online knowledge acquisition and professional enhancement, new challenges in remote education based on an active learning approach with self-assessment have been emerged by the authors. Following the literature review and explanation of the improved assessment methodology, the concept and technological basis of the labs arrangement are presented. To decrease the gap between the distance study of the up-to-date equipment and other educational activities in electrical engineering, the improvements in the following-up the learners’ progress and feedback composition are introduced. An authoring methodology that helps to personalise knowledge acquisition and enlarge Web-based possibilities is described. Educational management based on self-assessment is discussed.

Keywords: advanced training, active learning, distance learning, electrical engineering, remote laboratory, self-assessment

Procedia PDF Downloads 322
4041 Mn3O4-NiFe Layered Double Hydroxides(LDH)/Carbon Composite Cathode for Rechargeable Zinc-Air Battery

Authors: L. K. Nivedha, V. Maruthapandian, R. Kothandaraman

Abstract:

Rechargeable zinc-air batteries (ZAB) are gaining significant research attention owing to their high energy density and copious zinc resources worldwide. However, the unsolved obstacles such as dendrites, passivation, depth of discharge and the lack of an efficient cathode catalyst restrict their practical application1. By and large, non-noble transition metal-based catalysts are well-reputed materials for catalysing oxygen reduction reaction (ORR) and oxygen evolution reaction (OER) with greater stability in alkaline medium2. Herein, we report the synthesis and application of Mn₃O4-NiFeLDH/Carbon composite as a cathode catalyst for rechargeable ZAB. The synergetic effects of the mixed transition metals (Mn/Ni/Fe) have aided in catalysing ORR and OER in alkaline electrolyte with a shallow potential gap of 0.7 V. The composite, by its distinctive physicochemical characteristics, shows an excellent OER activity with a current density of 1.5 mA cm⁻² at a potential of 1.6 V and a superior ORR activity with an onset potential of 0.8 V when compared with their counterparts. Nevertheless, the catalyst prefers a two-electron pathway for the electrochemical reduction of oxygen which results in a limiting current density of 2.5 mA cm⁻². The bifunctional activity of the Mn₃O₄-NiFeLDH/Carbon composite was utilized in developing rechargeable ZAB. The fully fabricated ZAB delivers an open circuit voltage of 1.4 V, a peak power density of 70 mW cm⁻², and a specific capacity of 800 mAh g⁻¹ at a current density of 20 mA cm⁻² with an average discharge voltage of 1 V and the cell is operable upto 50 mA cm-2. Rechargeable ZAB demonstrated over 110 h at 10 mA cm⁻². Further, the cause for the diminished charge-discharge performance experienced beyond the 100th cycle was investigated, and carbon corrosion was testified using Infrared spectroscopy.

Keywords: rechargeable zinc-air battery, oxygen evolution reaction, bifunctional catalyst, alkaline medium

Procedia PDF Downloads 74
4040 Multi-Index Performance Investigation of Rubberized Reclaimed Asphalt Mixture

Authors: Ling Xu, Giuseppe Loprencipe, Antonio D'Andrea

Abstract:

Asphalt pavement with recycled and sustainable materials has become the most commonly adopted strategy for road construction, including reclaimed asphalt pavement (RAP) and crumb rubber (CR) from waste tires. However, the adhesion and cohesion characteristics of rubberized reclaimed asphalt pavement were still ambiguous, resulting in deteriorated adhesion behavior and life performance. This research investigated the effect of bonding characteristics on rutting resistance and moisture susceptibility of rubberized reclaimed asphalt pavement in terms of two RAP sources with different oxidation levels and two tire rubber with different particle sizes. Firstly, the binder bond strength (BBS) test and bonding failure distinguishment were conducted to analyze the surface behaviors of binder-aggregate interaction. Then, the compatibility and penetration grade of rubberized RAP binder were evaluated by rotational viscosity test and penetration test, respectively. Hamburg wheel track (HWT) test with high-temperature viscoelastic deformation analysis was adopted, which illustrated the rutting resistance. Additionally, a water boiling test was employed to evaluate the moisture susceptibility of the mixture and the texture features were characterized with the statistical parameters of image colors. Finally, the colloid structure model of rubberized RAP binder with surface interaction was proposed, and statistical analysis was established to release the correlation among various indexes. This study concluded that the gel-phase colloid structure and molecular diffusion of the free light fraction would affect the surface interpretation with aggregate, determining the bonding characteristic of rubberized RAP asphalt.

Keywords: bonding characteristics, reclaimed asphalt pavement, rubberized asphalt, sustainable material

Procedia PDF Downloads 57
4039 Sulfur-Doped Hierarchically Porous Boron Nitride Nanosheets as an Efficient Carbon Dioxide Adsorbent

Authors: Sreetama Ghosh, Sundara Ramaprabhu

Abstract:

Carbon dioxide gas has been a major cause for the worldwide increase in green house effect, which leads to climate change and global warming. So CO₂ capture & sequestration has become an effective way to reduce the concentration of CO₂ in the environment. One such way to capture CO₂ in porous materials is by adsorption process. A potential material in this aspect is porous hexagonal boron nitride or 'white graphene' which is a well-known two-dimensional layered material with very high thermal stability. It had been investigated that the sample with hierarchical pore structure and high specific surface area shows excellent performance in capturing carbon dioxide gas and thereby mitigating the problem of environmental pollution to the certain extent. Besides, the presence of sulfur as well as nitrogen in the sample synergistically helps in the increase in adsorption capacity. In this work, a cost effective single step synthesis of highly porous boron nitride nanosheets doped with sulfur had been demonstrated. Besides, the CO₂ adsorption-desorption studies were carried on using a pressure reduction technique. The studies show that the nanosheets exhibit excellent cyclic stability in storage performance. Thermodynamic studies suggest that the adsorption takes place mainly through physisorption. The studies show that the nanosheets exhibit excellent cyclic stability in storage performance. Further, the surface modification of the highly porous nano sheets carried out by incorporating ionic liquids had further enhanced the capturing capability of CO₂ gas in the nanocomposite, revealing that this particular material has the potential to be an excellent adsorbent of carbon dioxide gas.

Keywords: CO₂ capture, hexagonal boron nitride nanosheets, porous network, sulfur doping

Procedia PDF Downloads 237