• Title/Summary/Keyword: IT module

Search Result 5,104, Processing Time 0.029 seconds

Development of Automated 3D Modeling System to Construct BIM for Railway Bridge (철도 교량의 BIM 구축을 위한 3차원 모델 생성 자동화 시스템 개발)

  • Lee, Heon-Min;Kim, Hyun-Seung;Lee, Il-Soo
    • Journal of the Computational Structural Engineering Institute of Korea
    • /
    • v.31 no.5
    • /
    • pp.267-274
    • /
    • 2018
  • For successful BIM settlement, it is a key technic for engineer to design structures in the 3-dimensional digital space and to work out related design documents directly. Lately many BIM tool has been released and each supports their 3-dimensional object libraries. But it is not easy to apply those libraries to design transportation infra structures that were placed along the route(3-dimensional line). Moreover, in case of design changes, it is so difficult to reflect those changes with the integrated model that was assembled by them. Because of they were developed without consideration for redundancy of parameters between objects that were placed nearby or were related each other. In this paper, a method to develop module for modeling and placing 3-dimensional object for transportation infra structures is presented. The modules are employed by a parametric method and can deal with design changes. Also, for a railroad bridge, through developing user interface of the integrated 3-dimensional model that was assembled by those modules the applicability of them was reviewed.

A Prefetching and Memory Management Policy for Personal Solid State Drives (개인용 SSD를 위한 선반입 및 메모리 관리 정책)

  • Baek, Sung-Hoon
    • The KIPS Transactions:PartA
    • /
    • v.19A no.1
    • /
    • pp.35-44
    • /
    • 2012
  • Traditional technologies that are used to improve the performance of hard disk drives show many negative cases if they are applied to solid state drives (SSD). Access time and block sequence in hard disk drives that consist of mechanical components are very important performance factors. Meanwhile, SSD provides superior random read performance that is not affected by block address sequence due to the characteristics of flash memory. Practically, it is recommended to disable prefetching if a SSD is installed in a personal computer. However, this paper presents a combinational method of a prefetching scheme and a memory management that consider the internal structure of SSD and the characteristics of NAND flash memory. It is important that SSD must concurrently operate multiple flash memory chips. The I/O unit size of NAND flash memory tends to increase and it exceeded the block size of operating systems. Hence, the proposed prefetching scheme performs in an operating unit of SSD. To complement a weak point of the prefetching scheme, the proposed memory management scheme adaptively evicts uselessly prefetched data to maximize the sum of cache hit rate and prefetch hit rate. We implemented the proposed schemes as a Linux kernel module and evaluated them using a commercial SSD. The schemes improved the I/O performance up to 26% in a given experiment.

A Kernel-level RTP for Efficient Support of Multimedia Service on Embedded Systems (내장형 시스템의 원활한 멀티미디어 서비스 지원을 위한 커널 수준의 RTP)

  • Sun Dong Guk;Kim Tae Woong;Kim Sung Jo
    • Journal of KIISE:Computing Practices and Letters
    • /
    • v.10 no.6
    • /
    • pp.460-471
    • /
    • 2004
  • Since the RTP is suitable for real-time data transmission in multimedia services like VoD, AoD, and VoIP, it has been adopted as a real-time transport protocol by RTSP, H.323, and SIP. Even though the RTP protocol stack for embedded systems has been in great need for efficient support of multimedia services, such a stack has not been developed yet. In this paper, we explain embeddedRTP which supports the RTP protocol stack at the kernel level so that it is suitable for embedded systems. Since embeddedRTP is designed to reside in the UBP module, existing applications which rely ell TCP/IP services can proceed the same as before, while applications which rely on the RTP protocol stack can request HTP services through embeddedRTp API. EmbeddedRTP stores transmitted RTP packets into per session packet buffer, using the packet's port number and multimedia session information. Communications between applications and embeddedRTP is performed through system calls and signal mechanisms. Additionally, embeddedRTP API makes it possible to develop applications more conveniently. Our performance test shows that packet-processing speed of embeddedRTP is about 7.5 times faster than that oi VCL RTP for multimedia streaming services on PDA in spite that its object code size is reduced about by 58% with respect to UCL RTP's.

Development of Incident Detection Model Using Compression Wave Test Module (압축파 검사 모듈을 이용한 돌발상황 검지 모형의 개발)

  • Lee, Hwan-Pil;Kim, Nam-Sun;Oh, Young-Tae;Kim, Soo-Hee
    • Journal of Korean Society of Transportation
    • /
    • v.22 no.6
    • /
    • pp.77-88
    • /
    • 2004
  • This study aims at developing the model that is able to detect the compression wave, which is included as a similar situation in incidents, that causes false applicable to the similar character such as incidents in the incident detection model for expressways. In this study, it has been checked whether the number of false alarms is decreased or not by modularizing this model for being able to applicable to other models such as DES and DELOS, etc. which do not perform the compression wave test based on the compression wave test process of APID model which has been being used in the expressway traffic management system currently. The evaluation in this study focuses on the sensitivity of the model and the results analysis is performed classified by each polling cycle. And how well these models are working is evaluated by each polling cycle. In addition to this, the detection rate, the false alarm rate and the average detection time in both the existing models and the model in this study are calcuated. As a result of appling the model in this study, it is found that the false alarm rate is improved through the reasonable decrease in the number of false alarm frequencies and there are not remarkable changes concerning the detection rate and the average detection time. To sum up, it is expected that a good number of improvement effects will be occurred when this model is applied to the actual expressway traffic management system.

FlaSim: A FTL Emulator using Linux Kernel Modules (FlaSim: 리눅스 커널 모듈을 이용한 FTL 에뮬레이터)

  • Choe, Hwa-Young;Kim, Sang-Hyun;Lee, Seoung-Won;Park, Sang-Won
    • Journal of KIISE:Computing Practices and Letters
    • /
    • v.15 no.11
    • /
    • pp.836-840
    • /
    • 2009
  • Many researchers have studied flash memory in order to replace hard disk storages. Many FTL algorithms have been proposed to overcome physical constraints of flash memory such as erase-before-write, wear leveling, and poor write performance. Therefore, these constraints should be considered for testing FTL algorithms and the performance evaluation of flash memory. As doing the experiments, we suffer from several problems with costs and settings in experimental configuration. When we, for example, replay the traces of Oracle to evaluate the I/O performance with flash memory, it is hard to extract exact traces of I/O operations in Oracle. Since there are only write operations in the log, it is impossible to gather read operations. In MySQL and SQLite, we can gather the read operations by changing I/O functions in the source codes. But it is not easy to search for the exact points about I/O and even if we can find out the points, we might get wrong results depending on how we modify source codes to get I/O traces. The FlaSim proposed in this paper removes the difficulties when we evaluate the performance of FTL algorithms and flash memory. Our Linux drivers emulate the flash memory as a hard disk. And we can easily obtain the usage statistics of flash memory such as the number of write, read, and erase operations. The FlaSim can be gracefully extended to support the additional modules implemented by novel algorithms and ideas. In this paper, we describe the structure of FTL emulator, development tools and operating methods. We expect this emulator to be helpful for many experiments and research with flash memory.

Web-based Self-directed Learning System for Multi-contents Service (멀티 콘텐츠 서비스를 위한 웹 기반 자기주도적 학습 시스템)

  • Kim, Ji-Seon;Park, Jin-Ah
    • Journal of KIISE:Computing Practices and Letters
    • /
    • v.16 no.1
    • /
    • pp.115-119
    • /
    • 2010
  • As the subjects of education has been changed from the instructors to learners, a web-based self-directed learning which can accelerate the initiative of learners and can be free from the restriction of time and space has been received attention. In this paper, the web-based self-directed learning system was designed. For the design, to make the learners build their own lecture plan, the service was designed to provide three kinds of lectures of video clip, slide lecture, and e-text lecture that were focused on various lecture contents. In addition, a learner and an assistant was man to man matched to enable the on-line mentoring for mutual communication between learners and assistants. Implementation was carried out by three sets of module - Manager, Learner and Assistant - that were applied to the real educational activities. The survey on satisfaction for the education, efficiency of ability improvement, and educational intelligibility for the attendants on the education showed more than 67.2% of satisfaction in satisfaction for the education. Furthermore, more than 86.9% of attendants replied that their ability were improved after the education of this system. The educational system realized in this paper shows effectiveness for the self-directed learning.

Current Status and Utilization Technology of End-of-Life Photovoltaic Modules (태양광 폐 모듈의 처리현황 및 실용화 기술)

  • Cho, Jai Young;Park, Areum;Yun, Hyun Mok;Jun, Yun-Su;Kim, Joon Soo
    • Resources Recycling
    • /
    • v.29 no.4
    • /
    • pp.15-30
    • /
    • 2020
  • Recently, it is increasing a amount of installed solar-cell rapidly, and end-of-life photovoltaic(ELP) modules are generated in according to the reduction of cell efficiency largely. Recycling of ELP modules are begun at an advanced nation already, but there are bring about environmental contamination and resource recovery problems owing to not treated ELP modules because of economic cost completely. First of all, there were researched basic study for treatment conditions of used solar cell inspection, dismantling of aluminum frame, crushing / grinding & separation of tempered glass, removal of back sheet & EVA film, leaching & precipitation recovery of valuable metals and treatment of waste water. Therefore, we establish optimum conditions through carried out of designed apparatus, installation of equipment, test operation & trouble shooting in scale of 1ton/day pilot plant test. Following to economic review, it does have the economic efficiency until to the case of tempered glass recovery, but does not have the economic value in case of total processes until to recover the valuable metals. However, there are guaranteed economic value if we are gained a large amount of the expenses through EPR supported system. It was confirmed the commercialized possibility of ELP modules recycling if there were established on the collecting ELP modules, reusing criteria, economical technology, enactment of directives and enforcement of EPR supported system efficiently.

The Motion Estimator Implementation with Efficient Structure for Full Search Algorithm of Variable Block Size (다양한 블록 크기의 전역 탐색 알고리즘을 위한 효율적인 구조를 갖는 움직임 추정기 설계)

  • Hwang, Jong-Hee;Choe, Yoon-Sik
    • Journal of the Institute of Electronics Engineers of Korea SD
    • /
    • v.46 no.11
    • /
    • pp.66-76
    • /
    • 2009
  • The motion estimation in video encoding system occupies the biggest part. So, we require the motion estimator with efficient structure for real-time operation. And for motion estimator's implementation, it is desired to design hardware module of an exclusive use that perform the encoding process at high speed. This paper proposes motion estimation detection block(MED), 41 SADs(Sum of Absolute Difference) calculation block, minimum SAD calculation and motion vector generation block based on parallel processing. The parallel processing can reduce effectively the amount of the operation. The minimum SAD calculation and MED block uses the pre-computation technique for reducing switching activity of the input signal. It results in high-speed operation. The MED and 41 SADs calculation blocks are composed of adder tree which causes the problem of critical path. So, the structure of adder tree has changed the most commonly used ripple carry adder(RCA) with carry skip adder(CSA). It enables adder tree to operate at high speed. In addition, as we enabled to easily control key variables such as control signal of search range from the outside, the efficiency of hardware structure increased. Simulation and FPGA verification results show that the delay of MED block generating the critical path at the motion estimator is reduced about 19.89% than the conventional strukcture.

Development of Korea Ocean Satellite Center (KOSC): System Design on Reception, Processing and Distribution of Geostationary Ocean Color Imager (GOCI) Data (해양위성센터 구축: 통신해양기상위성 해색센서(GOCI) 자료의 수신, 처리, 배포 시스템 설계)

  • Yang, Chan-Su;Cho, Seong-Ick;Han, Hee-Jeong;Yoon, Sok;Kwak, Ki-Yong;Yhn, Yu-Whan
    • Korean Journal of Remote Sensing
    • /
    • v.23 no.2
    • /
    • pp.137-144
    • /
    • 2007
  • In KORDI (Korea Ocean Research and Development Institute), the KOSC (Korea Ocean Satellite Center) construction project is being prepared for acquisition, processing and distribution of sensor data via L-band from GOCI (Geostationary Ocean Color Imager) instrument which is loaded on COMS (Communication, Ocean and Meteorological Satellite); it will be launched in 2008. Ansan (the headquarter of KORDI) has been selected for the location of KOSC between 5 proposed sites, because it has the best condition to receive radio wave. The data acquisition system is classified into antenna and RF. Antenna is designed to be $\phi$ 9m cassegrain antenna which has 19.35 G/T$(dB/^{\circ}K)$ at 1.67GHz. RF module is divided into LNA (low noise amplifier) and down converter, those are designed to send only horizontal polarization to modem. The existing building is re-designed and arranged for the KOSC operation concept; computing room, board of electricity, data processing room, operation room. Hardware and network facilities have been designed to adapt for efficiency of each functions. The distribution system which is one of the most important systems will be constructed mainly on the internet. and it is also being considered constructing outer data distribution system as a web hosting service for offering received data to user less than an hour.

A New Architecture of Instant Message Service with Multiple Servers (다중서버 방식의 새로운 인스턴트메시지 서비스 구조)

  • Jang, Choonseo;Lee, Ky-Soo
    • Journal of the Korea Society of Computer and Information
    • /
    • v.18 no.11
    • /
    • pp.99-106
    • /
    • 2013
  • In Instant message service, the server should process instant messages and request messages which include many presence resources for users. And it also precesses massive notification messages generating from the subscribed presence resources. In this paper a new architecture of instant message service with multiple servers which can distribute loads efficiently as the number of users increases has been suggested. It also provides various functions to users using extended call processing language. The user subscribes presence information and call processing language script which describes user's functions. The server processes instant messages, presence services and call processing language scripts. New extended presence information data structure has been suggested and new call processing language operation tags have been added. Therefore extendability of the system can be increased and various services which combine presence service and call processing can be provided in this system. Furthermore instant message processing module has been integrated in the server to decrease the amount of SIP(Session Initiation Protocol) messages, and it also improves system efficiency, The performance of our proposed system has been analysed by experiments.