Search results for: Johnson’s formula
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 709

Search results for: Johnson’s formula

439 Modification of Newton Method in Two Point Block Backward Differentiation Formulas

Authors: Khairil I. Othman, Nur N. Kamal, Zarina B. Ibrahim

Abstract:

In this paper, we present modified Newton method as a new strategy for improving the efficiency of Two Point Block Backward Differentiation Formulas (BBDF) when solving stiff systems of ordinary differential equations (ODEs). These methods are constructed to produce two approximate solutions simultaneously at each iteration The detailed implementation of the predictor corrector BBDF with PE(CE)2 with modified Newton are discussed. The proposed modification of BBDF is validated through numerical results on some standard problems found in the literature and comparisons are made with the existing Block Backward Differentiation Formula. Numerical results show the advantage of using the new strategy for solving stiff ODEs in improving the accuracy of the solution.

Keywords: newton method, two point, block, accuracy

Procedia PDF Downloads 331
438 Investigation of Building Pounding during Earthquake and Calculation of Impact Force between Two Adjacent Structures

Authors: H. Naderpour, R. C. Barros, S. M. Khatami

Abstract:

Seismic excitation is naturally caused large horizontal relative displacements, which is able to provide collisions between two adjacent buildings due to insufficient separation distance and severe damages are occurred due to impact especially in tall buildings. In this paper, an impact is numerically simulated and two needed parameters are calculated, including impact force and energy absorption. In order to calculate mentioned parameters, mathematical study needs to model an unreal link element, which is logically assumed to be spring and dashpot to determine lateral displacement and damping ratio of impact. For the determination of dynamic response of impact, a new equation of motion is theoretically suggested to evaluate impact force and energy dissipation. In order to confirm the rendered equation, a series of parametric study are performed and the accuracy of formula is confirmed.

Keywords: pounding, impact, dissipated energy, coefficient of restitution

Procedia PDF Downloads 328
437 The Composer’s Hand: An Analysis of Arvo Pärt’s String Orchestral Work, Psalom

Authors: Mark K. Johnson

Abstract:

Arvo Pärt has composed over 80 text-based compositions based on nine different languages. But prior to 2015, it was not publicly known what texts the composer used in composing a number of his non-vocal works, nor the language of those texts. Because of this lack of information, few if any musical scholars have illustrated in any detail how textual structure applies to any of Pärt’s instrumental compositions. However, in early 2015, the Arvo Pärt Centre in Estonia published In Principio, a compendium of the texts Pärt has used to derive many of the parameters of his text-based compositions. This paper provides the first detailed analysis of the relationship between structural aspects of the Church Slavonic Eastern Orthodox text of Psalm 112 and the musical parameters that Pärt used when composing the string orchestral work Psalom. It demonstrates that Pärt’s text-based compositions are carefully crafted works, and that evidence of the presence of the ‘invisible’ hand of the composer can be found within every aspect of the underpinning structures, at the more elaborate middle ground level, and even within surface aspects of these works. Based on the analysis of Psalom, it is evident that the text Pärt selected for Psalom informed many of his decisions regarding the musical structures, parameters and processes that he deployed in composing this non-vocal text-based work. Many of these composerly decisions in relation to these various aspects cannot be fathomed without access to, and an understanding of, the text associated with the work.

Keywords: Arvo Pärt, minimalism, psalom, text-based process music

Procedia PDF Downloads 202
436 Three Tier Indoor Localization System for Digital Forensics

Authors: Dennis L. Owuor, Okuthe P. Kogeda, Johnson I. Agbinya

Abstract:

Mobile localization has attracted a great deal of attention recently due to the introduction of wireless networks. Although several localization algorithms and systems have been implemented and discussed in the literature, very few researchers have exploited the gap that exists between indoor localization, tracking, external storage of location information and outdoor localization for the purpose of digital forensics during and after a disaster. The contribution of this paper lies in the implementation of a robust system that is capable of locating, tracking mobile device users and store location information for both indoor and partially outdoor the cloud. The system can be used during disaster to track and locate mobile phone users. The developed system is a mobile application built based on Android, Hypertext Preprocessor (PHP), Cascading Style Sheets (CSS), JavaScript and MATLAB for the Android mobile users. Using Waterfall model of software development, we have implemented a three level system that is able to track, locate and store mobile device information in secure database (cloud) on almost a real time basis. The outcome of the study showed that the developed system is efficient with regard to the tracking and locating mobile devices. The system is also flexible, i.e. can be used in any building with fewer adjustments. Finally, the system is accurate for both indoor and outdoor in terms of locating and tracking mobile devices.

Keywords: indoor localization, digital forensics, fingerprinting, tracking and cloud

Procedia PDF Downloads 305
435 Principal Components Analysis of the Causes of High Blood Pressure at Komfo Anokye Teaching Hospital, Ghana

Authors: Joseph K. A. Johnson

Abstract:

Hypertension affects 20 percent of the people within the ages 55 upward in Ghana. Of these, almost one-third are unaware of their condition. Also at the age of 55, more men turned to have hypertension than women. After that age, the condition becomes more prevalent with women. Hypertension is significantly more common in African Americans of both sexes than the racial or ethnic groups. This study was conducted to determine the causes of high blood pressure in Ashanti Region, Ghana. The study employed One Hundred and Seventy (170) respondents. The sample population for the study was all the available respondents at the time of the data collection. The research was conducted using primary data where convenience sampling was used to locate the respondents. A set of questionnaire were used to gather the data for the study. The gathered data was analysed using principal component analysis. The study revealed that, personal description, lifestyle behavior and risk awareness as some of the causes of high blood pressure in Ashanti Region. The study therefore recommend that people must be advice to see to their personal characteristics that may contribute to high blood pressure such as controlling of their temper and how to react perfectly to stressful situations. They must be educated on the factors that may increase the level of their blood pressure such as the essence of seeing a medical doctor before taking in any drug. People must also be made known by the public health officers to those lifestyles behaviour such as smoking and drinking of alcohol which are major contributors of high blood pressure.

Keywords: high blood pressure, principal component analysis, hypertension, public health

Procedia PDF Downloads 462
434 Evolving Credit Scoring Models using Genetic Programming and Language Integrated Query Expression Trees

Authors: Alexandru-Ion Marinescu

Abstract:

There exist a plethora of methods in the scientific literature which tackle the well-established task of credit score evaluation. In its most abstract form, a credit scoring algorithm takes as input several credit applicant properties, such as age, marital status, employment status, loan duration, etc. and must output a binary response variable (i.e. “GOOD” or “BAD”) stating whether the client is susceptible to payment return delays. Data imbalance is a common occurrence among financial institution databases, with the majority being classified as “GOOD” clients (clients that respect the loan return calendar) alongside a small percentage of “BAD” clients. But it is the “BAD” clients we are interested in since accurately predicting their behavior is crucial in preventing unwanted loss for loan providers. We add to this whole context the constraint that the algorithm must yield an actual, tractable mathematical formula, which is friendlier towards financial analysts. To this end, we have turned to genetic algorithms and genetic programming, aiming to evolve actual mathematical expressions using specially tailored mutation and crossover operators. As far as data representation is concerned, we employ a very flexible mechanism – LINQ expression trees, readily available in the C# programming language, enabling us to construct executable pieces of code at runtime. As the title implies, they model trees, with intermediate nodes being operators (addition, subtraction, multiplication, division) or mathematical functions (sin, cos, abs, round, etc.) and leaf nodes storing either constants or variables. There is a one-to-one correspondence between the client properties and the formula variables. The mutation and crossover operators work on a flattened version of the tree, obtained via a pre-order traversal. A consequence of our chosen technique is that we can identify and discard client properties which do not take part in the final score evaluation, effectively acting as a dimensionality reduction scheme. We compare ourselves with state of the art approaches, such as support vector machines, Bayesian networks, and extreme learning machines, to name a few. The data sets we benchmark against amount to a total of 8, of which we mention the well-known Australian credit and German credit data sets, and the performance indicators are the following: percentage correctly classified, area under curve, partial Gini index, H-measure, Brier score and Kolmogorov-Smirnov statistic, respectively. Finally, we obtain encouraging results, which, although placing us in the lower half of the hierarchy, drive us to further refine the algorithm.

Keywords: expression trees, financial credit scoring, genetic algorithm, genetic programming, symbolic evolution

Procedia PDF Downloads 95
433 Semiconductor Variable Wavelength Generator of Near-Infrared-to-Terahertz Regions

Authors: Isao Tomita

Abstract:

Power characteristics are obtained for laser beams of near-infrared and terahertz wavelengths when produced by difference-frequency generation with a quasi-phase-matched (QPM) waveguide made of gallium phosphide (GaP). A refractive-index change of the QPM GaP waveguide is included in computations with Sellmeier’s formula for varying input wavelengths, where optical loss is also included. Although the output power decreases with decreasing photon energy as the beam wavelength changes from near-infrared to terahertz wavelengths, the beam generation with such greatly different wavelengths, which is not achievable with an ordinary laser diode without the replacement of semiconductor material with a different bandgap one, can be made with the same semiconductor (GaP) by changing the QPM period, where a way of changing the period is provided.

Keywords: difference-frequency generation, gallium phosphide, quasi-phase-matching, waveguide

Procedia PDF Downloads 89
432 Exploring the Influence of High-Frequency Acoustic Parameters on Wave Behavior in Porous Bilayer Materials: An Equivalent Fluid Theory Approach

Authors: Mustapha Sadouk

Abstract:

This study investigates the sensitivity of high-frequency acoustic parameters in a rigid air-saturated porous bilayer material within the framework of the equivalent fluid theory, a specific case of the Biot model. The study specifically focuses on the sensitivity analysis in the frequency domain. The interaction between the fluid and solid phases of the porous medium incorporates visco-inertial and thermal exchange, characterized by two functions: the dynamic tortuosity α(ω) proposed by Johnson et al. and the dynamic compressibility β(ω) proposed by Allard, refined by Sadouki for the low-frequency domain of ultrasound. The parameters under investigation encompass porosity, tortuosity, viscous characteristic length, thermal characteristic length, as well as viscous and thermal shape factors. A +30% variation in these parameters is considered to assess their impact on the transmitted wave amplitudes. By employing this larger variation, a more comprehensive understanding of the sensitivity of these parameters is obtained. The outcomes of this study contribute to a better comprehension of the high-frequency wave behavior in porous bilayer materials, providing valuable insights for the design and optimization of such materials across various applications.

Keywords: bilayer materials, ultrasound, sensitivity analysis, equivalent fluid theory, dynamic tortuosity., porous material

Procedia PDF Downloads 57
431 New Formula for Revenue Recognition Likely to Change the Prescription for Pharma Industry

Authors: Shruti Hajirnis

Abstract:

In May 2014, FASB issued Accounting Standards Update (ASU) 2014-09, Revenue from Contracts with Customers (Topic 606), and the International Accounting Standards Board (IASB) issued International Financial Reporting Standards (IFRS) 15, Revenue from Contracts with Customers that will supersede virtually all revenue recognition requirements in IFRS and US GAAP. FASB and the IASB have basically achieved convergence with these standards, with only some minor differences such as collectability threshold, interim disclosure requirements, early application and effective date, impairment loss reversal and nonpublic entity requirements. This paper discusses the impact of five-step model prescribed in new revenue standard on the entities operating in Pharma industry. It also outlines the considerations for these entities while implementing the new standard.

Keywords: revenue recognition, pharma industry, standard, requirements

Procedia PDF Downloads 421
430 Finite Element Modeling of Friction Stir Welding of Dissimilar Alloys

Authors: Fadi Al-Badour, Nesar Merah, Abdelrahman Shuaib, Abdelaziz Bazoune

Abstract:

In the current work, a Coupled Eulerian Lagrangian (CEL) model is developed to simulate the friction stir welding (FSW) process of dissimilar Aluminum alloys (Al 6061-T6 with Al 5083-O). The model predicts volumetric defects, material flow, developed temperatures, and stresses in addition to tool reaction loads. Simulation of welding phase is performed by employing a control volume approach, whereas the welding speed is defined as inflow and outflow over Eulerian domain boundaries. Only material softening due to inelastic heat generation is considered and material behavior is assumed to obey Johnson-Cook’s Model. The model was validated using published experimentally measured temperatures, at similar welding conditions, and by qualitative comparison of dissimilar weld microstructure. The FE results showed that most of developed temperatures were below melting and that the bulk of the deformed material in solid state. The temperature gradient on AL6061-T6 side was found to be less than that of Al 5083-O. Changing the position Al 6061-T6 from retreating (Ret.) side to advancing (Adv.) side led to a decrease in maximum process temperature and strain rate. This could be due to the higher resistance of Al 6061-T6 to flow as compared to Al 5083-O.

Keywords: friction stir welding, dissimilar metals, finite element modeling, coupled Eulerian Lagrangian Analysis

Procedia PDF Downloads 308
429 Educating Empathy: Combining Active Listening and Moral Discovery to Facilitate Prosocial Connection

Authors: Erika Price, Lisa Johnson

Abstract:

Cognitive and dispositional empathy is decreasing among students worldwide, particularly those at university. This paper looks at the effects of encouraging empathetic positioning in divisive topics by teaching listening skills and moral discovery to university students. Two groups of university students were given the assignment to interview individuals they disagreed with on social issues (e.g. abortion, gun control, legalization of drugs, involvement in Ukraine, etc.). One group completed the assignment with no other instruction. The second group completed the assignment after receiving instruction in active listening and Jonathan Haidt’s theory of moral foundations in politics. Results show that when students are given both active listening techniques and awareness of moral foundations, they are significantly more likely to have socially positive interactions with those they disagree with on issues as compared to those who listen passively to ideological opponents. As students interacted with those they disagreed with, they evidenced prosocial behaviors of acknowledgement, validation, and even commonalities with their opponents’ viewpoints, signifying a heartening trend of empathetic connection that is waning in students. The research suggests that empathy is a skill that can be nurtured by active listening but that it is more fully cultivated when paired with the concept of moral foundations underpinning political ideologies. These findings shed light on how to create more effective pedagogies for social and emotional learning, as well as inclusion.

Keywords: empathy, listening skills, moral discovery, pedagogy, prosocial behavior

Procedia PDF Downloads 39
428 Assessment of the Effect of Building Materials on Energy Demand of Buildings in Jos: An Experimental and Numerical Approach

Authors: Zwalnan Selfa Johnson, Caleb Nanchen Nimyel, Gideon Duvuna Ayuba

Abstract:

Air conditioning accounts for a significant share of the overall energy consumed in residential buildings. Solar thermal gains in buildings account for a significant component of the air conditioning load in buildings. This study compares the solar thermal gain and air conditioning load of a proposed building design with a typical conventional building in the climatic conditions of Jos, Nigeria, using a combined experimental and computational method using TRNSYS software. According to the findings of this study, the proposed design building's annual average solar thermal gains are lower compared to the reference building's average solar heat gains. The study case building's decreased solar heat gain is mostly attributable to the lower temperature of the building zones because of the greater building volume and lower fenestration ratio (ratio external opening area to the area of the external walls). This result shows that the proposed building design adjusts to the local climate better than the standard conventional construction in Jos to maintain a suitable temperature within the building. This finding means that the air-conditioning electrical energy consumption per volume of the proposed building design will be lower than that of a conventional building design.

Keywords: solar heat gain, building zone, cooling energy, air conditioning, zone temperature

Procedia PDF Downloads 62
427 Rapid Green Synthesis and Characterization of Silver Nanoparticles Using Eclipta prostrata Leaf Extract

Authors: Siva Prasad Peddi

Abstract:

Silver nanoparticles were successfully synthesized from silver nitrate through a rapid green synthesis method using Eclipta prostrata leaf extract as a reducing cum stabilizing agent. The experimental procedure was readily conducted at room temperature and pressure, and could be easily scaled up. The silver nanoparticles thus obtained were characterized using UV-Visible Spectroscopy (UV-VIS) which yielded an absorption peak at 416 nm. The biomolecules responsible for capping of the bio-reduced silver nanoparticles synthesized using plant extract were successfully identified through FTIR analysis. It was evinced through Scanning Electron Microscope (SEM), and X-ray diffraction (XRD) analysis that the silver nanoparticles were crystalline in nature and spherical in shape. The average size of the particles obtained using Scherrer’s formula was 27.4 nm. The adopted technique for silver nanoparticle synthesis is suitable for large-scale production.

Keywords: silver nanoparticles, green synthesis, characterization, Eclipta prostrata

Procedia PDF Downloads 445
426 Groundwater Recharge Suitability Mapping Using Analytical Hierarchy Process Based-Approach

Authors: Aziza Barrek, Mohamed Haythem Msaddek, Ismail Chenini

Abstract:

Excessive groundwater pumping due to the increasing water demand, especially in the agricultural sector, causes groundwater scarcity. Groundwater recharge is the most important process that contributes to the water's durability. This paper is based on the Analytic Hierarchy Process multicriteria analysis to establish a groundwater recharge susceptibility map. To delineate aquifer suitability for groundwater recharge, eight parameters were used: soil type, land cover, drainage density, lithology, NDVI, slope, transmissivity, and rainfall. The impact of each factor was weighted. This method was applied to the El Fahs plain shallow aquifer. Results suggest that 37% of the aquifer area has very good and good recharge suitability. The results have been validated by the Receiver Operating Characteristics curve. The accuracy of the prediction obtained was 89.3%.

Keywords: AHP, El Fahs aquifer, empirical formula, groundwater recharge zone, remote sensing, semi-arid region

Procedia PDF Downloads 87
425 Generating 3D Anisotropic Centroidal Voronoi Tessellations

Authors: Alexandre Marin, Alexandra Bac, Laurent Astart

Abstract:

New numerical methods for PDE resolution (such as Finite Volumes (FV) or Virtual Elements Method (VEM)) open new needs in terms of meshing of domains of interest, and in particular, polyhedral meshes have many advantages. One way to build such meshes consists of constructing Restricted Voronoi Diagrams (RVDs) whose boundaries respect the domain of interest. By minimizing a function defined for RVDs, the shapes of cells can be controlled, e.g., elongated according to user-defined directions or adjusted to comply with given aspect ratios (anisotropy) and density variations. In this paper, our contribution is threefold: First, we introduce a new gradient formula for the Voronoi tessellation energy under a continuous anisotropy field. Second, we describe a meshing algorithm based on the optimisation of this function that we validate against state-of-the-art approaches. Finally, we propose a hierarchical approach to speed up our meshing algorithm.

Keywords: anisotropic Voronoi diagrams, meshes for numerical simulations, optimisation, volumic polyhedral meshing

Procedia PDF Downloads 69
424 Radiation Dosimetry Using Sintered Pellets of Yellow Beryl (Heliodor) Crystals

Authors: Lucas Sátiro Do Carmo, Betzabel Noemi Silva Carrera, Shigueo Watanabe, J. F. D. Chubaci

Abstract:

Beryl is a silicate with chemical formula Be₃Al₂(SiO₃)₆ commonly found in Brazil. It has a few colored variations used as jewelry, like Aquamarine (blueish), Emerald (green) and Heliodor (yellow). The color of each variation depends on the dopant that is naturally present in the crystal lattice. In this work, Heliodor pellets of 5 mm diameter and 1 mm thickness have been produced and investigated using thermoluminescence (TL) to evaluate its potential for use as gamma ray’s dosimeter. The results show that the pellets exhibited a prominent TL peak at 205 °C that grows linearly with dose when irradiated from 1 Gy to 1000 Gy. A comparison has been made between powdered and sintered dosimeters. The results show that sintered pellets have higher sensitivity than powder dosimeter. The TL response of this mineral is satisfactory for radiation dosimetry applications in the studied dose range.

Keywords: dosimetry, beryl, gamma rays, sintered pellets, new material

Procedia PDF Downloads 72
423 The Interactions among Motivation, Persistence, and Learning Abilities as They Relate to Academic Outcomes in Children

Authors: Rachelle M. Johnson, Jenna E. Finch

Abstract:

Motivation, persistence, and learning disability status are all associated with academic performance, but to the author's knowledge, little research has been done on how these variables interact with one another and how that interaction looks different within children with and without learning disabilities. The present study's goal was to examine the role motivation and persistence play in the academic success of children with learning disabilities and how these variables interact. Measurements were made using surveys and direct cognitive assessments on each child. Analyses were run on student's scores in motivation, persistence, and ability to learn compared to other fifth grade students. In this study, learning ability was intended as a proxy for learning disabilities (LDs). This study included a nationally representative sample of over 8,000 fifth-grade children from across the United States. Multiple interactions were found among these variables of motivation, persistence, and motivation as they relate to academic achievement. The major finding of the study was the significant role motivation played in academic achievement. This study shows the importance of measuring the within-group. One key finding was that motivation was associated with academic success and was moderated by the other variables. The interaction results were different for math and reading outcomes, suggesting that reading and math success are different and should be addressed differently. This study shows the importance of measuring the within-group differences in levels of motivation to better understand the academic success of children with and without learning disabilities. This study's findings call for further investigation into motivation and the possible need for motivational intervention for students, especially those with learning disabilities

Keywords: academic achievement, learning disabilities, motivation, persistence

Procedia PDF Downloads 102
422 The Role of Public Education in Increasing Public Awareness through Mass Media with Emphasis on Newspapers and TV: Coping with Possible Earthquake in Tehran

Authors: Naser Charkhsaz, Ashraf Sadat Mousavi, Navvab Shamspour

Abstract:

This study aimed to evaluate the role of state education in increasing public awareness through mass media (with emphasis on newspapers and TV) coping with possible earthquake in Tehran. All residents aged 15 to 65 who live in the five regions of Tehran (North, South, East, West and Center) during the plan implementation were selected and studied. The required sample size in each region was calculated based on the Cochran formula (n=380). In order to collect and analyze the data, a questionnaire with reliability (82%) and a one-sample t-test has been used, respectively. The results showed that warnings related to the Tehran earthquake affected people in the pre-contemplation stage, while public education through mass media did not promote public awareness about prevention, preparedness and rehabilitation.

Keywords: media, disaster, knowledge, Iranian Red Crescent society

Procedia PDF Downloads 295
421 Flame Spray Pyrolysis as a High-Throughput Method to Generate Gadolinium Doped Titania Nanoparticles for Augmented Radiotherapy

Authors: Malgorzata J. Rybak-Smith, Benedicte Thiebaut, Simon Johnson, Peter Bishop, Helen E. Townley

Abstract:

Gadolinium doped titania (TiO2:Gd) nanoparticles (NPs) can be activated by X-ray radiation to generate Reactive Oxygen Species (ROS), which can be effective in killing cancer cells. As such, treatment with these NPs can be used to enhance the efficacy of conventional radiotherapy. Incorporation of the NPs in to tumour tissue will permit the extension of radiotherapy to currently untreatable tumours deep within the body, and also reduce damage to neighbouring healthy cells. In an attempt to find a fast and scalable method for the synthesis of the TiO2:Gd NPs, the use of Flame Spray Pyrolysis (FSP) was investigated. A series of TiO2 NPs were generated with 1, 2, 5 and 7 mol% gadolinium dopant. Post-synthesis, the TiO2:Gd NPs were silica-coated to improve their biocompatibility. Physico-chemical characterisation was used to determine the size and stability in aqueous suspensions of the NPs. All analysed TiO2:Gd NPs were shown to have relatively high photocatalytic activity. Furthermore, the FSP synthesized silica-coated TiO2:Gd NPs generated enhanced ROS in chemico. Studies on rhabdomyosarcoma (RMS) cell lines (RD & RH30) demonstrated that in the absence of irradiation all TiO2:Gd NPs were inert. However, application of TiO2:Gd NPs to RMS cells, followed by irradiation, showed a significant decrease in cell proliferation. Consequently, our studies showed that the X-ray-activatable TiO2:Gd NPs can be prepared by a high-throughput scalable technique to provide a novel and affordable anticancer therapy.

Keywords: cancer, gadolinium, ROS, titania nanoparticles, X-ray

Procedia PDF Downloads 411
420 An Introduction to the Radiation-Thrust Based on Alpha Decay and Spontaneous Fission

Authors: Shiyi He, Yan Xia, Xiaoping Ouyang, Liang Chen, Zhongbing Zhang, Jinlu Ruan

Abstract:

As the key system of the spacecraft, various propelling system have been developing rapidly, including ion thrust, laser thrust, solar sail and other micro-thrusters. However, there still are some shortages in these systems. The ion thruster requires the high-voltage or magnetic field to accelerate, resulting in extra system, heavy quantity and large volume. The laser thrust now is mostly ground-based and providing pulse thrust, restraint by the station distribution and the capacity of laser. The thrust direction of solar sail is limited to its relative position with the Sun, so it is hard to propel toward the Sun or adjust in the shadow.In this paper, a novel nuclear thruster based on alpha decay and spontaneous fission is proposed and the principle of this radiation-thrust with alpha particle has been expounded. Radioactive materials with different released energy, such as 210Po with 5.4MeV and 238Pu with 5.29MeV, attached to a metal film will provides various thrust among 0.02-5uN/cm2. With this repulsive force, radiation is able to be a power source. With the advantages of low system quantity, high accuracy and long active time, the radiation thrust is promising in the field of space debris removal, orbit control of nano-satellite array and deep space exploration. To do further study, a formula lead to the amplitude and direction of thrust by the released energy and decay coefficient is set up. With the initial formula, the alpha radiation elements with the half life period longer than a hundred days are calculated and listed. As the alpha particles emit continuously, the residual charge in metal film grows and affects the emitting energy distribution of alpha particles. With the residual charge or extra electromagnetic field, the emitting of alpha particles performs differently and is analyzed in this paper. Furthermore, three more complex situations are discussed. Radiation element generating alpha particles with several energies in different intensity, mixture of various radiation elements, and cascaded alpha decay are studied respectively. In combined way, it is more efficient and flexible to adjust the thrust amplitude. The propelling model of the spontaneous fission is similar with the one of alpha decay, which has a more complex angular distribution. A new quasi-sphere space propelling system based on the radiation-thrust has been introduced, as well as the collecting and processing system of excess charge and reaction heat. The energy and spatial angular distribution of emitting alpha particles on unit area and certain propelling system have been studied. As the alpha particles are easily losing energy and self-absorb, the distribution is not the simple stacking of each nuclide. With the change of the amplitude and angel of radiation-thrust, orbital variation strategy on space debris removal is shown and optimized.

Keywords: alpha decay, angular distribution, emitting energy, orbital variation, radiation-thruster

Procedia PDF Downloads 173
419 Assessment of the Effect of Building Materials on Indoor Comfort and Energy Demand of Residential Buildings in Jos: An Experimental and Numerical Approach

Authors: Selfa Johnson Zwalnan, Nanchen Nimyel Caleb, Gideon Duvuna Ayuba

Abstract:

Air conditioning accounts for a significant share of the overall energy consumed in residential buildings. Solar thermal gains in buildings account for a significant component of the air conditioning load in buildings. This study compares the solar thermal gain and air conditioning load of a proposed building design with a typical conventional building in the climatic conditions of Jos, Nigeria, using a combined experimental and computational method using TRNSYS software. According to the findings of this study, the proposed design building's annual average solar thermal gains are lower compared to the reference building's average solar heat gains. The study case building's decreased solar heat gain is mostly attributable to the somewhat lower temperature of the building zones because of the greater building volume and lower fenestration ratio (ratio of external opening area to the area of the external walls). This result shows that the innovative building design adjusts to the local climate better than the standard conventional construction in Jos to maintain a suitable temperature within the building. This finding means that the air-conditioning electrical energy consumption per volume of the proposed building design will be lower than that of a conventional building design.

Keywords: building simulation, solar gain, comfort temperature, temperature, carbon foot print

Procedia PDF Downloads 64
418 A BERT-Based Model for Financial Social Media Sentiment Analysis

Authors: Josiel Delgadillo, Johnson Kinyua, Charles Mutigwe

Abstract:

The purpose of sentiment analysis is to determine the sentiment strength (e.g., positive, negative, neutral) from a textual source for good decision-making. Natural language processing in domains such as financial markets requires knowledge of domain ontology, and pre-trained language models, such as BERT, have made significant breakthroughs in various NLP tasks by training on large-scale un-labeled generic corpora such as Wikipedia. However, sentiment analysis is a strong domain-dependent task. The rapid growth of social media has given users a platform to share their experiences and views about products, services, and processes, including financial markets. StockTwits and Twitter are social networks that allow the public to express their sentiments in real time. Hence, leveraging the success of unsupervised pre-training and a large amount of financial text available on social media platforms could potentially benefit a wide range of financial applications. This work is focused on sentiment analysis using social media text on platforms such as StockTwits and Twitter. To meet this need, SkyBERT, a domain-specific language model pre-trained and fine-tuned on financial corpora, has been developed. The results show that SkyBERT outperforms current state-of-the-art models in financial sentiment analysis. Extensive experimental results demonstrate the effectiveness and robustness of SkyBERT.

Keywords: BERT, financial markets, Twitter, sentiment analysis

Procedia PDF Downloads 128
417 Dielectric and Impedance Spectroscopy of Samarium and Lanthanum Doped Barium Titanate at Room Temperature

Authors: Sukhleen Bindra Narang, Dalveer Kaur, Kunal Pubby

Abstract:

Dielectric ceramic samples in the BaO-Re2O3-TiO2 ternary system were synthesized with structural formula Ba2-xRe4+2x/3Ti8O24 where Re= rare earth metal and Re= Sm and La where x varies from 0.0 to 0.6 with step size 0.1. Polycrystalline samples were prepared by the conventional solid state reaction technique. The dielectric, electrical and impedance analysis of all the samples in the frequency range 1KHz- 1MHz at room temperature (25°C) have been done to get the understanding of electrical conduction and dielectric relaxation and their correlation. Dielectric response of the samples at lower frequencies shows dielectric dispersion while at higher frequencies it shows dielectric relaxation. The ac conductivity is well fitted by the Jonscher law (σac = σdc+Aωn). The spectroscopic data in the impedance plane confirms the existence of grain contribution to the relaxation. All the properties are found out to be function of frequency as well as the amount of substitution.

Keywords: dielectric ceramics, dielectric constant, loss tangent, AC conductivity, impedance spectroscopy

Procedia PDF Downloads 427
416 Seismic Inversion to Improve the Reservoir Characterization: Case Study in Central Blue Nile Basin, Sudan

Authors: Safwat E. Musa, Nuha E. Mohamed, Nuha A. Bagi

Abstract:

In this study, several crossplots of the P-impedance with the lithology logs (gamma ray, neutron porosity, deep resistivity, water saturation and Vp/Vs curves) were made in three available wells, which were drilled in central part of the Blue Nile basin in depths varies from 1460 m to 1600 m. These crossplots were successful to discriminate between sand and shale when using P-Impedance values, and between the wet sand and the pay sand when using both P-impedance and Vp/Vs together. Also, some impedance sections were converted to porosity sections using linear formula to characterize the reservoir in terms of porosity. The used crossplots were created on log resolution, while the seismic resolution can identify only the reservoir, unless a 3D seismic angle stacks were available; then it would be easier to identify the pay sand with great confidence; through high resolution seismic inversion and geostatistical approach when using P-impedance and Vp/Vs volumes.

Keywords: basin, Blue Nile, inversion, seismic

Procedia PDF Downloads 409
415 Unlocking Retention: Nurturing Ownership and Shared Values to Overcome Work-Family Conflict Among Chinese Social Workers

Authors: Zurong Liang

Abstract:

Chinese social work has experienced a sharp rise in staff turnover. Work-family conflict is a key risk factor for employees’ turnover intention. While the relationship between work-family conflict and turnover intention has been widely documented, little is known about its mediating and moderating mechanisms, especially among social workers in China. This study explored the mediating role of job-based and collective psychological ownership and the moderating role of person-organization value congruence. The study drew on data from the China Social Work Longitudinal Study 2019, a nationally representative sample of 1,421 Chinese social workers (79.73% female; mean age = 28.9 years old). We performed a moderated mediation analysis combining a simple slope test and the Johnson-Neyman technique. Both job-based psychological ownership and collective psychological ownership were found to mediate the association between work-family conflict and turnover intention. Person-organization value congruence moderated the indirect relationship between work-family conflict and turnover intention via collective psychological ownership. This study enhances understanding of the impact of the psychological mechanisms of work-family conflict on Chinese social workers’ turnover intention. Specific strategies should be adopted to establish a work environment that supports psychological ownership, enhances social workers’ identification with and attachment to their organizations, and thus reduces their turnover intention.

Keywords: turnover, work-family conflict, ownership, social worker, China

Procedia PDF Downloads 28
414 Study of Effective Factors Influencing the Pragmatics of Knowledge Management in Iranian Oil Terminals Company

Authors: Ali Asghar Asad Sangabi, Afsaneh Aeen, Mohammad Behroozi

Abstract:

Knowledge management is vital in today's world as one of the most valuable intangible assets regarded by companies. This study aimed to identify factors that affect the application of knowledge management in the Iranian Oil Terminals Company in 2022. In this study, 12 of the factors affecting the application of knowledge management have been studied, and implement practical solutions, and reuse has been studied. This study is descriptive data from the questionnaire factors affecting knowledge management application used by Cronbach's Coefficient Alpha equal to 0.85. The population of this study consisted of 1500 IOTC employees. The sample is determined by the Cochran formula sample; the results of this study showed that between the application of knowledge management and factors, there is a significant correlation. Among the factors that have been studied, valuable teamwork and organizational culture were the most effective, and the infrastructure of information systems had the least impact on Knowledge management.

Keywords: knowledge management, knowledge-based organization, Iranian Oil Terminals

Procedia PDF Downloads 138
413 Analysis of Basic Science Curriculum as Correlates of Secondary School Students' Achievement in Science Test in Oyo State

Authors: Olubiyi Johnson Ezekiel

Abstract:

Basic science curriculum is an on-going effort towards developing the potential of manner to produce individuals in a holistic and integrated person, who are intellectually, spiritually, emotionally and physically balanced and harmonious. The main focus of this study is to determine the relationship between students’ achievement in junior school certificate examination (JSCE) and senior school basic science achievement test (SSBSAT) on the basis of all the components of basic science. The study employed the descriptive research of the survey type and utilized junior school certificate examination and senior school basic science achievement test(r = .87) scores as instruments. The data collected were subjected to Pearson product moment correlation, Spearman rank correlation, regression analysis and analysis of variance. The result of the finding revealed that the mean effects of the achievement in all the components of basic science on SSBSAT are significantly different from zero. Based on the results of the findings, it was concluded that the relationship between students’ achievement in JSCE and SSBSAT was weak and to achieve a unit increase in the students’ achievement in the SSBSAT when other subjects are held constant, we have to increase the learning of: -physics by 0.081 units; -chemistry by 0.072 units; -biology by 0.025 units and general knowledge by 0.097 units. It was recommended among others, that general knowledge aspect of basic science should be included in either physics or chemistry aspect of basic science.

Keywords: basic science curriculum, students’ achievement, science test, secondary school students

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

Authors: Hechmi Saidi, Noureddine Hamdi

Abstract:

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

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

Procedia PDF Downloads 225
411 Modification of Toothpaste Formula Using Pineapple Cobs and Eggshell Waste as a Way to Decrease Dental Caries

Authors: Achmad Buhori, Reza Imam Pratama, Tissa Wiraatmaja, Wanti Megawati

Abstract:

Data from many countries indicates that there is a marked increase of dental caries. The increases in caries appear to occur in lower socioeconomic groups. It is possible that the benefits of prevention of dental caries are not reaching these groups. However, there is a way to decrease dental caries by adding 5% of bromelain and calcium as an active agent in toothpaste. Bromelain can break glutamine-alanine bond and arginine-alanine bond which is a constituent of amino acid that causes dental plague which is one of the factors of dental caries. Calcium help rebuilds the teeth by strengthening and repairing enamel. Bromelain can be found from the extraction of pineapple (Ananas comosus) cobs (88.86-94.22 % of bromelain recovery during extraction based on the enzyme unit) and calcium can be taken from eggshell (95% of dry eggshell consist of calcium). The aim of this experiment is to make a toothpaste which contains bromelain and calcium as an effective, cheap, and healthy way to decrease dental caries around the world.

Keywords: bromelain, calcium, dental caries, dental plague, toothpaste

Procedia PDF Downloads 237
410 Stock Market Development and the Growth of Nigerian Economy

Authors: Godwin Chigozie Okpara, Eugene Iheanacho

Abstract:

This paper examined the dynamic behavior of stock market development and the growth of Nigerian economy. The variables; market capitalization ratio, turnover ratio and liquidity proxies by the ratio of market capitalization to gross domestic product were sourced and computed from the Nigerian stock exchange fact books and the CBN statistical bulletin of the Central Bank of Nigeria. The variables were tested and found stationary and cointregrated using the augumented Dickey Fuller unit root test and the Johnson cointegration test respectively. The dynamic behavior of the stock market development model was verified using the error correction model. The result shows that about 0.4l percent of the short run deviation is corrected every year and also reveals that market capitalization ratio and market liquidity are positive and significant function of economic growth. In other words market capitalization ratio and liquidity positively and significantly impact economic growth. Market development variables such as turnover ratio and market restriction can exert positive but insignificant impact on the growth of the economy suggesting that securities transaction relative to the size of the securities market are not high enough to significantly engender economic growth in Nigeria. In the light of this, the researchers recommend that the regulatory body as well as the government, should provide a conducive environment capable of encouraging the growth and development of the stock market. This if well articulated will enhance the market turnover and the growth of the economy.

Keywords: market capitalization ratio, turnover ratio, liquidity, unit root test, cointegration

Procedia PDF Downloads 306