Search results for: free stream
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 3981

Search results for: free stream

3471 Streamflow Modeling Using the PyTOPKAPI Model with Remotely Sensed Rainfall Data: A Case Study of Gilgel Ghibe Catchment, Ethiopia

Authors: Zeinu Ahmed Rabba, Derek D Stretch

Abstract:

Remote sensing contributes valuable information to streamflow estimates. Usually, stream flow is directly measured through ground-based hydrological monitoring station. However, in many developing countries like Ethiopia, ground-based hydrological monitoring networks are either sparse or nonexistent, which limits the manage water resources and hampers early flood-warning systems. In such cases, satellite remote sensing is an alternative means to acquire such information. This paper discusses the application of remotely sensed rainfall data for streamflow modeling in Gilgel Ghibe basin in Ethiopia. Ten years (2001-2010) of two satellite-based precipitation products (SBPP), TRMM and WaterBase, were used. These products were combined with the PyTOPKAPI hydrological model to generate daily stream flows. The results were compared with streamflow observations at Gilgel Ghibe Nr, Assendabo gauging station using four statistical tools (Bias, R², NS and RMSE). The statistical analysis indicates that the bias-adjusted SBPPs agree well with gauged rainfall compared to bias-unadjusted ones. The SBPPs with no bias-adjustment tend to overestimate (high Bias and high RMSE) the extreme precipitation events and the corresponding simulated streamflow outputs, particularly during wet months (June-September) and underestimate the streamflow prediction over few dry months (January and February). This shows that bias-adjustment can be important for improving the performance of the SBPPs in streamflow forecasting. We further conclude that the general streamflow patterns were well captured at daily time scales when using SBPPs after bias adjustment. However, the overall results demonstrate that the simulated streamflow using the gauged rainfall is superior to those obtained from remotely sensed rainfall products including bias-adjusted ones.

Keywords: Ethiopia, PyTOPKAPI model, remote sensing, streamflow, Tropical Rainfall Measuring Mission (TRMM), waterBase

Procedia PDF Downloads 264
3470 A Study on Neighborhood of Dwelling with Historical-Islamic Architectural Elements

Authors: M.J. Seddighi, Moradchelleh, M. Keyvan

Abstract:

The ultimate goal in building a city is to provide pleasant, comfortable and nurturing environment as a context of public life. City environment establishes strong connection with people and their surrounding habitant, acting as relevance in social interactions between citizens itself. Urban environment and appropriate municipal facilities are the only way for proper communication between city and citizens and also citizens themselves.There is a need for complement elements between buildings and constructions to settling city life through which the move, comfort, reactions and anxiety will adjust and reflect the spirit to the city. In the surging development of society, urban’ spaces are encountered evolution, sometimes causing the symbols to fade and waste, and as a result, leading to destroy belongs among humans and their physical liquidate. Houses and living spaces exhibit materialistic reflection of life style. In the other words, way of life makes the symbolic essence of living spaces. In addition, it is of sociocultural factor of lifestyle, consisting the concepts and culture, morality, worldview, and national character. Culture is responsible for some crucial meaningful needs which can be wide because they depend on various causes such as perception and interpretation of believes, philosophy of life, interaction with neighbors and protection against climate and enemies. The bi-lateral relationship between human and nature is the main factor that needs to be properly addressed. It is because of the fact that the approach which is taken against landscape and nature has a pertinent influence on creation and shaping the structure of a house. The first response of human in tackling the environment is to build a “shelter” and place as dwelling. This has been a crucial factor in all time periods. In the proposed study, dwelling in Khorasgan’ Stream, as an area located in one of the important historical city of Iran, has been studied. Khorasgan’ Stream is the basic constituent elements of the present architectural form of Isfahan. The influence of Islamic spiritual culture and neighborhood with the historical elements on the dwelling of the selected location, subsequently on other regions of the town are presented.

Keywords: dwelling, neighborhood, historical, Islamic, architectural elements

Procedia PDF Downloads 400
3469 Adhesion Problematic for Novel Non-Crimp Fabric and Surface Modification of Carbon-Fibres Using Oxy-Fluorination

Authors: Iris Käppler, Paul Matthäi, Chokri Cherif

Abstract:

In the scope of application of technical textiles, Non-Crimp Fabrics are increasingly used. In general, NCF exhibit excellent load bearing properties, but caused by the manufacturing process, there are some remaining disadvantages which have to be reduced. Regarding to this, a novel technique of processing NCF was developed substituting the binding-thread by an adhesive. This stitch-free method requires new manufacturing concept as well as new basic methods to prove adhesion of glue at fibres and textiles. To improve adhesion properties and the wettability of carbon-fibres by the adhesive, oxyfluorination was used. The modification of carbon-fibres by oxyfluorination was investigated via scanning electron microscope, X-ray photo electron spectroscopy and single fibre tensiometry. Special tensile tests were developed to determine the maximum force required for detachment.

Keywords: non-crimp fabric, adhesive, stitch-free, high-performance fibre

Procedia PDF Downloads 339
3468 Analytical and Numerical Results for Free Vibration of Laminated Composites Plates

Authors: Mohamed Amine Ben Henni, Taher Hassaine Daouadji, Boussad Abbes, Yu Ming Li, Fazilay Abbes

Abstract:

The reinforcement and repair of concrete structures by bonding composite materials have become relatively common operations. Different types of composite materials can be used: carbon fiber reinforced polymer (CFRP), glass fiber reinforced polymer (GFRP) as well as functionally graded material (FGM). The development of analytical and numerical models describing the mechanical behavior of structures in civil engineering reinforced by composite materials is necessary. These models will enable engineers to select, design, and size adequate reinforcements for the various types of damaged structures. This study focuses on the free vibration behavior of orthotropic laminated composite plates using a refined shear deformation theory. In these models, the distribution of transverse shear stresses is considered as parabolic satisfying the zero-shear stress condition on the top and bottom surfaces of the plates without using shear correction factors. In this analysis, the equation of motion for simply supported thick laminated rectangular plates is obtained by using the Hamilton’s principle. The accuracy of the developed model is demonstrated by comparing our results with solutions derived from other higher order models and with data found in the literature. Besides, a finite-element analysis is used to calculate the natural frequencies of laminated composite plates and is compared with those obtained by the analytical approach.

Keywords: composites materials, laminated composite plate, finite-element analysis, free vibration

Procedia PDF Downloads 278
3467 Improve B-Tree Index’s Performance Using Lock-Free Hash Table

Authors: Zhanfeng Ma, Zhiping Xiong, Hu Yin, Zhengwei She, Aditya P. Gurajada, Tianlun Chen, Ying Li

Abstract:

Many RDBMS vendors use B-tree index to achieve high performance for point queries and range queries, and some of them also employ hash index to further enhance the performance as hash table is more efficient for point queries. However, there are extra overheads to maintain a separate hash index, for example, hash mapping for all data records must always be maintained, which results in more memory space consumption; locking, logging and other mechanisms are needed to guarantee ACID, which affects the concurrency and scalability of the system. To relieve the overheads, Hash Cached B-tree (HCB) index is proposed in this paper, which consists of a standard disk-based B-tree index and an additional in-memory lock-free hash table. Initially, only the B-tree index is constructed for all data records, the hash table is built on the fly based on runtime workload, only data records accessed by point queries are indexed using hash table, this helps reduce the memory footprint. Changes to hash table are done using compare-and-swap (CAS) without performing locking and logging, this helps improve the concurrency and avoid contention. The hash table is also optimized to be cache conscious. HCB index is implemented in SAP ASE database, compared with the standard B-tree index, early experiments and customer adoptions show significant performance improvement. This paper provides an overview of the design of HCB index and reports the experimental results.

Keywords: B-tree, compare-and-swap, lock-free hash table, point queries, range queries, SAP ASE database

Procedia PDF Downloads 272
3466 Topographic Characteristics Derived from UAV Images to Detect Ephemeral Gully Channels

Authors: Recep Gundogan, Turgay Dindaroglu, Hikmet Gunal, Mustafa Ulukavak, Ron Bingner

Abstract:

A majority of total soil losses in agricultural areas could be attributed to ephemeral gullies caused by heavy rains in conventionally tilled fields; however, ephemeral gully erosion is often ignored in conventional soil erosion assessments. Ephemeral gullies are often easily filled from normal soil tillage operations, which makes capturing the existing ephemeral gullies in croplands difficult. This study was carried out to determine topographic features, including slope and aspect composite topographic index (CTI) and initiation points of gully channels, using images obtained from unmanned aerial vehicle (UAV) images. The study area was located in Topcu stream watershed in the eastern Mediterranean Region, where intense rainfall events occur over very short time periods. The slope varied between 0.7 and 99.5%, and the average slope was 24.7%. The UAV (multi-propeller hexacopter) was used as the carrier platform, and images were obtained with the RGB camera mounted on the UAV. The digital terrain models (DTM) of Topçu stream micro catchment produced using UAV images and manual field Global Positioning System (GPS) measurements were compared to assess the accuracy of UAV based measurements. Eighty-one gully channels were detected in the study area. The mean slope and CTI values in the micro-catchment obtained from DTMs generated using UAV images were 19.2% and 3.64, respectively, and both slope and CTI values were lower than those obtained using GPS measurements. The total length and volume of the gully channels were 868.2 m and 5.52 m³, respectively. Topographic characteristics and information on ephemeral gully channels (location of initial point, volume, and length) were estimated with high accuracy using the UAV images. The results reveal that UAV-based measuring techniques can be used in lieu of existing GPS and total station techniques by using images obtained with high-resolution UAVs.

Keywords: aspect, compound topographic index, digital terrain model, initial gully point, slope, unmanned aerial vehicle

Procedia PDF Downloads 97
3465 Increasing Productivity through Lean Manufacturing Principles and Tools: A Successful Rail Welding Plant Case

Authors: T. A. Faria, C. C. Toniolo, L. F. Ribeiro

Abstract:

In order to satisfy the costumer’s needs, many sectors of industry and services has been spending major effort to make its processes more efficient. Facing a situation, when its production cannot cover the demand, the traditional way to achieve the production required involves, mostly, adding shifts, workforce, or even more machines. This paper narrates how lean manufacturing supported a dramatic increase of productivity at a rail welding plant in Brazil in order to meet the demand for the next years.

Keywords: productivity, lean manufacturing, rail welding, value stream mapping

Procedia PDF Downloads 346
3464 Preparation of Low-Molecular-Weight 6-Amino-6-Deoxychitosan (LM6A6DC) for Immobilization of Growth Factor

Authors: Koo-Yeon Kim, Eun-Hye Kim, Tae-Il Son

Abstract:

Epidermal Growth Factor (EGF, Mw=6,045) has been reported to have high efficiency of wound repair and anti-wrinkle effect. However, the half-life of EGF in the body is too short to exert the biological activity effectively when applied in free form. Growth Factors can be stabilized by immobilization with carbohydrates from thermal and proteolytic degradation. Low molecular weight chitosan (LMCS) and its derivate prepared by hydrogen peroxide has high solubility. LM6A6DC was successfully prepared as a reactive carbohydrate for the stabilization of EGF by the reactions of LMCS with alkalization, tosylation, azidation and reduction. The structure of LM6A6DC was confirmed by FT-IR, 1H NMR and elementary analysis. For enhancing the stability of free EGF, EGF was attached with LM6A6DC by using water-soluble carbodiimide. EGF-LM6A6DC conjugates did not show any cytotoxicity on the Normal Human Dermal Fibroblast(NHDF) 3T3 proliferation at least under 100 ㎍/㎖. In the result, it was considered that LM6A6DC is suitable to immobilize of growth factor.

Keywords: epidermal growth factor (EGF), low-molecular-weight chitosan, immobilization

Procedia PDF Downloads 458
3463 In vitro Antioxidant Activity of Caesalpinia sappan Extract

Authors: Monthon Tangjitmungman

Abstract:

Numerous diseases have been linked to oxidative stress, in which a disproportion of free radicals in the body leads to tissue or cell damage. Polyphenols are the most abundant antioxidants found in plants, and they are highly effective at scavenging oxidative free radicals. Due to the presence of phenolic compounds in Caesalpinia sappan has been discovered to have antioxidant activity. It has several health benefits, the most important of which is preventing cardiovascular and cancer diseases. This study aimed to determine the phenolic content and antioxidant activity of C. sappan extract using a variety of antioxidant assays. The extract of C. sappan was made using a mixture of solvents (ethyl alcohol: water in ratio 8:2). The total phenolic content of C. sappan extract was determined and expressed as gallic acid equivalents using the Folin-Cioucalteu method (GAE). The antioxidant activity of C. sappan extract was assessed using the 2, 2-diphenyl-1-picrylhydrazyl (DPPH) free radical scavenging assay and the ABTS radical scavenging capacity assay. An association was found between antioxidant activity and total phenol content. The antioxidant activity of C. sappan extract was also determined by DPPH and ABTS assays. The IC50 values for C. sappan extract from DPPH and ABTS assays were 54.48 μg/mL ± 0.545 and 25.46 μg/mL ± 0.790, respectively, in the DPPH assay. In the DPPH assay, vitamin C was used as a positive control, whereas Trolox was used as a positive control in the ABTS assay. In conclusion, C. sappan extract contains a high level of total phenolics and exhibits significant antioxidant activity. Nevertheless, more research should be done on the antioxidant activity, such as SOD and ROS scavenging assays and in vivo experiments, to determine whether the compound has antioxidant activity.

Keywords: ABTS assay, antioxidant activity, Caesalpinia sappan, DPPH assays, total phenolic content

Procedia PDF Downloads 365
3462 Study of a Crude Oil Desalting Plant of the National Iranian South Oil Company in Gachsaran by Using Artificial Neural Networks

Authors: H. Kiani, S. Moradi, B. Soltani Soulgani, S. Mousavian

Abstract:

Desalting/dehydration plants (DDP) are often installed in crude oil production units in order to remove water-soluble salts from an oil stream. In order to optimize this process, desalting unit should be modeled. In this research, artificial neural network is used to model efficiency of desalting unit as a function of input parameter. The result of this research shows that the mentioned model has good agreement with experimental data.

Keywords: desalting unit, crude oil, neural networks, simulation, recovery, separation

Procedia PDF Downloads 423
3461 Vibration Analysis of Functionally Graded Engesser-Timoshenko Beams Subjected to Axial Load Located on a Continuous Elastic Foundation

Authors: M. Karami Khorramabadi, A. R. Nezamabadi

Abstract:

This paper studies free vibration of functionally graded beams Subjected to Axial Load that is simply supported at both ends lies on a continuous elastic foundation. The displacement field of beam is assumed based on Engesser-Timoshenko beam theory. The Young's modulus of beam is assumed to be graded continuously across the beam thickness. Applying the Hamilton's principle, the governing equation is established. Resulting equation is solved using the Euler's Equation. The effects of the constituent volume fractions and foundation coefficient on the vibration frequency are presented. To investigate the accuracy of the present analysis, a compression study is carried out with a known data.

Keywords: functionally graded beam, free vibration, elastic foundation, Engesser-Timoshenko beam theory

Procedia PDF Downloads 400
3460 Fuzzy Logic Control for Flexible Joint Manipulator: An Experimental Implementation

Authors: Sophia Fry, Mahir Irtiza, Alexa Hoffman, Yousef Sardahi

Abstract:

This study presents an intelligent control algorithm for a flexible robotic arm. Fuzzy control is used to control the motion of the arm to maintain the arm tip at the desired position while reducing vibration and increasing the system speed of response. The Fuzzy controller (FC) is based on adding the tip angular position to the arm deflection angle and using their sum as a feedback signal to the control algorithm. This reduces the complexity of the FC in terms of the input variables, number of membership functions, fuzzy rules, and control structure. Also, the design of the fuzzy controller is model-free and uses only our knowledge about the system. To show the efficacy of the FC, the control algorithm is implemented on the flexible joint manipulator (FJM) developed by Quanser. The results show that the proposed control method is effective in terms of response time, overshoot, and vibration amplitude.

Keywords: fuzzy logic control, model-free control, flexible joint manipulators, nonlinear control

Procedia PDF Downloads 81
3459 Assessment of Antioxidant and Cholinergic Systems, and Liver Histopathologies in Lithobates catesbeianus Exposed to the Waters of an Urban Stream

Authors: Diego R. Boiarski, Camila M. Toigo, Thais M. Sobjak, Andrey F. P. Santos, Silvia Romao, Ana T. B. Guimaraes

Abstract:

Anthropogenic activities promote changes in the community’s structures and decrease the species abundance of amphibians. Biological communities of fluvial systems are assemblies of organisms that have adapted to regional conditions, including the physical environment and food resources, and are further refined through interactions with other species. The aim of this study was to assess neurotoxic alterations and in the antioxidant system on tadpoles of Lithobates catesbeianus exposed to waters from Cascavel River, in the south of Brazil. A total of 420 L of water was collected from the Cascavel River, 140 L from each of the three different locations: Site 1 – headwater; Site 2 – stretch of the stream that runs through an urbanized area; Site 3 – a stretch from the rural area. Twelve tadpoles were acclimated in each aquarium (100 L of water) for seven days. The water from each aquarium was replaced with the ones sampled from the river, except the one from the control aquarium. After seven days, a portion of the liver was removed and conditioned for ChE, SOD, CAT and LPO analysis; other part of the tissue was conditioned for histological analysis. The statistical analysis performed was one-way ANOVA, followed by post-hoc Tukey-HSD test, and the multivariate principal components analysis. It was not observed any neurotoxic effect, but a slight increase in SOD activity and elevation of CAT activity in both urban and rural environment. A decrease in LPO reaction was detected, mainly among the tadpoles exposed to the waters from the rural area. The results of the present study demonstrate the alteration of the antioxidant system, as well as liver histopathologies in tadpoles exposed mainly to waters collected in urban and rural environments. These alterations may cause the reduction in the velocity of the metamorphosis process from the tadpoles. Further, were observed histological alterations, highlighting necrotic areas mainly among the animals exposed to urban waters. Those damages can lead to metabolic dysfunction, interfering with survival capacity, diminishing not only individual fitness but for the whole population. In the interpretation synthesis of all biomarkers, the cellular damage gradient is perceptible, characterized by the variables related to the antioxidant system, due to the flow direction of the stream. This result is indicative that along the course of the creek occurs dumping of organic material, which promoted an acute response upon tadpoles of L. catesbeianus. and it was also observed the difference in tissue damage between the experimental groups and the control group, the latter presenting histological alterations, but to a lesser degree than the animals exposed to the waters of the Cascavel river. These damages, caused by reactive oxygen species possibly resulting from the contamination by organic compounds, can lead the animals to a series of metabolic dysfunctions, interfering with its metamorphosis capacity. Interruption of metamorphosis may affect survival, which may impair its growth, development and reproduction, diminishing not only the fitness of each individual but in a long-term, to the entire population.

Keywords: American bullfrog, histopathology, oxidative stress, urban creeks pollution

Procedia PDF Downloads 174
3458 Performance Assessment of Horizontal Axis Tidal Turbine with Variable Length Blades

Authors: Farhana Arzu, Roslan Hashim

Abstract:

Renewable energy is the only alternative sources of energy to meet the current energy demand, healthy environment and future growth which is considered essential for essential sustainable development. Marine renewable energy is one of the major means to meet this demand. Turbines (both horizontal and vertical) play a vital role for extraction of tidal energy. The influence of swept area on the performance improvement of tidal turbine is a vital factor to study for the reduction of relatively high power generation cost in marine industry. This study concentrates on performance investigation of variable length blade tidal turbine concept that has already been proved as an efficient way to improve energy extraction in the wind industry. The concept of variable blade length utilizes the idea of increasing swept area through the turbine blade extension when the tidal stream velocity falls below the rated condition to maximize energy capture while blade retracts above rated condition. A three bladed horizontal axis variable length blade horizontal axis tidal turbine was modelled by modifying a standard fixed length blade turbine. Classical blade element momentum theory based numerical investigation has been carried out using QBlade software to predict performance. The results obtained from QBlade were compared with the available published results and found very good agreement. Three major performance parameters (i.e., thrust, moment, and power coefficients) and power output for different blade extensions were studied and compared with a standard fixed bladed baseline turbine at certain operational conditions. Substantial improvement in performance coefficient is observed with the increase in swept area of the turbine rotor. Power generation is found to increase in great extent when operating at below rated tidal stream velocity reducing the associated cost per unit electric power generation.

Keywords: variable length blade, performance, tidal turbine, power generation

Procedia PDF Downloads 260
3457 A Caged Bird Set Free: The Women Saviors in Fae Myenne Ng's Steer Toward Rock

Authors: Hei Yuen Pak

Abstract:

Steer Toward Rock, Fae Myenne Ng’s second novel after the National Bestseller Bone, is superficially concluded as a story of pessimism, which underestimates the sophistication of Ng’s portrayal. It is often summarized as a “heartbreaking novel of unrequited love” or “a story of timeless and tragic”; yet, Ng’s novel conveys more than a mere sense of tragedy and heartbreak, but rather an overflowing warmth and optimism. Ng is complimented of “illuminating a part of U.S. history few are aware of”—the false identity established on the paper relationships. Nevertheless, toward the end of the novel, this falsity enlightens the male protagonist, Jack Moon Szeto, of the ultimate realization of the “truthfulness” to himself, with the escort of the female characters. This paper intends to investigate how Ng’s depiction subverts the traditional sex/gender system and also the patriarchal savior stereotype. This paper mainly examines the characterization of and the relations among the four major characters: Jack Moon Szeto, Joice Qwan, Veda Qwan, and Ilin Cheung. By deploying Kate Millett’s, Marilyn French’s, Mary Daly’s feminist theories, the first half of the essay elucidates the power relations between Jack and the three females Joice, Veda, and Ilin in terms of gender and sexuality. After analyzing the relations, Jack, this male caged bird, is set free by the epiphany derived from the three female characters, which is the pivot of the second half. In reference to Jean-Paul Sartre and Simone de Beauvoir’s existentialist perspectives, I argue how Jack is transformed from, in Satre’s term, being-for-others to being-for-itself. Hence, the caged bird is free by the women saviors.

Keywords: Fae Myenne Ng, gender and sexuality, feminism, power relations

Procedia PDF Downloads 553
3456 Polymer Mediated Interaction between Grafted Nanosheets

Authors: Supriya Gupta, Paresh Chokshi

Abstract:

Polymer-particle interactions can be effectively utilized to produce composites that possess physicochemical properties superior to that of neat polymer. The incorporation of fillers with dimensions comparable to polymer chain size produces composites with extra-ordinary properties owing to very high surface to volume ratio. The dispersion of nanoparticles is achieved by inducing steric repulsion realized by grafting particles with polymeric chains. A comprehensive understanding of the interparticle interaction between these functionalized nanoparticles plays an important role in the synthesis of a stable polymer nanocomposite. With the focus on incorporation of clay sheets in a polymer matrix, we theoretically construct the polymer mediated interparticle potential for two nanosheets grafted with polymeric chains. The self-consistent field theory (SCFT) is employed to obtain the inhomogeneous composition field under equilibrium. Unlike the continuum models, SCFT is built from the microscopic description taking in to account the molecular interactions contributed by both intra- and inter-chain potentials. We present the results of SCFT calculations of the interaction potential curve for two grafted nanosheets immersed in the matrix of polymeric chains of dissimilar chemistry to that of the grafted chains. The interaction potential is repulsive at short separation and shows depletion attraction for moderate separations induced by high grafting density. It is found that the strength of attraction well can be tuned by altering the compatibility between the grafted and the mobile chains. Further, we construct the interaction potential between two nanosheets grafted with diblock copolymers with one of the blocks being chemically identical to the free polymeric chains. The interplay between the enthalpic interaction between the dissimilar species and the entropy of the free chains gives rise to a rich behavior in interaction potential curve obtained for two separate cases of free chains being chemically similar to either the grafted block or the free block of the grafted diblock chains.

Keywords: clay nanosheets, polymer brush, polymer nanocomposites, self-consistent field theory

Procedia PDF Downloads 241
3455 Lead-Free Inorganic Cesium Tin-Germanium Triiodide Perovskites for Photovoltaic Application

Authors: Seyedeh Mozhgan Seyed-Talebi, Javad Beheshtian

Abstract:

The toxicity of lead associated with the lifecycle of perovskite solar cells (PSCs( is a serious concern which may prove to be a major hurdle in the path toward their commercialization. The current proposed lead-free PSCs including Ag(I), Bi(III), Sb(III), Ti(IV), Ge(II), and Sn(II) low-toxicity cations are still plagued with the critical issues of poor stability and low efficiency. This is mainly because of their chemical stability. In the present research, utilization of all inorganic CsSnGeI3 based materials offers the advantages to enhance resistance of device to degradation, reduce the cost of cells, and minimize the carrier recombination. The presence of inorganic halide perovskite improves the photovoltaic parameters of PCSs via improved surface coverage and stability. The inverted structure of simulated devices using a 1D simulator like solar cell capacitance simulator (SCAPS) version 3308 involves TCOHTL/Perovskite/ETL/Au contact layer. PEDOT:PSS, PCBM, and CsSnGeI3 used as hole transporting layer (HTL), electron transporting layer (ETL), and perovskite absorber layer in the inverted structure for the first time. The holes are injected from highly stable and air tolerant Sn0.5Ge0.5I3 perovskite composition to HTM and electrons from the perovskite to ETL. Simulation results revealed a great dependence of power conversion efficiency (PCE) on the thickness and defect density of perovskite layer. Here the effect of an increase in operating temperature from 300 K to 400 K on the performance of CsSnGeI3 based perovskite devices is investigated. Comparison between simulated CsSnGeI3 based PCSs and similar real testified devices with spiro-OMeTAD as HTL showed that the extraction of carriers at the interfaces of perovskite absorber depends on the energy level mismatches between perovskite and HTL/ETL. We believe that optimization results reported here represent a critical avenue for fabricating the stable, low-cost, efficient, and eco-friendly all-inorganic Cs-Sn-Ge based lead-free perovskite devices.

Keywords: hole transporting layer, lead-free, perovskite solar cell, SCAPS-1D, Sn-Ge based

Procedia PDF Downloads 137
3454 Plasticity in Matrix Dominated Metal-Matrix Composite with One Active Slip Based Dislocation

Authors: Temesgen Takele Kasa

Abstract:

The main aim of this paper is to suggest one active slip based continuum dislocation approach to matrix dominated MMC plasticity analysis. The approach centered the free energy principles through the continuum behavior of dislocations combined with small strain continuum kinematics. The analytical derivation of this method includes the formulation of one active slip system, the thermodynamic approach of dislocations, determination of free energy, and evolution of dislocations. In addition zero and non-zero energy dissipation analysis of dislocation evolution is also formulated by using varational energy minimization method. In general, this work shows its capability to analyze the plasticity of matrix dominated MMC with inclusions. The proposed method is also found to be capable of handling plasticity of MMC.

Keywords: active slip, continuum dislocation, distortion, dominated, energy dissipation, matrix dominated, plasticity

Procedia PDF Downloads 373
3453 Activation of Caspase 3 by Terpenoids and Flavonoids in Cancer Cell Lines

Authors: Nusrat Masood, Vijaya Dubey, Suaib Luqman

Abstract:

Caspase 3, a member of cysteine-aspartic acid protease family, is an imperative indicator for cell death particularly when substantiating apoptosis. Thus, caspase 3 is an interesting target for the discovery and development of anticancer agent. We adopted a four level assessment of both terpenoids and flavonoids and thus experimentally performed the enzymatic assay in cell free system as well as in cancer cell line which was validated through real time expression and molecular interaction studies. A significant difference was observed with both the class of natural products indicating terpenoids as better activators of caspase 3 compared to flavonoids both in the cell free system as well as in cell lines. The expression analysis, activation constant and binding energy also correlate well with the enzyme activity. Overall, terpenoids had an unswerving effect on caspase 3 in all the tested system while flavonoids indirectly affect enzyme activity.

Keywords: Caspase 3, terpenoids, flavonoids, activation constant, binding energy

Procedia PDF Downloads 221
3452 Modeling of Large Elasto-Plastic Deformations by the Coupled FE-EFGM

Authors: Azher Jameel, Ghulam Ashraf Harmain

Abstract:

In the recent years, the enriched techniques like the extended finite element method, the element free Galerkin method, and the Coupled finite element-element free Galerkin method have found wide application in modeling different types of discontinuities produced by cracks, contact surfaces, and bi-material interfaces. The extended finite element method faces severe mesh distortion issues while modeling large deformation problems. The element free Galerkin method does not have mesh distortion issues, but it is computationally more demanding than the finite element method. The coupled FE-EFGM proves to be an efficient numerical tool for modeling large deformation problems as it exploits the advantages of both FEM and EFGM. The present paper employs the coupled FE-EFGM to model large elastoplastic deformations in bi-material engineering components. The large deformation occurring in the domain has been modeled by using the total Lagrangian approach. The non-linear elastoplastic behavior of the material has been represented by the Ramberg-Osgood model. The elastic predictor-plastic corrector algorithms are used for the evaluation stresses during large deformation. Finally, several numerical problems are solved by the coupled FE-EFGM to illustrate its applicability, efficiency and accuracy in modeling large elastoplastic deformations in bi-material samples. The results obtained by the proposed technique are compared with the results obtained by XFEM and EFGM. A remarkable agreement was observed between the results obtained by the three techniques.

Keywords: XFEM, EFGM, coupled FE-EFGM, level sets, large deformation

Procedia PDF Downloads 436
3451 Development of Biosurfactant-Based Adjuvant for Enhancing Biocontrol Efficiency

Authors: Kanyarat Sikhao, Nichakorn Khondee

Abstract:

Adjuvant is commonly mixed with agricultural spray solution during foliar application to improve the performance of microbial-based biological control, including better spreading, absorption, and penetration on a plant leaf. This research aims to replace chemical surfactants in adjuvant by biosurfactants for reducing a negative impact on antagonistic microorganisms and crops. Biosurfactant was produced from Brevibacterium casei NK8 and used as a cell-free broth solution containing a biosurfactant concentration of 3.7 g/L. The studies of microemulsion formation and phase behavior were applied to obtain the suitable composition of biosurfactant-based adjuvant, consisting of cell-free broth (70-80%), coconut oil-based fatty alcohol C12-14 (3) ethoxylate (1-7%), and sodium chloride (8-30%). The suitable formula, achieving Winsor Type III microemulsion (bicontinuous), was 80% of cell-free broth, 7% of fatty alcohol C12-14 (3) ethoxylate, and 8% sodium chloride. This formula reduced the contact angle of water on parafilm from 70 to 31 degrees. The non-phytotoxicity against plant seed of Oryza sativa and Brassica rapa subsp. pekinensis were obtained from biosurfactant-based adjuvant (germination index equal and above 80%), while sodium dodecyl sulfate and tween80 showed phytotoxic effects to these plant seeds. The survival of Bacillus subtilis in biosurfactant-based adjuvant was higher than sodium dodecyl sulfate and tween80. The mixing of biosurfactant and plant-based surfactant could be considered as a viable, safer, and acceptable alternative to chemical adjuvant for sustainable organic farming.

Keywords: biosurfactant, microemulsion, bio-adjuvant, antagonistic microorganisms

Procedia PDF Downloads 125
3450 The Evaluation of Gravity Anomalies Based on Global Models by Land Gravity Data

Authors: M. Yilmaz, I. Yilmaz, M. Uysal

Abstract:

The Earth system generates different phenomena that are observable at the surface of the Earth such as mass deformations and displacements leading to plate tectonics, earthquakes, and volcanism. The dynamic processes associated with the interior, surface, and atmosphere of the Earth affect the three pillars of geodesy: shape of the Earth, its gravity field, and its rotation. Geodesy establishes a characteristic structure in order to define, monitor, and predict of the whole Earth system. The traditional and new instruments, observables, and techniques in geodesy are related to the gravity field. Therefore, the geodesy monitors the gravity field and its temporal variability in order to transform the geodetic observations made on the physical surface of the Earth into the geometrical surface in which positions are mathematically defined. In this paper, the main components of the gravity field modeling, (Free-air and Bouguer) gravity anomalies are calculated via recent global models (EGM2008, EIGEN6C4, and GECO) over a selected study area. The model-based gravity anomalies are compared with the corresponding terrestrial gravity data in terms of standard deviation (SD) and root mean square error (RMSE) for determining the best fit global model in the study area at a regional scale in Turkey. The least SD (13.63 mGal) and RMSE (15.71 mGal) were obtained by EGM2008 for the Free-air gravity anomaly residuals. For the Bouguer gravity anomaly residuals, EIGEN6C4 provides the least SD (8.05 mGal) and RMSE (8.12 mGal). The results indicated that EIGEN6C4 can be a useful tool for modeling the gravity field of the Earth over the study area.

Keywords: free-air gravity anomaly, Bouguer gravity anomaly, global model, land gravity

Procedia PDF Downloads 152
3449 Gammarus: Asellus Ratio as an Index of Organic Pollution: A Case Study in Markeaton, Kedleston Hall, and Allestree Park Lakes Derby, UK

Authors: Usman Bawa

Abstract:

Macro-invertebrates have been used to monitor organic pollution in rivers and streams. Several biotic indices based on macro-invertebrates have been developed over the years including the Biological Monitoring Working Party (BMWP). A new biotic index, the Gammarus:Asellus ratio has been recently proposed as an index of organic pollution. This study tested the validity of the Gammarus:Asellus ratio as an index of organic pollution, by examining the relationship between the Gammarus:Asellus ratio and physical-chemical parameters, and other biotic indices such as BMWP and, Average Score Per Taxon (ASPT) from lakes and streams at Markeaton Park, Allestree Park, and Kedleston Hall, Derbyshire. Macro invertebrates were sampled using the standard five-minute kick sampling techniques physical and chemical environmental variables were obtained based on standard sampling techniques. Eighteen sites were sampled, six sites from Markeaton Park (three sites across the stream and three sites across the lake). Six sites each were also sampled from Allestree Park and Kedleston Hall lakes. The Gammarus:Asellus ratio showed an opposite significant positive correlations with parameters indicative of organic pollution such as the level of nitrates, phosphates, and calcium and also revealed a negatively significant correlations with other biotic indices (BMWP/ASPT). The BMWP score correlated positively significantly with some water quality parameters such as dissolved oxygen and flow rate, but revealed no correlations with other chemical environmental variables. The BMWP score was significantly higher in the stream than the lake in Markeaton Park, also The ASPT scores appear to be significantly higher in the upper Lakes than the middle and lower lakes. This study has further strengthened the use of BMWP/ASPT score as an index of organic pollution. But, additional application is required to validate the use of Gammarus:Asellus as a rapid bio monitoring tool.

Keywords: Asellus, biotic index, Gammarus, macro invertebrates, organic pollution

Procedia PDF Downloads 327
3448 Refractive Index, Excess Molar Volume and Viscometric Study of Binary Liquid Mixture of Morpholine with Cumene at 298.15 K, 303.15 K, and 308.15 K

Authors: B. K. Gill, Himani Sharma, V. K. Rattan

Abstract:

Experimental data of refractive index, excess molar volume and viscosity of binary mixture of morpholine with cumene over the whole composition range at 298.15 K, 303.15 K, 308.15 K and normal atmospheric pressure have been measured. The experimental data were used to compute the density, deviation in molar refraction, deviation in viscosity and excess Gibbs free energy of activation as a function of composition. The experimental viscosity data have been correlated with empirical equations like Grunberg- Nissan, Herric correlation and three body McAllister’s equation. The excess thermodynamic properties were fitted to Redlich-Kister polynomial equation. The variation of these properties with composition and temperature of the binary mixtures are discussed in terms of intermolecular interactions.

Keywords: cumene, excess Gibbs free energy, excess molar volume, morpholine

Procedia PDF Downloads 313
3447 A New Approach in a Problem of a Supersonic Panel Flutter

Authors: M. V. Belubekyan, S. R. Martirosyan

Abstract:

On the example of an elastic rectangular plate streamlined by a supersonic gas flow, we have investigated the phenomenon of divergence and of panel flatter of the overrunning of the gas flow at a free edge under assumption of the presence of concentrated inertial masses and moments at the free edge. We applied a new approach of finding of solution of these problems, which was developed based on the algorithm for an analytical solution finding. This algorithm is easy to use for theoretical studies for the wides circle of nonconservative problems of linear elastic stability. We have established the relation between the characteristics of natural vibrations of the plate and velocity of the streamlining gas flow, which enables one to draw some conclusions on the stability of disturbed motion of the plate depending on the parameters of the system plate-flow. Its solution shows that either the divergence or the localized divergence and the flutter instability are possible. The regions of the stability and instability in space of parameters of the problem are identified. We have investigated the dynamic behavior of the disturbed motion of the panel near the boundaries of region of the stability. The safe and dangerous boundaries of region of the stability are found. The transition through safe boundary of the region of the stability leads to the divergence or localized divergence arising in the vicinity of free edge of the rectangular plate. The transition through dangerous boundary of the region of the stability leads to the panel flutter. The deformations arising at the flutter are more dangerous to the skin of the modern aircrafts and rockets resulting to the loss of the strength and appearance of the fatigue cracks.

Keywords: stability, elastic plate, divergence, localized divergence, supersonic panels flutter

Procedia PDF Downloads 441
3446 Hydrodynamic Characterisation of a Hydraulic Flume with Sheared Flow

Authors: Daniel Rowe, Christopher R. Vogel, Richard H. J. Willden

Abstract:

The University of Oxford’s recirculating water flume is a combined wave and current test tank with a 1 m depth, 1.1 m width, and 10 m long working section, and is capable of flow speeds up to 1 ms−1 . This study documents the hydrodynamic characteristics of the facility in preparation for experimental testing of horizontal axis tidal stream turbine models. The turbine to be tested has a rotor diameter of 0.6 m and is a modified version of one of two model-scale turbines tested in previous experimental campaigns. An Acoustic Doppler Velocimeter (ADV) was used to measure the flow at high temporal resolution at various locations throughout the flume, enabling the spatial uniformity and turbulence flow parameters to be investigated. The mean velocity profiles exhibited high levels of spatial uniformity at the design speed of the flume, 0.6 ms−1 , with variations in the three-dimensional velocity components on the order of ±1% at the 95% confidence level, along with a modest streamwise acceleration through the measurement domain, a target 5 m working section of the flume. A high degree of uniformity was also apparent for the turbulence intensity, with values ranging between 1-2% across the intended swept area of the turbine rotor. The integral scales of turbulence exhibited a far higher degree of variation throughout the water column, particularly in the streamwise and vertical scales. This behaviour is believed to be due to the high signal noise content leading to decorrelation in the sampling records. To achieve more realistic levels of vertical velocity shear in the flume, a simple procedure to practically generate target vertical shear profiles in open-channel flows is described. Here, the authors arranged a series of non-uniformly spaced parallel bars placed across the width of the flume and normal to the onset flow. By adjusting the resistance grading across the height of the working section, the downstream profiles could be modified accordingly, characterised by changes in the velocity profile power law exponent, 1/n. Considering the significant temporal variation in a tidal channel, the choice of the exponent denominator, n = 6 and n = 9, effectively provides an achievable range around the much-cited value of n = 7 observed at many tidal sites. The resulting flow profiles, which we intend to use in future turbine tests, have been characterised in detail. The results indicate non-uniform vertical shear across the survey area and reveal substantial corner flows, arising from the differential shear between the target vertical and cross-stream shear profiles throughout the measurement domain. In vertically sheared flow, the rotor-equivalent turbulence intensity ranges between 3.0-3.8% throughout the measurement domain for both bar arrangements, while the streamwise integral length scale grows from a characteristic dimension on the order of the bar width, similar to the flow downstream of a turbulence-generating grid. The experimental tests are well-defined and repeatable and serve as a reference for other researchers who wish to undertake similar investigations.

Keywords: acoustic doppler Velocimeter, experimental hydrodynamics, open-channel flow, shear profiles, tidal stream turbines

Procedia PDF Downloads 68
3445 Towards Carbon-Free Communities: A Compilation of Urban Design Criteria for Sustainable Neighborhoods

Authors: Atefeh Kalantari

Abstract:

The increase in population and energy consumption has caused environmental crises such as the energy crisis, increased pollution, and climate change, all of which have resulted in a decline in the quality of life, especially in urban environments. Iran is one of the developing countries which faces several challenges concerning energy use and environmental sustainability such as air pollution, climate change, and energy security. On the other hand, due to its favorable geographic characteristics, Iran has diverse and accessible renewable sources, which provide appropriate substitutes to reduce dependence on fossil fuels. Sustainable development programs and post-carbon cities rely on implementing energy policies in different sectors of society, particularly, the built environment sector is one of the main ones responsible for energy consumption and carbon emissions for cities. Because of this, several advancements and programs are being implemented to promote energy efficiency for urban planning, and city experts, like others, are looking for solutions to deal with these problems. Among the solutions provided for this purpose, low-carbon design can be mentioned. Among the different scales, the neighborhood can be mentioned as a suitable scale for applying the principles and solutions of low-carbon urban design; Because the neighborhood as a "building unit of the city" includes elements and flows that all affect the number of CO2 emissions. The article aims to provide criteria for designing a low-carbon and carbon-free neighborhood through descriptive methods and secondary data analysis. The ultimate goal is to promote energy efficiency and create a more resilient and livable environment for local residents.

Keywords: climate change, low-carbon urban design, carbon-free neighborhood, resilience

Procedia PDF Downloads 61
3444 End-to-End Performance of MPPM in Multihop MIMO-FSO System Over Dependent GG Atmospheric Turbulence Channels

Authors: Hechmi Saidi, Noureddine Hamdi

Abstract:

The performance of decode and forward (DF) multihop free space optical (FSO) scheme deploying multiple input multiple output (MIMO) configuration under gamma-gamma (GG) statistical distribution, that adopts M-ary pulse position modulation (MPPM) coding, is investigated. We have extracted exact and estimated values of symbol-error rates (SERs) respectively. The probability density function (PDF)’s closed-form formula is expressed for our designed system. Thanks to the use of DF multihop MIMO FSO configuration and MPPM signaling, atmospheric turbulence is combatted; hence the transmitted signal quality is improved.

Keywords: free space optical, gamma gamma channel, radio frequency, decode and forward, multiple-input multiple-output, M-ary pulse position modulation, symbol error rate

Procedia PDF Downloads 235
3443 Brewing in a Domestic Refrigerator Using Freeze-Dried Raw Materials

Authors: Angelika-Ioanna Gialleli, Gousi Mantha, Maria Kanellaki, Bekatorou Argyro, Athanasios Koutinas

Abstract:

In this study, a new brewing technology with dry raw materials is proposed with potential application in home brewing. Bio catalysts were prepared by immobilization of the psychrotolerant yeast strain Saccharomyces cerevisiae AXAZ-1 on tubular cellulose. Both the word and the biocatalysts were freeze-dried without any cryoprotectants and used for low temperature brewing. The combination of immobilization and freeze-drying techniques was applied successfully, giving a potential for supplying breweries with preserved and ready-to-use immobilized cells. The effect of wort sugar concentration (7°, 8.5°, 10°Be), temperature (2, 5, 7° C) and carrier concentration (5, 10, 20 g/L) on fermentation kinetics and final product quality (volatiles, colour, polyphenols, bitterness) was assessed. The same procedure was repeated with free cells for comparison of the results. The results for immobilized cells were better compared to free cells regarding fermentation kinetics and organoleptic characteristics.

Keywords: brewing, tubular cellulose, low temperature, biocatalyst

Procedia PDF Downloads 311
3442 Pilot-free Image Transmission System of Joint Source Channel Based on Multi-Level Semantic Information

Authors: Linyu Wang, Liguo Qiao, Jianhong Xiang, Hao Xu

Abstract:

In semantic communication, the existing joint Source Channel coding (JSCC) wireless communication system without pilot has unstable transmission performance and can not effectively capture the global information and location information of images. In this paper, a pilot-free image transmission system of joint source channel based on multi-level semantic information (Multi-level JSCC) is proposed. The transmitter of the system is composed of two networks. The feature extraction network is used to extract the high-level semantic features of the image, compress the information transmitted by the image, and improve the bandwidth utilization. Feature retention network is used to preserve low-level semantic features and image details to improve communication quality. The receiver also is composed of two networks. The received high-level semantic features are fused with the low-level semantic features after feature enhancement network in the same dimension, and then the image dimension is restored through feature recovery network, and the image location information is effectively used for image reconstruction. This paper verifies that the proposed multi-level JSCC algorithm can effectively transmit and recover image information in both AWGN channel and Rayleigh fading channel, and the peak signal-to-noise ratio (PSNR) is improved by 1~2dB compared with other algorithms under the same simulation conditions.

Keywords: deep learning, JSCC, pilot-free picture transmission, multilevel semantic information, robustness

Procedia PDF Downloads 102