Search results for: gain control
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 11875

Search results for: gain control

11785 The Impact of Gestational Weight Gain on Subclinical Atherosclerosis, Placental Circulation and Neonatal Complications

Authors: Marina Shargorodsky

Abstract:

Aim: Gestational weight gain (GWG) has been related to altering future weight-gain curves and increased risks of obesity later in life. Obesity may contribute to vascular atherosclerotic changes as well as excess cardiovascular morbidity and mortality observed in these patients. Noninvasive arterial testing, such as ultrasonographic measurement of carotid IMT, is considered a surrogate for systemic atherosclerotic disease burden and is predictive of cardiovascular events in asymptomatic individuals as well as recurrent events in patients with known cardiovascular disease. Currently, there is no consistent evidence regarding the vascular impact of excessive GWG. The present study was designed to investigate the impact of GWG on early atherosclerotic changes during late pregnancy, using intima-media thickness, as well as placental vascular circulation and inflammatory lesions and pregnancy outcomes. Methods: The study group consisted of 59 pregnant women who gave birth and underwent a placental histopathological examination at the Department of Obstetrics and Gynecology, Edith Wolfson Medical Center, Israel, in 2019. According to the IOM guidelines the study group has been divided into two groups: Group 1 included 32 women with pregnancy weight gain within recommended range; Group 2 included 27 women with excessive weight gain during pregnancy. The IMT was measured from non-diseased intimal and medial wall layers of the carotid artery on both sides, visualized by high-resolution 7.5 MHz ultrasound (Apogee CX Color, ATL). Placental histology subdivided placental findings to lesions consistent with maternal vascular and fetal vascular malperfusion according to the criteria of the Society for Pediatric Pathology, subdividing placental findings to lesions consistent with maternal vascular and fetal vascular malperfusion, as well as the inflammatory response of maternal and fetal origin. Results: IMT levels differed between groups and were significantly higher in Group 1 compared to Group 2 (0.7+/-0.1 vs 0.6+/-0/1, p=0.028). Multiple linear regression analysis of IMT included variables based on their associations in univariate analyses with a backward approach. Included in the model were pre-gestational BMI, HDL cholesterol and fasting glucose. The model was significant (p=0.001) and correctly classified 64.7% of study patients. In this model, pre-pregnancy BMI remained a significant independent predictor of subclinical atherosclerosis assessed by IMT (OR 4.314, 95% CI 0.0599-0.674, p=0.044). Among placental lesions related to fetal vascular malperfusion, villous changes consistent with fetal thrombo-occlusive disease (FTOD) were significantly higher in Group 1 than in Group 2, p=0.034). In Conclusion, the present study demonstrated that excessive weight gain during pregnancy is associated with an adverse effect on early stages of subclinical atherosclerosis, placental vascular circulation and neonatal complications. The precise mechanism for these vascular changes, as well as the overall clinical impact of weight control during pregnancy on IMT, placental vascular circulation as well as pregnancy outcomes, deserves further investigation.

Keywords: obesity, pregnancy, complications, weight gain

Procedia PDF Downloads 28
11784 Thinking in a Foreign Language Overcomes the Developmental Reversal in Risky Decision-Making: The Foreign Language Effect in Risky Decision-Making

Authors: Rendong Cai, Bei Peng, Yanping Dong

Abstract:

In risk decision making, individuals are found to be susceptible to 'frames': people tend to be risk averse when the choice is described in terms of potential 'gains' (gain frame), whereas they tend to be risk seeking when the same choice is described in terms of potential 'losses' (loss frame); this effect is termed the framing effect. The framing effect has been well documented and some studies even find a developmental reversal in the framing effect: The more experience an individual has in a certain field, the easier for him to be influenced by the frame relevant to the field, resulting in greater decision inconsistency. Recent studies reported that using a foreign language can reduce the framing effect. However, it is not clear whether foreign language use can overcome the developmental reversal in the framing effect. The present study investigated three potential factors that may influence the developmental reversal in the framing effect: specialized knowledge of the participants, the language in which the problem is presented, and the types of problems. The present study examined the decision making behavior of 188 Chinese-English bilinguals who majored in Finance, with a group of 277 English majors as the control group. They were asked to solve a financial problem (experimental condition) and a life problem (control condition). Each problem was presented in one of the following four versions: native language-gain frame, foreign language-gain frame, native language-loss frame, and foreign language-loss frame. Results revealed that for the life problem, under the native condition, both groups were affected by the frame; but under the foreign condition, this framing effect disappeared for the financial majors. This confirmed that foreign language use modulates framing effects in general decision making, which served as an effective baseline. For the financial problem, under the native condition, only the financial major was observed to be influenced by the frame, which was a developmental reversal; under the foreign condition, however, this framing effect disappeared. The results provide further empirical evidence for the universal of the developmental reversal in risky decision making. More importantly, the results suggest that using a foreign language can overcome such reversal, which has implications for the reduction of decision biases in professionals. The findings also shed new light on the complex interaction between general decision-making and bilingualism.

Keywords: the foreign language effect, developmental reversals, the framing effect, bilingualism

Procedia PDF Downloads 348
11783 Practical Challenges of Tunable Parameters in Matlab/Simulink Code Generation

Authors: Ebrahim Shayesteh, Nikolaos Styliaras, Alin George Raducu, Ozan Sahin, Daniel Pombo VáZquez, Jonas Funkquist, Sotirios Thanopoulos

Abstract:

One of the important requirements in many code generation projects is defining some of the model parameters tunable. This helps to update the model parameters without performing the code generation again. This paper studies the concept of embedded code generation by MATLAB/Simulink coder targeting the TwinCAT Simulink system. The generated runtime modules are then tested and deployed to the TwinCAT 3 engineering environment. However, defining the parameters tunable in MATLAB/Simulink code generation targeting TwinCAT is not very straightforward. This paper focuses on this subject and reviews some of the techniques tested here to make the parameters tunable in generated runtime modules. Three techniques are proposed for this purpose, including normal tunable parameters, callback functions, and mask subsystems. Moreover, some test Simulink models are developed and used to evaluate the results of proposed approaches. A brief summary of the study results is presented in the following. First of all, the parameters defined tunable and used in defining the values of other Simulink elements (e.g., gain value of a gain block) could be changed after the code generation and this value updating will affect the values of all elements defined based on the values of the tunable parameter. For instance, if parameter K=1 is defined as a tunable parameter in the code generation process and this parameter is used to gain a gain block in Simulink, the gain value for the gain block is equal to 1 in the gain block TwinCAT environment after the code generation. But, the value of K can be changed to a new value (e.g., K=2) in TwinCAT (without doing any new code generation in MATLAB). Then, the gain value of the gain block will change to 2. Secondly, adding a callback function in the form of “pre-load function,” “post-load function,” “start function,” and will not help to make the parameters tunable without performing a new code generation. This means that any MATLAB files should be run before performing the code generation. The parameters defined/calculated in this file will be used as fixed values in the generated code. Thus, adding these files as callback functions to the Simulink model will not make these parameters flexible since the MATLAB files will not be attached to the generated code. Therefore, to change the parameters defined/calculated in these files, the code generation should be done again. However, adding these files as callback functions forces MATLAB to run them before the code generation, and there is no need to define the parameters mentioned in these files separately. Finally, using a tunable parameter in defining/calculating the values of other parameters through the mask is an efficient method to change the value of the latter parameters after the code generation. For instance, if tunable parameter K is used in calculating the value of two other parameters K1 and K2 and, after the code generation, the value of K is updated in TwinCAT environment, the value of parameters K1 and K2 will also be updated (without any new code generation).

Keywords: code generation, MATLAB, tunable parameters, TwinCAT

Procedia PDF Downloads 199
11782 Pilot Induced Oscillations Adaptive Suppression in Fly-By-Wire Systems

Authors: Herlandson C. Moura, Jorge H. Bidinotto, Eduardo M. Belo

Abstract:

The present work proposes the development of an adaptive control system which enables the suppression of Pilot Induced Oscillations (PIO) in Digital Fly-By-Wire (DFBW) aircrafts. The proposed system consists of a Modified Model Reference Adaptive Control (M-MRAC) integrated with the Gain Scheduling technique. The PIO oscillations are detected using a Real Time Oscillation Verifier (ROVER) algorithm, which then enables the system to switch between two reference models; one in PIO condition, with low proneness to the phenomenon and another one in normal condition, with high (or medium) proneness. The reference models are defined in a closed loop condition using the Linear Quadratic Regulator (LQR) control methodology for Multiple-Input-Multiple-Output (MIMO) systems. The implemented algorithms are simulated in software implementations with state space models and commercial flight simulators as the controlled elements and with pilot dynamics models. A sequence of pitch angles is considered as the reference signal, named as Synthetic Task (Syntask), which must be tracked by the pilot models. The initial outcomes show that the proposed system can detect and suppress (or mitigate) the PIO oscillations in real time before it reaches high amplitudes.

Keywords: adaptive control, digital Fly-By-Wire, oscillations suppression, PIO

Procedia PDF Downloads 106
11781 The Effect of Kelp Ecklonia maxima Inclusion in Formulated Feed on Growth, Feed Utilization and the Gut Microbiota of South African Abalone Haliotis Midae

Authors: Aldi Nel, Cliff L. W. Jones, Justin O. G. Kemp, Peter J. Britz

Abstract:

Kelp Ecklonia maxima is included in formulated abalone feeds in South Africa, but its effect on abalone growth, feed utilisation efficiency and gut-bacterial communities has not previously been investigated. An eight-month on-farm growth trial with sub-adult Haliotis midae (~43 mm shell length) fed graded levels of kelp in formulated feeds was conducted. Kelp inclusion (0.44–3.54 % of pellet dry mass) promoted faster growth (65.7 – 74.5 % total mass gain), with better feed and protein conversions (FCR: 1.4 – 1.8; PER 2.3 – 2.7), compared to abalone fed the non-supplemented feed (52.3% total mass gain; FCR: 2.1; PER 1.9; p < 0.001). The gut-bacterial communities of abalone fed kelp-supplemented feed (0.88 % of pellet dry mass) were subsequently compared with that of abalone fed a non-supplemented control diet. Abalone gut-bacterial DNA was sequenced using 16S rRNA pyrosequencing and sequences were clustered into operational taxonomic units (OTUs) at a 97 % similarity level. A supplementary 16S rRNA denaturing gradient gel electrophoresis (DGGE) analysis was conducted. The dominant OTUs differed in terms of their relative abundances, with that of an autochthonous Mollicutes strain being significantly higher (p = 0.03) in the guts of abalone fed kelp-supplemented feed. The DGGE band patterns displayed a higher within-group variability of dominant bacterial strains for abalone fed the control diet, suggesting that dietary inclusion of kelp, which is rich in fermentable polysaccharides, promotes a balanced gut-bacterial community. This may contribute to the better feed utilisation and growth in abalone fed kelp-supplemented feeds.

Keywords: abfeed, digestion, macroalgae, mariculture

Procedia PDF Downloads 247
11780 Sublethal Effects of Industrial Effluents on Fish Fingerlings (Clarias gariepinus) from Ologe Lagoon Environs, Lagos, Nigeria

Authors: Akintade O. Adeboyejo, Edwin O. Clarke, Oluwatoyin Aderinola

Abstract:

The present study is on the sub-lethal toxicity of industrial effluents (IE) from the environment of Ologe Lagoon, Lagos, Nigeria on the African catfish fingerlings Clarias gariepinus. The fish were cultured in varying concentrations of industrial effluents: 0% (control), 5%, 15%, 25%, and 35%. Trials were carried out in triplicates for twelve (12) weeks. The culture system was a static renewable bioassay and was carried out in the fisheries laboratory of the Lagos State University, Ojo-Lagos. Weekly physico-chemical parameters: Temperature (0C), pH, Conductivity (ppm) and Dissolved Oxygen (DO in mg/l) were measured in each treatment tank. Length (cm) and weight (g) data were obtained weekly and used to calculate various growth parameters: mean weight gain (MWG), percentage weight gain (PWG), daily weight gain (DWG), specific growth rate (SGR) and survival. Haematological (Packed Cell Volume (PCV), Red blood cells (RBC), White Blood Cell (WBC), Neutrophil and Lymphocytes etc) and histological alterations were measured after 12 weeks. The physico-chemical parameters showed that the pH ranged from 7.82±0.25–8.07±0.02. DO range from 1.92±0.66-4.43±1.24 mg/l. The conductivity values increased with increase in concentration of I.E. While the temperature remained stable with mean value range between 26.08±2.14–26.38±2.28. The DO showed significant differences at P<0.05. There was progressive increase in length and weight of fish during the culture period. The fish placed in the control had highest increase in both weight and length while fish in 35% had the least. MWG ranged from 16.59–35.96, DWG is from 0.3–0.48, SGR varied from 1.0–1.86 and survival was 100%. Haematological results showed that C. gariepinus had PCV ranging from 13.0±1.7-27.7±0.6, RBC ranged from 4.7±0.6–9.1±0.1, and Neutrophil ranged from 26.7±4.6–61.0±1.0 amongst others. The highest values of these parameters were obtained in the control and lowest at 35%. While the reverse effects were observed for WBC and lymphocytes. This study has shown that effluents may affect the health status of the test organism and impair vital processes if exposure continues for a long period of time. The histological examination revealed several lesions as expressed by the gills and livers. The histopathology of the gills in the control tanks had normal tissues with no visible lesion, but at higher concentrations, there were: lifting of epithelium, swollen lamellae and gill arch infiltration, necrosis and gill arch destruction. While in the liver: control (0%) show normal liver cells, at higher toxic level, there were: vacoulation, destruction of the hepatic parenchyma, tissue becoming eosinophilic (i.e. tending towards Carcinogenicity) and severe disruption of the hepatic cord architecture. The study has shown that industrial effluents from the study area may affect fish health status and impair vital processes if exposure continues for a long period of time even at lower concentrations (Sublethal).

Keywords: sublethal toxicity, industrial effluents, clarias gariepinus, ologe lagoon

Procedia PDF Downloads 577
11779 Assessment of Lipid Lowering Effect of Shilajit in Adult Male Rats

Authors: U. P. Rathnakar, Sejpal Jaykumar, Shenoy K. Ashok

Abstract:

The effect of Shilajit was investigated for lipid lowering activity and its effect on weight gain in Wistar albino rats. Shilajit, semi-hard brownish black resin formed through long-term humidification of several plant types, mainly bryophytes, can be obtained from steep rocks of the Himalayas at altitudes between 1000 to 5000 meters. Hyperlipidemia was produced by feeding the rats with the cholesterol-rich high-fat diet (HFD) for 2 months. This diet contained deoxycholic acid, cholesterol and warm coconut oil in powdered rat chow diet. At the end of study, Shilajit treated rats showed significant decrease in serum LDL, triglyceride and total cholesterol level as well as increase in serum HDL level, in comparison to rats fed on high-fat diet with no treatment. Also during study period, increase in weight in Shilajit treated group was significantly less than in the other group of rats fed on high-fat diet with no treatment. Thus, Shilajit has significantly controlled the development of hyperlipidemia and weight gain in high-fat diet fed rats in the present study.

Keywords: Shilajit, hyperlipidemia, weight control, cholesterol-rich high-fat diet

Procedia PDF Downloads 155
11778 Exact and Approximate Controllability of Nuclear Dynamics Using Bilinear Controls

Authors: Ramdas Sonawane, Mahaveer Gadiya

Abstract:

The control problem associated with nuclear dynamics is represented by nonlinear integro-differential equation with additive controls. To control chain reaction, certain amount of neutrons is added into (or withdrawn out of) chamber as and when required. It is not realistic. So, we can think of controlling the reactor dynamics by bilinear control, which enters the system as coefficient of state. In this paper, we study the approximate and exact controllability of parabolic integro-differential equation controlled by bilinear control with non-homogeneous boundary conditions in bounded domain. We prove the existence of control and propose an explicit control strategy.

Keywords: approximate control, exact control, bilinear control, nuclear dynamics, integro-differential equations

Procedia PDF Downloads 409
11777 UML Model for Double-Loop Control Self-Adaptive Braking System

Authors: Heung Sun Yoon, Jong Tae Kim

Abstract:

In this paper, we present an activity diagram model for double-loop control self-adaptive braking system. Since activity diagram helps to improve visibility of self-adaption, we can easily find where improvement is needed on double-loop control. Double-loop control is adopted since the design conditions and actual conditions can be different. The system is reconfigured in runtime by using double-loop control. We simulated to verify and validate our model by using MATLAB. We compared single-loop control model with double-loop control model. Simulation results show that double-loop control provides more consistent brake power control than single-loop control.

Keywords: activity diagram, automotive, braking system, double-loop, self-adaptive, UML, vehicle

Procedia PDF Downloads 388
11776 Vocal Training and Practice Methods: A Glimpse on the South Indian Carnatic Music

Authors: Raghavi Janaswamy, Saraswathi K. Vasudev

Abstract:

Music is one of the supreme arts of expressions, next to the speech itself. Its evolution over centuries has paved the way with a variety of training protocols and performing methods. Indian classical music is one of the most elaborate and refined systems with immense emphasis on the voice culture related to range, breath control, quality of the tone, flexibility and diction. Several exercises namely saraliswaram, jantaswaram, dhatuswaram, upper stayi swaram, alamkaras and varnams lay the required foundation to gain the voice culture and deeper understanding on the voice development and further on to the intricacies of the raga system. This article narrates a few of the Carnatic music training methods with an emphasis on the advanced practice methods for articulating the vocal skills, continuity in the voice, ability to produce gamakams, command in the multiple speeds of rendering with reasonable volume. The creativity on these exercises and their impact on the voice production are discussed. The articulation of the outlined conscious practice methods and vocal exercises bestow the optimum use of the natural human vocal system to not only enhance the signing quality but also to gain health benefits.

Keywords: Carnatic music, Saraliswaram, Varnam, vocal training

Procedia PDF Downloads 150
11775 Comparative Study between Direct Torque Control and Sliding Mode Control of Sensorless Induction Machine

Authors: Fouad Berrabah, Saad Salah, Zaamouche Fares

Abstract:

In this paper, the Direct Torque Control (DTC) Control and the Sliding Mode Control for induction motor are presented and compared. The performance of the two control schemes is evaluated in terms of torque and current ripple, and transient response to variations of the torque , speed and robustness, trajectory tracking. In order to identify the more suitable solution for any application, both techniques are analyzed mathematically and simulation results are compared which advantages and drawbacks are discussed.

Keywords: induction motor, DTC- MRAS control, sliding mode control, robustness, trajectory tracking

Procedia PDF Downloads 562
11774 Comparison of Zinc Amino Acid Complex and Zinc Sulfate in Diet for Asian Seabass (Lates calcarifer)

Authors: Kanokwan Sansuwan, Orapint Jintasataporn, Srinoy Chumkam

Abstract:

Asian seabass is one of the economically important fish of Thailand and other countries in the Southeast Asia. Zinc is an essential trace metal to fish and vital to various biological processes and function. It is required for normal growth and indispensable in the diet. Therefore, the artificial diets offered to intensively cultivated fish must possess the zinc content required by the animal metabolism for health maintenance and high weight gain rates. However, essential elements must also be in an available form to be utilized by the organism. Thus, this study was designed to evaluate the application of different zinc forms, including organic Zinc (zinc amino acid complex) and inorganic Zinc (zinc sulfate), as feed additives in diets for Asian seabass. Three groups with five replicates of fish (mean weight 22.54 ± 0.80 g) were given a basal diet either unsupplemented (control) or supplemented with 50 mg Zn kg−¹ sulfate (ZnSO₄) or Zinc Amino Acid Complex (ZnAA) respectively. Feeding regimen was initially set at 3% of body weight per day, and then the feed amount was adjusted weekly according to the actual feeding performance. The experiment was conducted for 10 weeks. Fish supplemented with ZnAA had the highest values in all studied growth indicators (weight gain, average daily growth and specific growth rate), followed by fish fed the diets with the ZnSO₄, and lowest in fish fed the diets with the control. Lysozyme and superoxide dismutase (SOD) activity of fish supplemented with ZnAA were significantly higher compared with all other groups (P < 0.05). Fish supplemented with ZnSO₄ exhibited significant increase in digestive enzyme activities (protease, pepsin and trypsin) compared with ZnAA and the control (P < 0.05). However, no significant differences were observed for RNA and protein in muscle (P > 0.05). The results of the present work suggest that ZnAA are a better source of trace elements for Asian seabass, based on growth performance and immunity indices examined in this study.

Keywords: Asian seabass, growth performance, zinc amino acid complex (ZnAA), zinc sulfate (ZnSO₄)

Procedia PDF Downloads 152
11773 Method for Tuning Level Control Loops Based on Internal Model Control and Closed Loop Step Test Data

Authors: Arnaud Nougues

Abstract:

This paper describes a two-stage methodology derived from internal model control (IMC) for tuning a proportional-integral-derivative (PID) controller for levels or other integrating processes in an industrial environment. Focus is the ease of use and implementation speed which are critical for an industrial application. Tuning can be done with minimum effort and without the need for time-consuming open-loop step tests on the plant. The first stage of the method applies to levels only: the vessel residence time is calculated from equipment dimensions and used to derive a set of preliminary proportional-integral (PI) settings with IMC. The second stage, re-tuning in closed-loop, applies to levels as well as other integrating processes: a tuning correction mechanism has been developed based on a series of closed-loop simulations with model errors. The tuning correction is done from a simple closed-loop step test and the application of a generic correlation between observed overshoot and integral time correction. A spin-off of the method is that an estimate of the vessel residence time (levels) or open-loop process gain (other integrating process) is obtained from the closed-loop data.

Keywords: closed-loop model identification, IMC-PID tuning method, integrating process control, on-line PID tuning adaptation

Procedia PDF Downloads 190
11772 Incorporating Information Gain in Regular Expressions Based Classifiers

Authors: Rosa L. Figueroa, Christopher A. Flores, Qing Zeng-Treitler

Abstract:

A regular expression consists of sequence characters which allow describing a text path. Usually, in clinical research, regular expressions are manually created by programmers together with domain experts. Lately, there have been several efforts to investigate how to generate them automatically. This article presents a text classification algorithm based on regexes. The algorithm named REX was designed, and then, implemented as a simplified method to create regexes to classify Spanish text automatically. In order to classify ambiguous cases, such as, when multiple labels are assigned to a testing example, REX includes an information gain method Two sets of data were used to evaluate the algorithm’s effectiveness in clinical text classification tasks. The results indicate that the regular expression based classifier proposed in this work performs statically better regarding accuracy and F-measure than Support Vector Machine and Naïve Bayes for both datasets.

Keywords: information gain, regular expressions, smith-waterman algorithm, text classification

Procedia PDF Downloads 293
11771 MIMO UWB Antenna for Exploring Body Centric Communication

Authors: Osama Aziz, Hamza Ahmad, Muhibur Rahman

Abstract:

The performance of wireless communication systems has been suggested to be improved by UWB MIMO antenna systems. However, creating a successful UWB MIMO antenna is a difficult undertaking that calls for resolving a number of design issues, including radiation efficiency, size, and frequency range. This study's primary objective is to create a novel, highly effective, small-sized, ultra-wideband (UWB) multiple-input multiple-output (MIMO) antenna and investigate its potential applications in body-centric communication. Two radiating elements, shared ground plane, circular stubs, and t-shaped isolation elements are used to achieve the MIMO antenna. Outstanding multiplexing efficiency, significant peak gain across the entire UWB frequency spectrum, extremely low mutual coupling (S21=-16 dB), high diversity gain (DG>9), and low envelop correlation are achieved. The proposed antenna will be one of the promising candidates for body centric communication.

Keywords: UWB communication, UWB MIMO antennas, body-centric communication, diversity gain

Procedia PDF Downloads 35
11770 Backstepping Sliding Mode Control

Authors: Othmane Boughazi, Abdelmadjid Boumedienne, Hachemi Glaoui

Abstract:

This work treats the modeling and simulation of non-linear system behavior of an induction motor using backstepping sliding mode control. First, the direct field oriented control IM is derived. Then, a sliding for direct field oriented control is proposed to compensate the uncertainties, which occur in the control.Finally, the study of Backstepping sliding controls strategy of the induction motor drive. Our non linear system is simulated in MATLAB SIMULINK environment, the results obtained illustrate the efficiency of the proposed control with no overshoot, and the rising time is improved with good disturbances rejections comparing with the classical control law.

Keywords: induction motor, proportional-integral, sliding mode control, backstepping sliding mode control

Procedia PDF Downloads 459
11769 Near Optimal Closed-Loop Guidance Gains Determination for Vector Guidance Law, from Impact Angle Errors and Miss Distance Considerations

Authors: Karthikeyan Kalirajan, Ashok Joshi

Abstract:

An optimization problem is to setup to maximize the terminal kinetic energy of a maneuverable reentry vehicle (MaRV). The target location, the impact angle is given as constraints. The MaRV uses an explicit guidance law called Vector guidance. This law has two gains which are taken as decision variables. The problem is to find the optimal value of these gains which will result in minimum miss distance and impact angle error. Using a simple 3DOF non-rotating flat earth model and Lockheed martin HP-MARV as the reentry vehicle, the nature of solutions of the optimization problem is studied. This is achieved by carrying out a parametric study for a range of closed loop gain values and the corresponding impact angle error and the miss distance values are generated. The results show that there are well defined lower and upper bounds on the gains that result in near optimal terminal guidance solution. It is found from this study, that there exist common permissible regions (values of gains) where all constraints are met. Moreover, the permissible region lies between flat regions and hence the optimization algorithm has to be chosen carefully. It is also found that, only one of the gain values is independent and that the other dependent gain value is related through a simple straight-line expression. Moreover, to reduce the computational burden of finding the optimal value of two gains, a guidance law called Diveline guidance is discussed, which uses single gain. The derivation of the Diveline guidance law from Vector guidance law is discussed in this paper.

Keywords: Marv guidance, reentry trajectory, trajectory optimization, guidance gain selection

Procedia PDF Downloads 398
11768 Dietary Ergosan as a Supplemental Nutrient on Growth Performance, and Stress in Zebrafish (Danio Rerio)

Authors: Ehsan Ahmadifar, Mohammad Ali Yousefi, Zahra Roohi

Abstract:

In this study, the effects of different levels of Ergosan (control group (0), 2, 4 and 6 gr Ergosan per Kg diet) as a nutritional supplement were investigated on growth indices and stress in Zebrafish for 3 months. Larvae (4-day-old after hatching) were fed with experimental diet from the beginning of feeding until adult (adolescence) (average weight: 69.3 g, length: 5.1 cm). Different levels of Ergosan had no significant effect on rate survival (P < 0.05). The results showed that diet containing 6 gr Ergosan significantly caused the best FCR in Zebrafish (P < 0.05). By increasing the Ergosan diet, specific growth rate increased. Body weight gain and condition factor had significant differences (P < 0.05) as the highest and the lowest were observed in treatment 3 gr of Ergosan and control, respectively. The results showed that fish fed with experimental diet, had the highest resistance to environmental stresses compared to control, and the test temperature, oxygen, salinity and alkalinity samples containing 6 gr/kg, was significantly more resistance compared to the other treatments (P < 0.05). Overall, to achieve high resistance to environmental stress and increase final biomass using 6 gr/kg Ergosan in diet fish Zebrafish.

Keywords: Ergosan, stress, growth performance, Danio rerio

Procedia PDF Downloads 221
11767 The Impact of Informal Care on Health Behavior among Older People with Chronic Diseases: A Study in China Using Propensity Score Matching

Authors: Hong Wu, Naiji Lu

Abstract:

Improvement of health behavior among people with chronic diseases is vital for increasing longevity and enhancing quality of life. This paper researched the causal effects of informal care on the compliance with doctor’s health advices – smoking control, dietetic regulation, weight control and keep exercising – among older people with chronic diseases in China, which is facing the challenge of aging. We addressed the selection bias by using propensity score matching in the estimation process. We used the 2011-2012 national baseline data of the China Health and Retirement Longitudinal Study. Our results showed informal care can help improve health behavior of older people. First, informal care improved the compliance of smoking controls: whether smoke, frequency of smoking, and the time lag between wake up and the first cigarette was all lower for these older people with informal care; Second, for dietetic regulation, older people with informal care had more meals every day than older people without informal care; Third, three variables: BMI, whether gain weight and whether lose weight were used to measure the outcome of weight control. There were no significant difference between group with informal care and that without for BMI and the possibility of losing weight. Older people with informal care had lower possibility of gain weight than that without; Last, for the advice of keeping exercising, informal care increased the probability of walking exercise, however, the difference between groups for moderate and vigorous exercise were not significant. Our results indicate policy makers who aim to decrease accidents should take informal care to elders into account and provide an appropriate policy to meet the demand of informal care. Our birth policy and postponed retirement policy may decrease the informal caregiving hours, so adjustments of these policies are important and urgent to meet the current situation of aged tendency of population. In addition, government could give more support to develop organizations to provide formal care, such as nursing home. We infer that formal care is also useful for health behavior improvements.

Keywords: chronic diseases, compliance, CHARLS, health advice, informal care, older people, propensity score matching

Procedia PDF Downloads 377
11766 Distribution-Free Exponentially Weighted Moving Average Control Charts for Monitoring Process Variability

Authors: Chen-Fang Tsai, Shin-Li Lu

Abstract:

Distribution-free control chart is an oncoming area from the statistical process control charts in recent years. Some researchers have developed various nonparametric control charts and investigated the detection capability of these charts. The major advantage of nonparametric control charts is that the underlying process is not specifically considered the assumption of normality or any parametric distribution. In this paper, two nonparametric exponentially weighted moving average (EWMA) control charts based on nonparametric tests, namely NE-S and NE-M control charts, are proposed for monitoring process variability. Generally, weighted moving average (GWMA) control charts are extended by utilizing design and adjustment parameters for monitoring the changes in the process variability, namely NG-S and NG-M control charts. Statistical performance is also investigated on NG-S and NG-M control charts with run rules. Moreover, sensitivity analysis is performed to show the effects of design parameters under the nonparametric NG-S and NG-M control charts.

Keywords: Distribution-free control chart, EWMA control charts, GWMA control charts

Procedia PDF Downloads 232
11765 Model Predictive Control Using Thermal Inputs for Crystal Growth Dynamics

Authors: Takashi Shimizu, Tomoaki Hashimoto

Abstract:

Recently, crystal growth technologies have made progress by the requirement for the high quality of crystal materials. To control the crystal growth dynamics actively by external forces is useuful for reducing composition non-uniformity. In this study, a control method based on model predictive control using thermal inputs is proposed for crystal growth dynamics of semiconductor materials. The control system of crystal growth dynamics considered here is governed by the continuity, momentum, energy, and mass transport equations. To establish the control method for such thermal fluid systems, we adopt model predictive control known as a kind of optimal feedback control in which the control performance over a finite future is optimized with a performance index that has a moving initial time and terminal time. The objective of this study is to establish a model predictive control method for crystal growth dynamics of semiconductor materials.

Keywords: model predictive control, optimal control, process control, crystal growth

Procedia PDF Downloads 326
11764 Process Capability Analysis by Using Statistical Process Control of Rice Polished Cylinder Turning Practice

Authors: S. Bangphan, P. Bangphan, T.Boonkang

Abstract:

Quality control helps industries in improvements of its product quality and productivity. Statistical Process Control (SPC) is one of the tools to control the quality of products that turning practice in bringing a department of industrial engineering process under control. In this research, the process control of a turning manufactured at workshops machines. The varying measurements have been recorded for a number of samples of a rice polished cylinder obtained from a number of trials with the turning practice. SPC technique has been adopted by the process is finally brought under control and process capability is improved.

Keywords: rice polished cylinder, statistical process control, control charts, process capability

Procedia PDF Downloads 466
11763 Breast Cancer Risk is Predicted Using Fuzzy Logic in MATLAB Environment

Authors: S. Valarmathi, P. B. Harathi, R. Sridhar, S. Balasubramanian

Abstract:

Machine learning tools in medical diagnosis is increasing due to the improved effectiveness of classification and recognition systems to help medical experts in diagnosing breast cancer. In this study, ID3 chooses the splitting attribute with the highest gain in information, where gain is defined as the difference between before the split versus after the split. It is applied for age, location, taluk, stage, year, period, martial status, treatment, heredity, sex, and habitat against Very Serious (VS), Very Serious Moderate (VSM), Serious (S) and Not Serious (NS) to calculate the gain of information. The ranked histogram gives the gain of each field for the breast cancer data. The doctors use TNM staging which will decide the risk level of the breast cancer and play an important decision making field in fuzzy logic for perception based measurement. Spatial risk area (taluk) of the breast cancer is calculated. Result clearly states that Coimbatore (North and South) was found to be risk region to the breast cancer than other areas at 20% criteria. Weighted value of taluk was compared with criterion value and integrated with Map Object to visualize the results. ID3 algorithm shows the high breast cancer risk regions in the study area. The study has outlined, discussed and resolved the algorithms, techniques / methods adopted through soft computing methodology like ID3 algorithm for prognostic decision making in the seriousness of the breast cancer.

Keywords: ID3 algorithm, breast cancer, fuzzy logic, MATLAB

Procedia PDF Downloads 495
11762 Utilization and Proximate Composition of Nile Tilapia, Common Carp and African Mudfish Polycultured in Fertilized Ponds

Authors: I. A. Yola

Abstract:

Impact of poultry dropping, cow dung and rumen content on utilization and proximate composition of Oreochromis niliticus, Clarias gariepinus and Cyprinus capio in a polyculture system were studied. The research was conducted over a period of 52 weeks. Poultry droppings (PD), cow dung (CD) and rumen content (RC) were applied at three levels 30g,60g and 120g/m2/week, 25g,50g and 100g/m2/week and 22g, 44g and 88g/m2/week treatment, respectively. The control only conventional feed with 40% CP without manure application was used. Physicochemical and biological properties measured were higher in manure pond than control. The difference was statistically significant (P < 0.05) between and within treatments with exception of temperature with a combined mean of 27.900C. The water was consistently alkaline with mean values for pH of 6.61, transparency 22.6cm, conductivity 35.00µhos/cm, dissolved oxygen 4.6 mg/l, biological oxygen demand 2.8mg/l, nitrate and phosphates 0.9mg/l and 0.35mg/l, respectively. The three fish species increase in weight with increased manure rate, with a higher value in PD treatment on C. capio record 340g, O. niloticus weighed 310g and C. gariepinus 280g over the experimental period. Fishes fed supplementary diet (control) grew bigger with highest value on C. capio (685g) O. niloticus (620g) and then C. gariepinus (526g). The differences were statistically significant (P < 0.05). The result of whole body proximate analysis indicated that various manures and rates had an irregular pattern on the protein and ash gain per 100g of fish body weight gain. The combined means for whole fish carcass protein, lipids, moisture, ash and gross energy were 11.84, 2.43, 74.63, 3.00 and 109.9 respectively. The notable exceptions were significant (p < 0.05) increases in body fat and gross energy gains in all fish species accompanied by decreases in percentages of moisture as manure rates increased. Survival percentage decreases from 80% to 70%. It is recommended to use poultry dropping as manure/feeds at the rate of 120kg/ha/week for good performances in polyculture.

Keywords: organic manure, Nile tilapia, African mud fish, common carp, proximate composition

Procedia PDF Downloads 521
11761 Setting Control Limits For Inaccurate Measurements

Authors: Ran Etgar

Abstract:

The process of rounding off measurements in continuous variables is commonly encountered. Although it usually has minor effects, sometimes it can lead to poor outcomes in statistical process control using X ̅-chart. The traditional control limits can cause incorrect conclusions if applied carelessly. This study looks into the limitations of classical control limits, particularly the impact of asymmetry. An approach to determining the distribution function of the measured parameter (Y ̅) is presented, resulting in a more precise method to establish the upper and lower control limits. The proposed method, while slightly more complex than Shewhart's original idea, is still user-friendly and accurate and only requires the use of two straightforward tables.

Keywords: quality control, process control, round-off, measurement, rounding error

Procedia PDF Downloads 65
11760 Effect of Different Levels of Vitamin E and L-Carnitine on Performance of Broiler Chickens Under Heat Stress

Authors: S. Salari, M. A. Shirali, S. Tabatabaei, M. Sari, R. Jahanian

Abstract:

This study was conducted to investigate the effect of different levels of vitamin E and L-carnitine on performance, blood parameters and immune responses of broilers under heat stress. For this purpose 396 one- day- old Ross 308 broiler chicks were randomly distributed between 9 treatments with 4 replicates (11 birds in each replicate). Dietary treatments consisted of three levels of vitamin E (0, 100 and 200 mg/ kg) and three levels of L-carnitine (0, 50 and 100 mg/ kg) that was done in completely randomized design with 3X3 factorial arrangement for 42 days. During the first three weeks, chickens were reared at normal temperature. From the beginning of the fourth week, all chickens were maintenance in a temperature range from 24-38 ° C for heat stress. Performance parameters including average feed intake, weight gain and feed conversion ratio were recorded weekly. The results showed that the levels of vitamin E had no significant effect on feed intake, weight gain and feed conversion ratio during the experiment. The use of L-carnitine decreased feed intake during the experiment (P < 0/05). But did not affect average daily gain and feed conversion ratio. Also, there was not significant interaction between vitamin E and L-carnitine for performance parameters except average daily gain during the starter period. The results of this study indicate that the use of different levels of vitamin E and L-carnitine under heat stress did not affected performance parameters of broiler chickens.

Keywords: broiler, heat stress, l-carnitine, performance

Procedia PDF Downloads 449
11759 Analysis of Scaling Effects on Analog/RF Performance of Nanowire Gate-All-Around MOSFET

Authors: Dheeraj Sharma, Santosh Kumar Vishvakarma

Abstract:

We present a detailed analysis of analog and radiofrequency (RF) performance with different gate lengths for nanowire cylindrical gate (CylG) gate-all-around (GAA) MOSFET. CylG GAA MOSFET not only suppresses the short channel effects (SCEs), it is also a good candidate for analog/RF device due to its high transconductance (gm) and high cutoff frequency (fT ). The presented work would be beneficial for a new generation of RF circuits and systems in a broad range of applications and operating frequency covering the RF spectrum. For this purpose, the analog/RF figures of merit for CylG GAA MOSFET is analyzed in terms of gate to source capacitance (Cgs), gate to drain capacitance (Cgd), transconductance generation factor gm = Id (where Id represents drain current), intrinsic gain, output resistance, fT, maximum frequency of oscillation (fmax) and gain bandwidth (GBW) product.

Keywords: Gate-All-Around MOSFET, GAA, output resistance, transconductance generation factor, intrinsic gain, cutoff frequency, fT

Procedia PDF Downloads 365
11758 RAFU Functions in Robotics and Automation

Authors: Alicia C. Sanchez

Abstract:

This paper investigates the implementation of RAFU functions (radical functions) in robotics and automation. Specifically, the main goal is to show how these functions may be useful in lane-keeping control and the lateral control of autonomous machines, vehicles, robots or the like. From the knowledge of several points of a certain route, the RAFU functions are used to achieve the lateral control purpose and maintain the lane-keeping errors within the fixed limits. The stability that these functions provide, their ease of approaching any continuous trajectory and the control of the possible error made on the approximation may be useful in practice.

Keywords: automatic navigation control, lateral control, lane-keeping control, RAFU approximation

Procedia PDF Downloads 254
11757 Improving the Gain of a Multiband Antenna by Adding an Artificial Magnetic Conductor Metasurface

Authors: Amira Bousselmi

Abstract:

This article presents a PIFA antenna designed for geolocation applications (GNSS) operating on 1.278 GHz, 2.8 GHz, 5.7 GHz and 10 GHz. To improve the performance of the antenna, an artificial magnetic conductor structure (AMC) was used. Adding the antenna with AMC resulted in a measured gain of 4.78 dBi. The results of simulations and measurements are presented. CST Microwave Studio is used to design and compare antenna performance. An antenna design methodology, design and characterization of the AMC surface are described as well as the simulated and measured performances of the AMC antenna are then discussed. Finally, in Section V, there is a conclusion.

Keywords: antenna multiband, global navigation system, AMC, Galeleo

Procedia PDF Downloads 49
11756 Model Predictive Control of Turbocharged Diesel Engine with Exhaust Gas Recirculation

Authors: U. Yavas, M. Gokasan

Abstract:

Control of diesel engine’s air path has drawn a lot of attention due to its multi input-multi output, closed coupled, non-linear relation. Today, precise control of amount of air to be combusted is a must in order to meet with tight emission limits and performance targets. In this study, passenger car size diesel engine is modeled by AVL Boost RT, and then simulated with standard, industry level PID controllers. Finally, linear model predictive control is designed and simulated. This study shows the importance of modeling and control of diesel engines with flexible algorithm development in computer based systems.

Keywords: predictive control, engine control, engine modeling, PID control, feedforward compensation

Procedia PDF Downloads 602