Search results for: step gradient solvent system
20693 The Use of Stochastic Gradient Boosting Method for Multi-Model Combination of Rainfall-Runoff Models
Authors: Phanida Phukoetphim, Asaad Y. Shamseldin
Abstract:
In this study, the novel Stochastic Gradient Boosting (SGB) combination method is addressed for producing daily river flows from four different rain-runoff models of Ohinemuri catchment, New Zealand. The selected rainfall-runoff models are two empirical black-box models: linear perturbation model and linear varying gain factor model, two conceptual models: soil moisture accounting and routing model and Nedbør-Afrstrømnings model. In this study, the simple average combination method and the weighted average combination method were used as a benchmark for comparing the results of the novel SGB combination method. The models and combination results are evaluated using statistical and graphical criteria. Overall results of this study show that the use of combination technique can certainly improve the simulated river flows of four selected models for Ohinemuri catchment, New Zealand. The results also indicate that the novel SGB combination method is capable of accurate prediction when used in a combination method of the simulated river flows in New Zealand.Keywords: multi-model combination, rainfall-runoff modeling, stochastic gradient boosting, bioinformatics
Procedia PDF Downloads 34320692 Importance of Solubility and Bubble Pressure Models to Predict Pressure of Nitrified Oil Based Drilling Fluid in Dual Gradient Drilling
Authors: Sajjad Negahban, Ruihe Wang, Baojiang Sun
Abstract:
Gas-lift dual gradient drilling is a solution for deepwater drilling challenges. As well, Continuous development of drilling technology leads to increase employment of mineral oil based drilling fluids and synthetic-based drilling fluids, which have adequate characteristics such as: high rate of penetration, lubricity, shale inhibition and low toxicity. The paper discusses utilization of nitrified mineral oil base drilling for deepwater drilling and for more accurate prediction of pressure in DGD at marine riser, solubility and bubble pressure were considered in steady state hydraulic model. The Standing bubble pressure and solubility correlations, and two models which were acquired from experimental determination were applied in hydraulic model. The effect of the black oil correlations, and new solubility and bubble pressure models was evaluated on the PVT parameters such as oil formation volume factor, density, viscosity, volumetric flow rate. Eventually, the consequent simulated pressure profile due to these models was presented.Keywords: solubility, bubble pressure, gas-lift dual gradient drilling, steady state hydraulic model
Procedia PDF Downloads 27920691 Multi-Vehicle Detection Using Histogram of Oriented Gradients Features and Adaptive Sliding Window Technique
Authors: Saumya Srivastava, Rina Maiti
Abstract:
In order to achieve a better performance of vehicle detection in a complex environment, we present an efficient approach for a multi-vehicle detection system using an adaptive sliding window technique. For a given frame, image segmentation is carried out to establish the region of interest. Gradient computation followed by thresholding, denoising, and morphological operations is performed to extract the binary search image. Near-region field and far-region field are defined to generate hypotheses using the adaptive sliding window technique on the resultant binary search image. For each vehicle candidate, features are extracted using a histogram of oriented gradients, and a pre-trained support vector machine is applied for hypothesis verification. Later, the Kalman filter is used for tracking the vanishing point. The experimental results show that the method is robust and effective on various roads and driving scenarios. The algorithm was tested on highways and urban roads in India.Keywords: gradient, vehicle detection, histograms of oriented gradients, support vector machine
Procedia PDF Downloads 12720690 A Hybrid Normalized Gradient Correlation Based Thermal Image Registration for Morphoea
Authors: L. I. Izhar, T. Stathaki, K. Howell
Abstract:
Analyzing and interpreting of thermograms have been increasingly employed in the diagnosis and monitoring of diseases thanks to its non-invasive, non-harmful nature and low cost. In this paper, a novel system is proposed to improve diagnosis and monitoring of morphoea skin disorder based on integration with the published lines of Blaschko. In the proposed system, image registration based on global and local registration methods are found inevitable. This paper presents a modified normalized gradient cross-correlation (NGC) method to reduce large geometrical differences between two multimodal images that are represented by smooth gray edge maps is proposed for the global registration approach. This method is improved further by incorporating an iterative-based normalized cross-correlation coefficient (NCC) method. It is found that by replacing the final registration part of the NGC method where translational differences are solved in the spatial Fourier domain with the NCC method performed in the spatial domain, the performance and robustness of the NGC method can be greatly improved. It is shown in this paper that the hybrid NGC method not only outperforms phase correlation (PC) method but also improved misregistration due to translation, suffered by the modified NGC method alone for thermograms with ill-defined jawline. This also demonstrates that by using the gradients of the gray edge maps and a hybrid technique, the performance of the PC based image registration method can be greatly improved.Keywords: Blaschko’s lines, image registration, morphoea, thermal imaging
Procedia PDF Downloads 31520689 Study of the Responding Time for Low Permeability Reservoirs
Authors: G. Lei, P. C. Dong, X. Q. Cen, S. Y. Mo
Abstract:
One of the most significant parameters, describing the effect of water flooding in porous media, is flood-response time, and it is an important index in oilfield development. The responding time in low permeability reservoir is usually calculated by the method of stable state successive substitution neglecting the effect of medium deformation. Numerous studies show that the media deformation has an important impact on the development for low permeability reservoirs and can not be neglected. On the base of streamline tube model, we developed a method to interpret responding time with medium deformation factor. The results show that: the media deformation factor, threshold pressure gradient and well spacing have a significant effect on the flood response time. The greater the media deformation factor, threshold pressure gradient or well spacing is, the lower the flood response time is. The responding time of different streamlines varies. As the angle with the main streamline increases, the water flooding response time delays as a "parabola" shape.Keywords: low permeability, flood-response time, threshold pressure gradient, medium deformation
Procedia PDF Downloads 50220688 Adversarial Attacks and Defenses on Deep Neural Networks
Authors: Jonathan Sohn
Abstract:
Deep neural networks (DNNs) have shown state-of-the-art performance for many applications, including computer vision, natural language processing, and speech recognition. Recently, adversarial attacks have been studied in the context of deep neural networks, which aim to alter the results of deep neural networks by modifying the inputs slightly. For example, an adversarial attack on a DNN used for object detection can cause the DNN to miss certain objects. As a result, the reliability of DNNs is undermined by their lack of robustness against adversarial attacks, raising concerns about their use in safety-critical applications such as autonomous driving. In this paper, we focus on studying the adversarial attacks and defenses on DNNs for image classification. There are two types of adversarial attacks studied which are fast gradient sign method (FGSM) attack and projected gradient descent (PGD) attack. A DNN forms decision boundaries that separate the input images into different categories. The adversarial attack slightly alters the image to move over the decision boundary, causing the DNN to misclassify the image. FGSM attack obtains the gradient with respect to the image and updates the image once based on the gradients to cross the decision boundary. PGD attack, instead of taking one big step, repeatedly modifies the input image with multiple small steps. There is also another type of attack called the target attack. This adversarial attack is designed to make the machine classify an image to a class chosen by the attacker. We can defend against adversarial attacks by incorporating adversarial examples in training. Specifically, instead of training the neural network with clean examples, we can explicitly let the neural network learn from the adversarial examples. In our experiments, the digit recognition accuracy on the MNIST dataset drops from 97.81% to 39.50% and 34.01% when the DNN is attacked by FGSM and PGD attacks, respectively. If we utilize FGSM training as a defense method, the classification accuracy greatly improves from 39.50% to 92.31% for FGSM attacks and from 34.01% to 75.63% for PGD attacks. To further improve the classification accuracy under adversarial attacks, we can also use a stronger PGD training method. PGD training improves the accuracy by 2.7% under FGSM attacks and 18.4% under PGD attacks over FGSM training. It is worth mentioning that both FGSM and PGD training do not affect the accuracy of clean images. In summary, we find that PGD attacks can greatly degrade the performance of DNNs, and PGD training is a very effective way to defend against such attacks. PGD attacks and defence are overall significantly more effective than FGSM methods.Keywords: deep neural network, adversarial attack, adversarial defense, adversarial machine learning
Procedia PDF Downloads 19720687 Production of Organic Solvent Tolerant Hydrolytic Enzymes (Amylase and Protease) by Bacteria Isolated from Soil of a Dairy Farm
Authors: Alok Kumar, Hari Ram, Lebin Thomas, Ved Pal Singh
Abstract:
Organic solvent tolerant amylases and proteases of microbial origin are in great demand for their application in transglycosylation of water-insoluble flavanoids and in peptide synthesizing reaction in organic media. Most of the amylases and proteases are unstable in presence of organic solvent. In the present work two different bacterial strains M-11 and VP-07 were isolated from the soil sample of a dairy farm in Delhi, India, for the efficient production of extracellular amylase and protease through their screening on starch agar (SA) and skimmed milk agar (SMA) plates, respectively. Both the strains (M-11 and VP-07) were identified based on morphological, biochemical and 16S rRNA gene sequencing methods. After analysis through Ez-Taxon software, the strains M-11 and VP-07 were found to have maximum pairwise similarity of 98.63% and 100% with Bacillus subtilis subsp. inaquosorum BGSC 3A28 and Bacillus anthracis ATCC 14578 and were therefore identified as Bacillus sp. UKS1 and Bacillus sp. UKS2, respectively. Time course study of enzyme activity and bacterial growth has shown that both strains exhibited typical sigmoid growth behavior and maximum production of amylase (180 U/ml) and protease (78 U/ml) by these strains (UKS1 and UKS2) was commenced during stationary phase of growth at 24 and 20 h, respectively. Thereafter, both amylase and protease were tested for their tolerance towards organic solvents and were found to be active as well stable in p-xylene (130% and 115%), chloroform (110% and 112%), isooctane (119% and 107%), benzene (121% and 104%), n-hexane (116% and 103%) and toluene (112% and 101%, respectively). Owing to such properties, these enzymes can be exploited for their potential application in industries for organic synthesis.Keywords: amylase, enzyme activity, industrial applications, organic solvent tolerant, protease
Procedia PDF Downloads 34820686 Miniaturizing the Volumetric Titration of Free Nitric Acid in U(vi) Solutions: On the Lookout for a More Sustainable Process Radioanalytical Chemistry through Titration-On-A-Chip
Authors: Jose Neri, Fabrice Canto, Alastair Magnaldo, Laurent Guillerme, Vincent Dugas
Abstract:
A miniaturized and automated approach for the volumetric titration of free nitric acid in U(VI) solutions is presented. Free acidity measurement refers to the acidity quantification in solutions containing hydrolysable heavy metal ions such as U(VI), U(IV) or Pu(IV) without taking into account the acidity contribution from the hydrolysis of such metal ions. It is, in fact, an operation having an essential role for the control of the nuclear fuel recycling process. The main objective behind the technical optimization of the actual ‘beaker’ method was to reduce the amount of radioactive substance to be handled by the laboratory personnel, to ease the instrumentation adjustability within a glove-box environment and to allow a high-throughput analysis for conducting more cost-effective operations. The measurement technique is based on the concept of the Taylor-Aris dispersion in order to create inside of a 200 μm x 5cm circular cylindrical micro-channel a linear concentration gradient in less than a second. The proposed analytical methodology relies on the actinide complexation using pH 5.6 sodium oxalate solution and subsequent alkalimetric titration of nitric acid with sodium hydroxide. The titration process is followed with a CCD camera for fluorescence detection; the neutralization boundary can be visualized in a detection range of 500nm- 600nm thanks to the addition of a pH sensitive fluorophore. The operating principle of the developed device allows the active generation of linear concentration gradients using a single cylindrical micro channel. This feature simplifies the fabrication and ease of use of the micro device, as it does not need a complex micro channel network or passive mixers to generate the chemical gradient. Moreover, since the linear gradient is determined by the liquid reagents input pressure, its generation can be fully achieved in faster intervals than one second, being a more timely-efficient gradient generation process compared to other source-sink passive diffusion devices. The resulting linear gradient generator device was therefore adapted to perform for the first time, a volumetric titration on a chip where the amount of reagents used is fixed to the total volume of the micro channel, avoiding an important waste generation like in other flow-based titration techniques. The associated analytical method is automated and its linearity has been proven for the free acidity determination of U(VI) samples containing up to 0.5M of actinide ion and nitric acid in a concentration range of 0.5M to 3M. In addition to automation, the developed analytical methodology and technique greatly improves the standard off-line oxalate complexation and alkalimetric titration method by reducing a thousand fold the required sample volume, forty times the nuclear waste per analysis as well as the analysis time by eight-fold. The developed device represents, therefore, a great step towards an easy-to-handle nuclear-related application, which in the short term could be used to improve laboratory safety as much as to reduce the environmental impact of the radioanalytical chain.Keywords: free acidity, lab-on-a-chip, linear concentration gradient, Taylor-Aris dispersion, volumetric titration
Procedia PDF Downloads 39020685 An Axiomatic Model for Development of the Allocated Architecture in Systems Engineering Process
Authors: Amir Sharahi, Reza Tehrani, Ali Mollajan
Abstract:
The final step to complete the “Analytical Systems Engineering Process” is the “Allocated Architecture” in which all Functional Requirements (FRs) of an engineering system must be allocated into their corresponding Physical Components (PCs). At this step, any design for developing the system’s allocated architecture in which no clear pattern of assigning the exclusive “responsibility” of each PC for fulfilling the allocated FR(s) can be found is considered a poor design that may cause difficulties in determining the specific PC(s) which has (have) failed to satisfy a given FR successfully. The present study utilizes the Axiomatic Design method principles to mathematically address this problem and establishes an “Axiomatic Model” as a solution for reaching good alternatives for developing the allocated architecture. This study proposes a “loss Function”, as a quantitative criterion to monetarily compare non-ideal designs for developing the allocated architecture and choose the one which imposes relatively lower cost to the system’s stakeholders. For the case-study, we use the existing design of U. S. electricity marketing subsystem, based on data provided by the U.S. Energy Information Administration (EIA). The result for 2012 shows the symptoms of a poor design and ineffectiveness due to coupling among the FRs of this subsystem.Keywords: allocated architecture, analytical systems engineering process, functional requirements (FRs), physical components (PCs), responsibility of a physical component, system’s stakeholders
Procedia PDF Downloads 41120684 Analysis of Gait Characteristics Using Dynamic Foot Scanner in Type 2 Diabetes Mellitus
Authors: C. G. Shashi Kumar, G. Arun Maiya, H. Manjunath Hande, K. V. Rajagopal
Abstract:
Background: Diabetes mellitus (DM) is a metabolic disorder with involvement of neurovascular and muscular system. Studies have documented that the gait parameter is altered in type 2 diabetes mellitus with peripheral neuropathy. However, there is a dearth of literature regarding the gait characteristics in type 2 diabetes mellitus (T2DM) without peripheral neuropathy. Therefore, the present study is focused on identifying gait changes in early type 2 diabetes mellitus without peripheral neuropathy. Objective: To analyze the gait characteristics in Type 2 diabetes mellitus without peripheral neuropathy. Methods: After obtaining ethical clearance from Institutional Ethical Committee (IEC), 36 T2DM without peripheral neuropathy and 32 matched healthy subjects were recruited. Gait characteristics (step duration, gait cycle length, gait cycle duration, stride duration, step length, double stance duration) of all the subjects were analyzed using Windtrack dynamic foot scanner. Data were analyzed using Independent‘t’ test to find the difference between the groups (step duration, gait cycle length, gait cycle duration) and Mann-Whitney test was used to analyze the step length and double stance duration to find difference between the groups. Level of significance was kept at P<0.05. Results: Result analysis showed significant decrease in step duration, gait cycle length, gait cycle duration, step length, double stance duration in T2DM subjects as compared to healthy subjects. We also observed a mean increase in stride duration in T2DM subjects compared to healthy subjects.Keywords: type 2 diabetes mellitus, dynamic foot scan, gait characteristics, medical and health sciences
Procedia PDF Downloads 44220683 Design Analysis of Tilting System for Spacecraft Transportation
Authors: P. Naresh, Amir Iqbal
Abstract:
Satellite transportation is inevitable step during the course of integration testing and launch. Large satellites are transported in horizontal mode due to constraints on commercially available cargo bay dimensions & on road obstacles. To facilitate transportation of bigger size spacecraft in horizontal mode a tilting system is released. This tilting system consists of tilt table, columns, hinge pin, angular contact bearings, slewing bearing and linear actuators. The tilting system is very compact and easy to use however it is also serves the purpose of a fixture so it is of immense interest to know the stress and fundamental frequency of the system in transportation configuration. This paper discusses design aspects and finite element analysis of tilting system-cum-fixture using Hypermesh/Nastran.Keywords: tilt table, column, slewing bearing, stress, modal analysis
Procedia PDF Downloads 57720682 Recovery of Au and Other Metals from Old Electronic Components by Leaching and Liquid Extraction Process
Authors: Tomasz Smolinski, Irena Herdzik-Koniecko, Marta Pyszynska, M. Rogowski
Abstract:
Old electronic components can be easily found nowadays. Significant quantities of valuable metals such as gold, silver or copper are used for the production of advanced electronic devices. Old useless electronic device slowly became a new source of precious metals, very often more efficient than natural. For example, it is possible to recover more gold from 1-ton personal computers than seventeen tons of gold ore. It makes urban mining industry very profitable and necessary for sustainable development. For the recovery of metals from waste of electronic equipment, various treatment options based on conventional physical, hydrometallurgical and pyrometallurgical processes are available. In this group hydrometallurgy processes with their relatively low capital cost, low environmental impact, potential for high metal recoveries and suitability for small scale applications, are very promising options. Institute of Nuclear Chemistry and Technology has great experience in hydrometallurgy processes especially focused on recovery metals from industrial and agricultural wastes. At the moment, urban mining project is carried out. The method of effective recovery of valuable metals from central processing units (CPU) components has been developed. The principal processes such as acidic leaching and solvent extraction were used for precious metals recovery from old processors and graphic cards. Electronic components were treated by acidic solution at various conditions. Optimal acid concentration, time of the process and temperature were selected. Precious metals have been extracted to the aqueous phase. At the next step, metals were selectively extracted by organic solvents such as oximes or tributyl phosphate (TBP) etc. Multistage mixer-settler equipment was used. The process was optimized.Keywords: electronic waste, leaching, hydrometallurgy, metal recovery, solvent extraction
Procedia PDF Downloads 14020681 Investigation of Geothermal Gradient of the Niger Delta from Recent Studies
Authors: Adedapo Jepson Olumide, Kurowska Ewa, K. Schoeneich, Ikpokonte A. Enoch
Abstract:
In this paper, subsurface temperature measured from continuous temperature logs were used to determine the geothermal gradient of NigerDelta sedimentary basin. The measured temperatures were corrected to the true subsurface temperatures by applying the American Association of Petroleum Resources (AAPG) correction factor, borehole temperature correction factor with La Max’s correction factor and Zeta Utilities borehole correction factor. Geothermal gradient in this basin ranges from 1.20C to 7.560C/100m. Six geothermal anomalies centres were observed at depth in the southern parts of the Abakaliki anticlinorium around Onitsha, Ihiala, Umuaha area and named A1 to A6 while two more centre appeared at depth of 3500m and 4000m named A7 and A8 respectively. Anomaly A1 describes the southern end of the Abakaliki anticlinorium and extends southwards, anomaly A2 to A5 were found associated with a NW-SE structural alignment of the Calabar hinge line with structures describing the edge of the Niger Delta basin with the basement block of the Oban massif. Anomaly A6 locates in the south-eastern part of the basin offshore while A7 and A8 are located in the south western part of the basin offshore. At the average exploratory depth of 3500m, the geothermal gradient values for these anomalies A1, A2, A3, A4, A5, A6, A7, and A8 are 6.50C/100m, 1.750C/100m, 7.50C/100m, 1.250C/100m, 6.50C/100m, 5.50C/100m, 60C/100m, and 2.250C/100m respectively. Anomaly A8 area may yield higher thermal value at greater depth than 3500m. These results show that anomalies areas of A1, A3, A5, A6 and A7 are potentially prospective and explorable for geothermal energy using abandoned oil wells in the study area. Anomalies A1, A3.A5, A6 occur at areas where drilled boreholes were not exploitable for oil and gas but for the remaining areas where wells are so exploitable there appears no geothermal anomaly. Geothermal energy is environmentally friendly, clean and reversible.Keywords: temperature logs, geothermal gradient anomalies, alternative energy, Niger delta basin
Procedia PDF Downloads 28320680 Eco-Benign and Highly Efficient Procedures for the Synthesis of Amides Catalyzed by Heteropolyanion-Based Ionic Liquids under Solvent-Free Conditions
Authors: Zhikai Chena, Renzhong Fu, Wen Chaib, Rongxin Yuanb
Abstract:
Two eco-benign and highly efficient routes for the synthesis of amides have been developed by treating amines with corresponding carboxylic acids or carboxamides in the presence of heteropolyanion-based ionic liquids (HPAILs) as catalysts. These practical reactions can tolerate a wide range of substrates. Thus, various amides were obtained in good to excellent yields under solvent-free conditions at heating. Moreover, recycling studies revealed that HPAILs are easily reusable for this two procedures. These methods provide green and much improved protocols over the existing methods.Keywords: synthesis, amide, ıonic liquid, catalyst
Procedia PDF Downloads 26220679 Extraction of Essential Oil From Orange Peels
Authors: Aayush Bhisikar, Neha Rajas, Aditya Bhingare, Samarth Bhandare, Amruta Amrurkar
Abstract:
Orange peels are currently thrown away as garbage in India after orange fruits' edible components are consumed. However, the nation depends on important essential oils for usage in companies that produce goods, including food, beverages, cosmetics, and medicines. This study was conducted to show how to effectively use it. By using various extraction techniques, orange peel is used in the creation of essential oils. Stream distillation, water distillation, and solvent extraction were the techniques taken into consideration in this paper. Due to its relative prevalence among the extraction techniques, Design Expert 7.0 was used to plan an experimental run for solvent extraction. Oil was examined to ascertain its physical and chemical characteristics after extraction. It was determined from the outcomes that the orange peels.Keywords: orange peels, extraction, essential oil, distillation
Procedia PDF Downloads 9220678 Extraction of Essential Oil from Orange Peels
Authors: Neha Rajas, Aayush Bhisikar, Samarth Bhandare, Aditya Bhingare, Amruta Amrutkar
Abstract:
Orange peels are currently thrown away as garbage in India after orange fruits' edible components are consumed. However, the nation depends on important essential oils for usage in companies that produce goods, including food, beverages, cosmetics, and medicines. This study was conducted to show how to effectively use it. By using various extraction techniques, orange peel is used in the creation of essential oils. Stream distillation, water distillation, and solvent extraction were the techniques taken into consideration in this paper. Due to its relative prevalence among the extraction techniques, Design Expert 7.0 was used to plan an experimental run for solvent extraction. Oil was examined to ascertain its physical and chemical characteristics after extraction. It was determined from the outcomes that the orange peels.Keywords: orange peels, extraction, distillation, essential oil
Procedia PDF Downloads 8420677 Prediction of Trailing-Edge Noise under Adverse-Pressure Gradient Effect
Authors: Li Chen
Abstract:
For an aerofoil or hydrofoil in high Reynolds number flows, broadband noise is generated efficiently as the result of the turbulence convecting over the trailing edge. This noise can be related to the surface pressure fluctuations, which can be predicted by either CFD or empirical models. However, in reality, the aerofoil or hydrofoil often operates at an angle of attack. Under this situation, the flow is subjected to an Adverse-Pressure-Gradient (APG), and as a result, a flow separation may occur. This study is to assess trailing-edge noise models for such flows. In the present work, the trailing-edge noise from a 2D airfoil at 6 degree of angle of attach is investigated. Under this condition, the flow is experiencing a strong APG, and the flow separation occurs. The flow over the airfoil with a chord of 300 mm, equivalent to a Reynold Number 4x10⁵, is simulated using RANS with the SST k-ɛ turbulent model. The predicted surface pressure fluctuations are compared with the published experimental data and empirical models, and show a good agreement with the experimental data. The effect of the APG on the trailing edge noise is discussed, and the associated trailing edge noise is calculated.Keywords: aero-acoustics, adverse-pressure gradient, computational fluid dynamics, trailing-edge noise
Procedia PDF Downloads 33720676 Optimization of Monascus Orange Pigments Production Using pH-Controlled Fed-Batch Fermentation
Authors: Young Min Kim, Deokyeong Choe, Chul Soo Shin
Abstract:
Monascus pigments, commonly used as a natural colorant in Asia, have many biological activities, such as cholesterol level control, anti-obesity, anti-cancer, and anti-oxidant, that have recently been elucidated. Especially, amino acid derivatives of Monascus pigments are receiving much attention because they have higher biological activities than original Monascus pigments. Previously, there have been two ways to produce amino acid derivatives: one-step production and two-step production. However, the one-step production has low purity, and the two-step production—precursor(orange pigments) fermentation and derivatives synthesis—has low productivity and growth rate during its precursor fermentation step. In this study, it was verified that pH is a key factor that affects the stability of orange pigments and the growth rate of Monascus. With an optimal pH profile obtained by pH-stat fermentation, we designed a process of precursor(orange pigments) fermentation that is a pH-controlled fed-batch fermentation. The final concentration of orange pigments in this process increased to 5.5g/L which is about 30% higher than the concentration produced from the previously used precursor fermentation step.Keywords: cultivation process, fed-batch fermentation, monascus pigments, pH stability
Procedia PDF Downloads 30220675 Study of Large-Scale Atmospheric Convection over the Tropical Indian Ocean and Its Association with Oceanic Variables
Authors: Supriya Manikrao Ovhal
Abstract:
In India, the summer monsoon rainfall occurs owing to large scale convection with reference to continental ITCZ. It was found that convection over tropical ocean increases with SST from 26 to 28 degree C, and when SST is above 29 degree C, it sharply decreases for warm pool areas of Indian and for monsoon areas of West Pacific Ocean. The reduction in convection can be influenced by large scale subsidence forced by nearby or remotely generated deep convection, thus it was observed that under the influence of strong large scale rising motion, convection does not decreases but increases monotonically with SST even if SST value is higher than 29.5 degree C. Since convection is related to SST gradient, that helps to generate low level moisture convergence and upward vertical motion in the atmosphere. Strong wind fields like cross equatorial low level jet stream on equator ward side of the warm pool are produced due to convection initiated by SST gradient. Areas having maximum SST have low SST gradient, and that result in feeble convection. Hence it is imperative to mention that the oceanic role (other than SST) could be prominent in influencing large Scale Atmospheric convection. Since warm oceanic surface somewhere or the other contributes to penetrate the heat radiation to the subsurface of the ocean, and as there is no studies seen related to oceanic subsurface role in large Scale Atmospheric convection, in the present study, we are concentrating on the oceanic subsurface contribution in large Scale Atmospheric convection by considering the SST gradient, mixed layer depth (MLD), thermocline, barrier layer. The present study examines the probable role of subsurface ocean parameters in influencing convection. Procedia PDF Downloads 9620674 Comparative Study of Essential Oils Extracted from Algerian Citrus fruits Using Microwaves and Hydrodistillation
Authors: Ferhat Mohamed Amine, Boukhatem Mohamed Nadjib, Chemat Farid
Abstract:
Solvent-free-microwave-extraction (SFME) is a combination of microwave heating and distillation, performed at atmospheric pressure without added any solvent or water. Isolation and concentration of volatile compounds are performed by a single stage. SFME extraction of orange essential oil was studied using fresh orange peel from Valencia late cultivar oranges as the raw material. SFME has been compared with a conventional technique, which used a Clevenger apparatus with hydro-distillation (HD). SFME and HD were compared in term of extraction time, yields, chemical composition and quality of the essential oil, efficiency and costs of the process. Extraction of essential oils from orange peels with SFME was better in terms of energy saving, extraction time (30 min versus 3 h), oxygenated fraction (11.7% versus 7.9%), product yield (0.42% versus 0.39%) and product quality. Orange peels treated by SFME and HD were observed by scanning electronic microscopy (SEM). Micrographs provide evidence of more rapid opening of essential oil glands treated by SFME, in contrast to conventional hydro-distillation.Keywords: hydro-distillation, essential oil, microwave, orange peel, solvent free microwave, extraction SFME
Procedia PDF Downloads 48920673 Unveiling Vegetation Composition and Dynamics Along Urbanization Gradient in Ranchi, Eastern India
Authors: Purabi Saikia
Abstract:
The present study was carried out across 84 vegetated grids (>10% vegetation cover) along an urbanization gradient, ranging from the urban core to peri-urban and natural vegetation in and around Ranchi, Eastern India, aiming to examine the phytosociological attributes by belt transect (167 transects each of 0.5 ha) method. Overall, plant species richness was highest in natural vegetation (242 spp.), followed by peri-urban (198 spp.) and urban (182 spp.). Similarly, H’, CD, E, Dmg, Dmn, and ENS showed significant differences in the tree layer (H’: 0.45-3.36; CD: 0.04-1.00; E: 0.25-0.96; Dmg: 0.18-7.15; Dmn: 0.03-4.24, and ENS: 1-29) in the entire urbanization gradient. Various α-diversity indices of the adult trees (H’: 3.98, Dmg: 14.32, Dmn: 2.38, ENS: 54) were comparatively better in urban vegetation compared to peri-urban (H’: 2.49, Dmg: 10.37, Dmn: 0.81, ENS: 12) and natural vegetation (H’: 2.89, Dmg: 13.46, Dmn: 0.85, ENS: 18). Tree communities have shown better response and adaptability in urban vegetation than shrubs and herbs. The prevalence of rare (41%), very rare (29%), and exotic species (39%) in urban vegetation may be due to the intentional introduction of a number of fast-growing exotic tree species in different social forestry plantations that have created a diverse and heterogeneous habitat. Despite contagious distribution, the majority of trees (36.14%) have shown no regeneration in the entire urbanization gradient. Additionally, a quite high percentage of IUCN red-listed plant species (51% and 178 spp.), including endangered (01 sp.), vulnerable (03 spp.), near threatened (04 spp.), least concern (163 spp.), and data deficient (07 spp.), warrant immediate policy interventions. Overall, the study witnessed subsequent transformations in floristic composition and structure from urban to natural vegetation in Eastern India. The outcomes are crucial for fostering resilient ecosystems, biodiversity conservation, and sustainable development in the region that supports diverse plant communities.Keywords: floristic communities, urbanization gradients, exotic species, regeneration
Procedia PDF Downloads 2720672 Strengthening of Concrete Slabs with Steel Beams
Authors: Mizam Doğan
Abstract:
In service life; structures can be damaged if they are subjected to dead and live loads which are greater than design values. For preventing this case; possible loads must be correctly calculated, structure must be designed according to determined loads, and structure must not be used out of its function. If loading case of the structure changes when its function changes; it must be reinforced for continuing it is new function. Reinforcement is a process that is made by increasing the existing strengths of structural system elements of the structure as reinforced concrete walls, beams, and slabs. Reinforcement can be done by casting reinforced concrete, placing steel and fiber structural elements. In this paper, reinforcing of columns and slabs of a structure of which function is changed is studied step by step. This reinforcement is made for increasing vertical and lateral load carrying capacity of the building. Not for repairing damaged structural system.Keywords: strengthening, RC slabs, seismic load, steel beam, structural irregularity
Procedia PDF Downloads 26120671 Simplified Stress Gradient Method for Stress-Intensity Factor Determination
Authors: Jeries J. Abou-Hanna
Abstract:
Several techniques exist for determining stress-intensity factors in linear elastic fracture mechanics analysis. These techniques are based on analytical, numerical, and empirical approaches that have been well documented in literature and engineering handbooks. However, not all techniques share the same merit. In addition to overly-conservative results, the numerical methods that require extensive computational effort, and those requiring copious user parameters hinder practicing engineers from efficiently evaluating stress-intensity factors. This paper investigates the prospects of reducing the complexity and required variables to determine stress-intensity factors through the utilization of the stress gradient and a weighting function. The heart of this work resides in the understanding that fracture emanating from stress concentration locations cannot be explained by a single maximum stress value approach, but requires use of a critical volume in which the crack exists. In order to understand the effectiveness of this technique, this study investigated components of different notch geometry and varying levels of stress gradients. Two forms of weighting functions were employed to determine stress-intensity factors and results were compared to analytical exact methods. The results indicated that the “exponential” weighting function was superior to the “absolute” weighting function. An error band +/- 10% was met for cases ranging from a steep stress gradient in a sharp v-notch to the less severe stress transitions of a large circular notch. The incorporation of the proposed method has shown to be a worthwhile consideration.Keywords: fracture mechanics, finite element method, stress intensity factor, stress gradient
Procedia PDF Downloads 13920670 A Two-Stage Process for the Sustainable Production of Aliphatic Polyesters
Authors: A. Douka, S. Vouyiouka, L. M. Papaspyridi, D. Korres, C. Papaspyrides
Abstract:
A "green" process was studied for the preparation of partially renewable aliphatic polyesters based on 1,4-butanediol and 1,8-octanediol with various diacids and derivatives, namely diethyl succinate, adipic acid, sebacic acid, 1,12-dodecanedioic acid and 1,14-tetradecanedioic acid. A first step of enzymatic prepolymerization was carried out in the presence of two different solvents, toluene and diphenylether, applying molecular sieves and vacuum, respectively, to remove polycondensation by-products. Poly(octylene adipate) (PE 8.6), poly(octylene dodecanate)(PE 8.12) and poly(octylene tetradecanate) (PE 8.14) were firstly enzymatically produced in toluene using molecular sieves giving however, low-molecular-weight products. Thereafter, the synthesis of PE 8.12 and PE 8.14 was examined under optimized conditions using diphenylether as solvent and a more vigorous by-product removal step, such as application of vacuum. Apart from these polyesters, the optimized process was also implemented for the production of another long-chain polyester-poly(octylene sebacate) (PE 8.10) and a short-chain polyester-poly(butylene succinate) (PE 4.4). Subsequently, bulk post-polymerization in the melt or solid state was performed. SSP runs involved absence of biocatalyst and reaction temperatures (T) in the vicinity of the prepolymer melting point (Tm-T varied between 15.5 up to 4oC). Focusing on PE 4.4 and PE 8.12, SSP took place under vacuum or flowing nitrogen leading to increase of the molecular weight and improvement of the end product physical appearance and thermal properties.Keywords: aliphatic polyester, enzymatic polymerization, solid state polymerization, Novozym 435
Procedia PDF Downloads 32420669 Best Resource Recommendation for a Stochastic Process
Authors: Likewin Thomas, M. V. Manoj Kumar, B. Annappa
Abstract:
The aim of this study was to develop an Artificial Neural Network0 s recommendation model for an online process using the complexity of load, performance, and average servicing time of the resources. Here, the proposed model investigates the resource performance using stochastic gradient decent method for learning ranking function. A probabilistic cost function is implemented to identify the optimal θ values (load) on each resource. Based on this result the recommendation of resource suitable for performing the currently executing task is made. The test result of CoSeLoG project is presented with an accuracy of 72.856%.Keywords: ADALINE, neural network, gradient decent, process mining, resource behaviour, polynomial regression model
Procedia PDF Downloads 39220668 Dynamic Two-Way FSI Simulation for a Blade of a Small Wind Turbine
Authors: Alberto Jiménez-Vargas, Manuel de Jesús Palacios-Gallegos, Miguel Ángel Hernández-López, Rafael Campos-Amezcua, Julio Cesar Solís-Sanchez
Abstract:
An optimal wind turbine blade design must be able of capturing as much energy as possible from the wind source available at the area of interest. Many times, an optimal design means the use of large quantities of material and complicated processes that make the wind turbine more expensive, and therefore, less cost-effective. For the construction and installation of a wind turbine, the blades may cost up to 20% of the outline pricing, and become more important due to they are part of the rotor system that is in charge of transmitting the energy from the wind to the power train, and where the static and dynamic design loads for the whole wind turbine are produced. The aim of this work is the develop of a blade fluid-structure interaction (FSI) simulation that allows the identification of the major damage zones during the normal production situation, and thus better decisions for design and optimization can be taken. The simulation is a dynamic case, since we have a time-history wind velocity as inlet condition instead of a constant wind velocity. The process begins with the free-use software NuMAD (NREL), to model the blade and assign material properties to the blade, then the 3D model is exported to ANSYS Workbench platform where before setting the FSI system, a modal analysis is made for identification of natural frequencies and modal shapes. FSI analysis is carried out with the two-way technic which begins with a CFD simulation to obtain the pressure distribution on the blade surface, then these results are used as boundary condition for the FEA simulation to obtain the deformation levels for the first time-step. For the second time-step, CFD simulation is reconfigured automatically with the next time-step inlet wind velocity and the deformation results from the previous time-step. The analysis continues the iterative cycle solving time-step by time-step until the entire load case is completed. This work is part of a set of projects that are managed by a national consortium called “CEMIE-Eólico” (Mexican Center in Wind Energy Research), created for strengthen technological and scientific capacities, the promotion of creation of specialized human resources, and to link the academic with private sector in national territory. The analysis belongs to the design of a rotor system for a 5 kW wind turbine design thought to be installed at the Isthmus of Tehuantepec, Oaxaca, Mexico.Keywords: blade, dynamic, fsi, wind turbine
Procedia PDF Downloads 48420667 Wet Extraction of Lutein and Lipids from Microalga by Quantitative Determination of Polarity
Authors: Mengyue Gong, Xinyi Li, Amarjeet Bassi
Abstract:
Harvesting by-products while recovering biodiesel is considered a potentially valuable approach to increase the market feasibility of microalgae industry. Lutein is a possible by-product from microalgae that promotes eye health. The extraction efficiency and the expensive drying process of wet algae represent the major challenges for the utilization of microalgae biomass as a feedstock for lipids, proteins, and carotenoids. A wet extraction method was developed to extract lipids and lutein from microalga Chlorella vulgaris. To evaluate different solvent (mixtures) for the extraction, a quantitative analysis was established based on the polarity of solvents using Nile Red as the polarity (ETN) indicator. By the choice of binary solvent system then adding proper amount of water to achieve phase separation, lipids and lutein can be extracted simultaneously. Some other parameters for lipids and lutein production were also studied including saponification time, temperature, choice of alkali, and pre-treatment methods. The extraction efficiency with wet algae was compared with dried algae and shown better pigment recovery. The results indicated that the product pattern in each extracted phase was polarity dependent. Lutein and β-carotene were the main carotenoids extracted with ethanol while lipids come out with hexane.Keywords: biodiesel, Chlorella vulgaris, extraction, lutein
Procedia PDF Downloads 34420666 Elitist Self-Adaptive Step-Size Search in Optimum Sizing of Steel Structures
Authors: Oğuzhan Hasançebi, Saeid Kazemzadeh Azad
Abstract:
Keywords: structural design optimization, optimal sizing, metaheuristics, self-adaptive step-size search, steel trusses, steel frames
Procedia PDF Downloads 37920665 Free Raducal Scavenging Activity of Fractionated Extract and Structural Elucidation of Isolated Compounds from Hydrocotyl Bonariensis Comm. Ex Lam Leaves
Authors: Emmanuel O Ajani, Sabiu S, Mariam Zakari, Fisayo A Bamisaye
Abstract:
Hydrocotyl bonariensis is a plant which anticataractogenic potentials have been reported. In the present study an attempt was made to evaluate the in vitro antioxidant activity of the fractionates of the leaves extract and also characterize some of its chemical constituents. DPPH, H₂O₂, OH and NO free radical scavenging, metal chelating and reducing power activity was used to evaluate the antioxidant activity of the crude extract fractionates. Fresh leaves of Hydrocotyl bonariensis leaves were extracted in 70% methanol. The extract was partitioned with different solvent system of increasing polarity (n-hexane, chloroform, ethyl acetate methanol and water). Compounds were isolated from the aqueous practitionate using accelerated gradient chromatography, vacuum liquid chromatography, preparative TLC and conventional column chromatography. The presence of the chemical groups was established with HPLC and Fourier Transform Infra Red. The structures of isolated compounds were elucidated by spectroscopic study and chemical shifts. Data from the study indicates that all the fractionates contain compounds with free radical scavenging activity. This activity was more pronounced in the aqueous fractionate (DPPH IC₅₀, 0025 ± 0.011 mg/ml, metal chelating capacity 27.5%, OH- scavenging IC₅₀, 0.846 ± 0.037 mg/ml, H₂O₂ scavenging IC₅₀ 0.521 ± 0.015 mg/ml, reducing power IC₅₀ 0.248 ± 0.025 mg/ml and NO scavenging IC₅₀ 0.537 ± 0.038 mg/ml). Two compounds were isolated and when compared with data from the literature; the structures were suggestive of polyphenolic flavonoid, quercetin and 3-O-β-D-glucopyranosyl-sitosterol. The result indicates that H. bonariensis leaves contain bioactive compounds with antioxidant activity.Keywords: antioxidant, cataract, free radical, flavonoids, hydrocotyl bonariensis
Procedia PDF Downloads 27420664 Effect of the Workpiece Position on the Manufacturing Tolerances
Authors: Rahou Mohamed , Sebaa Fethi, Cheikh Abdelmadjid
Abstract:
Manufacturing tolerancing is intended to determine the intermediate geometrical and dimensional states of the part during its manufacturing process. These manufacturing dimensions also serve to satisfy not only the functional requirements given in the definition drawing but also the manufacturing constraints, for example geometrical defects of the machine, vibration, and the wear of the cutting tool. The choice of positioning has an important influence on the cost and quality of manufacture. To avoid this problem, a two-step approach have been developed. The first step is dedicated to the determination of the optimum position. As for the second step, a study was carried out for the tightening effect on the tolerance interval.Keywords: dispersion, tolerance, manufacturing, position
Procedia PDF Downloads 342