Search results for: seismic design and evaluation
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 18010

Search results for: seismic design and evaluation

6550 Computer Aided Design Solution Based on Genetic Algorithms for FMEA and Control Plan in Automotive Industry

Authors: Nadia Belu, Laurenţiu Mihai Ionescu, Agnieszka Misztal

Abstract:

The automotive industry is one of the most important industries in the world that concerns not only the economy, but also the world culture. In the present financial and economic context, this field faces new challenges posed by the current crisis, companies must maintain product quality, deliver on time and at a competitive price in order to achieve customer satisfaction. Two of the most recommended techniques of quality management by specific standards of the automotive industry, in the product development, are Failure Mode and Effects Analysis (FMEA) and Control Plan. FMEA is a methodology for risk management and quality improvement aimed at identifying potential causes of failure of products and processes, their quantification by risk assessment, ranking of the problems identified according to their importance, to the determination and implementation of corrective actions related. The companies use Control Plans realized using the results from FMEA to evaluate a process or product for strengths and weaknesses and to prevent problems before they occur. The Control Plans represent written descriptions of the systems used to control and minimize product and process variation. In addition Control Plans specify the process monitoring and control methods (for example Special Controls) used to control Special Characteristics. In this paper we propose a computer-aided solution with Genetic Algorithms in order to reduce the drafting of reports: FMEA analysis and Control Plan required in the manufacture of the product launch and improved knowledge development teams for future projects. The solution allows to the design team to introduce data entry required to FMEA. The actual analysis is performed using Genetic Algorithms to find optimum between RPN risk factor and cost of production. A feature of Genetic Algorithms is that they are used as a means of finding solutions for multi criteria optimization problems. In our case, along with three specific FMEA risk factors is considered and reduce production cost. Analysis tool will generate final reports for all FMEA processes. The data obtained in FMEA reports are automatically integrated with other entered parameters in Control Plan. Implementation of the solution is in the form of an application running in an intranet on two servers: one containing analysis and plan generation engine and the other containing the database where the initial parameters and results are stored. The results can then be used as starting solutions in the synthesis of other projects. The solution was applied to welding processes, laser cutting and bending to manufacture chassis for buses. Advantages of the solution are efficient elaboration of documents in the current project by automatically generating reports FMEA and Control Plan using multiple criteria optimization of production and build a solid knowledge base for future projects. The solution which we propose is a cheap alternative to other solutions on the market using Open Source tools in implementation.

Keywords: automotive industry, FMEA, control plan, automotive technology

Procedia PDF Downloads 403
6549 User Intention Generation with Large Language Models Using Chain-of-Thought Prompting Title

Authors: Gangmin Li, Fan Yang

Abstract:

Personalized recommendation is crucial for any recommendation system. One of the techniques for personalized recommendation is to identify the intention. Traditional user intention identification uses the user’s selection when facing multiple items. This modeling relies primarily on historical behaviour data resulting in challenges such as the cold start, unintended choice, and failure to capture intention when items are new. Motivated by recent advancements in Large Language Models (LLMs) like ChatGPT, we present an approach for user intention identification by embracing LLMs with Chain-of-Thought (CoT) prompting. We use the initial user profile as input to LLMs and design a collection of prompts to align the LLM's response through various recommendation tasks encompassing rating prediction, search and browse history, user clarification, etc. Our tests on real-world datasets demonstrate the improvements in recommendation by explicit user intention identification and, with that intention, merged into a user model.

Keywords: personalized recommendation, generative user modelling, user intention identification, large language models, chain-of-thought prompting

Procedia PDF Downloads 44
6548 A Change in Psychological Child Development Case Study on Animation Film Tom and Jerry

Authors: Shani Ruri Efendi, Lucky Tio Monika, Prita Esita

Abstract:

Purpose: The purpose of this paper is to know the negative impact of the animated film show Tom & Jerry, how it might affect the changes of psychological child development, if this affects the development growth of children's behaviour and advice from the case of psychology as a solution to such problems Design/methodology/approach: The paper’s findings are based on an experimental method in conducting the test. The experiment lasted for 6 days at elementary school children aged from 6-7 years. Findings: The results of the analysis can be found that pictorial questionnaire which is one of the test tools in the study had no significant effect and also using IQ test is one test tool in the study of positive and significant influence of television has changed the way of thinking in children. Originality/value: This research tries to dig more into the negative influence of animated film Tom and Jerry as a negative influence on the development of children who may have the implementation of the child's behaviour in life.

Keywords: child development, animated film, Tom and Jerry, elementary school children

Procedia PDF Downloads 752
6547 A CPS Based Design of Industrial Ecosystems

Authors: Maryam Shayan

Abstract:

Chemical Process Simulation (CPS) software has been generally utilized by chemical (process) designers to outline, test, advance, and coordinate process plants. It is relied upon that modern scientists to bring these same critical thinking advantages to the outline and operation of industrial ecosystems can utilize CPS. This paper gives modern environment researchers and experts with a prologue to CPS and a review of compound designing configuration standards. The paper highlights late research demonstrating that CPS can be utilized to model modern industrial ecosystems, and talks about the advantages of utilizing CPS to address a portion of the specialized difficulties confronting organizations partaking in an industrial ecosystem. CPS can be utilized to (i) quantitatively assess and analyze the potential ecological and monetary advantages of material and vitality linkages; (ii) unravel general plan, retrofit, or operational issues; (iii) help to distinguish complex and frequently irrational arrangements; and (iv) assess imagine a scenario in which situations. CPS ought to be a valuable expansion to the mechanical environment tool stash.

Keywords: chemical process simulation (CPS), process plants, industrial ecosystems, compound designing

Procedia PDF Downloads 275
6546 Failure Analysis of a Medium Duty Vehicle Leaf Spring

Authors: Gül Çevik

Abstract:

This paper summarizes the work conducted to assess the root cause of the failure of a medium commercial vehicle leaf spring failed in service. Macro- and micro-fractographic analyses by scanning electron microscope as well as material verification tests were conducted in order to understand the failure mechanisms and root cause of the failure. Findings from the fractographic analyses indicated that failure mechanism is fatigue. Crack initiation was identified to have occurred from a point on the top surface near to the front face and to the left side. Two other crack initiation points were also observed, however, these cracks did not propagate. The propagation mode of the fatigue crack revealed that the cyclic loads resulting in crack initiation and propagation were unidirectional bending. Fractographic analyses have also showed that the root cause of the fatigue crack initiation and propagation was loading the part above design stress. Material properties of the part were also verified by chemical composition analysis, microstructural analysis by optical microscopy and hardness tests.

Keywords: leaf spring, failure analysis, fatigue, fractography

Procedia PDF Downloads 127
6545 Streamlining .NET Data Access: Leveraging JSON for Data Operations in .NET

Authors: Tyler T. Procko, Steve Collins

Abstract:

New features in .NET (6 and above) permit streamlined access to information residing in JSON-capable relational databases, such as SQL Server (2016 and above). Traditional methods of data access now comparatively involve unnecessary steps which compromise system performance. This work posits that the established ORM (Object Relational Mapping) based methods of data access in applications and APIs result in common issues, e.g., object-relational impedance mismatch. Recent developments in C# and .NET Core combined with a framework of modern SQL Server coding conventions have allowed better technical solutions to the problem. As an amelioration, this work details the language features and coding conventions which enable this streamlined approach, resulting in an open-source .NET library implementation called Codeless Data Access (CODA). Canonical approaches rely on ad-hoc mapping code to perform type conversions between the client and back-end database; with CODA, no mapping code is needed, as JSON is freely mapped to SQL and vice versa. CODA streamlines API data access by improving on three aspects of immediate concern to web developers, database engineers and cybersecurity professionals: Simplicity, Speed and Security. Simplicity is engendered by cutting out the “middleman” steps, effectively making API data access a whitebox, whereas traditional methods are blackbox. Speed is improved because of the fewer translational steps taken, and security is improved as attack surfaces are minimized. An empirical evaluation of the speed of the CODA approach in comparison to ORM approaches ] is provided and demonstrates that the CODA approach is significantly faster. CODA presents substantial benefits for API developer workflows by simplifying data access, resulting in better speed and security and allowing developers to focus on productive development rather than being mired in data access code. Future considerations include a generalization of the CODA method and extension outside of the .NET ecosystem to other programming languages.

Keywords: API data access, database, JSON, .NET core, SQL server

Procedia PDF Downloads 61
6544 Integrated Target Tracking and Control for Automated Car-Following of Truck Platforms

Authors: Fadwa Alaskar, Fang-Chieh Chou, Carlos Flores, Xiao-Yun Lu, Alexandre M. Bayen

Abstract:

This article proposes a perception model for enhancing the accuracy and stability of car-following control of a longitudinally automated truck. We applied a fusion-based tracking algorithm on measurements of a single preceding vehicle needed for car-following control. This algorithm fuses two types of data, radar and LiDAR data, to obtain more accurate and robust longitudinal perception of the subject vehicle in various weather conditions. The filter’s resulting signals are fed to the gap control algorithm at every tracking loop composed by a high-level gap control and lower acceleration tracking system. Several highway tests have been performed with two trucks. The tests show accurate and fast tracking of the target, which impacts on the gap control loop positively. The experiments also show the fulfilment of control design requirements, such as fast speed variations tracking and robust time gap following.

Keywords: object tracking, perception, sensor fusion, adaptive cruise control, cooperative adaptive cruise control

Procedia PDF Downloads 225
6543 A Study on the Readers' Motivation and Satisfaction on Sports Newspaper in Vietnam

Authors: Trang Huyen Nguyen, Thien Tri Huynh

Abstract:

The objectives of this paper were to determine demographics of readers at Hochiminh city (HCMC), study reading motivation which affected citizens to read sports newspapers and measure readers’ satisfaction on issues related sports newspapers. Subjects of this survey were HCMC’s citizens. After collecting data, there were 568 useful feedbacks (the rate of response was 94.7%). The data analysis in the study included descriptive statistics and inferred statistics by SPSS 16.0 program for the research questions. The majority of respondents were male, from 24 to 32 years old, got the first degree and earned monthly from $US 150 to 300. Moreover, they were government officials and read newspaper from 11 to 20 times per month, bought newspapers by themselves. Finding information to predict results of sports matches was the highest motive affected readers; and the diversity information was the most pleasure that readers felt about sports newspapers. According to research findings, the board of editors could use the worthy information to make a strategic plan for newspaper on contents as well as design to meet the increasing demands of readers.

Keywords: motivation, satisfaction, readers, sports newspapers

Procedia PDF Downloads 298
6542 Design and Development of Mucoadhesive Buccal Film Bearing Itraconazole

Authors: Yuvraj Singh Dangi, Kamta Prasad Namdeo, Surendra Bodhake

Abstract:

The purpose of this research was to develop and evaluate mucoadhesive films for buccal administration of itraconazole using film-forming and mucoashesive polymers. Buccal films of chitosan bearing Itraconazole were prepared by solvent casting technique. The films have been evaluated in terms of film weight, thickness, density, surface pH, FTIR, X-ray diffraction analysis, bioadhesion, swelling properties, and in vitro drug release studies. It was found that film formulations of 2 cm2 size having weight in the range of 204 ± 0.76 to 223 ± 2.09 mg and film thickness were in the range of 0.44 ± 0.11 to 0.57 ± 0.19 mm. Density of the films was found to be 0.102 to 0.126 g/ml. Drug content was found to be uniform in the range of 8.23 ± 0.07 to 8.73 ± 0.09 mg/cm2 for formulation A1 to A4. Maximum bioadhesion force was recorded for HPMC buccal films (A2) i.e. 0.57 ± 0.47 as compared to other films. In vitro residence time was in range of 1.7 ± 0.12 to 7.65 ± 0.15 h. The drug release studies show that formulations follow non-fickian diffusion. These mucoadhesive formulations could offer many advantages in comparison to traditional treatments.

Keywords: biovariability, buccal patches, itraconazole, Mucoadhesion

Procedia PDF Downloads 502
6541 Achieving Social Sustainability through Architectural Designs for Physically Challenged People: Datascapes Technique

Authors: Fatemeh Zare, Kaveh Bazrafkan, Alireza Bolhari

Abstract:

Quality of life is one of the most recent issues in today's architectural world. It has numerous criteria and has diverse aspects in different nation's cultures. Social sustainability, on the other hand, is frequently a positive attitude which is manifested by integration of human beings and equity of access to fundamental amenities; for instance, transportation, hygienic systems, equal education facilities, etc. This paper demonstrates that achieving desired quality of life is through assurance of sustainable society. Choosing a sustainable approach in every day's life becomes a practical manner and solution for human life. By assuming that an architect is someone who designs people's life by his/her projects, scrutinizing the relationship between quality of life and architectural buildings would reveal hidden criteria through Datascapes technique. This would be enriched when considering this relationship with everyone's basic needs in the society. One the most impressive needs are the particular demands of physically challenged people which are directly examined and discussed.

Keywords: sustainable design, social sustainability, disabled people, datascapes technique

Procedia PDF Downloads 475
6540 The Role of the Media in Inculcating Predictors Hitherto Ignored to Mitigate Vaccine Hesitancy

Authors: Huijun Wu

Abstract:

The COVID-19 pandemic has caused massive negative shocks across countries. Various research institutes have worked assiduously to develop vaccines to help fight the pandemic, but misinformation from the media has spurred public outcry in several countries not to take jabs. This study leverages massive data [i.e., responses from more than 140,000 people sampled from 144 countries] extracted from the Gallup World Poll’s Wellcome Global Monitor, to analyze and assess how the media contributes to inadequate dissemination of basic scientific knowledge on the vaccines and spread of distrust in central governments as predictors of vaccine hesitancy. The results show that all three predictors are statistically significant at a 5% level and that appropriate design and dissemination of basic scientific knowledge on the vaccines and spread of justified reasons to trust governments would help mitigate vaccine hesitancy. The implication of the results is that the media needs to consider such predictors hitherto ignored.

Keywords: COVID-19 pandemic, vaccine hesitancy, media and communication, basic scientific knowledge, distrust in central governments

Procedia PDF Downloads 175
6539 Taguchi Approach for the Optimization of the Stitching Defects of Knitted Garments

Authors: Adel El-Hadidy

Abstract:

For any industry, the production and quality management or wastages reductions have major impingement on overall factory economy. This work discusses the quality improvement of garment industry by applying Pareto analysis, cause and effect diagram and Taguchi experimental design. The main purpose of the work is to reduce the stitching defects, which will also minimize the rejection and reworks rate. Application of Pareto chart, fish bone diagram and Process Sigma Level/and or Performance Level tools helps solving those problems on priority basis. Among all, only sewing, defects are responsible form 69.3% to 97.3 % of total defects. Process Sigma level has been improved from 0.79 to 1.3 and performance rate improved, from F to D level. The results showed that the new set of sewing parameters was superior to the original one. It can be seen that fabric size has the largest effect on the sewing defects and that needle size has the smallest effect on the stitching defects.

Keywords: garment, sewing defects, cost of rework, DMAIC, sigma level, cause and effect diagram, Pareto analysis

Procedia PDF Downloads 160
6538 Excel-VBA as Modelling Platform for Thermodynamic Optimisation of an R290/R600a Cascade Refrigeration System

Authors: M. M. El-Awad

Abstract:

The availability of computers and educational software nowadays helps engineering students acquire better understanding of engineering principles and their applications. With these facilities, students can perform sensitivity and optimisation analyses which were not possible in the past by using slide-rules and hand calculators. Standard textbooks in engineering thermodynamics also use software such as Engineering Equation Solver (EES) and Interactive Thermodynamics (IT) for solving calculation-intensive and design problems. Unfortunately, engineering students in most developing countries do not have access to such applications which are protected by intellectual-property rights. This paper shows how Microsoft ExcelTM and VBA (Visual Basic for Applications), which are normally distributed with personal computers and laptops, can be used as an alternative modelling platform for thermodynamic analyses and optimisation. The paper describes the VBA user-defined-functions developed for determining the refrigerants properties with Excel. For illustration, the combination is used to model and optimise the intermediate temperature for a propane/iso-butane cascade refrigeration system.

Keywords: thermodynamic optimisation, engineering education, excel, VBA, cascade refrigeration system

Procedia PDF Downloads 421
6537 Clinical Empathy: The Opportunity to Offer Optimal Treatment to People with Serious Illness

Authors: Leonore Robieux, Franck Zenasni, Marc Pocard, Clarisse Eveno

Abstract:

Empirical data in health psychology studies show the necessity to consider the doctor-patient communication and its positive impact on outcomes such as patients’ satisfaction, treatment adherence, physical and psychological wellbeing. In this line, the present research aims to define the role and determinants of an effective doctor–patient communication during the treatment of patients with serious illness (peritoneal carcinomatosis). We carried out a prospective longitudinal study including patients treated for peritoneal carcinomatosis of various origins. From November 2016, to date, data were collected using validated questionnaires at two times of evaluation: one month before the surgery (T0) and one month after (T1). Thus, patients reported their (a) anxiety and depression levels, (b) standardized and individualized quality of life and (c) how they perceived communication, attitude and empathy of the surgeon. 105 volunteer patients (Mean age = 58.18 years, SD = 10.24, 62.2% female) participated to the study. PC arose from rare diseases (14%), colorectal (38%), eso-gastric (24%) and ovarian (8%) cancer. Three groups are defined according to the severity of their pathology and the treatment offered to them: (1) important surgical treatment with the goal of healing (53%), (2) repeated palliative surgical treatment (17%), and (3) the patients recused for surgical treatment, only palliative approach (30%). Results are presented according to Baron and Kenny recommendations. The regressions analyses show that only depression and anxiety are sensitive to the communication and empathy of surgeon. The main results show that a good communication and high level of empathy at T0 and T1 limit depression and anxiety of the patients in T1. Results also indicate that the severity of the disease modulates this positive impact of communication: better is the communication the less are the level of depression and anxiety of the patients. This effect is higher for patients treated for the more severe disease. These results confirm that, even in the case severe disease a good communication between patient and physician remains a significant factor in promoting the well-being of patients. More specific training need to be developed to promote empathic care.

Keywords: clinical empathy, determinants, healthcare, psychological wellbeing

Procedia PDF Downloads 117
6536 Analytic Hierarchy Process Method for Supplier Selection Considering Green Logistics: Case Study of Aluminum Production Sector

Authors: H. Erbiyik, A. Bal, M. Sirakaya, Ö. Yesildal, E. Yolcu

Abstract:

The emergence of many environmental issues began with the Industrial Revolution. The depletion of natural resources and emerging environmental challenges over time requires enterprises and managers to take into consideration environmental factors while managing business. If we take notice of these causes; the design and implementation of environmentally friendly green purchasing, production and waste management systems become very important at green logistics systems. Companies can adopt green supply chain with the awareness of these facts. The concept of green supply chain constitutes from green purchasing, green production, green logistics, waste management and reverse logistics. In this study, we wanted to identify the concept of green supply chain and why green supply chain should be applied. In the practice part of the study an analytic hierarchy process (AHP) study is conducted on an aluminum production company to evaluate suppliers.

Keywords: aluminum sector, analytic hierarchy process, decision making, green logistics

Procedia PDF Downloads 344
6535 Study on the Effect of Pre-Operative Patient Education on Post-Operative Outcomes

Authors: Chaudhary Itisha, Shankar Manu

Abstract:

Patient satisfaction represents a crucial aspect in the evaluation of health care services. Preoperative teaching provides the patient with pertinent information concerning the surgical process and the intended surgical procedure as well as anticipated patient behavior (anxiety, fear), expected sensation, and the probable outcomes. Although patient education is part of Accreditation protocols, it is not uniform at most places. The aim of this study was to try to assess the benefit of preoperative patient education on selected post-operative outcome parameters; mainly, post-operative pain scores, requirement of additional analgesia, return to activity of daily living and overall patient satisfaction, and try to standardize few education protocols. Dependent variables were measured before and after the treatment on a study population of 302 volunteers. Educational intervention was provided by the Investigator in the preoperative period to the study group through personal counseling. An information booklet contained detailed information was also provided. Statistical Analysis was done using Chi square test, Mann Whitney u test and Fischer Exact Test on a total of 302 subjects. P value <0.05 was considered as level of statistical significance and p<0.01 was considered as highly significant. This study suggested that patients who are given a structured, individualized and elaborate preoperative education and counseling have a better ability to cope up with postoperative pain in the immediate post-operative period. However, there was not much difference when the patients have had almost complete recovery. There was no difference in the requirement of additional analgesia among the two groups. There is a positive effect of preoperative counseling on expected return to the activities of daily living and normal work schedule. However, no effect was observed on the activities in the immediate post-operative period. There is no difference in the overall satisfaction score among the two groups of patients. Thus this study concludes that there is a positive benefit as suggested by the results for pre-operative patient education. Although the difference in various parameters studied might not be significant over a long term basis, they definitely point towards the benefits of preoperative patient education. 

Keywords: patient education, post-operative pain, postoperative outcomes, patient satisfaction

Procedia PDF Downloads 321
6534 Zero Valent Iron Algal Biocomposite for the Removal of Crystal Violet from Aqueous Solution: Box-Behnken Optimization and Fixed Bed Column Studies

Authors: M. Jerold, V. Sivasubramanian

Abstract:

In this study, nano zero valent iron Sargassum swartzii (nZVI-SS) biocomposite a marine algal based biosorbent was used for the removal of simulated crystal violet (CV) in batch and continuous fixed bed operation. The Box-Behnen design (BBD) experimental results revealed the biosoprtion was maximum at pH 7.5, biosorbent dosage 0.1 g/L and initial CV concentration of 100 mg/L. The effect of various column parameters like bed depth (3, 6 and 9 cm), flow rate (5, 10 and 15 mL/min) and influent CV concentration (5, 10 and 15 mg/L) were investigated. The exhaustion time increased with increase of bed depth, influent CV concentration and decrease of flow rate. Adam-Bohart, Thomas and Yoon-Nelson models were used to predict the breakthrough curve and to evaluate the model parameters. Out of these models, Thomas and Yoon-Nelson models well described the experimental data. Therefore, the result implies that nZVI-SS biocomposite is a cheap and most promising biosorbent for the removal of CV from wastewater.

Keywords: algae, biosorption, zero-valent, dye, wastewater

Procedia PDF Downloads 188
6533 Process Optimisation for Internal Cylindrical Rough Turning of Nickel Alloy 625 Weld Overlay

Authors: Lydia Chan, Islam Shyha, Dale Dreyer, John Hamilton, Phil Hackney

Abstract:

Nickel-based superalloys are generally known to be difficult to cut due to their strength, low thermal conductivity, and high work hardening tendency. Superalloy such as alloy 625 is often used in the oil and gas industry as a surfacing material to provide wear and corrosion resistance to components. The material is typically applied onto a metallic substrate through weld overlay cladding, an arc welding technique. Cladded surfaces are always rugged and carry a tough skin; this creates further difficulties to the machining process. The present work utilised design of experiment to optimise the internal cylindrical rough turning for weld overlay surfaces. An L27 orthogonal array was used to assess effects of the four selected key process variables: cutting insert, depth of cut, feed rate, and cutting speed. The optimal cutting conditions were determined based on productivity and the level of tool wear.

Keywords: cylindrical turning, nickel superalloy, turning of overlay, weld overlay

Procedia PDF Downloads 366
6532 Unreliable Production Lines with Simultaneously Unbalanced Operation Time Means, Breakdown, and Repair Rates

Authors: Sabry Shaaban, Tom McNamara, Sarah Hudson

Abstract:

This paper investigates the benefits of deliberately unbalancing both operation time means (MTs) and unreliability (failure and repair rates) for non-automated production lines.The lines were simulated with various line lengths, buffer capacities, degrees of imbalance and patterns of MT and unreliability imbalance. Data on two performance measures, namely throughput (TR) and average buffer level (ABL) were gathered, analyzed and compared to a balanced line counterpart. A number of conclusions were made with respect to the ranking of configurations, as well as to the relationships among the independent design parameters and the dependent variables. It was found that the best configurations are a balanced line arrangement and a monotone decreasing MT order, coupled with either a decreasing or a bowl unreliability configuration, with the first generally resulting in a reduced TR and the second leading to a lower ABL than those of a balanced line.

Keywords: unreliable production lines, unequal mean operation times, unbalanced failure and repair rates, throughput, average buffer level

Procedia PDF Downloads 479
6531 The Analysis on the Renewal Strategy of Public Space in Old Communities with an Example of GeDa Community in Xi'An

Authors: Xiyue Wen

Abstract:

With the rapid development of the city, old communities in the city are facing a series of problems. On one hand, aging facilities, obsolete spatial patterns, aging populations arouse in the aging of the community. On the other hand, public space is reduced and is taking up by cars parking or facilities setting, which lead to the collapse of traditional life in the old communities. That is to say, modern amenities haven’t helped to reform the old community, but have leading to tedious and inefficient, when it is not accommodated in the traditional space. Exploring a way is imminent to the east the contradiction between modern living facilities and spatial patterns of traditional. We select a typical site-GeDa Community in Xi’an, built in 70-80s,and carry out a concept calling 'Raising Landscape', which enables a convenient and efficient space for parking, as well as a high-quality yard for activities. In addition, the design implements low cost, simple construction, resident participation, so that it can be spread in the same texture of urban space.

Keywords: old communities, renewal strategy, raising landscape, public space, parking space

Procedia PDF Downloads 474
6530 Use of Multivariate Statistical Techniques for Water Quality Monitoring Network Assessment, Case of Study: Jequetepeque River Basin

Authors: Jose Flores, Nadia Gamboa

Abstract:

A proper water quality management requires the establishment of a monitoring network. Therefore, evaluation of the efficiency of water quality monitoring networks is needed to ensure high-quality data collection of critical quality chemical parameters. Unfortunately, in some Latin American countries water quality monitoring programs are not sustainable in terms of recording historical data or environmentally representative sites wasting time, money and valuable information. In this study, multivariate statistical techniques, such as principal components analysis (PCA) and hierarchical cluster analysis (HCA), are applied for identifying the most significant monitoring sites as well as critical water quality parameters in the monitoring network of the Jequetepeque River basin, in northern Peru. The Jequetepeque River basin, like others in Peru, shows socio-environmental conflicts due to economical activities developed in this area. Water pollution by trace elements in the upper part of the basin is mainly related with mining activity, and agricultural land lost due to salinization is caused by the extensive use of groundwater in the lower part of the basin. Since the 1980s, the water quality in the basin has been non-continuously assessed by public and private organizations, and recently the National Water Authority had established permanent water quality networks in 45 basins in Peru. Despite many countries use multivariate statistical techniques for assessing water quality monitoring networks, those instruments have never been applied for that purpose in Peru. For this reason, the main contribution of this study is to demonstrate that application of the multivariate statistical techniques could serve as an instrument that allows the optimization of monitoring networks using least number of monitoring sites as well as the most significant water quality parameters, which would reduce costs concerns and improve the water quality management in Peru. Main socio-economical activities developed and the principal stakeholders related to the water management in the basin are also identified. Finally, water quality management programs will also be discussed in terms of their efficiency and sustainability.

Keywords: PCA, HCA, Jequetepeque, multivariate statistical

Procedia PDF Downloads 349
6529 Evaluation of Important Transcription Factors and Kinases in Regulating the Signaling Pathways of Cancer Stem Cells With Low and High Proliferation Rate Derived From Colorectal Cancer

Authors: Mohammad Hossein Habibi, Atena Sadat Hosseini

Abstract:

Colorectal cancer is the third leading cause of cancer-related death in the world. Colorectal cancer screening, early detection, and treatment programs could benefit from the most up-to-date information on the disease's burden, given the present worldwide trend of increasing colorectal cancer incidence. Tumor recurrence and resistance are exacerbated by the presence of chemotherapy-resistant cancer stem cells that can generate rapidly proliferating tumor cells. In addition, tumor cells can evolve chemoresistance through adaptation mechanisms. In this work, we used in silico analysis to select suitable GEO datasets. In this study, we compared slow-growing cancer stem cells with high-growth colorectal cancer-derived cancer stem cells. We then evaluated the signal pathways, transcription factors, and kinases associated with these two types of cancer stem cells. A total of 980 upregulated genes and 870 downregulated genes were clustered. MAPK signaling pathway, AGE-RAGE signaling pathway in diabetic complications, Fc gamma R-mediated phagocytosis, and Steroid biosynthesis signaling pathways were observed in upregulated genes. Also, caffeine metabolism, amino sugar and nucleotide sugar metabolism, TNF signaling pathway, and cytosolic DNA-sensing pathway were involved in downregulated genes. In the next step, we evaluated the best transcription factors and kinases in two types of cancer stem cells. In this regard, NR2F2, ZEB2, HEY1, and HDGF as transcription factors and PRDM5, SMAD, CBP, and KDM2B as critical kinases in upregulated genes. On the other hand, IRF1, SPDEF, NCOA1, and STAT1 transcription factors and CTNNB1 and CDH7 kinases were regulated low expression genes. Using bioinformatics analysis in the present study, we conducted an in-depth study of colorectal cancer stem cells at low and high growth rates so that we could take further steps to detect and even target these cells. Naturally, more additional tests are needed in this direction.

Keywords: colorectal cancer, bioinformatics analysis, transcription factor, kinases, cancer stem cells

Procedia PDF Downloads 115
6528 Data Management System for Environmental Remediation

Authors: Elizaveta Petelina, Anton Sizo

Abstract:

Environmental remediation projects deal with a wide spectrum of data, including data collected during site assessment, execution of remediation activities, and environmental monitoring. Therefore, an appropriate data management is required as a key factor for well-grounded decision making. The Environmental Data Management System (EDMS) was developed to address all necessary data management aspects, including efficient data handling and data interoperability, access to historical and current data, spatial and temporal analysis, 2D and 3D data visualization, mapping, and data sharing. The system focuses on support of well-grounded decision making in relation to required mitigation measures and assessment of remediation success. The EDMS is a combination of enterprise and desktop level data management and Geographic Information System (GIS) tools assembled to assist to environmental remediation, project planning, and evaluation, and environmental monitoring of mine sites. EDMS consists of seven main components: a Geodatabase that contains spatial database to store and query spatially distributed data; a GIS and Web GIS component that combines desktop and server-based GIS solutions; a Field Data Collection component that contains tools for field work; a Quality Assurance (QA)/Quality Control (QC) component that combines operational procedures for QA and measures for QC; Data Import and Export component that includes tools and templates to support project data flow; a Lab Data component that provides connection between EDMS and laboratory information management systems; and a Reporting component that includes server-based services for real-time report generation. The EDMS has been successfully implemented for the Project CLEANS (Clean-up of Abandoned Northern Mines). Project CLEANS is a multi-year, multimillion-dollar project aimed at assessing and reclaiming 37 uranium mine sites in northern Saskatchewan, Canada. The EDMS has effectively facilitated integrated decision-making for CLEANS project managers and transparency amongst stakeholders.

Keywords: data management, environmental remediation, geographic information system, GIS, decision making

Procedia PDF Downloads 150
6527 The Intervention Effect of Gratitude Skills Training on the Reduction of Loneliness

Authors: T. Sakai, A. Aikawa

Abstract:

This study defined 'gratitude skills training' as a social skills training which would become a new intervention method about gratitude intervention. The purpose of this study was to confirm the intervention effect of gratitude skills training on the reduction of loneliness. The participants in this study were university students (n = 36). A waiting list control design was used, in which the participants were assigned either to a training group (n = 18) or a waiting list control group (n = 18); the latter group took the same training after the first group had been trained. The two-week gratitude skills training comprised of three sessions (50 minutes per each of sessions). In the three sessions, the guidebook and the homework developed in this study were used. Results showed that gratitude skills training improved the participants’ gratitude skills. The results also indicated the intervention effect of gratitude skills training on the reduction of loneliness during the follow-up after three weeks. This study suggests that gratitude skills training can reduce loneliness. The gratitude skills training has a possibility of becoming a new treatment to reduce loneliness.

Keywords: gratitude skills, loneliness, social skills training, well-being

Procedia PDF Downloads 190
6526 Model Based Simulation Approach to a 14-Dof Car Model Using Matlab/Simulink

Authors: Ishit Sheth, Chandrasekhar Jinendran, Chinmaya Ranjan Sahu

Abstract:

A fourteen degree of freedom (DOF) ride and handling control mathematical model is developed for a car using generalized boltzmann hamel equation which will create a basis for design of ride and handling controller. Mathematical model developed yield equations of motion for non-holonomic constrained systems in quasi-coordinates. The governing differential equation developed integrates ride and handling control of car. Model-based systems engineering approach is implemented for simulation using matlab/simulink, vehicle’s response in different DOF is examined and later validated using commercial software (ADAMS). This manuscript involves detailed derivation of full car vehicle model which provides response in longitudinal, lateral and yaw motion to demonstrate the advantages of the developed model over the existing dynamic model. The dynamic behaviour of the developed ride and handling model is simulated for different road conditions.

Keywords: Full Vehicle Model, MBSE, Non Holonomic Constraints, Boltzmann Hamel Equation

Procedia PDF Downloads 212
6525 Prevalence of Work Related Musculoskeletal Symptoms among Surgeons

Authors: Nirav P. Vaghela

Abstract:

Work-related musculoskeletal symptoms (WMS) are a major health issue in many occupations all over the world. Past research on hospital workers have mainly been focused on nurses [8] and very few studies have examined musculoskeletal symptoms among doctors in various specialties. The work of surgeons can involve high levels of mental concentration and very precise movements that can be categorized as mild-to-moderate physical demands. Design: Forty-three surgeons were enrolled in this study. To investigate musculoskeletal disorder among the surgeons we had used Standardised Nordic Questionnaire, Quick Exposure Check (QEC) and Workstyle Short Form. Result: In the current study, total 43 surgeons participants out of 30 males and 13 females. Their mean age was 42.07 ± 12.35, and the mean working years of the group were 15.14years ±9.017. On the average, they worked a total of about 8.58 h (±1.967) per day. The prevalence of work related musculoskeletal symptoms among the surgeons indicating 83.70% surgeons had atleast one joint affected while 16.30% had no symptoms at all. Conclusion: The present survey study has shown high prevalence rates of neck, back and shoulder musculoskeletal symptoms in surgeons.

Keywords: repetitive stress injury, pain, occupational hazards, disability, abneetism, physical health, quality of life

Procedia PDF Downloads 222
6524 Nice Stadium: Design of a Flat Single Layer ETFE Roof

Authors: A. Escoffier, A. Albrecht, F. Consigny

Abstract:

In order to host the Football Euro in 2016, many French cities have launched architectural competitions in recent years to improve the quality of their stadiums. The winning project in Nice was designed by Wilmotte architects together with Elioth structural engineers. It has a capacity of 35,000 seats. Its roof structure consists of a complex 3D shape timber and steel lattice and is covered by 25,000m² of ETFE, 10,500m² of PES-PVC fabric and 8,500m² of photovoltaic panels. This paper focuses on the ETFE part of the cover. The stadium is one of the first constructions to use flat single layer ETFE on such a big area. Due to its relatively recent appearance in France, ETFE structures are not yet covered by any regulations and the existing codes for fabric structures cannot be strictly applied. Rather, they are considered as cladding systems and therefore have to be approved by an “Appréciation Technique d’Expérimentation” (ATEx), during which experimental tests have to be performed. We explain the method that we developed to justify the ETFE, which eventually led to bi-axial tests to clarify the allowable stress in the film.

Keywords: biaxial test, creep, ETFE, single layer, stadium roof

Procedia PDF Downloads 238
6523 Fostering Enriched Teaching and Learning Experience Using Effective Cyber-Physical Learning Environment

Authors: Shubhakar K., Nachamma S., Judy T., Jacob S. C., Melvin Lee, Kenneth Lo

Abstract:

In recent years, technological advancements have ushered in a new era of education characterized by the integration of technology-enabled devices and online tools. The cyber-physical learning environment (CPLE) is a prime example of this evolution, merging remote cyber participants with in-class learners through immersive technology, interactive digital whiteboards, and online communication platforms like Zoom and MS Teams. This approach transforms the teaching and learning experience into a more seamless, immersive, and inclusive one. This paper outlines the design principles and key features of CPLE that support both teaching and group-based activities. We also explore the key characteristics and potential impact of such environments on educational practices. By analyzing user feedback, we evaluate how technology enhances teaching and learning in a cyber-physical setting, its impact on learning outcomes, user-friendliness, and areas for further enhancement to optimize the teaching and learning environment.

Keywords: cyber-physical class, hybrid teaching, online learning, remote learning, technology enabled learning

Procedia PDF Downloads 22
6522 The Relationship between Creative Imagination and Curriculum

Authors: Faride Hashemiannejad, Shima Oloomi

Abstract:

Imagination is one of the important elements of creative thinking which as a skill needs attention by the educational system. Although most students learn reading, writing, and arithmetic skills well, they lack high level thinking skills like creative thinking. Therefore, in the information age and in the beginning of entry to knowledge-based society, the educational system needs to think over its goals and mission, and concentrate on creativity-based curriculum. From among curriculum elements-goals, content, method and evaluation “method” is a major domain whose reform can pave the way for fostering imagination and creativity. The purpose of this study was examining the relationship between creativity development and curriculum. Research questions were: (1) is there a relationship between the cognitive-emotional structure of the classroom and creativity development? (2) Is there a relationship between the environmental-social structure of the classroom and creativity development? (3) Is there a relationship between the thinking structure of the classroom and creativity development? (4) Is there a relationship between the physical structure of the classroom and creativity development? (5) Is there a relationship between the instructional structure of the classroom and creativity development? Method: This research is a applied research and the research method is Correlational research. Participants: The total number of participants in this study included 894 students from High school through 11th grade from seven schools of seven zones in Mashad city. Sampling Plan: Sampling was selected based on Random Multi State. Measurement: The dependent measure in this study was: (a) the Test of Creative Thinking, (b) The researcher-made questionnaire includes five fragments, cognitive, emotional structure, environmental social structure, thinking structure, physical structure, and instructional structure. The Results Show: There was significant relationship between the cognitive-emotional structure of the classroom and student’s creativity development (sig=0.139). There was significant relationship between the environmental-social structure of the classroom and student’s creativity development (sig=0.006). There was significant relationship between the thinking structure of the classroom and student’s creativity development (sig=0.004). There was not significant relationship between the physical structure of the classroom and student’s creativity development (sig=0.215). There was significant relationship between the instructional structure of the classroom and student’s creativity development (sig=0.003). These findings denote if students feel secure, calm and confident, they can experience creative learning. Also the quality of coping with students’ questions, imaginations and risks can influence on their creativity development.

Keywords: imagination, creativity, curriculum, bioinformatics, biomedicine

Procedia PDF Downloads 475
6521 Statistical Description of Counterpoise Effective Length Based on Regressive Formulas

Authors: Petar Sarajcev, Josip Vasilj, Damir Jakus

Abstract:

This paper presents a novel statistical description of the counterpoise effective length due to lightning surges, where the (impulse) effective length had been obtained by means of regressive formulas applied to the transient simulation results. The effective length is described in terms of a statistical distribution function, from which median, mean, variance, and other parameters of interest could be readily obtained. The influence of lightning current amplitude, lightning front duration, and soil resistivity on the effective length has been accounted for, assuming statistical nature of these parameters. A method for determining the optimal counterpoise length, in terms of the statistical impulse effective length, is also presented. It is based on estimating the number of dangerous events associated with lightning strikes. Proposed statistical description and the associated method provide valuable information which could aid the design engineer in optimising physical lengths of counterpoises in different grounding arrangements and soil resistivity situations.

Keywords: counterpoise, grounding conductor, effective length, lightning, Monte Carlo method, statistical distribution

Procedia PDF Downloads 424