• Title/Summary/Keyword: 동적제어기

Search Result 576, Processing Time 0.025 seconds

Flight Envelope Load Factor Limit Logic Design for Helicopter Fly-By-Wire Controller (전자식 조정장치 헬리콥터의 하중 비행영역 제한 로직 설계)

  • Choi, In-Ho
    • Journal of the Korea Academia-Industrial cooperation Society
    • /
    • v.17 no.1
    • /
    • pp.159-164
    • /
    • 2016
  • This paper reports the load factor logic design for a fly-by-wire helicopter flight envelope protection. As a helicopter is very complex system with a rotor, fuselage, engine, etc., there are many constraints on the flight region. Because of these constraints, pilots should consider them carefully and have a heavy workload, which causes controllability degradation. In this respect, automatic logic is needed to free the pilot from these considerations. As one of these logics, the flight envelope protection logic for the load factor of a FBW helicopter was designed. The flight to exceed the load factor is caused by an abrupt pitch cyclic stick change. In this scheme, the load factor limit logic was added between the pilot stick command block and pitch attitude command block. From the current load value, the available attitude range was calculated dynamically and simulated on the helicopter simulator model to verify the performance. A comparison of the simulation results at the hovering and forward speed region with and without applying the load limiting logic showed that the load factor limit was exceeded more than 20% when the logic was not applied, whereas with the load factor limit logic the load factor was within the limit. In conclusion, a dynamically allocated limitation logic to helicopter FBW controller was verified by simulation.

At-speed Interconnect Test Controller for SoC with Multiple System Clocks and Heterogeneous Cores (다중 시스템 클럭과 이종 코아를 가진 시스템 온 칩을 위한 연결선 지연 고장 테스트 제어기)

  • Jang Yeonsil;Lee Hyunbin;Shin Hyunchul;Park Sungju
    • Journal of the Institute of Electronics Engineers of Korea SD
    • /
    • v.42 no.5 s.335
    • /
    • pp.39-46
    • /
    • 2005
  • This paper introduces a new At-speed Interconnect Test Controller (ASITC) that can detect and diagnose dynamic as well as static defects in an SoC. SoC is comprised of IEEE 1149.1 and P1500 wrapped cores which can be operated by multiple system clocks. In other to test such a complicated SoC, we designed a interface module for P1500 wrapped cores and the ASITC that makes it possible to detect interconnect delay faults during 1 system clock from launching to capturing the transition signal. The ASITC proposed requires less area overhead than other approaches and the operation was verified through the FPGA implementation

Design of the Fuzzy Logic Cross-Coupled Controller using a New Contouring Modeling (새로운 윤곽 모델링에 의한 퍼지논리형 상호결합제어기 설계)

  • Kim, Jin-Hwan;Lee, Je-Hie;Huh, Uk-Youl
    • Journal of the Institute of Electronics Engineers of Korea SC
    • /
    • v.37 no.1
    • /
    • pp.10-18
    • /
    • 2000
  • This paper proposes a fuzzy logic cross-coupled controller using a new contouring modeling for a two-axis servo system. The general decoupled control approach may result in degraded contouring performance due to such factors as mismatch of axial dynamics and axial loop gains. In practice, such systems contain many uncertainties. The cross-coupled controller utilizes all axis position error information simultaneously to produce accurate contours. However, the conventional cross-coupled controllers cannot overcome friction, backlash, and parameter variations. Also since, it is difficult to obtain an accurate mathematical model of multi-axis system, here we investigate a fuzzy logic cross-coupled controller of servo system. In addition, new contouring error vector computation method is presented. The experimental results are presented to illustrate the performance of the proposed algorithm.

  • PDF

Parallel Gaussian Processes for Gait and Phase Analysis (보행 방향 및 상태 분석을 위한 병렬 가우스 과정)

  • Sin, Bong-Kee
    • Journal of KIISE
    • /
    • v.42 no.6
    • /
    • pp.748-754
    • /
    • 2015
  • This paper proposes a sequential state estimation model consisting of continuous and discrete variables, as a way of generalizing all discrete-state factorial HMM, and gives a design of gait motion model based on the idea. The discrete state variable implements a Markov chain that models the gait dynamics, and for each state of the Markov chain, we created a Gaussian process over the space of the continuous variable. The Markov chain controls the switching among Gaussian processes, each of which models the rotation or various views of a gait state. Then a particle filter-based algorithm is presented to give an approximate filtering solution. Given an input vector sequence presented over time, this finds a trajectory that follows a Gaussian process and occasionally switches to another dynamically. Experimental results show that the proposed model can provide a very intuitive interpretation of video-based gait into a sequence of poses and a sequence of posture states.

Development of Pressure Observer to Measure Cylinder Length of Harbor-Construction Robot (항만공사용 로봇의 실린더 길이 측정을 위한 압력 옵서버 개발)

  • Kim, Chi-Hyo;Park, Kun-Woo;Kim, Tae-Sung;Lee, Min-Ki
    • Transactions of the Korean Society of Mechanical Engineers A
    • /
    • v.35 no.3
    • /
    • pp.299-308
    • /
    • 2011
  • In this study, we develop a pressure observer to measure the cylinder length of a harbor-construction robot. For the robot control, sensors are required to measure the length of a hydraulic cylinder. The cylinder-position sensor is relatively expensive when the operating environment prohibits external approaches for the measurement of the cylinder position. LVDT or linear scales are usually mounted on the outside of the cylinder, which causes poor durability on a construction site. We use a pressure sensor to indirectly estimate the length of the cylinder. The pressure sensor is mounted inside a hydraulic valve box so that it is protected by the box and easy to waterproof for an underwater robot. By treating oil as a compressible fluid, we derive the nonlinear pressure dynamics as a function of the cylinder position, velocity, and pressure. The recursive least squares (RLS) algorithm is applied to identify the dynamic parameters, and the pressure observer estimates the cylinder position through the pressure acting on the head and the rod of the hydraulic cylinder. The position accuracy is relatively low, but it is acceptable for a construction robot that handles large armor stones.

The Bytecode Optimizer (바이트코드 최적화기)

  • 이야리;홍경표;오세만
    • Journal of KIISE:Software and Applications
    • /
    • v.30 no.1_2
    • /
    • pp.73-80
    • /
    • 2003
  • The Java programming language is designed for developing effective applications in a heterogeneous network environment. Major problem in Java is its performance. many attractive features of Java make the development of software easy, but also make it expensive to support ; applications written in Java are often much slower than their counterparts written in C or C++. To use Java`s attractive features without the performance penalty, sophisticated optimizations and runtime systems are required. Optimising Java bytecode has several advantages. First, the bytecode is independent of any compiler that is used to generate it. Second, the bytecode optimization can be performed as a pre=pass to Just-In-Time(JIT) compilation. Many attractive features of Java make the development of software easy, but also make it expensive to support. The goal of this work is to develop automatic construction of code optimizer for Java bytecode. We`ve designed and implemented a Bytecode Optimizer that performs the peephole optimization, bytecode-specific optimization, and method-inlining techniques. Using the Classfile optimizer, we see up to 9% improvement in speed and about 20% size reduction in Java class files, when compared to average code using the interpreter alone.

Experimental Evaluation Method of Mass Transfer Coefficient on Biotrickling Filtration for Air Pollution Control (대기오염제어를 위한 생물살수여과법에서 물질전달계수 실험평가방법에 관한 연구)

  • Won, Yang-Soo;Jo, Wan-Keun
    • Korean Chemical Engineering Research
    • /
    • v.53 no.4
    • /
    • pp.482-488
    • /
    • 2015
  • Biological treatment is promising alternative to conventional air pollution control method. Bioreactors for air pollution control have found most of their success in the treatment of dilute and high flow waste air streams containing volatile organic compounds and odor. The studies of mass transfer in biotrickling filters for air pollution control were of importance in order to control and optimize the purification process. The objectives of this study were to develop the experimental methodologies to evaluate the mass transfer coefficients of gas/liquid(trickling liquid), gas/solid(biomass) and liquid/solid in three phase biotrickling filtration. Also, this study characterized the influence factors on mass transfer such as dynamic holdup volume, gas/liquid flow rate ratio, biomass weight in reactor and recirculation rate of trickling medium for each phase of biotrickling filter.

Numerical Modelling Techniques of VPMM for Manta Type UUV (만타형 UUV의 VPMM 전산해석기법 개발)

  • Sang-Eui Lee
    • Proceedings of the Korean Institute of Navigation and Port Research Conference
    • /
    • 2023.05a
    • /
    • pp.151-151
    • /
    • 2023
  • An accurate prediction of the hydrodynamic maneuvering darivatives is essential to desing a robust control system of a UUV(unmanned underwater vehicle). Typically, these derivatives were estimated by either the towing tank experiment or semi-empirical methods. With the enhancement of high performance computing capacity, a numerical analysis using computational fluid dynamics has reach the level of experiment. Therefore, the aims of the present research are to numerically develop a computational model for the vertical planar motion mechanism of a UUV and to estimate the hydrodynamics loads in 6-DOF. The target structure of the present study was manta type UUV (12meter length). The numerical model was developed in 1/ 6 model scale. Numerical results were compared with the results of the towing tank experiment for validation. In the present study, a commercial RANS-based viscous solver STARCCM+ (ver 17.06) was used.

  • PDF

A Optimization Study of UAV Path Planning Generation based-on Rapid-exploring Random Tree Method (급속탐색랜덤트리기법 기반의 무인 비행체 경로계획생성 최적화 연구)

  • Jae-Hwan Bong;Seong-Kyun Jeong
    • The Journal of the Korea institute of electronic communication sciences
    • /
    • v.18 no.5
    • /
    • pp.981-988
    • /
    • 2023
  • As the usage of unmanned aerial vehicles expands, the development and the demand of related technologies are increasing. As the frequency of operation increases and the convenience of operation is emphasized, the importance of related autonomous flight technology is also highlighted. Establishing a path plan to reach the destination in autonomous flight of an unmanned aerial vehicle is important in guidance and control, and a technology for automatically generating path plan is required in order to maximize the effect of unmanned aerial vehicle. In this study, the optimization research of path planning using rapid-exploring random tree method was performed for increasing the effectiveness of autonomous operation. The path planning optimization method considering the characteristics of the unmanned aerial vehicle is proposed. In order to achieve indexes such as optimal distance, shortest time, and passage of mission points, the path planning was optimized in consideration of the mission goals and dynamic characteristics of the unmanned aerial vehicle. The proposed methods confirmed their applicability to the generation of path planning for unmanned aerial vehicles through performance verification for obstacle situations.

진공 측정 기술 개발 동향

  • Sin, Yong-Hyeon
    • Proceedings of the Korean Vacuum Society Conference
    • /
    • 2010.08a
    • /
    • pp.3-3
    • /
    • 2010
  • 이번 성원에드워드 학술상 수상자 선정은, 진공기술의 중요성에 공감하고 진공기술 발전을 위한 노력을 독려하자는 진공학회 회원들의 의견을 모아주신 결과로 생각한다. 본 발표에서는 그동안 한국표준과학연구원에서 수행해 온 진공 기술 연구 및 산학연 협력 네트워크 활동을 소개하고자 한다. 진공기술은 진공 환경을 발생시키고 측정 제어하며, 만들어진 진공 환경 안에서 원하는 작업을 할 수 있도록 하는 기술을 말한다. 우리나라의 주력산업인 반도체 및 디스플레이의 경우 그 생산 설비의 1/3이상이 진공 장비이며 진공 공정을 통해 만들어진다. 때문에 우리나라에서는 주력 산업분야나 그 전후방 산업의 경쟁력 강화 측면에서 진공기술 개발 중요성이 아주 크다. 한국표준과학연구원은 국가 대표 측정 기관으로 국가 측정 표준을 확립하고 측정관련 과학기술을 연구개발하며 그 성과를 보급하여 경제발전과 과학기술발전, 그리고 삶의 질 향상에 기여하는 것을 임무로 하고 있다. 우리나라에서 진공 측정 표준에 대한 연구가 본격적으로 시작된 것은 1984년으로 불용 장비로 불하받은 펌프와 챔버, 그리고 차관으로 도입된 Capacitance Diaphragm Gauge 몇 개만으로 시작되었다. 지금은 발전을 거듭하여 초음파 간섭 수은주 압력계를 비롯하여 정적 팽창시스템, 동적 팽창 시스템 등 진공도 범위별 국가 표준기와 리크 표준기를 자체 개발 하여 국가 측정 표준을 확립하고 있다. 우리나라의 진공 표준 및 측정 능력은 국제기구인BIPM에서 실시하는 국가 측정능력 비교시험을 통해 세계 최고 수준으로 인정 받은 바 있으며 교정검사 등을 통해 산학연에 보급되고 있다. 진공 측정 및 표준기술을 토대로, 1999년부터 과학기술부와 산업자원부의 지원을 받아 산학연이 필요로 하는 펌프 계측기 부품 소재 및 공정 특성을 평가하기 위한 장치와 절차를 개발하였다. 이를 이용해 보급되는 기술 data는 진공부품 및 장비 국산화, 국산제품 신뢰성 제고, 검증부품 사용을 통한 장비 품질 향상, 독자적 장비 기술 확보, 생산품 품질관리 등에 쓰이고 있다. 한국 표준연구원 진공센터의 교정 및 시험 능력은 ISO 9001 인증 획득과 국제 전문가의 review를 거쳐, 국제기구 측정능력표에 등재되어 있어 국제적 신뢰도도 확보하고 있다. 정기적인 진공기술 교류회를 개최하고 진공기술 홈페이지를 운영 하는 등 산학연 정보 교류 및 협력 네트워킹 활성화를 위해 노력한 바 있으며 이 분야의 연구 성과는 '국가 우수 연구성과 100선'에 선정된 바 있고, 산업자원부 지정 '산학연 연계 우수사례' 첫 번째로 선정되기도 하였다. 2008년부터는 진공기술 교류회 등을 통한 네트워킹 활동으로 도출된 기술 수요에 따라 대기업과 중소기업 학교 연구소들과 함께 진공공정 실시간 측정 진단 기술과 센서 개발 연구, 그리고 이들 개발품의 신뢰성 검증 및 평가 기술 개발을 위해 노력하고 있다.

  • PDF