Search results for: Huang Poh Ching
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 744

Search results for: Huang Poh Ching

474 The Interaction of Country-of-Manufacturing with Country-of-Design within Different Consumption Context

Authors: Ebru Genc, Shih-Ching Wang

Abstract:

In today’s globalized world, while companies move their production centers to developing countries in order to gain cost advantage, they receive negative responses from consumers because of the weak image of those countries. In this study, we looked at this tradeoff faced by multinational companies. Some companies that have headquarters in developed countries have devised a strategy of manipulating country-of-origin (COO) information by introducing the concept of country of design (COD). We analyzed the impact of country-of-manufacturing (COM) information on consumers’ product evaluation and purchase intention in the presence of different levels of COD information, namely, in terms of developed and developing countries. We found that it is not advantageous for a firm to publish a design location with a strong image if the firm is producing in a country that has a weak image. On the other hand, revealing COD information has a reinforcing effect on consumers’ product evaluation and purchase intention if the firm is producing in a country with a strong image. Second, we studied the impact of consumption context on this relationship (in terms of public or private use) and found that for products that are typically used in public, COM has significantly shown higher importance on product evaluation and purchase intention, compared to products typically used in private. However, our results show that consumption context shows no effect of an impact resulting from COD information.

Keywords: consumption context, country of design, country of manufacturing, country of origin

Procedia PDF Downloads 220
473 Thermal Management of Ground Heat Exchangers Applied in High Power LED

Authors: Yuan-Ching Chiang, Chien-Yeh Hsu, Chen Chih-Hao, Sih-Li Chen

Abstract:

The p-n junction temperature of LEDs directly influences their operating life and luminous efficiency. An excessively high p-n junction temperature minimizes the output flux of LEDs, decreasing their brightness and influencing the photon wavelength; consequently, the operating life of LEDs decreases and their luminous output changes. The maximum limit of the p-n junction temperature of LEDs is approximately 120 °C. The purpose of this research was to devise an approach for dissipating heat generated in a confined space when LEDs operate at low temperatures to reduce light decay. The cooling mode of existing commercial LED lights can be divided into natural- and forced convection cooling. In natural convection cooling, the volume of LED encapsulants must be increased by adding more fins to increase the cooling area. However, this causes difficulties in achieving efficient LED lighting at high power. Compared with forced convection cooling, heat transfer through water convection is associated with a higher heat transfer coefficient per unit area; therefore, we dissipated heat by using a closed loop water cooling system. Nevertheless, cooling water exposed to air can be easily influenced by environmental factors. Thus, we incorporated a ground heat exchanger into the water cooling system to minimize the influence of air on cooling water and then observed the relationship between the amounts of heat dissipated through the ground and LED efficiency.

Keywords: helical ground heat exchanger, high power LED, ground source cooling system, heat dissipation

Procedia PDF Downloads 554
472 Utilization of Acupuncture in Palliative Care for Cancer Patients

Authors: Jui-Hung Hung, Ching-Liang Hsieh, Yi-Wen Lin

Abstract:

Modern medicine highly emphasizes the importance of palliative treatment. The inception of palliative and hospice care recently developed into the concept of caring for the patients’ and families’ physical, psychological and spiritual problems. There are several benefits related to palliative care such as reducing medical expenses, decreasing patients’ suffer, and supporting patient go through the finale of the life. Nowadays, in Taiwan, over 60-70% terminal cancer patients were covered in hospice care, and the coverage rate increased annually. Acupuncture is a well-known therapy used more than thousand years to relieve symptoms of cancer patient. Many reports showed that, even in the Western society, many reputable medical centers can provide Acupuncture therapy for patients. Accordingly, using Acupuncture for cancer patient care is a global trend. There are increased evidences indicate that Acupuncture can relieve the symptoms for cancer patients including pain, reduce the dosage of anesthetic, improve the cancer-related fatigue, relieve the chemotherapy-related nausea and vomiting, ease anxiety mood and even improving the quality of life. Furthermore, some trials show that Acupuncture may help relieve xerostomia, hot flash, sleep disorders, and some GI discomfort and so on. Acupuncture therapy has many advantages for clinical use with effective, low-cost, minimal side effect, suitable for cancer patients and even for elderly population. Especially in nowadays, there are more diversified challenges in modern medicine, all of them will make the higher medical budget. We suggest that Acupuncture will be one of methods for palliative care for cancer patients.

Keywords: Acupuncture, cancer, integrative medicine, palliative care

Procedia PDF Downloads 324
471 The Effectiveness of Gamified Learning on Student Learning in Computer Science Education: A Systematic Review (2010-2018)

Authors: Shurui Bai, Biyun Huang, Khe Foon Hew

Abstract:

Gamification is defined as the use of game design elements in non-game contexts. The primary purpose of using gamification in an educational context is to engage students in school activities such that their likelihood of completion is increased. But how actually effective is gamification in improving student learning? In order to answer this question, this paper provides a systematic review of prior research studies on gamification in K-12 and university contexts limited to computer science discipline. Unlike other published gamification review works, we specifically analyzed comparison-based studies in quasi-experiment, historical control, and randomization rather than studies with mere anecdotal or phenomenological results. The main purpose for this is to discuss possible causal effects of gamified practices on student performance, behavior change, and perceptual skills following an integrative model. Implications for practice are discussed, along with several suggestions for future research studies.

Keywords: computer science, gamification, learning performance, systematic review

Procedia PDF Downloads 110
470 Identifying Network Subgraph-Associated Essential Genes in Molecular Networks

Authors: Efendi Zaenudin, Chien-Hung Huang, Ka-Lok Ng

Abstract:

Essential genes play an important role in the survival of an organism. It has been shown that cancer-associated essential genes are genes necessary for cancer cell proliferation, where these genes are potential therapeutic targets. Also, it was demonstrated that mutations of the cancer-associated essential genes give rise to the resistance of immunotherapy for patients with tumors. In the present study, we focus on studying the biological effects of the essential genes from a network perspective. We hypothesize that one can analyze a biological molecular network by decomposing it into both three-node and four-node digraphs (subgraphs). These network subgraphs encode the regulatory interaction information among the network’s genetic elements. In this study, the frequency of occurrence of the subgraph-associated essential genes in a molecular network was quantified by using the statistical parameter, odds ratio. Biological effects of subgraph-associated essential genes are discussed. In summary, the subgraph approach provides a systematic method for analyzing molecular networks and it can capture useful biological information for biomedical research.

Keywords: biological molecular networks, essential genes, graph theory, network subgraphs

Procedia PDF Downloads 124
469 Software Transactional Memory in a Dynamic Programming Language at Virtual Machine Level

Authors: Szu-Kai Hsu, Po-Ching Lin

Abstract:

As more and more multi-core processors emerge, traditional sequential programming paradigm no longer suffice. Yet only few modern dynamic programming languages can leverage such advantage. Ruby, for example, despite its wide adoption, only includes threads as a simple parallel primitive. The global virtual machine lock of official Ruby runtime makes it impossible to exploit full parallelism. Though various alternative Ruby implementations do eliminate the global virtual machine lock, they only provide developers dated locking mechanism for data synchronization. However, traditional locking mechanism error-prone by nature. Software Transactional Memory is one of the promising alternatives among others. This paper introduces a new virtual machine: GobiesVM to provide a native software transactional memory based solution for dynamic programming languages to exploit parallelism. We also proposed a simplified variation of Transactional Locking II algorithm. The empirical results of our experiments show that support of STM at virtual machine level enables developers to write straightforward code without compromising parallelism or sacrificing thread safety. Existing source code only requires minimal or even none modi cation, which allows developers to easily switch their legacy codebase to a parallel environment. The performance evaluations of GobiesVM also indicate the difference between sequential and parallel execution is significant.

Keywords: global interpreter lock, ruby, software transactional memory, virtual machine

Procedia PDF Downloads 249
468 Evaluation of Longitudinal Relaxation Time (T1) of Bone Marrow in Lumbar Vertebrae of Leukaemia Patients Undergoing Magnetic Resonance Imaging

Authors: M. G. R. S. Perera, B. S. Weerakoon, L. P. G. Sherminie, M. L. Jayatilake, R. D. Jayasinghe, W. Huang

Abstract:

The aim of this study was to measure and evaluate the Longitudinal Relaxation Times (T1) in bone marrow of an Acute Myeloid Leukaemia (AML) patient in order to explore the potential for a prognostic biomarker using Magnetic Resonance Imaging (MRI) which will be a non-invasive prognostic approach to AML. MR image data were collected in the DICOM format and MATLAB Simulink software was used in the image processing and data analysis. For quantitative MRI data analysis, Region of Interests (ROI) on multiple image slices were drawn encompassing vertebral bodies of L3, L4, and L5. T1 was evaluated using the T1 maps obtained. The estimated bone marrow mean value of T1 was 790.1 (ms) at 3T. However, the reported T1 value of healthy subjects is significantly (946.0 ms) higher than the present finding. This suggests that the T1 for bone marrow can be considered as a potential prognostic biomarker for AML patients.

Keywords: acute myeloid leukaemia, longitudinal relaxation time, magnetic resonance imaging, prognostic biomarker.

Procedia PDF Downloads 496
467 A Method for Evaluating the Mechanical Stress on Mandibular Advancement Devices

Authors: Tsung-yin Lin, Yi-yu Lee, Ching-hua Hung

Abstract:

Snoring, the lay term for obstructive breathing during sleep, is one of the most prevalent of obnoxious human habits. Loud snoring usually makes others feel noisy and uncomfortable. Snoring also influences the sleep quality of snorers’ bed partners, because of the noise they do not get to sleep easily. Snoring causes the reduce of sleep quality leading to several medical problems, such as excessive daytime sleepiness, high blood pressure, increased risk for cardiovascular disease and cerebral vascular accident, and etc. There are many non-prescription devices offered for sale on the market, but very limited data are available to support a beneficial effect of these devices on snoring and use in treating obstructive sleep apnea (OSA). Mandibular advancement devices (MADs), also termed as the Mandibular reposition devices (MRDs) are removable devices which are worn at night during sleep. Most devices require dental impression, bite registration, and fabrication by a dental laboratory. Those devices are fixed to upper and lower teeth and are adjusted to advance the mandible. The amount of protrusion is adjusted to meet the therapeutic requirements, comfort, and tolerance. Many devices have a fixed degree of advancement. Some are adjustable in a limited degree. This study focuses on the stress analysis of Mandibular Advancement Devices (MADs), which are considered as a standard treatment of snoring that promoted by American Academy of Sleep Medicine (AASM). This paper proposes a new MAD design, and the finite element analysis (FEA) is introduced to precede the stress simulation for this MAD.

Keywords: finite element analysis, mandibular advancement devices, mechanical stress, snoring

Procedia PDF Downloads 339
466 Longitudinal Changes in Body Composition in Subjects with Diabetes Who Received Low-Carbohydrate Diet Education: The Effect of Age and Sex

Authors: Hsueh-Ching Wu

Abstract:

Aims: This study investigated the longitudinal changes in BC were evaluated in patients with T2D who received carbohydrate-restricted diet education (CRDE), and the effects of age and sex on BC were analyzed. Design: This retrospective observational study was conducted between 2018 and 2021. A total of 6164 T2D patients were analyzed. Subjects with T2D who received CRDE (daily carbohydrate intake: 26-45%). A hierarchical linear model (HLM) was used to estimate the change amount and rate of change for the following variables in each group: body weight (BW), body mass index (BMI), body fat mass (BFM), percent body fat (PBF), appendicular skeletal muscle mass (ASM), and skeletal muscle index (SMI). Results: The BW, BMI, ASM, SMI and BFM of T2D patients who received CRDE for 3 years decreased with increasing age; PBF showed the opposite trend. The changes in BW, BMI, ASM, and SMI of patients older than 65 years were higher than those of patients younger than 65 years, and the annual rate of decline for males was higher than that for females. The annual change in BFM and PBF for both sexes changed from a downward trend before the age of 65 to a slow increase after the age of 65, and the slow increase rate for women was higher than that for men. Conclusion: Changes in body composition are associated with age and sex. BW and muscle tissue decrease with age, and attention must be paid to the rebound of adipose tissue after middle age. Patient or Public Contribution: The patient agreed to participate in a retrospective chart review during in the study period.

Keywords: body weight, body composition, carbohydrate-restricted diet, nursing, type 2 diabetes

Procedia PDF Downloads 20
465 Test-Retest Agreement, Random Measurement Error and Practice Effect of the Continuous Performance Test-Identical Pairs for Patients with Schizophrenia

Authors: Kuan-Wei Chen, Chien-Wei Chen, Tai-Ling Chang, Nan-Cheng Chen, Ching-Lin Hsieh, Gong-Hong Lin

Abstract:

Background and Purposes: Deficits in sustained attention are common in patients with schizophrenia. Such impairment can limit patients to effectively execute daily activities and affect the efficacy of rehabilitation. The aims of this study were to examine the test-retest agreement, random measurement error, and practice effect of the Continuous Performance Test-Identical Pairs (CPT-IP) (a commonly used sustained attention test) in patients with schizophrenia. The results can provide empirical evidence for clinicians and researchers to apply a sustained attention test with sound psychometric properties in schizophrenia patients. Methods: We recruited patients with chronic schizophrenia to be assessed twice with 1 week interval using CPT-IP. The intra-class correlation coefficient (ICC) was used to examine the test-retest agreement. The percentage of minimal detectable change (MDC%) was used to examine the random measurement error. Moreover, the standardized response mean (SRM) was used to examine the practice effect. Results: A total of 56 patients participated in this study. Our results showed that the ICC was 0.82, MDC% was 47.4%, and SRMs were 0.36 for the CPT-IP. Conclusion: Our results indicate that CPT-IP has acceptable test-retests agreement, substantial random measurement error, and small practice effect in patients with schizophrenia. Therefore, to avoid overestimating patients’ changes in sustained attention, we suggest that clinicians interpret the change scores of CPT-IP conservatively in their routine repeated assessments.

Keywords: schizophrenia, sustained attention, CPT-IP, reliability

Procedia PDF Downloads 271
464 Design and Analysis of Shielding Magnetic Field for Active Space Radiation Protection

Authors: Chaoyan Huang, Hongxia Zheng

Abstract:

For deep space exploration and long duration interplanetary manned missions, protection of astronauts from cosmic radiation is an unavoidable problem. However, passive shielding can be little effective for protecting particles which energies are greater than 1GeV/nucleon. In this study, active magnetic protection method is adopted. Taking into account the structure and size of the end-cap, eight shielding magnetic field configurations are designed based on the Hoffman configuration. The shielding effect of shielding magnetic field structure, intensity B and thickness L on H particles with 2GeV energy is compared by test particle simulation. The result shows that the shielding effect is better with the linear type magnetic field structure in the end-cap region. Furthermore, two magnetic field configurations with better shielding effect are investigated through H and He galactic cosmic spectra. And the shielding effect of the linear type configuration adopted in the barrel and end-cap regions is best.

Keywords: galactic cosmic rays, active protection, shielding magnetic field configuration, shielding effect

Procedia PDF Downloads 106
463 The Impact of Steel Connections on the Fire Resistance of Composite Buildings

Authors: Shuyuan Lin, Zhaohui Huang, Mizi Fan

Abstract:

In the majority of previous research into modelling large scale composite floor subjected to fire, the beam-to-column and beam-to-beam connections were assumed to behave either as pinned or rigid for simplicity, and the vertical shear and axial tension failures of the connection were not taken into account. We have recently developed robust two-noded connection models for modeling endplate and partial endplate steel connections under fire conditions. The main objective of this research is to systematically investigate the impact of the connections of protected beams, on the tensile membrane actions of supported floor slabs in which the failures of the connections, such as, axial tension, vertical shear and bending are accounted for. The models developed have very good numerical stability under a static solver condition, and can be used for large scale modelling of composite buildings in fire.

Keywords: fire, steel structure, component-based model, beam-to-column connections

Procedia PDF Downloads 420
462 Research on Greenway System Planning of Mountainous City: A Case Study of Chengkou County, Chongqing

Authors: Youping Huang, Yang Liu

Abstract:

Mountainous cities have unique landscape relationship, topography and urban spatial pattern different from plain cities, which put forward different requirements for greenway system planning strategy. Taking the greenway planning of Chengkou County in Chongqing as an example, this paper discusses the greenway system planning strategy of mountainous cities based on urban and rural green space, urban landscape resources, human resources and other factors. Through multi-angle maintenance of landscape pattern, multi-objective integration of urban resources, multi-level construction of greenway network, and multi-interactive development control, the sustainable development of mountain city landscape resources is realized, the new urban ecology is constructed, and the quality of life of urban and rural residents is improved.

Keywords: greenway planning, mountain city, landscape pattern, cultural resources, chongqing

Procedia PDF Downloads 56
461 Focusing on Effective Translation Teaching in the Classroom: A Case Study

Authors: Zhi Huang

Abstract:

This study follows on from previous survey and focus group research exploring the effective teaching process in a translation classroom in Australian universities through case study method. The data analysis draws on social constructivist theory in translation teaching and focuses on teaching process aiming to discover how effective translation teachers conduct teaching in the classroom. The results suggest that effective teaching requires the teacher to have ability in four aspects: classroom management, classroom pedagogy, classroom communication, and teacher roles. Effective translation teachers are able to control the whole learning process, facilitate students in independent learning, guide students to be more critical about translation, giving both positive and negative feedback for students to reflect on their own, and being supportive, patient and encouraging to students for better classroom communication and learning outcomes. This study can be applied to other teachers in translation so that they can reflect on their own teaching in their education contexts and strive for being a more qualified translation teacher and achieving teaching effectiveness.

Keywords: case study, classroom observation, classroom teaching, effective translation teaching, teacher effectiveness

Procedia PDF Downloads 385
460 Intelligent Software Architecture and Automatic Re-Architecting Based on Machine Learning

Authors: Gebremeskel Hagos Gebremedhin, Feng Chong, Heyan Huang

Abstract:

Software system is the combination of architecture and organized components to accomplish a specific function or set of functions. A good software architecture facilitates application system development, promotes achievement of functional requirements, and supports system reconfiguration. We describe three studies demonstrating the utility of our architecture in the subdomain of mobile office robots and identify software engineering principles embodied in the architecture. The main aim of this paper is to analyze prove architecture design and automatic re-architecting using machine learning. Intelligence software architecture and automatic re-architecting process is reorganizing in to more suitable one of the software organizational structure system using the user access dataset for creating relationship among the components of the system. The 3-step approach of data mining was used to analyze effective recovery, transformation and implantation with the use of clustering algorithm. Therefore, automatic re-architecting without changing the source code is possible to solve the software complexity problem and system software reuse.

Keywords: intelligence, software architecture, re-architecting, software reuse, High level design

Procedia PDF Downloads 88
459 Performance Analysis of Air-Tunnel Heat Exchanger Integrated into Raft Foundation

Authors: Chien-Yeh Hsu, Yuan-Ching Chiang, Zi-Jie Chien, Sih-Li Chen

Abstract:

In this study, a field experiment and performance analysis of air-tunnel heat exchanger integrated with water-filled raft foundation of residential building were performed. In order to obtain better performance, conventional applications of air-tunnel inevitably have high initial cost or issues about insufficient installation space. To improve the feasibility of air tunnel heat exchanger in high-density housing, an integrated system consisting of air pipes immersed in the water-filled raft foundation was presented, taking advantage of immense amount of water and relatively stable temperature in raft foundation of building. The foundation-integrated air tunnel was applied to a residential building located in Yilan, Taiwan, and its thermal performance was measured in the field experiment. The results indicated that the cooling potential of integrated system was close to the potential of soil-based EAHE at 2 m depth or deeper. An analytical model based on thermal resistance method was validated by measurement results, and was used to carry out the dimensioning of foundation-integrated air tunnel. The discrepancies between calculated value and measured data were less than 2.7%. In addition, the return-on-investment with regard to thermal performance and economics of the application was evaluated. Because the installation for air tunnel is scheduled in the building foundation construction, the utilization of integrated system spends less construction cost compare to the conventional earth-air tunnel.

Keywords: air tunnel, ground heat exchanger, raft foundation, residential building

Procedia PDF Downloads 296
458 Fabrication of Cesium Iodide Columns by Rapid Heating Method

Authors: Chien-Wan Hun, Shao-Fu Chang, Chien-Chon Chen, Ker-Jer Huang

Abstract:

This study presents how to use a high-efficiency process for producing cesium iodide (CsI) crystal columns by rapid heating method. In the past, the heating rate of the resistance wire heating furnace was relatively slow and excessive iodine and CsI vapors were therefore generated during heating. Because much iodine and CsI vapors are produced during heating process, the composition of CsI crystal columns is not correct. In order to enhance the heating rate, making CsI material in the heating process can quickly reach the melting point temperature. This study replaced the traditional type of external resistance heating furnace with halogen-type quartz heater, and then, CsI material can quickly reach the melting point. Eventually, CsI melt can solidify in the anodic aluminum template forming CsI crystal columns.

Keywords: cesium iodide, high efficiency, vapor, rapid heating, crystal column

Procedia PDF Downloads 332
457 Parameters Optimization of the Laminated Composite Plate for Sound Transmission Problem

Authors: Yu T. Tsai, Jin H. Huang

Abstract:

In this paper, the specific sound transmission loss (TL) of the laminated composite plate (LCP) with different material properties in each layer is investigated. The numerical method to obtain the TL of the LCP is proposed by using elastic plate theory. The transfer matrix approach is novelty presented for computational efficiency in solving the numerous layers of dynamic stiffness matrix (D-matrix) of the LCP. Besides the numerical simulations for calculating the TL of the LCP, the material properties inverse method is presented for the design of a laminated composite plate analogous to a metallic plate with a specified TL. As a result, it demonstrates that the proposed computational algorithm exhibits high efficiency with a small number of iterations for achieving the goal. This method can be effectively employed to design and develop tailor-made materials for various applications.

Keywords: sound transmission loss, laminated composite plate, transfer matrix approach, inverse problem, elastic plate theory, material properties

Procedia PDF Downloads 356
456 Design and Analysis of Flexible Slider Crank Mechanism

Authors: Thanh-Phong Dao, Shyh-Chour Huang

Abstract:

This study presents the optimal design and formulation of a kinematic model of a flexible slider crank mechanism. The objective of the proposed innovative design is to take extra advantage of the compliant mechanism and maximize the fatigue life by applying the Taguchi method. A formulated kinematic model is developed using a Pseudo-Rigid-Body Model (PRBM). By means of mathematic models, the kinematic behaviors of the flexible slider crank mechanism are captured using MATLAB software. Finite Element Analysis (FEA) is used to show the stress distribution. The results show that the optimal shape of the flexible hinge includes a force of 8.5N, a width of 9mm and a thickness of 1.1mm. Analysis of variance shows that the thickness of the proposed hinge is the most significant parameter, with an F test of 15.5. Finally, a prototype is manufactured to prepare for testing the kinematic and dynamic behaviors.

Keywords: kinematic behavior, fatigue life, pseudo-rigid-body model, flexible slider crank mechanism

Procedia PDF Downloads 428
455 Design and Motion Control of a Two-Wheel Inverted Pendulum Robot

Authors: Shiuh-Jer Huang, Su-Shean Chen, Sheam-Chyun Lin

Abstract:

Two-wheel inverted pendulum robot (TWIPR) is designed with two-hub DC motors for human riding and motion control evaluation. In order to measure the tilt angle and angular velocity of the inverted pendulum robot, accelerometer and gyroscope sensors are chosen. The mobile robot’s moving position and velocity were estimated based on DC motor built in hall sensors. The control kernel of this electric mobile robot is designed with embedded Arduino Nano microprocessor. A handle bar was designed to work as steering mechanism. The intelligent model-free fuzzy sliding mode control (FSMC) was employed as the main control algorithm for this mobile robot motion monitoring with different control purpose adjustment. The intelligent controllers were designed for balance control, and moving speed control purposes of this robot under different operation conditions and the control performance were evaluated based on experimental results.

Keywords: balance control, speed control, intelligent controller, two wheel inverted pendulum

Procedia PDF Downloads 192
454 The Impact of Governance on Happiness: Evidence from Quantile Regressions

Authors: Chiung-Ju Huang

Abstract:

This study utilizes the quantile regression analysis to examine the impact of governance (including democratic quality and technical quality) on happiness in 101 countries worldwide, classified as “developed countries” and “developing countries”. The empirical results show that the impact of democratic quality and technical quality on happiness is significantly positive for “developed countries”, while is insignificant for “developing countries”. The results suggest that the authorities in developed countries can enhance the level of individual happiness by means of improving the democracy quality and technical quality. However, for developing countries, promoting the quality of governance in order to enhance the level of happiness may not be effective. Policy makers in developed countries may pay more attention on increasing real GDP per capita instead of promoting the quality of governance to enhance individual happiness.

Keywords: governance, happiness, multiple regression, quantile regression

Procedia PDF Downloads 250
453 Spherical Harmonic Based Monostatic Anisotropic Point Scatterer Model for RADAR Applications

Authors: Eric Huang, Coleman DeLude, Justin Romberg, Saibal Mukhopadhyay, Madhavan Swaminathan

Abstract:

High performance computing (HPC) based emulators can be used to model the scattering from multiple stationary and moving targets for RADAR applications. These emulators rely on the RADAR Cross Section (RCS) of the targets being available in complex scenarios. Representing the RCS using tables generated from electromagnetic (EM) simulations is often times cumbersome leading to large storage requirement. This paper proposed a spherical harmonic based anisotropic scatterer model to represent the RCS of complex targets. The problem of finding the locations and reflection profiles of all scatterers can be formulated as a linear least square problem with a special sparsity constraint. This paper solves this problem using a modified Orthogonal Matching Pursuit algorithm. The results show that the spherical harmonic based scatterer model can effectively represent the RCS data of complex targets.

Keywords: RADAR, RCS, high performance computing, point scatterer model

Procedia PDF Downloads 167
452 Visualization of Latent Sweat Fingerprints Deposit on Paper by Infrared Radiation and Blue Light

Authors: Xiaochun Huang, Xuejun Zhao, Yun Zou, Feiyu Yang, Wenbin Liu, Nan Deng, Ming Zhang, Nengbin Cai

Abstract:

A simple device termed infrared radiation (IR) was developed for rapid visualization of sweat fingerprints deposit on paper with blue light (450 nm, 11 W). In this approach, IR serves as the pretreatment device before the sweat fingerprints was illuminated by blue light. An annular blue light source was adopted for visualizing latent sweat fingerprints. Sample fingerprints were examined under various conditions after deposition, and experimental results indicate that the recovery rate of the latent sweat fingerprints is in the range of 50%-100% without chemical treatments. A mechanism for the observed visibility is proposed based on transportation and re-impregnation of fluorescer in paper at the region of water. And further exploratory experimental results gave the full support to the visible mechanism. Therefore, such a method as IR-pretreated in detecting latent fingerprints may be better for examination in the case where biological information of samples is needed for consequent testing.

Keywords: forensic science, visualization, infrared radiation, blue light, latent sweat fingerprints, detection

Procedia PDF Downloads 473
451 SVID: Structured Vulnerability Intelligence for Building Deliberated Vulnerable Environment

Authors: Wenqing Fan, Yixuan Cheng, Wei Huang

Abstract:

The diversity and complexity of modern IT systems make it almost impossible for internal teams to find vulnerabilities in all software before the software is officially released. The emergence of threat intelligence and vulnerability reporting policy has greatly reduced the burden on software vendors and organizations to find vulnerabilities. However, to prove the existence of the reported vulnerability, it is necessary but difficult for security incident response team to build a deliberated vulnerable environment from the vulnerability report with limited and incomplete information. This paper presents a structured, standardized, machine-oriented vulnerability intelligence format, that can be used to automate the orchestration of Deliberated Vulnerable Environment (DVE). This paper highlights the important role of software configuration and proof of vulnerable specifications in vulnerability intelligence, and proposes a triad model, which is called DIR (Dependency Configuration, Installation Configuration, Runtime Configuration), to define software configuration. Finally, this paper has also implemented a prototype system to demonstrate that the orchestration of DVE can be automated with the intelligence.

Keywords: DIR triad model, DVE, vulnerability intelligence, vulnerability recurrence

Procedia PDF Downloads 97
450 Design of an Artificial Oil Body-Cyanogen Bromide Technology Platform for the Expression of Small Bioactive Peptide, Mastoparan B

Authors: Tzyy-Rong Jinn, Sheng-Kuo Hsieh, Yi-Ching Chung, Feng-Chia Hsieh

Abstract:

In this study, we attempted to develop a recombinant oleosin-based fusion expression strategy in Escherichia coli (E. coli) and coupled with the artificial oil bodies (AOB)-cyanogen bromide technology platform to produce bioactive mastoparan B (MP-B). As reported, the oleosin in AOB system plays a carrier (fusion with target protein), since oleosin possess two amphipathic regions (at the N-terminus and C-terminus), which result in the N-terminus and C-terminus of oleosin could be arranged on the surface of AOB. Thus, the target protein fused to the N-terminus or C-terminus of oleosin which also is exposed on the surface of AOB, and this process will greatly facilitate the subsequent separation and purification of target protein from AOB. In addition, oleosin, a unique structural protein of seed oil bodies, has the added advantage of helping the fused MP-B expressed in inclusion bodies, which can protect from proteolytic degradation. In this work, MP-B was fused to the C-terminus of oleosin and then was expressed in E. coli as an insoluble recombinant protein. As a consequence, we successfully developed a reliable recombinant oleosin-based fusion expression strategy in Escherichia coli and coupled with the artificial oil bodies (AOB)-cyanogen bromide technology platform to produce the small peptide, MP-B. Take together, this platform provides an insight into the production of active MP-B, which will facilitate studies and applications of this peptide in the future.

Keywords: artificial oil bodies, Escherichia coli, Oleosin-fusion protein, Mastoparan-B

Procedia PDF Downloads 429
449 The Effect of Health Program on the Fitness Ability of Abnormal BMI University Students

Authors: Hui-Fang Lee, Meng-Chu Liu, Wen-Chi Lu, Hsuan-Jung Hsieh

Abstract:

The purpose of the study was to examine the effect of health program on the fitness ability of abnormal BMI students of Ching-Yun University of Science and Technology. In order to achieve this purpose, self-regulation theory and dietary education were applied, and the effect of 10-week sports activities and three-day diet records on pre-test and post-test of fitness activities was analyzed. There were 40 original participants. Then, nine people who were with normal BMI, low attendance or unfinished fitness test were eliminated from this research. The valid samples were 31 (77.5%) participants. The fitness activities included sit-bending, one minute sit-up, standing long jump, and three-minute stage boarding. The averages of three-day diet records were compared, and differences of pre-test and post-test of the four fitness activities were analyzed with paired-samples t test. The results showed that there was a significant difference between pre-test and post of male students’ BMI and one minute sit-up. Females’ sit-bending and one minute sit-up had the same effect. Females had high fat intake in three-day diet records. The research showed that the use of self-regulation theory and dietary education, the implementation of sports activities and three-day diet records could significantly enhance the physical fitness indicators or effects. While in the course of sports, we should guide students to think about the gap between self-behavior and ideal behavior, then realize the main reasons and improving methods, and finally go towards the goal and improve the effect of physical fitness.

Keywords: self-regulation theory, dietary education, three-day diet records, physical fitness

Procedia PDF Downloads 284
448 Bifurcation Curve for Semipositone Problem with Minkowski-Curvature Operator

Authors: Shao-Yuan Huang

Abstract:

We study the shape of the bifurcation curve of positive solutions for the semipositone problem with the Minkowski-curvature operator. The Minkowski-curvature problem plays an important role in certain fundamental issues in differential geometry and in the special theory of relativity. In addition, it is well known that studying the multiplicity of positive solutions is equivalent to studying the shape of the bifurcation curve. By the shape of the bifurcation curve, we can understand the change in the multiplicity of positive solutions with varying parameters. In this paper, our main technique is a time-map method used in Corsato's PhD Thesis. By this method, studying the shape of the bifurcation curve is equivalent to studying the shape of a certain function T with improper integral. Generally speaking, it is difficult to study the shape of T. So, in this paper, we consider two cases that the nonlinearity is convex or concave. Thus we obtain the following results: (i) If f''(u) < 0 for u > 0, then the bifurcation curve is C-shaped. (ii) If f''(u) > 0 for u > 0, then there exists η>β such that the bifurcation curve does not exist for 0 η. Furthermore, we prove that the bifurcation is C-shaped for L > η under a certain condition.

Keywords: bifurcation curve, Minkowski-curvature problem, positive solution, time-map method

Procedia PDF Downloads 66
447 Metabolic Regulation of Rhizobacteria for Cool-Season Grass Tolerance to Heat Stress

Authors: Kashif Jaeel, Bingru Huang

Abstract:

Stress-induced accumulation of ethylene exacerbates drought damages in plants, and suppressing stress induction of ethylene may promote plant tolerance to heat stress. The objective of this study was to investigate the effects of endophytic bacteria (Paraburkholderia aspalathi) with 1-aminocyclopropane-1-carboxylic acid (ACC) deaminase enzymes in suppressing ethylene production on plant tolerance to heat stress and underlying physiological mechanisms of P. aspalathi-regulation in creeping bentgrass (Agrostis stolonifera). A novel strain of P. aspalathi, ‘WSF23’, with ACC deaminase activity was used to inoculate the roots of plants (cv. ‘Penncross’) subjected to heat stress in controlled-environment chambers. Inoculation with WSF23 bacteria resulted in improved shoot and root growth during heat stress. The differential changes in metabolite regulation due to the bacterial inoculation could contribute to ACC deamination bacteria-improved heat tolerance in cool-season grass species.

Keywords: rhizobacteria, grass, heat, plant metabolism, soil bacteria

Procedia PDF Downloads 37
446 The Research of Industrial Space Characteristics, Layout, and Strategy in Metropolitan Area in China: In Case of Wuhan

Authors: Min Zhou, Kaixuan Lin, Yaping Huang

Abstract:

In this paper, the industrial space of metropolitan area in Wuhan is taken as a sample. First of all, it puts forward that the structure of service economy, circle gradient relocation and high degree of regional collaboration are the rules of industrial spatial development in the modern world cities. Secondly, using the economic statistics and land use vector data (1993, 2004, 2010, and 2013) of Wuhan, it analyzes the present situation of industry development and the characteristics of industrial space layout from three aspects of the industrial economic structure, industrial layout, and industrial regional synergy. Then, based on the industrial development regularity of world cities, it puts forward to construct the industrial spatial level of ‘complex industrial concentration area + modular industry unit’ and the industrial spatial structure of ‘13525’. Finally, it comes up with the optimization tactics of the industrial space’s transformation in the future under the background of new economic era.

Keywords: big city of metropolitan area, industrial space, characteristics, layout, strategy

Procedia PDF Downloads 340
445 Impact and Risk Assessment of Climate Change on Water Quality: A Study in the Errer River Basin, Taiwan

Authors: Hsin-Chih Lai, Yung-Lung Lee, Yun-Yao Chi, Ching-Yi Horng, Pei-Chih Wu, Hsien-Chang Wang

Abstract:

Taiwan, a climatically challenged island, has always been keen on the issue of water resource management due to its limitations in water storage. Since water resource management has been the focal point of many adaptations to climate change, there has been a lack of attention on another issue, water quality. This study chooses the Errer River Basin as the experimental focus for water quality in Taiwan. With the Errer River Basin being one of the most polluted rivers in Taiwan, this study observes the effects of climate change on this river over a period of time. Taiwan is also targeted by multiple typhoons every year, the heavy rainfall and strong winds create problems of pollution being carried to different river segments, including into the ocean. This study aims to create an impact and risk assessment on Errer River Basin, to show the connection from climate change to potential extreme events, which in turn could influence water quality and ultimately human health. Using dynamic downscaling, this study narrows the information from a global scale to a resolution of 1 km x 1 km. Then, through interpolation, the resolution is further narrowed into a resolution of 200m x 200m, to analyze the past, present, and future of extreme events. According to different climate change scenarios, this study designs an assessment index on the vulnerability of the Errer River Basin. Through this index, Errer River inhabitants can access advice on adaptations to climate change and act accordingly.

Keywords: climate change, adaptation, water quality, risk assessment

Procedia PDF Downloads 325