Search results for: equipment care and maintenance
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 6350

Search results for: equipment care and maintenance

2450 Medical Knowledge Management since the Integration of Heterogeneous Data until the Knowledge Exploitation in a Decision-Making System

Authors: Nadjat Zerf Boudjettou, Fahima Nader, Rachid Chalal

Abstract:

Knowledge management is to acquire and represent knowledge relevant to a domain, a task or a specific organization in order to facilitate access, reuse and evolution. This usually means building, maintaining and evolving an explicit representation of knowledge. The next step is to provide access to that knowledge, that is to say, the spread in order to enable effective use. Knowledge management in the medical field aims to improve the performance of the medical organization by allowing individuals in the care facility (doctors, nurses, paramedics, etc.) to capture, share and apply collective knowledge in order to make optimal decisions in real time. In this paper, we propose a knowledge management approach based on integration technique of heterogeneous data in the medical field by creating a data warehouse, a technique of extracting knowledge from medical data by choosing a technique of data mining, and finally an exploitation technique of that knowledge in a case-based reasoning system.

Keywords: data warehouse, data mining, knowledge discovery in database, KDD, medical knowledge management, Bayesian networks

Procedia PDF Downloads 378
2449 Securing Healthcare IoT Devices and Enabling SIEM Integration: Addressing

Authors: Mubarak Saadu Nabunkari, Abdullahi Abdu Ibrahim, Muhammad Ilyas

Abstract:

This study looks at how Internet of Things (IoT) devices are used in healthcare to monitor and treat patients better. However, using these devices in healthcare comes with security problems. The research explores using Security Information and Event Management (SIEM) systems with healthcare IoT devices to solve these security challenges. Reviewing existing literature shows the current state of IoT security and emphasizes the need for better protection. The main worry is that healthcare IoT devices can be easily hacked, putting patient data and device functionality at risk. To address this, the research suggests a detailed security framework designed for these devices. This framework, based on literature and best practices, includes important security measures like authentication, data encryption, access controls, and anomaly detection. Adding SIEM systems to this framework helps detect threats in real time and respond quickly to incidents, making healthcare IoT devices more secure. The study highlights the importance of this integration and offers guidance for implementing healthcare IoT securely, efficiently, and effectively.

Keywords: cyber security, threat intelligence, forensics, heath care

Procedia PDF Downloads 46
2448 Optimisation Model for Maximising Social Sustainability in Construction Scheduling

Authors: Laura Florez

Abstract:

The construction industry is labour intensive, and the behaviour and management of workers have a direct impact on the performance of construction projects. One of the issues it currently faces is how to recruit and maintain its workers. Construction is known as an industry where workers face the problem of short employment durations, frequent layoffs, and periods of unemployment between jobs. These challenges not only creates pressures on the workers but also project managers have to constantly train new workers, face skills shortage, and uncertainty on the quality of the workers it will attract. To consider worker’s needs and project managers expectations, one practice that can be implemented is to schedule construction projects to maintain a stable workforce. This paper proposes a mixed integer programming (MIP) model to schedule projects with the objective of maximising social sustainability of construction projects, that is, maximise labour stability. Aside from the social objective, the model accounts for equipment and financial resources required by the projects during the construction phase. To illustrate how the solution strategy works, a construction programme comprised of ten projects is considered. The projects are scheduled to maximise labour stability while simultaneously minimising time and minimising cost. The tradeoff between the values in terms of time, cost, and labour stability allows project managers to consider their preferences and identify which solution best suits their needs. Additionally, the model determines the optimal starting times for each of the projects, working patterns for the workers, and labour costs. This model shows that construction projects can be scheduled to not only benefit the project manager, but also benefit current workers and help attract new workers to the industry. Due to its practicality, it can be a valuable tool to support decision making and assist construction stakeholders when developing schedules that include social sustainability factors.

Keywords: labour stability, mixed-integer programming (MIP), scheduling, workforce management

Procedia PDF Downloads 245
2447 Stress and Distress among Physician Trainees: A Wellbeing Workshop

Authors: Carmen Axisa, Louise Nash, Patrick Kelly, Simon Willcock

Abstract:

Introduction: Doctors experience high levels of burnout, stress and psychiatric morbidity. This can affect the health of the doctor and impact patient care. Study Aims: To evaluate the effectiveness of a workshop intervention to promote wellbeing for Australian Physician Trainees. Methods: A workshop was developed in consultation with specialist clinicians to promote health and wellbeing for physician trainees. The workshop objectives were to improve participant understanding about factors affecting their health and wellbeing, to outline strategies on how to improve health and wellbeing and to encourage participants to apply these strategies in their own lives. There was a focus on building resilience and developing long term healthy behaviours as part of the physician trainee daily lifestyle. Trainees had the opportunity to learn practical strategies for stress management, gain insight into their behaviour and take steps to improve their health and wellbeing. The workshop also identified resources and support systems available to trainees. The workshop duration was four and a half hours including a thirty- minute meal break where a catered meal was provided for the trainees. Workshop evaluations were conducted at the end of the workshop. Sixty-seven physician trainees from Adult Medicine and Paediatric training programs in Sydney Australia were randomised into intervention and control groups. The intervention group attended a workshop facilitated by specialist clinicians and the control group did not. Baseline and post intervention measurements were taken for both groups to evaluate the impact and effectiveness of the workshop. Forty-six participants completed all three measurements (69%). Demographic, personal and self-reported data regarding work/life patterns was collected. Outcome measures include Depression Anxiety Stress Scale (DASS), Professional Quality of Life Scale (ProQOL) and Alcohol Use Disorders Identification Test (AUDIT). Results: The workshop was well received by the physician trainees and workshop evaluations showed that the majority of trainees strongly agree or agree that the training was relevant to their needs (96%) and met their expectations (92%). All trainees strongly agree or agree that they would recommend the workshop to their medical colleagues. In comparison to the control group we observed a reduction in alcohol use, depression and burnout but an increase in stress, anxiety and secondary traumatic stress in the intervention group, at the primary endpoint measured at 6 months. However, none of these differences reached statistical significance (p > 0.05). Discussion: Although the study did not reach statistical significance, the workshop may be beneficial to physician trainees. Trainees had the opportunity to share ideas, gain insight into their own behaviour, learn practical strategies for stress management and discuss approach to work, life and self-care. The workshop discussions enabled trainees to share their experiences in a supported environment where they learned that other trainees experienced stress and burnout and they were not alone in needing to acquire successful coping mechanisms and stress management strategies. Conclusion: These findings suggest that physician trainees are a vulnerable group who may benefit from initiatives that promote wellbeing and from a more supportive work environment.

Keywords: doctors' health, physician burnout, physician resilience, wellbeing workshop

Procedia PDF Downloads 175
2446 Rest API Based System-level Test Automation for Mobile Applications

Authors: Jisoo Song

Abstract:

Today’s mobile applications are communicating with servers more and more in order to access external services or information. Also, server-side code changes are more frequent than client-side code changes in a mobile application. The frequent changes lead to an increase in testing cost increase. To reduce costs, UI based test automation can be one of the solutions. It is a common automation technique in system-level testing. However, it can be unsuitable for mobile applications. When you automate tests based on UI elements for mobile applications, there are some limitations such as the overhead of script maintenance or the difficulty of finding invisible defects that UI elements cannot represent. To overcome these limitations, we present a new automation technique based on Rest API. You can automate system-level tests through test scripts that you write. These scripts call a series of Rest API in a user’s action sequence. This technique does not require testers to know the internal implementation details, only input and expected output of Rest API. You can easily modify test cases by modifying Rest API input values and also find problems that might not be evident from the UI level by validating output values. For example, when an application receives price information from a payment server and user cannot see it at UI level, Rest API based scripts can check whether price information is correct or not. More than 10 mobile applications at our company are being tested automatically based on Rest API scripts whenever application source code, mostly server source code, is built. We are finding defects right away by setting a script as a build job in CI server. The build job starts when application code builds are completed. This presentation will also include field cases from our company.

Keywords: case studies at SK Planet, introduction of rest API based test automation, limitations of UI based test automation

Procedia PDF Downloads 434
2445 Quality of Life Among People with Mental Illness Attending a Psychiatric Outpatient Clinic in Ethiopia: A Structural Equation Model

Authors: Wondale Getinet Alemu, Lillian Mwanri, Clemence Due, Telake Azale, Anna Ziersch

Abstract:

Background: Mental illness is one of the most severe, chronic, and disabling public health problems that affect patients' Quality of life (QoL). Improving the QoL for people with mental illness is one of the most critical steps in stopping disease progression and avoiding complications of mental illness. Therefore, we aimed to assess the QoL and its determinants in patients with mental illness in outpatient clinics in Northwest Ethiopia in 2023. Methods: A facility-based cross-sectional study was conducted among people with mental illness in an outpatient clinic in Ethiopia. The sampling interval was decided by dividing the total number of study participants who had a follow-up appointment during the data collection period (2400) by the total sample size of 638, with the starting point selected by lottery method. The interviewer-administered WHOQOL BREF-26 tool was used to measure the QoL of people with mental illness. The domains and Health-Related Quality of Life (HRQoL) were identified. The indirect and direct effects of variables were calculated using structural equation modeling with SPSS-28 and Amos-28 software. A p-value of < 0.05 and a 95% CI were used to evaluate statistical significance. Results: A total of 636 (99.7%) participants responded and completed the WHOQOL-BREF questionnaire. The mean score of overall HRQoL of people with mental illness in the outpatient clinic was (49.6 ± 10 Sd). The highest QoL was found in the physical health domain (50.67 ±9.5 Sd), and the lowest mean QoL was found in the psychological health domain (48.41±10 Sd). Rural residents, drug nonadherence, suicidal ideation, not getting counseling, moderate or severe subjective severity, the family does not participate in patient care, and a family history of mental illness had an indirect negative effect on HRQoL. Alcohol use and psychological health domain had a direct positive effect on QoL. Furthermore, objective severity of illness, having low self-esteem, and having a history of mental illness in the family had both direct and indirect effects on QoL. Furthermore, sociodemographic factors (residence, educational status, marital status), social support-related factors (self-esteem, family not participating in patient care), substance use factors (alcohol use, tobacco use,) and clinical factors (objective and subjective severity of illness, not getting counseling, suicidal ideation, number of episodes, comorbid illness, family history of mental illness, poor drug adherence) directly and indirectly affected QoL. Conclusions: In this study, the QoL of people with mental illness was poor, with the psychological health domain being the most affected. Sociodemographic factors, social support-related factors, drug use factors, and clinical factors directly and indirectly, affect QoL through the mediator variables of physical health domains, psychological health domains, social relation health domains, and environmental health domains. In order to improve the QoL of people with mental illnesses, we recommend that emphasis be given to addressing the scourge of mental health, including the development of policy and practice drivers that address the above-identified factors.

Keywords: quality of life, mental wellbeing, mental illness, mental disorder, Ethiopia

Procedia PDF Downloads 62
2444 Review on Future Economic Potential Stems from Global Electronic Waste Generation and Sustainable Recycling Practices.

Authors: Shamim Ahsan

Abstract:

Abstract Global digital advances associated with consumer’s strong inclination for the state of art digital technologies is causing overwhelming social and environmental challenges for global community. During recent years not only economic advances of electronic industries has taken place at steadfast rate, also the generation of e-waste outshined the growth of any other types of wastes. The estimated global e-waste volume is expected to reach 65.4 million tons annually by 2017. Formal recycling practices in developed countries are stemming economic liability, opening paths for illegal trafficking to developing countries. Informal crude management of large volume of e-waste is transforming into an emergent environmental and health challenge in. Contrariwise, in several studies formal and informal recycling of e-waste has also exhibited potentials for economic returns both in developed and developing countries. Some research on China illustrated that from large volume of e-wastes generation there are recycling potential in evolving from ∼16 (10−22) billion US$ in 2010, to an anticipated ∼73.4 (44.5−103.4) billion US$ by 2030. While in another study, researcher found from an economic analysis of 14 common categories of waste electric and electronic equipment (WEEE) the overall worth is calculated as €2.15 billion to European markets, with a potential rise to €3.67 billion as volumes increase. These economic returns and environmental protection approaches are feasible only when sustainable policy options are embraced with stricter regulatory mechanism. This study will critically review current researches to stipulate how global e-waste generation and sustainable e-waste recycling practices demonstrate future economic development potential in terms of both quantity and processing capacity, also triggering complex some environmental challenges.

Keywords: E-Waste, , Generation, , Economic Potential, Recycling

Procedia PDF Downloads 292
2443 Hematuria Following Magnesium Sulfate Administration in a Pregnant Patient with Renal Tubular Acidosis

Authors: Jan Gayl Barcelon, N. Gorgonio

Abstract:

Renal tubular acidosis, a medical condition that involves the accumulation of acid in the body due to failure of the kidneys to maintain normal urine and blood pH, is rarely encountered in pregnancy. The effect of renal tubular acidosis in pregnancy is not fully established. It may worsen during pregnancy and cause maternal and fetal morbidity. A 30-year-old primigravida was diagnosed with renal tubular acidosis at age 7, but due to uncontrolled disease progression, she developed rickets at age 10. She was first seen in our institution at eight weeks gestation and maintained on bicarbonate and potassium supplementation. At 26 weeks gestation, she was diagnosed with polyhydramnios, causing on and off irregular uterine contractions. At 30 weeks gestation, despite oral Nifedipine, premature labor was uncontrolled; hence she was admitted for tocolysis. With elevated creatinine (123 umol/L) and a normal blood urea nitrogen level (6.70 mmol/L), she was referred to Nephrology Service, which cleared the patient prior to MgSO₄ drip. Dosing of 4g MgSO₄ over 20 minutes followed by a maintenance of 2g/hour x 24 hours for neuroprotection and tocolysis was ordered. Two hours after MgSO₄ drip initiation, hematuria developed with adequate urine output. The infusion was immediately stopped. The serum magnesium level was high normal at 6.7 mEq/L. After 4 hours of renal clearance, the repeat serum magnesium level was normal (2.7 mEq/L) and with clear urine output. The patient was then given Nifedipine 30mg/tab, 3x a day which controlled the uterine contractions. At 37 weeks gestation, the patient delivered via primary low transverse Cesarean Section to a live female with a birthweight of 2470gm, appropriate for gestational age. The use of MgSO₄ for the control of premature labor in patients with chronic renal disease secondary to renal tubular can cause hematuria.

Keywords: hematuria, magnesium sulfate, premature labor, renal tubular acidosis

Procedia PDF Downloads 116
2442 Investigations on the Influence of Web Openings on the Load Bearing Behavior of Steel Beams

Authors: Felix Eyben, Simon Schaffrath, Markus Feldmann

Abstract:

A building should maximize the potential for use through its design. Therefore, flexible use is always important when designing a steel structure. To create flexibility, steel beams with web openings are increasingly used, because these offer the advantage that cables, pipes and other technical equipment can easily be routed through without detours, allowing for more space-saving and aesthetically pleasing construction. This can also significantly reduce the height of ceiling systems. Until now, beams with web openings were not explicitly considered in the European standard. However, this is to be done with the new EN 1993-1-13, in which design rules for different opening forms are defined. In order to further develop the design concepts, beams with web openings under bending are therefore to be investigated in terms of damage mechanics as part of a German national research project aiming to optimize the verifications for steel structures based on a wider database and a validated damage prediction. For this purpose, first, fundamental factors influencing the load-bearing behavior of girders with web openings under bending load were investigated numerically without taking material damage into account. Various parameter studies were carried out for this purpose. For example, the factors under study were the opening shape, size and position as well as structural aspects as the span length, arrangement of stiffeners and loading situation. The load-bearing behavior is evaluated using resulting load-deformation curves. These results are compared with the design rules and critically analyzed. Experimental tests are also planned based on these results. Moreover, the implementation of damage mechanics in the form of the modified Bai-Wierzbicki model was examined. After the experimental tests will have been carried out, the numerical models are validated and further influencing factors will be investigated on the basis of parametric studies.

Keywords: damage mechanics, finite element, steel structures, web openings

Procedia PDF Downloads 156
2441 Permeable Bio-Reactive Barriers to Tackle Petroleum Hydrocarbon Contamination in the Sub-Antarctic

Authors: Benjamin L. Freidman, Sally L. Gras, Ian Snape, Geoff W. Stevens, Kathryn A. Mumford

Abstract:

Increasing transportation and storage of petroleum hydrocarbons in Antarctic and sub-Antarctic regions have resulted in frequent accidental spills. Migrating petroleum hydrocarbon spills can have a significant impact on terrestrial and marine ecosystems in cold regions, as harsh environmental conditions result in heightened sensitivity to pollution. This migration of contaminants has led to the development of Permeable Reactive Barriers (PRB) for application in cold regions. PRB’s are one of the most practical technologies for on-site or in-situ groundwater remediation in cold regions due to their minimal energy, monitoring and maintenance requirements. The Main Power House site has been used as a fuel storage and power generation area for the Macquarie Island research station since at least 1960. Soil analysis at the site has revealed Total Petroleum Hydrocarbon (TPH) (C9-C28) concentrations as high as 19,000 mg/kg soil. Groundwater TPH concentrations at this site can exceed 350 mg/L TPH. Ongoing migration of petroleum hydrocarbons into the neighbouring marine ecosystem resulted in the installation of a ‘funnel and gate’ PRB in November 2014. The ‘funnel and gate’ design successfully intercepted contaminated groundwater and analysis of TPH retention and biodegradation on PRB media are currently underway. Installation of the PRB facilitates research aimed at better understanding the contribution of particle attached biofilms to the remediation of groundwater systems. Bench-scale PRB system analysis at The University of Melbourne is currently examining the role biofilms play in petroleum hydrocarbon degradation, and how controlled release nutrient media can heighten the metabolic activity of biofilms in cold regions in the presence of low temperatures and low nutrient groundwater.

Keywords: groundwater, petroleum, Macquarie island, funnel and gate

Procedia PDF Downloads 348
2440 Predicting COVID-19 Severity Using a Simple Parameters in Resource-Limited Settings

Authors: Sireethorn Nimitvilai, Ussanee Poolvivatchaikarn, Nuchanart Tomeun

Abstract:

Objective: To determine the simple laboratory parameters to predict disease severity among COVID-19 patients in resource-limited settings. Material and methods: A retrospective cohort study was conducted at Nakhonpathom Hospital, a 722-bed tertiary care hospital, with an average of 50,000 admissions per year, during April 15 and May 15, 2021. Eligible patients were adults aged ≥ 15 years who were hospitalized with COVID-19. Baseline characteristics, comorbid conditions ad laboratory findings at admission were collected. Predictive factors for severe COVID-19 infection were analyzed. Result: There were 207 patients (79 male and 128 female) and the mean age was 46.7 (16.8) years. Of these, 39 cases (18.8%) were severe and 168 (81.2%) cases were non-severe. Factors associated with severe COVID-19 were neutrophil to lymphocyte ratio ≥ 4 (OR 8.1, 95%CI 2.3-20.3, P < 0.001) and C-reactive protein to albumin ratio ≥ 10 (OR 3.49, 95%CI 1.3-9.1, p 0.01). Conclusions: Complete blood counts, C-reactive protein and albumin are simple, inexpensive, widely available tests and can be used to predict severe COVID-19 in resource-limited settings.

Keywords: COVID-19, predictor of severity, resource-limiting settings, simple laboratory parameters

Procedia PDF Downloads 165
2439 Repeated Batch Cultivation: A Novel Empty and Fill Strategy for the Enhanced Production of a Biodegradable Polymer, Polyhydroxy Alkanoate by Alcaligenes latus

Authors: Geeta Gahlawat, Ashok Kumar Srivastava

Abstract:

In the present study, a simple drain and fill protocol strategy of repeated batch was adopted for enhancement in polyhydroxyalkanoates (PHAs) production using alcaligenes latus DSM 1124. Repeated batch strategy helped in increasing the longevity of otherwise decaying culture in the bioreactor by supplementing fresh substrates during each cycle of repeated-batch. The main advantages of repeated batch are its ease of operation, enhancement of culture stability towards contamination, minimization of pre-culture effects and maintenance of organism at high growth rates. The cultivation of A. latus was carried out in 7 L bioreactor containing 4 L optimized nutrient medium and a comparison with the batch mode fermentation was done to evaluate the performance of repeated batch in terms of PHAs accumulation and productivity. The statistically optimized medium recipe consisted of: 25 g/L Sucrose, 2.8 g/L (NH4)2SO4, 3.25 g/L KH2PO4, 3.25 g/L Na2HPO4, 0.2 g/L MgSO4, 1.5 mL/L trace element solution. In this strategy, 20% (v/v) of the culture broth was removed from the reactor and supplemented with an equal volume of fresh medium when sucrose concentration inside the reactor decreased below 8 g/L. The fermenter was operated for three repeated batch cycles and fresh nutrient feeding was done at 27 h, 48 h, and 60 h. Repeated batch operation resulted in a total biomass of 27.89 g/L and PHAs concentration 20.55 g/L at the end of 69 h which was a marked improvement as compared to batch cultivation (8.71 g/L biomass and 6.24 g/L PHAs). This strategy demonstrated 3.3 fold and 1.8 fold increase in PHAs concentration and volumetric productivity, respectively as compared to batch cultivation. Repeated batch cultivation strategy had also the benefit of avoiding non-productive time period required for cleaning, refilling and sterilization of bioreactor, thereby increasing the overall volumetric productivity and making the entire process cost-effective too.

Keywords: alcaligenes, biodegradation, polyhydroxyalkanoates, repeated batch

Procedia PDF Downloads 356
2438 Seismic Data Scaling: Uncertainties, Potential and Applications in Workstation Interpretation

Authors: Ankur Mundhra, Shubhadeep Chakraborty, Y. R. Singh, Vishal Das

Abstract:

Seismic data scaling affects the dynamic range of a data and with present day lower costs of storage and higher reliability of Hard Disk data, scaling is not suggested. However, in dealing with data of different vintages, which perhaps were processed in 16 bits or even 8 bits and are need to be processed with 32 bit available data, scaling is performed. Also, scaling amplifies low amplitude events in deeper region which disappear due to high amplitude shallow events that saturate amplitude scale. We have focused on significance of scaling data to aid interpretation. This study elucidates a proper seismic loading procedure in workstations without using default preset parameters as available in most software suites. Differences and distribution of amplitude values at different depth for seismic data are probed in this exercise. Proper loading parameters are identified and associated steps are explained that needs to be taken care of while loading data. Finally, the exercise interprets the un-certainties which might arise when correlating scaled and unscaled versions of seismic data with synthetics. As, seismic well tie correlates the seismic reflection events with well markers, for our study it is used to identify regions which are enhanced and/or affected by scaling parameter(s).

Keywords: clipping, compression, resolution, seismic scaling

Procedia PDF Downloads 458
2437 Effect of Cardio-Specific Overexpression of MUL1, a Mitochondrial Protein on Myocardial Function

Authors: Ximena Calle, Plinio Cantero-López, Felipe Muñoz-Córdova, Mayarling-Francisca Troncoso, Sergio Lavandero, Valentina Parra

Abstract:

MUL1, a mitochondrial E3 ubiquitin ligase anchored to the outer mitochondrial membrane, is highly expressed in the heart. MUL1 is involved in multiple biological pathways associated with mitochondrial dynamics. Increased MUL1 affects the balance between fission and fusion, affecting mitochondrial function, which plays a crucial role in myocardial function. Therefore, it is interesting to evaluate the effect of cardiac-specific overexpression of MUL1 on myocardial function. Aim: To determine heart functionality in a mouse model with cardio-specific overexpression MUL1 protein. Methods and Results: Male C57BL/Tg transgenic mice with cardiomyocyte-specific overexpression of MUL1 (n=10) and control (n=4) were evaluated at 12, 27, and 35 weeks of age. Glucose tolerance curve determination was performed after a 6-hours fast to assess metabolic capacity, treadmill test, and systolic, and diastolic pressure was evaluated by the mouse tail-cuff blood pressure system equipment. The result showed no glucose tolerance curve, and the treadmill test demonstrated no significant changes between groups. However, substantial changes in diastolic function were observed by ultrasound and determination of cardiac hypertrophy proteins by western blot. Conclusions: Cardio-specific overexpression of MUL1 in mice without any treatment affects diastolic cardiac function, thus showing the important role contributed by MUL1 in the heart. Future research should evaluate the effect of cardiomyocyte-specific overexpression of MUL1 in pathological conditions such as a high-fat diet is one of the main risk factors for cardiovascular disease.

Keywords: diastolic dysfunction, hypertrophy cardiac, mitochondrial E3 ubiquitin ligase 1, MUL1

Procedia PDF Downloads 59
2436 Awareness about Work-Related Hazards Causing Musculoskeletal Disorders

Authors: Bintou Jobe

Abstract:

Musculo-skeletal disorders (MSDs) are injuries or disorders of the spine disc, muscle strains, and low back injuries. It remains a major cause of occupational illness. Findings: Due to poor grips during handling, it is possible for neck, shoulder, arm, knees, ankle, fingers, waist, lower back injuries, and other muscle joints to be affected. Pregnant women are more prone to physical and hormonal changes, which lead to the relaxation of supporting ligaments. MSD continues to pose a global concern due to its impact on workers worldwide. The prevalence of the disorder is high, according to research into the workforce in Europe and developing countries. The causes are characterized by long working hours, insufficient rest breaks, poor posture, repetitive motion, poor manual handling techniques, psychological stress, and poor nutrition. To prevent MSD, the design mainly involves avoiding and assessing the risk. However, clinical solutions, policy governance, and minimizing manual labour are also an alternative. In addition, eating a balanced diet and teamwork force are key to elements in minimising the risk. This review aims to raise awareness and promote cost effectiveness prevention and understanding of MSD through research and identify proposed solutions to recognise the underlying causes of MSDs in the construction sectors. The methodology involves a literature review approach, engaging with the policy landscape of MSD, synthesising publications on MSD and a wider range of academic publications. In conclusion, training on effective manual handling techniques should be considered, and Personal Protective Equipment should be a last resort. The implementation of training guidelines has yielded significant benefits.

Keywords: musculoskeletal disorder work related, MSD, manual handling, work hazards

Procedia PDF Downloads 48
2435 Development of Electric Generator and Water Purifier Cart

Authors: Luisito L. Lacatan, Gian Carlo J. Bergonia, Felipe C. Buado III, Gerald L. Gono, Ron Mark V. Ortil, Calvin A. Yap

Abstract:

This paper features the development of a Mobile Self-sustaining Electricity Generator for water distillation process with MCU- based wireless controller & indicator designed to solve the problem of scarcity of clean water. It is a fact that pure water is precious nowadays and its value is more precious to those who do not have or enjoy it. There are many water filtration products in existence today. However, none of these products fully satisfies the needs of families needing clean drinking water. All of the following products require either large sums of money or extensive maintenance, and some products do not even come with a guarantee of potable water. The proposed project was designed to alleviate the problem of scarcity of potable water in the country and part of the purpose was also to identify the problem or loopholes of the project such as the distance and speed required to produce electricity using a wheel and alternator, the required time for the heating element to heat up, the capacity of the battery to maintain the heat of the heating element and the time required for the boiler to produce a clean and potable water. The project has three parts. The first part included the researchers’ effort to plan every part of the project from the conversion of mechanical energy to electrical energy, from purifying water to potable drinking water to the controller and indicator of the project using microcontroller unit (MCU). This included identifying the problem encountered and any possible solution to prevent and avoid errors. Gathering and reviewing related studies about the project helped the researcher reduce and prevent any problems before they could be encountered. It also included the price and quantity of materials used to control the budget.

Keywords: mobile, self – sustaining, electricity generator, water distillation, wireless battery indicator, wireless water level indicator

Procedia PDF Downloads 300
2434 Afghan Refugees as Perpetui Inimici: Revisiting an Early Modern Debate on Enemy Aliens

Authors: Brian Smith

Abstract:

This paper seeks to contrast the contemporary anti-immigration rhetoric since the US pullout of Afghanistan with the debate about enemy aliens in the early modern period. In the seventeenth century, Sir Edward Coke declared that “infidels” should be seen as perpetui inimici (perpetual enemies) since their values were inimical to those of Christian states. As such, they could be perpetually excluded and denied legal standing. Even at that time, these anti-“infidel” arguments clashed with the natural law tradition of hospitality, which assumed that states had a moral responsibility to admit and care for strangers. In particular, this paper looks at the conflict between Hugo Grotius, Samuel Pufendorf, and John Locke. Grotius argues that states have a duty to admit foreigners. He goes out of his way to plan for the admittance of Jewish immigrants. In contrast, Pufendorf claimed that sovereigns had a duty exclude foreigners who would alter the constitutional character of the state. Much like Grotius, Locke argued that non-Christian peoples should be treated as friends and admitted without reservation.

Keywords: enemy aliens, perpetual enemies, hospitality, refugees

Procedia PDF Downloads 86
2433 Potential of Enhancing Oil Recovery in Omani Oil Fields via Biopolymer Injection

Authors: Yahya Al-Wahaibi, Saif Al-Bahry, Abdulkadir Elshafie, Ali Al-Bemani, Sanket Joshi

Abstract:

Microbial enhanced oil recovery is one of the most economical and efficient methods for extending the life of production wells in a declining reservoir. There are a variety of metabolites produced by microorganisms that can be useful for oil recovery, like biopolymers-polysaccharides secreted by microbes, biodegradable thus environmentally friendly. Some fungi like Schizophyllum commune (a type of mushroom), and Aureobasidium pullulans are reported to produce biopolymers-schizophyllan and pullulan. Hence, we have procured a microbial strain (Schizophyllum commune) from American Type Culture Collection, which is reported for producing a biopolymer and also isolated several Omani strains of Aureobasidium pullulans from different samples. Studies were carried out for maintenance of the strains and primary screening of production media and environmental conditions for growth of S. commune and Omani A. pullulans isolates, for 30 days. The observed optimum growth and production temperature was ≤35 °C for S. commune and Omani A. pullulans isolates. Better growth was observed for both types of fungi under shaking conditions. The initial yield of lyophilized schizophyllan was ≥3.0 g/L, and the yield of pullulan was ≥0.5g/L. Both schizophyllan and pullulan were extracted in crude form and were partially identified by Fourier transform infrared spectroscopy (FTIR), which showed partial similarity in chemical structure with published biopolymers. The produced pullulan and schizophyllan increased the viscosity from 9-20 cp of the control media (without biopolymer) to 20 - 121.4 cp of the cell free broth at 0.1 s-1 shear rate at range of temperatures from 25–45 °C. Enhanced biopolymer production and its physicochemical and rheological properties under different environmental conditions (different temperatures, salt concentrations and wide range of pH), complete characterization and effects on oil recovery enhancement were also investigated in this study.

Keywords: Aureobasidium pullulans, biopolymer, oil recovery enhancement, Schizophyllum commune

Procedia PDF Downloads 376
2432 Saving Energy through Scalable Architecture

Authors: John Lamb, Robert Epstein, Vasundhara L. Bhupathi, Sanjeev Kumar Marimekala

Abstract:

In this paper, we focus on the importance of scalable architecture for data centers and buildings in general to help an enterprise achieve environmental sustainability. The scalable architecture helps in many ways, such as adaptability to the business and user requirements, promotes high availability and disaster recovery solutions that are cost effective and low maintenance. The scalable architecture also plays a vital role in three core areas of sustainability: economy, environment, and social, which are also known as the 3 pillars of a sustainability model. If the architecture is scalable, it has many advantages. A few examples are that scalable architecture helps businesses and industries to adapt to changing technology, drive innovation, promote platform independence, and build resilience against natural disasters. Most importantly, having a scalable architecture helps industries bring in cost-effective measures for energy consumption, reduce wastage, increase productivity, and enable a robust environment. It also helps in the reduction of carbon emissions with advanced monitoring and metering capabilities. Scalable architectures help in reducing waste by optimizing the designs to utilize materials efficiently, minimize resources, decrease carbon footprints by using low-impact materials that are environmentally friendly. In this paper we also emphasize the importance of cultural shift towards the reuse and recycling of natural resources for a balanced ecosystem and maintain a circular economy. Also, since all of us are involved in the use of computers, much of the scalable architecture we have studied is related to data centers.

Keywords: scalable architectures, sustainability, application design, disruptive technology, machine learning and natural language processing, AI, social media platform, cloud computing, advanced networking and storage devices, advanced monitoring and metering infrastructure, climate change

Procedia PDF Downloads 72
2431 Discrete-Event Modeling and Simulation Methodologies: Past, Present and Future

Authors: Gabriel Wainer

Abstract:

Modeling and Simulation methods have been used to better analyze the behavior of complex physical systems, and it is now common to use simulation as a part of the scientific and technological discovery process. M&S advanced thanks to the improvements in computer technology, which, in many cases, resulted in the development of simulation software using ad-hoc techniques. Formal M&S appeared in order to try to improve the development task of very complex simulation systems. Some of these techniques proved to be successful in providing a sound base for the development of discrete-event simulation models, improving the ease of model definition and enhancing the application development tasks; reducing costs and favoring reuse. The DEVS formalism is one of these techniques, which proved to be successful in providing means for modeling while reducing development complexity and costs. DEVS model development is based on a sound theoretical framework. The independence of M&S tasks made possible to run DEVS models on different environments (personal computers, parallel computers, real-time equipment, and distributed simulators) and middleware. We will present a historical perspective of discrete-event M&S methodologies, showing different modeling techniques. We will introduce DEVS origins and general ideas, and compare it with some of these techniques. We will then show the current status of DEVS M&S, and we will discuss a technological perspective to solve current M&S problems (including real-time simulation, interoperability, and model-centered development techniques). We will show some examples of the current use of DEVS, including applications in different fields. We will finally show current open topics in the area, which include advanced methods for centralized, parallel or distributed simulation, the need for real-time modeling techniques, and our view in these fields.

Keywords: modeling and simulation, discrete-event simulation, hybrid systems modeling, parallel and distributed simulation

Procedia PDF Downloads 309
2430 Study of Mobile Game Addiction Using Electroencephalography Data Analysis

Authors: Arsalan Ansari, Muhammad Dawood Idrees, Maria Hafeez

Abstract:

Use of mobile phones has been increasing considerably over the past decade. Currently, it is one of the main sources of communication and information. Initially, mobile phones were limited to calls and messages, but with the advent of new technology smart phones were being used for many other purposes including video games. Despite of positive outcomes, addiction to video games on mobile phone has become a leading cause of psychological and physiological problems among many people. Several researchers examined the different aspects of behavior addiction with the use of different scales. Objective of this study is to examine any distinction between mobile game addicted and non-addicted players with the use of electroencephalography (EEG), based upon psycho-physiological indicators. The mobile players were asked to play a mobile game and EEG signals were recorded by BIOPAC equipment with AcqKnowledge as data acquisition software. Electrodes were places, following the 10-20 system. EEG was recorded at sampling rate of 200 samples/sec (12,000samples/min). EEG recordings were obtained from the frontal (Fp1, Fp2), parietal (P3, P4), and occipital (O1, O2) lobes of the brain. The frontal lobe is associated with behavioral control, personality, and emotions. The parietal lobe is involved in perception, understanding logic, and arithmetic. The occipital lobe plays a role in visual tasks. For this study, a 60 second time window was chosen for analysis. Preliminary analysis of the signals was carried out with Acqknowledge software of BIOPAC Systems. From the survey based on CGS manual study 2010, it was concluded that five participants out of fifteen were in addictive category. This was used as prior information to group the addicted and non-addicted by physiological analysis. Statistical analysis showed that by applying clustering analysis technique authors were able to categorize the addicted and non-addicted players specifically on theta frequency range of occipital area.

Keywords: mobile game, addiction, psycho-physiology, EEG analysis

Procedia PDF Downloads 149
2429 Development of Automated Quality Management System for the Management of Heat Networks

Authors: Nigina Toktasynova, Sholpan Sagyndykova, Zhanat Kenzhebayeva, Maksat Kalimoldayev, Mariya Ishimova, Irbulat Utepbergenov

Abstract:

Any business needs a stable operation and continuous improvement, therefore it is necessary to constantly interact with the environment, to analyze the work of the enterprise in terms of employees, executives and consumers, as well as to correct any inconsistencies of certain types of processes and their aggregate. In the case of heat supply organizations, in addition to suppliers, local legislation must be considered which often is the main regulator of pricing of services. In this case, the process approach used to build a functional organizational structure in these types of businesses in Kazakhstan is a challenge not only in the implementation, but also in ways of analyzing the employee's salary. To solve these problems, we investigated the management system of heating enterprise, including strategic planning based on the balanced scorecard (BSC), quality management in accordance with the standards of the Quality Management System (QMS) ISO 9001 and analysis of the system based on expert judgment using fuzzy inference. To carry out our work we used the theory of fuzzy sets, the QMS in accordance with ISO 9001, BSC according to the method of Kaplan and Norton, method of construction of business processes according to the notation IDEF0, theory of modeling using Matlab software simulation tools and graphical programming LabVIEW. The results of the work are as follows: We determined possibilities of improving the management of heat-supply plant-based on QMS; after the justification and adaptation of software tool it has been used to automate a series of functions for the management and reduction of resources and for the maintenance of the system up to date; an application for the analysis of the QMS based on fuzzy inference has been created with novel organization of communication software with the application enabling the analysis of relevant data of enterprise management system.

Keywords: balanced scorecard, heat supply, quality management system, the theory of fuzzy sets

Procedia PDF Downloads 350
2428 Carbon Footprint of Road Project for Sustainable Development: Lessons Learnt from Traffic Management of a Developing Urban Centre

Authors: Sajjad Shukur Ullah, Syed Shujaa Safdar Gardezi

Abstract:

Road infrastructure plays a vital role in the economic activities of any economy. Besides derived benefits from these facilities, the utilization of extensive energy resources, fuels, and materials results in a negative impact on the environment in terms of carbon footprint; carbon footprint is the overall amount of greenhouse gas (GHG) generated from any action. However, this aspect of environmental impact from road structure is not seriously considered during such developments, thus undermining a critical factor of sustainable development, which usually remains unaddressed, especially in developing countries. The current work investigates the carbon footprint impact of a small road project (0.8 km, dual carriageway) initiated for traffic management in an urban centre. Life cycle assessment (LCA) with boundary conditions of cradle to the site has been adopted. The only construction phase of the life cycle has been assessed at this stage. An impact of 10 ktons-CO2 (6260 ton-CO2/km) has been assessed. The rigid pavement dominated the contributions as compared to a flexible component. Among the structural elements, the underpass works shared the major portion. Among the materials, the concrete and steel utilized for various structural elements resulted in more than 90% of the impact. The earth-moving equipment was dominant in operational carbon. The results have highlighted that road infrastructure projects pose serious threats to the environment during their construction and which need to be considered during the approval stages. This work provides a guideline for supporting sustainable development that could only be ensured when such endeavours are properly assessed by industry professionals and decide various alternative environmental conscious solutions for the future.

Keywords: construction waste management, kiloton, life cycle assessment, rigid pavement

Procedia PDF Downloads 84
2427 A Comparative Study of Granisetron and Palonosetron in Postoperative Nausea and Vomiting Following Laparoscopic Surgery

Authors: Burra Vijitha

Abstract:

A prospective randomized comparative study for the prevention of postoperative nausea and vomiting in the patients undergoing general anesthesia ,for elective laparoscopic surgeries with respect to efficacy and side effects of granisetron and palonosetron. Sixty adult patients of class ASA 1,2 of either sex in age group between 20-70 yrs,scheduled for elective laparoscopic surgeries were selected for the study.Patients were randomly divided into two groups 30 each. Group G: Granisetron group (n=30), 40µg/kg; Group P: Palonosetron group (n=30), 0.075 mg. at end of surgery before extubation group G patients 40 µg/kg of inj.granisetron and group P patients received 0.075 mg of inj.palonosetron slow iv over 30 sec.In post anesthesia care unit, episodes of nausea and vomiting experienced by each patient was recorded by direct questioning the patient .study medication was assessed in terms of incidence of nausea and vomiting during periods of 0-4 hrs,4-12 hrs,12-24 hrs,24-48hrs.our study demonstrated that complete response for those patients who received granisetron were 86.66%,80% and 66.66% ,while those received palonosetron were 100%,86.6%,90% between 0-4hrs,4-12hrs,12-24 hrs. It shows no statistically signidficant differences between the baseline values of hemodynamic variables beween two groups during study. Keywords: Granisetron, nausea, palonosetron, vomiting.

Keywords: granisetron, palonosetron, nausea, vomiting

Procedia PDF Downloads 225
2426 Reproductive Health Behavior and Nutritional Status of Plain Land Ethnic Women in Bangladesh

Authors: Zainal Abedin

Abstract:

Introduction: Reproductive health is one of the major priorities of global health and is a fundamental and inalienable part of women’s health due to childbearing, and it is closely associated with nutritional status. Objective: This study was done to assess reproductive health behavior and nutritional status of reproductive-age ethnic women residing in plain land. Method: It was a cross-sectional study conducted among conveniently selected 120 reproductive-aged ethnic women at three Upazila of Rajshahi District. Nutritional status was determined by the WHO cut-off value of BMI for the Asian population. Results: About 88% of respondents noticed that they seek treatment in response to disease, and most of them seek treatment from the pharmacy attendant. Two-thirds of women used contraceptives, and 76% of women received antenatal care visits from Govt health centers, private clinics, and NGO clinics, but 86% of respondents delivered at home. In terms of nutritional status, 70% were normal, 23% underweight, and 7% overweight. Conclusion: Though most of them were normal regarding nutritional status but one-fourth were still underweight. Local pharmacy/quack-dependent treatment should be reduced.

Keywords: reproductive health behavior, nutritional status, plain land, ethnic women

Procedia PDF Downloads 64
2425 LTE Performance Analysis in the City of Bogota Northern Zone for Two Different Mobile Broadband Operators over Qualipoc

Authors: Víctor D. Rodríguez, Edith P. Estupiñán, Juan C. Martínez

Abstract:

The evolution in mobile broadband technologies has allowed to increase the download rates in users considering the current services. The evaluation of technical parameters at the link level is of vital importance to validate the quality and veracity of the connection, thus avoiding large losses of data, time and productivity. Some of these failures may occur between the eNodeB (Evolved Node B) and the user equipment (UE), so the link between the end device and the base station can be observed. LTE (Long Term Evolution) is considered one of the IP-oriented mobile broadband technologies that work stably for data and VoIP (Voice Over IP) for those devices that have that feature. This research presents a technical analysis of the connection and channeling processes between UE and eNodeB with the TAC (Tracking Area Code) variables, and analysis of performance variables (Throughput, Signal to Interference and Noise Ratio (SINR)). Three measurement scenarios were proposed in the city of Bogotá using QualiPoc, where two operators were evaluated (Operator 1 and Operator 2). Once the data were obtained, an analysis of the variables was performed determining that the data obtained in transmission modes vary depending on the parameters BLER (Block Error Rate), performance and SNR (Signal-to-Noise Ratio). In the case of both operators, differences in transmission modes are detected and this is reflected in the quality of the signal. In addition, due to the fact that both operators work in different frequencies, it can be seen that Operator 1, despite having spectrum in Band 7 (2600 MHz), together with Operator 2, is reassigning to another frequency, a lower band, which is AWS (1700 MHz), but the difference in signal quality with respect to the establishment with data by the provider Operator 2 and the difference found in the transmission modes determined by the eNodeB in Operator 1 is remarkable.

Keywords: BLER, LTE, network, qualipoc, SNR.

Procedia PDF Downloads 104
2424 Groundwater Investigation Using Resistivity Method and Drilling for Irrigation during the Dry Season in Lwantonde District, Uganda

Authors: Tamale Vincent

Abstract:

Groundwater investigation is the investigation of underground formations to understand the hydrologic cycle, known groundwater occurrences, and identify the nature and types of aquifers. There are different groundwater investigation methods and surface geophysical method is one of the groundwater investigation more especially the Geoelectrical resistivity Schlumberger configuration method which provides valuable information regarding the lateral and vertical successions of subsurface geomaterials in terms of their individual thickness and corresponding resistivity values besides using surface geophysical method, hydrogeological and geological investigation methods are also incorporated to aid in preliminary groundwater investigation. Investigation for groundwater in lwantonde district has been implemented. The area project is located cattle corridor and the dry seasonal troubles the communities in lwantonde district of which 99% of people living there are farmers, thus making agriculture difficult and local government to provide social services to its people. The investigation was done using the Geoelectrical resistivity Schlumberger configuration method. The measurement point is located in the three sub-counties, with a total of 17 measurement points. The study location is at 0025S, 3110E, and covers an area of 160 square kilometers. Based on the results of the Geoelectrical information data, it was found two types of aquifers, which are open aquifers in depth ranging from six meters to twenty-two meters and a confined aquifer in depth ranging from forty-five meters to eighty meters. In addition to the Geoelectrical information data, drilling was done at an accessible point by heavy equipment in the Lwakagura village, Kabura sub-county. At the drilling point, artesian wells were obtained at a depth of eighty meters and can rise to two meters above the soil surface. The discovery of artesian well is then used by residents to meet the needs of clean water and for irrigation considering that in this area most wells contain iron content.

Keywords: artesian well, geoelectrical, lwantonde, Schlumberger

Procedia PDF Downloads 110
2423 Mental Health Problems in College Students of India

Authors: Swati Naruka

Abstract:

"Looking after one’s mind is as important as looking after one’s body". As part of one’s overall health, mental and emotional health or well being is a necessary condition to enable one to manage one’s life successfully. Mental health is the capacity of an individual to form harmonious adjustments to one’s social and physical environments. Universities and colleges are dealing with substantial challenges posed by the changing mental health needs of today’s college students. It is important for administrators, faculty, and staff to understand the profound impact that mental health problems can have on all aspects of campus life, and to treat mental health issues as an institutional responsibility and priority. Counselling centres can respond effectively to the current challenges if they have the support and commitment of the administration; and if they take steps to balance the demand for services with existing resources by reviewing priorities, establishing appropriate limits, employing innovative strategies, and practicing good self-care to minimize stress and burnout. The need for counselling centres has never been greater. They will continue to play an important role in supporting the mission of higher education institutions by providing counselling for students who are experiencing problems and assisting them in achieving their educational and personal goals.

Keywords: mental health, well being, India, college students

Procedia PDF Downloads 415
2422 Bridging the Gaping Levels of Information Entree for Visually Impaired Students in the Sri Lankan University Libraries

Authors: Wilfred Jeyatheese Jeyaraj

Abstract:

Education is a key determinant of future success, and every person deserves non-discriminant access to information for educational inevitabilities in any case. Analysing and understanding complex information is a crucial learning tool, especially for students. In order to compete equally with sighted students, visually impaired students require the unhinged access to access to all the available information resources. When the education of visually impaired students comes to a focal point, it can be stated that visually impaired students encounter several obstacles and barriers before they enter the university and during their time there as students. These obstacles and barriers are spread across technical, organizational and social arenas. This study reveals the possible approaches to absorb and benefit from the information provided by the Sri Lankan University Libraries for visually impaired students. Purposive sampling technique was used to select sample visually impaired students attached to the Sri Lankan National universities. There are 07 National universities which accommodate the visually impaired students and with the identified data, they were selected for this study and 80 visually impaired students were selected as the sample group. Descriptive type survey method was used to collect data. Structured questionnaires, interviews and direct observation were used as research instruments. As far as the Sri Lankan context spread is concerned, visually impaired students are able to finish their courses through their own determination to overcome the barriers they encounter on their way to graduation, through moral and practical support from their own friends and very often through a high level of creativity. According to the findings there are no specially trained university librarians to serve visually impaired users and less number of assistive technology equipment are available at present. This paper enables all university libraries in Sri Lanka to be informed about the social isolation of visually compromised students at the Sri Lankan universities and focuses on the rectification issues by considering their distinct case for interaction.

Keywords: information access, Sri Lanka, university libraries, visual impairment

Procedia PDF Downloads 222
2421 Review of Health Disparities in Migrants Attending the Emergency Department with Acute Mental Health Presentations

Authors: Jacqueline Eleonora Ek, Michael Spiteri, Chris Giordimaina, Pierre Agius

Abstract:

Background: Malta is known for being a key player as a frontline country with regard to irregular immigration from Africa to Europe. Every year the island experiences an influx of migrants as boat movement across the Mediterranean continues to be a humanitarian challenge. Irregular immigration and applying for asylum is both a lengthy and mentally demanding process. Those doing so are often faced with multiple challenges, which can adversely affect their mental health. Between January and August 2020, Malta disembarked 2 162 people rescued at sea, 463 of them between July & August. Given the small size of the Maltese islands, this regulation places a disproportionately large burden on the country, creating a backlog in the processing of asylum applications resulting in increased time periods of detention. These delays reverberate throughout multiple management pathways resulting in prolonged periods of detention and challenging access to health services. Objectives: To better understand the spatial dimensions of this humanitarian crisis, this study aims to assess disparities in the acute medical management of migrants presenting to the emergency department (ED) with acute mental health presentations as compared to that of local and non-local residents. Method: In this retrospective study, 17795 consecutive ED attendances were reviewed to look for acute mental health presentations. These were further evaluated to assess discrepancies in transportation routes to hospital, nature of presenting complaint, effects of language barriers, use of CT brain, treatment given at ED, availability of psychiatric reviews, and final admission/discharge plans. Results: Of the ED attendances, 92.3% were local residents, and 7.7% were non-locals. Of the non-locals, 13.8% were migrants, and 86.2% were other-non-locals. Acute mental health presentations were seen in 1% of local residents; this increased to 20.6% in migrants. 56.4% of migrants attended with deliberate self-harm; this was lower in local residents, 28.9%. Contrastingly, in local residents, the most common presenting complaint was suicidal thought/ low mood 37.3%, the incidence was similar in migrants at 33.3%. The main differences included 12.8% of migrants presenting with refused oral intake while only 0.6% of local residents presented with the same complaints. 7.7% of migrants presented with a reduced level of consciousness, no local residents presented with this same issue. Physicians documented a language barrier in 74.4% of migrants. 25.6% were noted to be completely uncommunicative. Further investigations included the use of a CT scan in 12% of local residents and in 35.9% of migrants. The most common treatment administered to migrants was supportive fluids 15.4%, the most common in local residents was benzodiazepines 15.1%. Voluntary psychiatric admissions were seen in 33.3% of migrants and 24.7% of locals. Involuntary admissions were seen in 23% of migrants and 13.3% of locals. Conclusion: Results showed multiple disparities in health management. A meeting was held between entities responsible for migrant health in Malta, including the emergency department, primary health care, migrant detention services, and Malta Red Cross. Currently, national quality-improvement initiatives are underway to form new pathways to improve patient-centered care. These include an interpreter unit, centralized handover sheets, and a dedicated migrant health service.

Keywords: emergency department, communication, health, migration

Procedia PDF Downloads 95