<C7D1B1B9B0D4C0D3C7D0C8B B3E22034BFF9C8A32920C7D5BABB2D312E687770>

Size: px
Start display at page:

Download "<C7D1B1B9B0D4C0D3C7D0C8B B3E22034BFF9C8A32920C7D5BABB2D312E687770>"

Transcription

1 Journal of Korea Game Society 2013 Apr; 13(2): 게임프로그래밍 연산서버를적용한 MMORPG 게임서버에관한연구 배성길 *, 김혜영 ** 홍익대학교일반대학원게임학과 *, 홍익대학교게임학부게임소프트웨어전공 ** A Study on the MMORPG Server Architecture Applying with Arithmetic Server Sung-Gill Bae *, Hye-Young Kim ** Major in Game Software, Graduate School, Hongik University * Major in Game Software, School of Games, Hongik University ** 요약 가상공간에서대규모게임사용자들간의상호작용이활발히일어나는 MMORPG(Massively Multi-player Online Role-Playing Games) 에서는다수의클라이언트의접속요청및작업요청을실시간으로빠르게처리할수있어야한다. 그러나클라이언트의접속자수가늘어날수록처리해야할작업량이많아지며, 게임서버의부하도높아지게된다. 이를해결하기위해많은개발자들은분산서버구조를적용하여, 동적맵분할, 서버의기능에따른부하분산등의기법들을제시하고있다. 현재대부분의 MMORPG 게임서버는하나의월드를 Zone 방식으로나누어서각각의영역을다수의게임서버가담당하여게임을진행하고있다. 이러한방식은사용자의빈번한서버이동에따른데이터갱신등의오버헤드를발생하여게임서버에큰부하를주고있다. 따라서본논문에서는게임서버의부하를줄이기위해데이터의연산을담당하는연산서버를적용하여기존게임서버의효율은높이고더많은사용자의접속과작업을처리할수있는구조를제안하고, 수학적인모델링과성능분석을통해기존연구들과의비교시의제안기법의효율성을보였다. ABSTRACT In MMORPGs(Massively Multi-player Online Role-Playing Games) a large number of players actively interact with one another in a virtual world. Therefore MMORGs must be able to quickly process real-time access requests and process requests from numerous gaming users. A key challenge is that the workload of the game server increases as the number of gaming users increases. To address this workload problem, many developers apply with distributed server architectures which use dynamic map partitioning and load balancing according to the server function. Therefore most MMORPG servers partition a virtual world into zones and each zone runs on multiple game servers. These methods cause of players frequently move between game servers, which imposes high overhead for data updates. In this paper, we propose a new architecture that apply with an arithmetic server dedicated to data operation. This architecture enables the existing game servers to process more access and job requests by reducing the load. Through mathematical modeling and experimental results, we show that our scheme yields higher efficiency than the existing ones. Keyword : MMORPG, Distributed Server, Game User Received: Nov. 19, 2012 Revised(1st): Jan. 03, 2013 Revised(2nd): Feb. 22, 2013 Accepted: Feb. 28, 2013 Corresponding Author: Hye-Young Kim(Hongik Hongik University) hykim@hongik.ac.kr ISSN: / eissn: C The Korea Game Society. All rights reserved. This is an open-access article distributed under the terms of the Creative Commons Attribution Non-Commercial License ( which permits unrestricted non-commercial use, distribution, and reproduction in any medium, provided the original work is properly cited. Journal of Korea Game Society JKGS 39

2 연산서버를적용한 MMORPG 게임서버에관한연구 1. 서론 MMORPG(Massively Multiplayer Online Role-Playing Game) 의성장세가뚜렷하고시장이확대됨에따라게임사용자의수가증가함으로써하나의서버에서처리할수있는사용자의수와데이터의양의한계는중요한문제가되고있다. 이를해결하기위해분산서버방식의구조가사용되고있는데, 온라인게임서버는사용자들의그룹형성이나사용자들이게임을즐길수있는환경을제공하기위한게임의맵, NPCAI 등의데이터처리하는역할까지수행해야한다 [1]. 이게임서버의역할은처리해야하는게임데이터, 사용자관리등의수행해야하는게임서버의기능등의기준으로나누어져효율적으로수행할수있게설계되고, 확장성도고려해야한다. MMORPG를서비스하기위해서는하나의커다란맵을여러개의게임서버가담당하는영역으로나누어서게임플레이및사용자의처리를담당하게되는데이는결국사용자의수와네트워크트래픽의제한으로인해게임서버가담당하는영역이제한됨에따라게임서버의수가늘어나게되고이를통해서게임내에서사용자가맵을이동할시게임서버간사용자의이동이빈번하게발생하게되는데이러한점은게임서버에데이터를처리하는것보다큰부하를주고있다 [2,11]. 본논문에서는사용자의이동이빈번하게발생하는것을최소화하기위해기존게임서버의기능중하나인데이터연산을담당하는연산서버를적용하여게임서버의부하를줄이고게임서버가담당하는영역과사용자의수를늘림으로써효율적인게임서버를제안한다. 기반으로발전하고있고게임을동시에플레이하는사용자수또한증가함에따라서게임서버 1대가모든일을하는단일서버구조로는현재의대규모사용자처리하기에는불가능해졌다. 이를해결하기위해서 [Fig. 1] 과같은게임서버가수행하는기능들을각각의서버로독립적으로분산운용하여각기능을서버가담당하게하는분산서버구조가대세를이루고있다. 기능적으로로그인 / 업데이트서버, 통신서버, 게임서버, 데이터베이스서버등으로분산시킨후서버들간의통신을통해게임을처리하는구조다 [3]. 기존의온라인게임서버의구조는 [Fig. 1] 과같다. 사용자들은최초에로그인서버에접속하게되고사용자의최종적인위치를데이터베이스서버를통해서가져온뒤각위치에알맞은게임서버에사용자들을할당해준다. 그리하면사용자들은자신의위치에따른게임서버에접속을하게되고이를통해서게임을진행하게된다. 게임서버는접속한사용자의직접적인게임플레이환경을제공하고네트워크를통해게임을진행하고자신이담당하는맵의영역과사용자들을관리하여데이터를처리하게된다 [3,4]. 게임을진행하면서사용자는자신의서버가담당하는영역을벗어난위치로이동을하게되는데이때게임서버는정보를사용자가새롭게이동한영역을담당하는게임서버에서넘겨주고새로운게임서버가사용자의게임플레이를담당하게되는데이러한사용자이동작업은서버에큰부하를준다. 2. 관련연구 우수한기술의지원으로인해네트워크를이용한온라인게임들은다양한형태로거대한배경을 [Fig. 1] Present distributed server model 40 Journal of Korea Game Society 2013 Apr; 13(2): 39-48

3 A Study on the MMORPG Server Architecture Applying with Arithmetic Server 이러한구조에서는게임서버에몰리는사용자의수와네트워크트래픽의제한으로게임서버가담당하는영역이점점줄어드는반면, 게임서버의수가늘어나게되고담당하는영역또한작아진다. 그러면사용자가게임을플레이하는데있어서작은위치의이동만있더라도빈번한사용자의서버이동이발생하게되고이는서버를효율적으로사용하지못하는상황이발생하게된다. 이를해결하기위해 [Fig. 2] 의방법으로맵부하분산서버를이용하여게임서버가담당하는영역을동적으로변환해주며불균등한게임배경점유에따른각서버부하의불균형을제어하는방법으로각서버의효율을높이는방법이있으나서버간맵동적변환이이루어지게되는기준이게임마다너무나다르고부하도크다 [5,6]. 직접적인부하를줄이는방법을제안한다. 3. 제안기법본논문에서게임서버의작업부하를효율적으로나누어게임서버의연산작업중일부분을연산서버에서처리함으로써보다효율적인게임서버구조를제안한다. 3.1 연산서버의작업을위한메시지분배작업 [Fig 2] Dynamic allocation by map balancing [Fig. 3] Server architecture applied with Arithmetic server 다른방법으로는통신서버라는사용자접속과게임처리와실질적으로관계가적은채팅부분과같은메시지를처리 ( 게임서버가직접관여할필요없는인스턴스메시지 ) 하는서버가있는데이는사용자의맵이동시접속처리부분만을처리하기때문에게임에직접적인영향을끼치게되는즉, 게임서버에직접적으로부하를주는네트워크트래픽을감당하는데는제한이있다. 그리고클라이언트 -서버간통신이통신서버를무조건거쳐서가기때문에모든패킷의전달에있어서도 2단계과정을거치기때문에비효율적인방법이다. 이를해결하기위해서본논문에서는통신에는직접적으로관여하지는않지만게임서버의연산부분을처리하는연산서버의개념을두어게임서버의 [Fig. 3] 에서와같이게임서버와내부적으로연동되는연산서버를두어작업을분해하는방법이다. 이를위해기존게임유저에의해요청되는작업메시지의유형을게임서버가직접적으로처리해야하는메시지와연산서버를이용해작업을처리할수있는메시지로구분하는작업이필요하다. 로그인서버는유저의접속을처리한뒤유저가원하는게임서버로연결시켜준뒤그유저는자신의게임서버로연결되어자신의정보도게임서버에서관리한다. 게임서버의전체월드는 Zone방식으로구분되고유저가자신의게임서버가담당하는 Zone을벗어나게되면다른게임서버로이동이되는것이다 [7]. 이러한유저의접속과이동을처리하는작업요청메시지들은연산서버를이용해서 Journal of Korea Game Society JKGS 41

4 연산서버를적용한 MMORPG 게임서버에관한연구 하는것보다직접적으로게임서버에서처리하는것이게임서버자체가사용자정보를가지고있기때문에더효율적이므로이러한작업을연산서버에서담당할필요는없다. 게임을진행하는데있어필요한다양한작업메시지들의연산을연산서버에서담당할수가있는데일반적인게임에서의작업요청메시지중연산서버가담당가능한메시지와불가능한메시지를구별을 [Table 1] 에서와같이구별할수있다 [8,9,12]. [Table 1] Classified Working Message Classification Possible responsible message Impossible responsible message Working Message 1. movement of Character 2. message related to AI 3. message related to battle 4. message related to Item 5. message of character s position revision 6. movement of Monster 1. Access of Game Server by User 2. Movement of User between Game Servers 3. Chat message 4. message related to grouping 3.2 메시지부하분석을통한연산서버의활용 위에서분류한메시지종류를바탕으로연산서버가담당할수있는작업중게임서버에서직접적으로처리하는서버구조의속도와게임서버와연산서버와의통신시간과작업처리하는시간을비교하여연산서버를도입하여처리하는작업이더효율적인메시지작업들을연산서버가담당하게되는방법으로서버구조가구성된다. 유저의요청작업중실시간으로빠른응답이요구되는작업들은게임서버에서처리하는것이효율적이고연산등에소요되는시간은길지만빠른응답이요구되지않아도되는작업들을연산서버에서담당하도록하였다. [Fig. 4] Process of proposed scheme [Fig. 4] 에서보는것과같은작업과정을거쳐유저의작업요청작업을수행한다. 3.3 효율적인작업메시지선택게임진행시발생되는수식들의계산을위해서연산서버가담당할수있는메시지중에서기존서버구조와비교했을시가장효율적인메시지를구별하기위해각메시지마다기존서버구조에서걸리는총수행시간과본논문에서제안하는기법에서걸리는총수행시간을비교하여연산서버가작업을담당할메시지를선택한다. 효율적인작업메시지의조건은 [Table 2] 와같다. 42 Journal of Korea Game Society 2013 Apr; 13(2): 39-48

5 A Study on the MMORPG Server Architecture Applying with Arithmetic Server [Table 2] Efficient message condition 1. many request message 2. To minimize database access 3. Spent a lot of time working operation 4. minimizes the data transfer of the operations server task required upon request 3.1절에서분배한작업중사용자의이벤트에대한응답이바로전달되어져야하는전투관련메시지와게임서버와연결된데이터베이스서버를거쳐야하는아이템관련메시지는연산서버가작업을담당하는데있어서효율적이지못하다. 그러나사용자가비전투시이동하는이동동기화관련된메시지같은경우이벤트요청은계속해서요청이많지만요청시마다전투이벤트같은즉각적인반응이아닌어느정도의시간마다서버에서처리해주면되는메시지이다. [Table 2] 에서의조건을가장만족하는사용자의캐릭터이동동기화관련메시지와위치보정메시지, 몬스터이동동기화관련메시지들을연산서버에서선택하여게임서버대신에작업을수행한다. 사용자가작업을요청하는패킷을게임서버로보내면게임서버에서는패킷분류를하여연산서버로작업할패킷들은연산서버로변환된작업요청패킷을보낸다. 4. 성능분석 본논문에서는작업요청패킷을발생시키는가상의게임사용자들의접속을지속적으로발생시켜서기존연구와제안기법과의서버효율을비교하였다. 성능평가를위해지속적으로접속하는사용자수를증가하면서기존의서버모델과연산서버를적용한서버모델의성능을평가하고, 게임서버는두모델다같은성능의게임서버를하나씩사용하였고제안하는모델에서는연산서버를추가하여진행하였다. 서버의모델은 IOCP방식의모델을사용하였으 며데이터베이스는 MSSQL을서버와 ODBC로연동하여구현하고서버에서는실시간으로로그를분석하였다 [10]. [Table 3] Server execution time Arithmeticserver Classification Gameserver + Gamerver Working time Communication time Total execution time 사용자수에 른게임서버작업시간분석 게임서버와클라이언트간의분석패킷의설계는패킷의전체사이즈와타입을알려주는패킷헤더부분과실데이터부분으로구성되었다. 캐릭터의이동동기화관련메시지패킷을게임서버에요청하는클라이언트생성하여게임서버에요청하는방식으로진행하였다. 게임서버가처리하는전체메시지에서일반메시지의비중은 20% 정도이다 [8]. 기존의게임서버만을이용한모델에비해이동동기화관련메시지를연산서버에서처리하는제안모델의작업시간은기존모델의시간보다 80% 정도의시간만이걸렸다. 이는기존모델은게임서버에서사용자접속처리등의다른작업에도부하가걸리기때문이다. 은접속자의수, 는서버가처리하는전체메시지의수라하고 t는각메시지의작업을처리하는데걸리는시간을나타내며전체사용자의수에따른작업시간은 = * *...(eq. 1) 전체사용자의수에따른연산서버를적용한제안기법의작업시간은 Journal of Korea Game Society JKGS 43

6 연산서버를적용한 MMORPG 게임서버에관한연구 = * *0.8*t...(eq. 2) 가된다. 게임서버만을이용한총수행시간을 이라하고, 연산서버를이용한총수행시간을, 게임서버와사용자간의통신시간을, 그리고게임서버와연선서버의통신시간을 라고할때, 게임서버만을이용한총수행시간은 (eq. 1) 을통해서 = +...(eq. 3) [Fig. 5] Comparison of execution time 연산서버를이용한총수행시간은 (eq. 2) 를통해 = (eq. 4) 가된다. 따라서기존의연구와제안기법에서의작업시간, 통신시간, 그리고총수행시간은 [Table 3] 과같이나타낼수있다. [Fig. 5] 에서와같이게임에접속하는사용자수를증가시키면서기존연구와제안기법의게임서버에서만의작업시간을비교하였다. 기존연구의게임서버는게임사용자의작업요청처리를게임서버자체적으로처리하고제안기법의게임서버는사용자의작업요청처리를전부하는것이아닌연산서버와나누어작업을하기때문에두모델의게임서버자체만의작업처리에걸리는시간은접속하는게임사용자의수가증가할수록기존연구와제안기법과의작업시간차가커지게된다. 즉접속하는게임사용자의증가수가똑같더라도게임서버의자체에걸리는부하는기존연구의기법에서는더많은부하가발생하기때문에제안기법이더욱효율적임을알수있다. [Fig. 6] 에서보듯이접속하는사용자의수가증가하면할수록연산서버를도입한모델과이전모델과의게임서버의작업시간은점점커짐을알수있다. 4.2 유저수에따른통신시간분석연산서버를적용한제안기법에서의게임서버와연산서버간의통신에대한오버헤드가미치는영향을분석하기위해게임서버와사용자간의통신시간과게임서버와연산서버간의통신시간을분석하였다. 대부분게임서버와사용자의통신시간은 20ms 정도면양호한네트워크상태라고본다 [5]. 따라서게임서버와사용자간의통신속도는 20ms 로일정하게유지되게가정하였고게임서버와연산서버는내부적인통신망으로이루어져있는테스트환경에서접속하는게임사용자의수를증가시키면서게임사용자와게임서버간의통신시간및게임서버와연산서버와의통신시간을측정하여 [Table 4] 에나타내었다. [Table 4] 와같이접속하는게임사용자의수가증가하더라도게임서버와연산서버의통신시간은크게늘어나지않고일정하게유지되는것을알수있다. 이는게임서버와연산서버의실험환경이 LAN기반의충분한대역폭이지원되고서버의수가제한적이었기때문이다. 44 Journal of Korea Game Society 2013 Apr; 13(2): 39-48

7 A Study on the MMORPG Server Architecture Applying with Arithmetic Server User (person) [Table 4] Communication time Commutication (server<->user) Communication (Game server<-> Arithmetic server) User (person) (b) Execution time of proposed scheme Communication (srver-user) Server working Total execution time 서버총수행시간분석 [Table 5] 에서보듯이보통서버와사용자의통신시간은 20ms 정도면양호한상태인데사용자의수가늘어나고작업요청패킷의양이많이질수록서버의작업시간이늘어남에따라서서버와사용자의통신시간은일정하더라도서버의총수행시간은점차적으로늘어나고있다. 반면에 [Table 5] 에서보듯이연산서버의통신시간은일정하였지만서버의작업시간이처음사용자가 300명구간까지는작업시간이기존의구조가더욱효율적이었다. 400명구간부터는서버의작업수행시간의증가량이기존연구보다점차적으로좋아지기시작하였다. 즉, 게임사용자수가증가할수록서버의총수행시간의차이는점점커짐을알수있다. 성능분서시에서버작업시간에는게임서버와연산서버간의통신시간도포함하였다. 유저의수가 800 명인상황에서의서버의총수행시간의차이는 3ms로큰수치의차이는아니지만실제상용화된 MMORPG의접속유저수는 800명과는비교할수없이몇천, 혹은몇만명으로기하급수적으로늘어나게되는데그렇게된다면 [Table 5] 에서나타나는기존모델과제안기법의차이는더크게발생됨을예상할수있다. [Table 5] (a) Execution time of previous server User (person) Communication (srver-user) Server working Total execution time [Fig. 6] Performance Comparison of server models Journal of Korea Game Society JKGS 45

8 연산서버를적용한 MMORPG 게임서버에관한연구 [Fig. 6] 과같이서버사용자와의통신시간을일정하게유지하더라도사용자의수가증가할수록본논문이제안한기법이더욱효율적임을알수있다. 5. 결론및향후과제본논문에서는기존의 MMORPG에서사용되던분산서버구조에서사용자가서버에몰림으로써발생되는작업의처리양에따른작업능률저하를줄이기위해연산서버를적용하여사용자의증가에따른작업에효율적으로처리함으로써효율적인서버구조를제안하였다. 기존모델의게임서버에서처리하던작업을연산서버에서나누어작업하여게임서버의작업처리량을감소시켰다. 즉, 게임서버의작업시간을향상시켜전체적인서버의총수행시간이효율적인모델을제안하였고이는사용자의수가증가할수록더나은모습을보였다. 제안기법에대한성능분석에서구현한환경이게임서버와연산서버가각각하나씩만존재하고, 패킷의종류도 MMORPG에쓰이는몇가지의제한적인메시지만을포함하고있다. 그러므로더욱효율적인검증을위해서는상용화된 MMORPG 게임서버의패킷분석을통해게임서버와연산서버의작업분배를실험함으로써신뢰도를높일수있을것으로예상한다. 또한, 연산서버와게임서버와의위치를내부의지역적인환경이아닌외부인터넷환경에서의성능비교도필요할것으로보인다. 향후연구로는또한제안기법에서의연산서버에서의처리할패킷을자동으로분별하는알고리즘을신뢰성있도록제안하고, 연산서버의작업수행능력을위한최적화알고리즘들을제안하며, 데이터베이스서버와의연동을고려하여최적화된게임서버를제안하고자한다. ACKNOWLEDGEMENTS This research was supported by the MKE(The Ministry of Knowledge Economy), NHN Corp. under IT/SW Creative research program supervised by the NIPA(National IT Industry Promotion Agency) (NIPA-2012-H ). This work was supported by 2013 Hongik University Research Fund. REFERENCES [1] Jung-Yeoul Lim and three others Technical Trend of Distributed Game Server, Electronics and Telecommunications Trends, Vol. 20, No. 4, pp93-102, 2005 [2] Nam-Kyeong Um, Hyung-Jin Moon, Sang-Ho Lee, Design and Implementation of A Load Balancer Based on Load Equality between Game Servers, The Journal of the Korean Institute of Information and Communication Engineering, Vol. 32, No. 4, 2007 [3] Su-Min Jang, Jae-Soo Yoo, An Efficient MMORPG Distributed Game Server, Journal of Korea Contents Association, Vol. 7, No [4] Kwang-Ho Yang and four others, Technical Trend of Online Game Server, Electronics and Telecommunications Trends, Vol. 16, No. 4, pp14-22, 2001 [5] Su-Min Jang, Jae-Soo Yoo, Efficient Distri buted Processing Scheme for Load Balancing of MMORPG Server, Journal of Korea Contents Association, Vol. 7, No. 11, pp69-75, 2007 [6] Jong-Gwan Choi, Hye-Young Kim, Woo-Sik Woo, A Study of a Game User Oriented Load Balancing Scheme on MMORP, Journal of Korea Game Society, Vol. 12, No. 3, pp69-76, Journal of Korea Game Society 2013 Apr; 13(2): 39-48

9 A Study on the MMORPG Server Architecture Applying with Arithmetic Server [7] Soon-Gohn Kim, Nam-Jae Lee, Seung- Weon Yang, A Management method of Load Balancing among Game Servers based on Distributed Server System Using Map Balance Server, Journal of Korea Navigation Institute, Vol. 15, No. 6, pp1034, 2011 [8] Seung-Weon Moon, Hyung-Jae Jo, A Study on Synchronization Distribution of Server Message in Online Games, Journal of Korea Game Society, Vol. 9, No. 2, 2009 [9] Dong-Hoon Han, Online Game Server programming, Information Publishing Group, 2007 [10] Hye-Young Kim, Moon-Sung Kim, Dae- Hyun Ham, A Study of Object Pooling Scheme for Efficient Online Gaming Server, Journal of Korea Game Society, Vol. 9, No. 6, 2009 [11] Santosh Kulkami Badumna Network Suite A Decentralized Network Engine for Massively Multiplayer Online Applications Peer-to-Peer Computing, 2009, P2P 09. IEEE Ninth International Conference 2009 [12] Carlos Eduardo Benevides Bezerra and one person, A load balancing scheme for massively multiplayer online games, Journal Multimedia Tools and Applications archive Vol. 45, Issue 1-3, 2009 년 배성길 (Bae, Sung Gill) 홍익대학교게임소프트웨어학과이학사 현재홍익대학교일반대학원게임공학과 관심분야 : 게임서버, 분산서버, 게임제작 김혜영 (Hye-Young Kim) 고려대학교컴퓨터학과이학박사 Wright State Uni. Post-Doc 현재홍익대학교게임학부게임소프트웨어전공부교수 관심분야 : 모바일게임, 온라인게임서버, 게임엔진 Journal of Korea Game Society JKGS 47

10 연산서버를적용한 MMORPG 게임서버에관한연구 48 Journal of Korea Game Society 2013 Apr; 13(2): 39-48

<30312DC1A4BAB8C5EBBDC5C7E0C1A4B9D7C1A4C3A52DC1A4BFB5C3B62E687770>

<30312DC1A4BAB8C5EBBDC5C7E0C1A4B9D7C1A4C3A52DC1A4BFB5C3B62E687770> Journal of the Korea Institute of Information and Communication Engineering 한국정보통신학회논문지(J. Korea Inst. Inf. Commun. Eng.) Vol. 19, No. 2 : 258~264 Feb. 2015 ID3 알고리즘 기반의 귀납적 추론을 활용한 모바일 OS의 성공과 실패에 대한

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA FPS게임 구성요소의 중요도 분석방법에 관한 연구 2 계층화 의사결정법에 의한 요소별 상관관계측정과 대안의 선정 The Study on the Priority of First Person Shooter game Elements using Analytic Hierarchy Process 주 저 자 : 배혜진 에이디 테크놀로지 대표 Bae, Hyejin AD Technology

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 26(11),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 26(11), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Nov.; 26(11), 985991. http://dx.doi.org/10.5515/kjkiees.2015.26.11.985 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Analysis

More information

<353420B1C7B9CCB6F52DC1F5B0ADC7F6BDC7C0BB20C0CCBFEBC7D120BEC6B5BFB1B3C0B0C7C1B7CEB1D7B7A52E687770>

<353420B1C7B9CCB6F52DC1F5B0ADC7F6BDC7C0BB20C0CCBFEBC7D120BEC6B5BFB1B3C0B0C7C1B7CEB1D7B7A52E687770> Journal of the Korea Academia-Industrial cooperation Society Vol. 13, No. 2 pp. 866-871, 2012 http://dx.doi.org/10.5762/kais.2012.13.2.866 증강현실을 이용한 아동교육프로그램 모델제안 권미란 1*, 김정일 2 1 나사렛대학교 아동학과, 2 한세대학교 e-비즈니스학과

More information

27송현진,최보아,이재익.hwp

27송현진,최보아,이재익.hwp OSMU전략에 따른 산업 동향 및 발전방안 -영상콘텐츠를 중심으로- A current research & development study on the OSMU strategy in field of game industry -A special study on the popular visual contents- 주저자: 송현진 (Song Hyun Jin) 서울산업대학교

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 논문 10-35-03-03 한국통신학회논문지 '10-03 Vol. 35 No. 3 원활한 채널 변경을 지원하는 효율적인 IPTV 채널 관리 알고리즘 준회원 주 현 철*, 정회원 송 황 준* Effective IPTV Channel Control Algorithm Supporting Smooth Channel Zapping HyunChul Joo* Associate

More information

06_ÀÌÀçÈÆ¿Ü0926

06_ÀÌÀçÈÆ¿Ü0926 182 183 184 / 1) IT 2) 3) IT Video Cassette Recorder VCR Personal Video Recorder PVR VCR 4) 185 5) 6) 7) Cloud Computing 8) 186 VCR P P Torrent 9) avi wmv 10) VCR 187 VCR 11) 12) VCR 13) 14) 188 VTR %

More information

패션 전문가 293명 대상 앙케트+전문기자단 선정 2010.1 Fashionbiz CEO Managing Director Creative Director Independent Designer

패션 전문가 293명 대상 앙케트+전문기자단 선정 2010.1 Fashionbiz CEO Managing Director Creative Director Independent Designer READY-TO-WEAR Fashionbiz 2010.1 패션 전문가 293명 대상 앙케트+전문기자단 선정 2010.1 Fashionbiz CEO Managing Director Creative Director Independent Designer READY-TO-WEAR Fashionbiz 2010.1 1 2 3 4 5 6 7 8 9 9 2010.1 Fashionbiz

More information

인문사회과학기술융합학회

인문사회과학기술융합학회 Vol.5, No.5, October (2015), pp.471-479 http://dx.doi.org/10.14257/ajmahs.2015.10.50 스마트온실을 위한 가상 외부기상측정시스템 개발 한새론 1), 이재수 2), 홍영기 3), 김국환 4), 김성기 5), 김상철 6) Development of Virtual Ambient Weather Measurement

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA Journal of the Korea Institute of Information and Communication Engineering 한국정보통신학회논문지(J. Korea Inst. Inf. Commun. Eng.) Vol. 19, No. 5 : 1031~1039 May. 2015 정보보호 산업의 경제적 파급효과 및 기여도 분석 김방룡 1 홍재표 2* Economic

More information

<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770>

<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770> 327 Journal of The Korea Institute of Information Security & Cryptology ISSN 1598-3986(Print) VOL.24, NO.2, Apr. 2014 ISSN 2288-2715(Online) http://dx.doi.org/10.13089/jkiisc.2014.24.2.327 개인정보 DB 암호화

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI: : Researc

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI:   : Researc Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp.251-273 DOI: http://dx.doi.org/10.21024/pnuedi.27.2.201706.251 : 1997 2005 Research Trend Analysis on the Korean Alternative Education

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 10, Oct ,,. 0.5 %.., cm mm FR4 (ε r =4.4)

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 10, Oct ,,. 0.5 %.., cm mm FR4 (ε r =4.4) THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Oct.; 29(10), 799 804. http://dx.doi.org/10.5515/kjkiees.2018.29.10.799 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Method

More information

<30312DC1A4BAB8C5EBBDC5C7E0C1A4B9D7C1A4C3A528B1E8C1BEB9E8292E687770>

<30312DC1A4BAB8C5EBBDC5C7E0C1A4B9D7C1A4C3A528B1E8C1BEB9E8292E687770> Journal of the Korea Institute of Information and Communication Engineering 한국정보통신학회논문지(J. Korea Inst. Inf. Commun. Eng.) Vol. 18, No. 11 : 2593~2599 Nov. 2014 오픈소스 모바일 UI컴포넌트 선정 절차 프레임워크 손효정 1 이민규 2 성백민

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 1, pp DOI: * The

Journal of Educational Innovation Research 2017, Vol. 27, No. 1, pp DOI:   * The Journal of Educational Innovation Research 2017, Vol. 27, No. 1, pp.243-268 DOI: http://dx.doi.org/10.21024/pnuedi.27.1.201703.243 * - 2001 2015 - The Research Trends on Peer Counseling in Elementary and

More information

???춍??숏

???춍??숏 Suseong gu Council Daegu Metropolitan City www.suseongcouncil.daegu.kr Contents SUSEONG GU COUNCIL DAEGU METROPOLITAN CITY 10 www.suseongcouncil.daegu.kr 11 SUSEONG GU COUNCIL DAEGU METROPOLITAN CITY

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jun.; 27(6),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jun.; 27(6), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Jun.; 27(6), 495 503. http://dx.doi.org/10.5515/kjkiees.2016.27.6.495 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Design

More information

07변성우_ok.hwp

07변성우_ok.hwp 2 : (Regular Paper) 19 5, 2014 9 (JBE Vol. 19, No. 5, September 2014) http://dx.doi.org/10.5909/jbe.2014.19.5.631 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a), b) Metadata Management System Implementation

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 3, pp DOI: (NCS) Method of Con

Journal of Educational Innovation Research 2017, Vol. 27, No. 3, pp DOI:   (NCS) Method of Con Journal of Educational Innovation Research 2017, Vol. 27, No. 3, pp.181-212 DOI: http://dx.doi.org/10.21024/pnuedi.27.3.201709.181 (NCS) Method of Constructing and Using the Differentiated National Competency

More information

example code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for

example code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for 2003 Development of the Software Generation Method using Model Driven Software Engineering Tool,,,,, Hoon-Seon Chang, Jae-Cheon Jung, Jae-Hack Kim Hee-Hwan Han, Do-Yeon Kim, Young-Woo Chang Wang Sik, Moon

More information

À±½Â¿í Ãâ·Â

À±½Â¿í Ãâ·Â Representation, Encoding and Intermediate View Interpolation Methods for Multi-view Video Using Layered Depth Images The multi-view video is a collection of multiple videos, capturing the same scene at

More information

2 : (JEM) QTBT (Yong-Uk Yoon et al.: A Fast Decision Method of Quadtree plus Binary Tree (QTBT) Depth in JEM) (Special Paper) 22 5, (JBE Vol. 2

2 : (JEM) QTBT (Yong-Uk Yoon et al.: A Fast Decision Method of Quadtree plus Binary Tree (QTBT) Depth in JEM) (Special Paper) 22 5, (JBE Vol. 2 (Special Paper) 22 5, 2017 9 (JBE Vol. 22, No. 5, Sepember 2017) https://doi.org/10.5909/jbe.2017.22.5.541 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) (JEM) a), a), a) A Fast Decision Method of Quadtree

More information

Journal of Educational Innovation Research 2018, Vol. 28, No. 4, pp DOI: * A Research Trend

Journal of Educational Innovation Research 2018, Vol. 28, No. 4, pp DOI:   * A Research Trend Journal of Educational Innovation Research 2018, Vol. 28, No. 4, pp.295-318 DOI: http://dx.doi.org/10.21024/pnuedi.28.4.201812.295 * A Research Trend on the Studies related to Parents of Adults with Disabilities

More information

Analysis of objective and error source of ski technical championship Jin Su Seok 1, Seoung ki Kang 1 *, Jae Hyung Lee 1, & Won Il Son 2 1 yong in Univ

Analysis of objective and error source of ski technical championship Jin Su Seok 1, Seoung ki Kang 1 *, Jae Hyung Lee 1, & Won Il Son 2 1 yong in Univ Analysis of objective and error source of ski technical championship Jin Su Seok 1, Seoung ki Kang 1 *, Jae Hyung Lee 1, & Won Il Son 2 1 yong in University & 2 Kang Won University [Purpose] [Methods]

More information

(JBE Vol. 23, No. 5, September 2018) (Regular Paper) 23 5, (JBE Vol. 23, No. 5, September 2018) ISSN

(JBE Vol. 23, No. 5, September 2018) (Regular Paper) 23 5, (JBE Vol. 23, No. 5, September 2018)   ISSN (JBE Vol. 23, No. 5, September 2018) (Regular Paper) 23 5, 2018 9 (JBE Vol. 23, No. 5, September 2018) https://doi.org/10.5909/jbe.2018.23.5.636 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) The

More information

03-서연옥.hwp

03-서연옥.hwp 농업생명과학연구 49(4) pp.31-37 Journal of Agriculture & Life Science 49(4) pp.31-37 Print ISSN 1598-5504 Online ISSN 2383-8272 http://dx.doi.org/10.14397/jals.2015.49.4.31 국가산림자원조사 자료를 적용한 충남지역 사유림경영율 추정 서연옥

More information

?

? http://kfaexpo.kr/ The 40th Korea Franchise Business Expo 2017 JUNE - Vol.23 2017 JUNE - Vol.23 2017 in Busan COVER STORY SPEACIAL REPORT GUIDE POST PEOPLE & STORY ASSOCIATION NEWS Ҷ

More information

12이문규

12이문규 Review on Conservative Treatment of Spinal Scoliosis Moon-kyu Lee, O.M.D., Gil-jae Lee, O.M.D., Yun-kyung Song, O.M.D., Hyung-ho Lim, O.M.D. Dept. of Oriental Rehabilitation Medicine College of Oriental

More information

Research subject change trend analysis of Journal of Educational Information and Media Studies : Network text analysis of the last 20 years * The obje

Research subject change trend analysis of Journal of Educational Information and Media Studies : Network text analysis of the last 20 years * The obje Research subject change trend analysis of Journal of Educational Information and Media Studies : Network text analysis of the last 20 years * The objectives of this study are analyzing research trends

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 박건수 *, 서태영 **, 김종욱 *** ". 요약 Abstract The induction melting furnace using electric generator has been introduced since 1920s, and it began to be widely applied to industrial applications due to increasing

More information

12È«±â¼±¿Ü339~370

12È«±â¼±¿Ü339~370 http://www.kbc.go.kr/ k Si 2 i= 1 Abstract A Study on Establishment of Fair Trade Order in Terrestrial Broadcasting Ki - Sun Hong (Professor, Dept. of Journalism & Mass Communication,

More information

<32382DC3BBB0A2C0E5BED6C0DA2E687770>

<32382DC3BBB0A2C0E5BED6C0DA2E687770> 논문접수일 : 2014.12.20 심사일 : 2015.01.06 게재확정일 : 2015.01.27 청각 장애자들을 위한 보급형 휴대폰 액세서리 디자인 프로토타입 개발 Development Prototype of Low-end Mobile Phone Accessory Design for Hearing-impaired Person 주저자 : 윤수인 서경대학교 예술대학

More information

09권오설_ok.hwp

09권오설_ok.hwp (JBE Vol. 19, No. 5, September 2014) (Regular Paper) 19 5, 2014 9 (JBE Vol. 19, No. 5, September 2014) http://dx.doi.org/10.5909/jbe.2014.19.5.656 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a) Reduction

More information

디지털포렌식학회 논문양식

디지털포렌식학회 논문양식 ISSN : 1976-5304 http://www.kdfs.or.kr Virtual Online Game(VOG) 환경에서의 디지털 증거수집 방법 연구 이 흥 복, 정 관 모, 김 선 영 * 대전지방경찰청 Evidence Collection Process According to the Way VOG Configuration Heung-Bok Lee, Kwan-Mo

More information

03-ÀÌÁ¦Çö

03-ÀÌÁ¦Çö 25 3 (2004 9 ) J Korean Oriental Med 2004;25(3):20-31 1), 2), 3) 1) 2) 3) Grope for a Summary Program about Intellectual Property Protection of Traditional Knowledge (TK)etc. Discussed in WIPO Hwan-Soo

More information

서론 34 2

서론 34 2 34 2 Journal of the Korean Society of Health Information and Health Statistics Volume 34, Number 2, 2009, pp. 165 176 165 진은희 A Study on Health related Action Rates of Dietary Guidelines and Pattern of

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 한국소음진동공학회 2015추계학술대회논문집년 Study of Noise Pattern and Psycho-acoustics Characteristic of Household Refrigerator * * ** ** Kyung-Soo Kong, Dae-Sik Shin, Weui-Bong Jeong, Tae-Hoon Kim and Se-Jin Ahn Key Words

More information

(JBE Vol. 23, No. 1, January 2018) (Special Paper) 23 1, (JBE Vol. 23, No. 1, January 2018) ISSN 2287-

(JBE Vol. 23, No. 1, January 2018) (Special Paper) 23 1, (JBE Vol. 23, No. 1, January 2018)   ISSN 2287- (JBE Vol. 23, No. 1, January 2018) (Special Paper) 23 1, 2018 1 (JBE Vol. 23, No. 1, January 2018) https://doi.org/10.5909/jbe.2018.23.1.26 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) - a), a) A Scheme

More information

` Companies need to play various roles as the network of supply chain gradually expands. Companies are required to form a supply chain with outsourcing or partnerships since a company can not

More information

(JBE Vol. 21, No. 1, January 2016) (Regular Paper) 21 1, (JBE Vol. 21, No. 1, January 2016) ISSN 228

(JBE Vol. 21, No. 1, January 2016) (Regular Paper) 21 1, (JBE Vol. 21, No. 1, January 2016)   ISSN 228 (JBE Vol. 1, No. 1, January 016) (Regular Paper) 1 1, 016 1 (JBE Vol. 1, No. 1, January 016) http://dx.doi.org/10.5909/jbe.016.1.1.60 ISSN 87-9137 (Online) ISSN 16-7953 (Print) a), a) An Efficient Method

More information

°í¼®ÁÖ Ãâ·Â

°í¼®ÁÖ Ãâ·Â Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of

More information

05(533-537) CPLV12-04.hwp

05(533-537) CPLV12-04.hwp 모바일 OS 환경의 사용자 반응성 향상 기법 533 모바일 OS 환경의 사용자 반응성 향상 기법 (Enhancing Interactivity in Mobile Operating Systems) 배선욱 김정한 (Sunwook Bae) 엄영익 (Young Ik Eom) (Junghan Kim) 요 약 사용자 반응성은 컴퓨팅 시스템에서 가장 중요 한 요소 중에 하나이고,

More information

Journal of Educational Innovation Research 2018, Vol. 28, No. 4, pp DOI: * A S

Journal of Educational Innovation Research 2018, Vol. 28, No. 4, pp DOI:   * A S Journal of Educational Innovation Research 2018, Vol. 28, No. 4, pp.461-487 DOI: http://dx.doi.org/10.21024/pnuedi.28.4.201812.461 * - 2008 2018 - A Study on the Change of Issues with Adolescent Problem

More information

<30345F283439372D353034295F313135375FC0CCB5BFC8F15FB5B5B7CEC5CDB3CEC0C720B0BBB1B8BACE20B0E6B0FCBCB3B0E8B0A120C5CDB3CE20B3BBBACEC1B6B8ED2E687770>

<30345F283439372D353034295F313135375FC0CCB5BFC8F15FB5B5B7CEC5CDB3CEC0C720B0BBB1B8BACE20B0E6B0FCBCB3B0E8B0A120C5CDB3CE20B3BBBACEC1B6B8ED2E687770> J of Korean Tunn Undergr Sp Assoc 15(5)497-504(2013) eissn: 2287-4747 http://dx.doi.org/10.9711/ktaj.2013.15.5.497 pissn: 2233-8292 도로터널의 갱구부 경관설계가 터널 내부조명에 미치는 영향에 관한 연구 이미애 1 ㆍ이동희 2 * 1 아이라이트 대표이사 2

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Feb.; 29(2), IS

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Feb.; 29(2), IS THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Feb.; 29(2), 93 98. http://dx.doi.org/10.5515/kjkiees.2018.29.2.93 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) UHF-HF

More information

Analyses the Contents of Points per a Game and the Difference among Weight Categories after the Revision of Greco-Roman Style Wrestling Rules Han-bong

Analyses the Contents of Points per a Game and the Difference among Weight Categories after the Revision of Greco-Roman Style Wrestling Rules Han-bong Analyses the Contents of Points per a Game and the Difference among Weight Categories after the Revision of Greco-Roman Style Wrestling Rules Han-bong An 1 & Kyoo-jeong Choi 2 * 1 Korea National Wrestling

More information

Æ÷Àå½Ã¼³94š

Æ÷Àå½Ã¼³94š Cho, Mun Jin (E-mail: mjcho@ex.co.kr) ABSTRACT PURPOSES : The performance of tack coat, commonly used for layer interface bonding, is affected by application rate and curing time. In this study, bonding

More information

14.531~539(08-037).fm

14.531~539(08-037).fm G Journal of the Korea Concrete Institute Vol. 20, No. 4, pp. 531~539, August, 2008 š x y w m š gj p { sƒ z 1) * 1) w w Evaluation of Flexural Strength for Normal and High Strength Concrete with Hooked

More information

6.24-9년 6월

6.24-9년 6월 리눅스 환경에서Solid-State Disk 성능 최적화를 위한 디스크 입출력요구 변환 계층 김태웅 류준길 박찬익 Taewoong Kim Junkil Ryu Chanik Park 포항공과대학교 컴퓨터공학과 {ehoto, lancer, cipark}@postech.ac.kr 요약 SSD(Solid-State Disk)는 여러 개의 낸드 플래시 메모리들로 구성된

More information

012임수진

012임수진 Received : 2012. 11. 27 Reviewed : 2012. 12. 10 Accepted : 2012. 12. 12 A Clinical Study on Effect of Electro-acupuncture Treatment for Low Back Pain and Radicular Pain in Patients Diagnosed with Lumbar

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA The e-business Studies Volume 17, Number 6, December, 30, 2016:3~20 Received: 2016/12/04, Accepted: 2016/12/27 Revised: 2016/12/27, Published: 2016/12/30 [ABSTRACT] This study aims to comprehensively analyze

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 901 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 (A Effective Sinkhole Attack Detection Mechanism for LQI based Routing in WSN) 최병구 조응준 (Byung

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Dec.; 27(12),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Dec.; 27(12), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Dec.; 27(12), 1036 1043. http://dx.doi.org/10.5515/kjkiees.2016.27.12.1036 ISSN 1226-3133 (Print) ISSN 2288-226X (Online)

More information

<5B313132385D32303039B3E220C1A634B1C720C1A632C8A320B3EDB9AEC1F628C3D6C1BE292E687770>

<5B313132385D32303039B3E220C1A634B1C720C1A632C8A320B3EDB9AEC1F628C3D6C1BE292E687770> 디지털 영상에서의 자막추출을 이용한 자막 특성 분석에 관한 연구 이세열 * 요약 본 연구는 방송 프로그램 제작에 있어서 중요한 역할을 담당하고 있는 영상 자막의 특성과 영상 커 뮤니케이션 기능적인 관점에서 나타나고 있는 현상을 살펴본다. 다양한 방송 프로그램에서 활용되고 있는 디지털 영상 자막의 기능은 단순하게 간략한 정보를 전달하는 기능적인 역할을 수행하였다.

More information

03.Agile.key

03.Agile.key CSE4006 Software Engineering Agile Development Scott Uk-Jin Lee Division of Computer Science, College of Computing Hanyang University ERICA Campus 1 st Semester 2018 Background of Agile SW Development

More information

Output file

Output file connect educational content with entertainment content and that production of various contents inducing educational motivation is important. Key words: edutainment, virtual world, fostering simulation

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 6, Jun Rate). STAP(Space-Time Adaptive Processing)., -

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 6, Jun Rate). STAP(Space-Time Adaptive Processing)., - THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Jun.; 29(6), 457463. http://dx.doi.org/10.5515/kjkiees.2018.29.6.457 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Sigma-Delta

More information

, 2). 3),. II , 2 5. (game client software) (game server software). (character). (level up),,,, (item). (End User License Agreement, EULA.)

, 2). 3),. II , 2 5. (game client software) (game server software). (character). (level up),,,, (item). (End User License Agreement, EULA.) 자동사냥프로그램과저작권침해 - MDY Industries v. Blizzard Entertainment - * I. (MMORPG: Massively Multiplayer Online Role Playing Game, MMORPG.) MMORPG.,,.. 1), MMORPG World of Warcraft (WoW,.) Blizzard Entertainment,

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Mar.; 28(3),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Mar.; 28(3), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2017 Mar.; 28(3), 163 169. http://dx.doi.org/10.5515/kjkiees.2017.28.3.163 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) PCB

More information

1 : (Sunmin Lee et al.: Design and Implementation of Indoor Location Recognition System based on Fingerprint and Random Forest)., [1][2]. GPS(Global P

1 : (Sunmin Lee et al.: Design and Implementation of Indoor Location Recognition System based on Fingerprint and Random Forest)., [1][2]. GPS(Global P (JBE Vol. 23, No. 1, January 2018) (Regular Paper) 23 1, 2018 1 (JBE Vol. 23, No. 1, January 2018) https://doi.org/10.5909/jbe.2018.23.1.154 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) Design

More information

I

I I II III (C B ) (C L ) (HL) Min c ij x ij f i y i i H j H i H s.t. y i 1, k K, i W k C B C L p (HL) x ij y i, i H, k K i, j W k x ij y i {0,1}, i, j H. K W k k H K i i f i i d ij i j r ij i j c ij r ij

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA The e-business Studies Volume 17, Number 6, December, 30, 2016:237~251 Received: 2016/11/20, Accepted: 2016/12/24 Revised: 2016/12/21, Published: 2016/12/30 [ABSTRACT] Recently, there is an increasing

More information

歯1.PDF

歯1.PDF 200176 .,.,.,. 5... 1/2. /. / 2. . 293.33 (54.32%), 65.54(12.13%), / 53.80(9.96%), 25.60(4.74%), 5.22(0.97%). / 3 S (1997)14.59% (1971) 10%, (1977).5%~11.5%, (1986)

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA The e-business Studies Volume 17, Number 6, December, 30, 2016:275~289 Received: 2016/12/02, Accepted: 2016/12/22 Revised: 2016/12/20, Published: 2016/12/30 [ABSTRACT] SNS is used in various fields. Although

More information

<31362DB1E8C7FDBFF82DC0FABFB9BBEA20B5B6B8B3BFB5C8ADC0C720B1B8C0FC20B8B6C4C9C6C32E687770>

<31362DB1E8C7FDBFF82DC0FABFB9BBEA20B5B6B8B3BFB5C8ADC0C720B1B8C0FC20B8B6C4C9C6C32E687770> Journal of the Korea Academia-Industrial cooperation Society Vol. 13, No. 4 pp. 1525-1531, 2012 http://dx.doi.org/10.5762/kais.2012.13.4.1525 저예산 독립영화의 구전 마케팅을 위한 스마트폰 모바일 애플리케이션 모델 개발 연구 김혜원 1* 1 청운대학교

More information

3. 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발.hwp

3. 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발.hwp 보안공학연구논문지 Journal of Security Engineering Vol.11, No.4 (2014), pp.299-312 http://dx.doi.org/10.14257/jse.2014.08.03 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발 이강찬 1), 이승윤 2), 양희동 3), 박철우 4) Development of Service

More information

SW¹é¼Ł-³¯°³Æ÷ÇÔÇ¥Áö2013

SW¹é¼Ł-³¯°³Æ÷ÇÔÇ¥Áö2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING

More information

09김정식.PDF

09김정식.PDF 00-09 2000. 12 ,,,,.,.,.,,,,,,.,,..... . 1 1 7 2 9 1. 9 2. 13 3. 14 3 16 1. 16 2. 21 3. 39 4 43 1. 43 2. 52 3. 56 4. 66 5. 74 5 78 1. 78 2. 80 3. 86 6 88 90 Ex e cu t iv e Su m m a r y 92 < 3-1> 22 < 3-2>

More information

인문사회과학기술융합학회

인문사회과학기술융합학회 Asia-pacific Journal of Multimedia Services Convergent with Art, Humanities, and Sociology Vol.6, No.2, February (2016), pp. 325-332 http://dx.doi.org/10.14257/ajmahs.2016.09 한국의 대학운영제도 변화를 위한 K-MOOC 활용방안에

More information

1. 서론 1-1 연구 배경과 목적 1-2 연구 방법과 범위 2. 클라우드 게임 서비스 2-1 클라우드 게임 서비스의 정의 2-2 클라우드 게임 서비스의 특징 2-3 클라우드 게임 서비스의 시장 현황 2-4 클라우드 게임 서비스 사례 연구 2-5 클라우드 게임 서비스에

1. 서론 1-1 연구 배경과 목적 1-2 연구 방법과 범위 2. 클라우드 게임 서비스 2-1 클라우드 게임 서비스의 정의 2-2 클라우드 게임 서비스의 특징 2-3 클라우드 게임 서비스의 시장 현황 2-4 클라우드 게임 서비스 사례 연구 2-5 클라우드 게임 서비스에 IPTV 기반의 클라우드 게임 서비스의 사용성 평가 - C-Games와 Wiz Game 비교 중심으로 - Evaluation on the Usability of IPTV-Based Cloud Game Service - Focus on the comparison between C-Games and Wiz Game - 주 저 자 : 이용우 (Lee, Yong Woo)

More information

학습영역의 Taxonomy에 기초한 CD-ROM Title의 효과분석

학습영역의 Taxonomy에 기초한 CD-ROM Title의 효과분석 ,, Even the short history of the Web system, the techniques related to the Web system have b een developed rapidly. Yet, the quality of the Webbased application software has not improved. For this reason,

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 논문 10-35-08-15 한국통신학회논문지 '10-08 Vol.35 No. 8 건설생산성 향상을 위한 건설현장 내 RFID 네트워크 시스템 적용 방안 준회원 김 신 구*, 정회원 이 충 희*, 이 성 형*, 종신회원 김 재 현* Method of RFID Network System Application for Improving of Construction

More information

Journal of Educational Innovation Research 2018, Vol. 28, No. 1, pp DOI: * A Analysis of

Journal of Educational Innovation Research 2018, Vol. 28, No. 1, pp DOI: * A Analysis of Journal of Educational Innovation Research 2018, Vol. 28, No. 1, pp.99-117 DOI: http://dx.doi.org/10.21024/pnuedi.28.1.201803.99 2015 * A Analysis of the Characters and Issues about the 2015 Revised Social

More information

Issue 두 가지 상대적 관점에서 검토되고 있다. 특히, 게임 중독에 대한 논의는 그 동안 이를 개인의 심리적 차원에서 접근해왔던 것에서 벗어나 청소년에 대한 사회문화 및 정보 리터러시(literacy) 교육의 방향이라든 지 나아가 게임중독과 관련한 사회구조적인 또는

Issue 두 가지 상대적 관점에서 검토되고 있다. 특히, 게임 중독에 대한 논의는 그 동안 이를 개인의 심리적 차원에서 접근해왔던 것에서 벗어나 청소년에 대한 사회문화 및 정보 리터러시(literacy) 교육의 방향이라든 지 나아가 게임중독과 관련한 사회구조적인 또는 ISSUE ANALYSIS 게임중독인가? 몰입인가? - 진흥과 중독예방의 상대적 비교 관점에서 최정일 / 숭실대학교 경영학부 교수, (사)미디어미래연구소 부소장, jichoi1009@naver.com 1. 서 언 온라인 및 모바일 접속 환경이 급속히 보편화됨에 따라 특정 미디 어와 어플리케이션(applications)을 오랫동안 그리고 지속적으로 사 용함으로써

More information

Lumbar spine

Lumbar spine Lumbar spine CT 32 111 DOI : 10.3831/KPI.2010.13.2.111 Lumbar Spine CT 32 Received : 10. 05. 23 Revised : 10. 06. 04 Accepted : 10. 06. 11 Key Words: Disc herniation, CT scan, Clinical analysis The Clinical

More information

10(3)-09.fm

10(3)-09.fm w y wz 10«3y 253~258 (2010.12.) Journal of Korean Society of Urban Environment ³ w Á» Á Á y w y œw (2010 11 22, 2010 12 9 k) Study on Determine of Detention Pond in Small Developed Area In-Soo Chang ½

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Sep.; 30(9),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Sep.; 30(9), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2019 Sep.; 30(9), 712 717. http://dx.doi.org/10.5515/kjkiees.2019.30.9.712 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) MOS

More information

04 최진규.hwp

04 최진규.hwp THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Aug.; 26(8), 710717. http://dx.doi.org/10.5515/kjkiees.2015.26.8.710 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) RF ESPAR

More information

09È«¼®¿µ 5~152s

09È«¼®¿µ5~152s Korean Journal of Remote Sensing, Vol.23, No.2, 2007, pp.45~52 Measurement of Backscattering Coefficients of Rice Canopy Using a Ground Polarimetric Scatterometer System Suk-Young Hong*, Jin-Young Hong**,

More information

Windows 8에서 BioStar 1 설치하기

Windows 8에서 BioStar 1 설치하기 / 콘텐츠 테이블... PC에 BioStar 1 설치 방법... Microsoft SQL Server 2012 Express 설치하기... Running SQL 2012 Express Studio... DBSetup.exe 설정하기... BioStar 서버와 클라이언트 시작하기... 1 1 2 2 6 7 1/11 BioStar 1, Windows 8 BioStar

More information

04 김영규.hwp

04 김영규.hwp THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 214 Nov.; 25(11), 1121 1127. http://dx.doi.org/1.5515/kjkiees.214.25.11.1121 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Planar

More information

<30312DC1A4BAB8C5EBBDC5C7E0C1A420B9D720C1A4C3A52DBDC5C1F82E687770>

<30312DC1A4BAB8C5EBBDC5C7E0C1A420B9D720C1A4C3A52DBDC5C1F82E687770> Journal of the Korea Institute of Information and Communication Engineering 한국정보통신학회논문지(J. Korea Inst. Inf. Commun. Eng.) Vol. 19, No. 3 : 493~499 Mar. 2015 이동통신정책의 공공선택 분석 신진 * The Public Choice Analysis

More information

(JBE Vol. 23, No. 1, January 2018). (VR),. IT (Facebook) (Oculus) VR Gear IT [1].,.,,,,..,,.. ( ) 3,,..,,. [2].,,,.,,. HMD,. HMD,,. TV.....,,,,, 3 3,,

(JBE Vol. 23, No. 1, January 2018). (VR),. IT (Facebook) (Oculus) VR Gear IT [1].,.,,,,..,,.. ( ) 3,,..,,. [2].,,,.,,. HMD,. HMD,,. TV.....,,,,, 3 3,, 1 : : (Deokwoo Lee: Recent Advances in Virtual and Augmented Reality for Broadcast Production: Focused on In-depth Interviews) (Special Paper) 23 1, 2018 1 (JBE Vol. 23, No. 1, January 2018) https://doi.org/10.5909/jbe.2018.23.1.11

More information

<332EC0E5B3B2B0E62E687770>

<332EC0E5B3B2B0E62E687770> 한국패션디자인학회지 제12권 4호 Journal of the Korean Society of Fashion Design Vol. 12 No. 4 (2012) pp.29-43 모바일 패션도구로서 어플리케이션의 활용 실태 장 남 경 한세대학교 디자인학부 섬유패션디자인전공 조교수 요 약 본 연구는 스마트폰의 패션관련 어플리케이션의 현황을 조사하고 유형과 특징을 분석하여,

More information

인문사회과학기술융합학회

인문사회과학기술융합학회 Asia-pacific Journal of Multimedia Services Convergent with Art, Humanities, and Sociology Vol.5, No.4, August (2015), pp.631-648 http://dx.doi.org/10.14257/ajmahs.2015.08.77 보육의 위기적 현상과 재난안전관리의 문제점 조망

More information

04김호걸(39~50)ok

04김호걸(39~50)ok Journal of Environmental Impact Assessment, Vol. 22, No. 1(2013) pp.39~50 Prediction of Landslides Occurrence Probability under Climate Change using MaxEnt Model Kim, Hogul* Lee, Dong-Kun** Mo, Yongwon*

More information

(JBE Vol. 23, No. 2, March 2018) (Special Paper) 23 2, (JBE Vol. 23, No. 2, March 2018) ISSN

(JBE Vol. 23, No. 2, March 2018) (Special Paper) 23 2, (JBE Vol. 23, No. 2, March 2018)   ISSN (Special Paper) 23 2, 2018 3 (JBE Vol. 23, No. 2, March 2018) https://doi.org/10.5909/jbe.2018.23.2.246 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) CNN a), a), a) CNN-Based Hand Gesture Recognition

More information

#Ȳ¿ë¼®

#Ȳ¿ë¼® http://www.kbc.go.kr/ A B yk u δ = 2u k 1 = yk u = 0. 659 2nu k = 1 k k 1 n yk k Abstract Web Repertoire and Concentration Rate : Analysing Web Traffic Data Yong - Suk Hwang (Research

More information

<333820B1E8C8AFBFEB2D5A6967626565B8A620C0CCBFEBC7D120BDC7BFDC20C0A7C4A1C3DFC1A42E687770>

<333820B1E8C8AFBFEB2D5A6967626565B8A620C0CCBFEBC7D120BDC7BFDC20C0A7C4A1C3DFC1A42E687770> Journal of the Korea Academia-Industrial cooperation Society Vol. 13, No. 1 pp. 306-310, 2012 http://dx.doi.org/10.5762/kais.2012.13.1.306 Zigbee를 이용한 실외 위치추정 시스템 구현 김환용 1*, 임순자 1 1 원광대학교 전자공학과 Implementation

More information

(JBE Vol. 23, No. 6, November 2018) (Special Paper) 23 6, (JBE Vol. 23, No. 6, November 2018) ISSN 2

(JBE Vol. 23, No. 6, November 2018) (Special Paper) 23 6, (JBE Vol. 23, No. 6, November 2018)   ISSN 2 (JBE Vol. 23, No. 6, November 2018) (Special Paper) 23 6, 2018 11 (JBE Vol. 23, No. 6, November 2018) https://doi.org/10.5909/jbe.2018.23.6.790 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) ATSC 3.0 UHD

More information

ePapyrus PDF Document

ePapyrus PDF Document Game Industry Trend 5 Global Game Trend 6 Game Industry Trend Game Industry Trend 7 Global Game Trend 8 Game Industry Trend Game Industry Trend 9 Global Game Trend 10 Game Industry Trend Game Industry

More information

목 차 회사현황 1. 회사개요 2. 회사연혁 3. 회사업무영역/업무현황 4. 등록면허보유현황 5. 상훈현황 6. 기술자보유현황 7. 시스템보유현황 주요기술자별 약력 1. 대표이사 2. 임원짂 조직 및 용도별 수행실적 1. 조직 2. 용도별 수행실적

목 차 회사현황 1. 회사개요 2. 회사연혁 3. 회사업무영역/업무현황 4. 등록면허보유현황 5. 상훈현황 6. 기술자보유현황 7. 시스템보유현황 주요기술자별 약력 1. 대표이사 2. 임원짂 조직 및 용도별 수행실적 1. 조직 2. 용도별 수행실적 用 役 指 名 願 금번 貴 社 에서 실시하고자 하는 用 役 에 참여하고자 當 社 의 指 名 願 을 提 出 하오니 審 査 하시고 指 名 하여 주시면 감사하겠습니다. 2014년 (주)하우드 엔지니어링 종합건축사사무소 대표이사 문 홍 길 대표이사 채 희 대표이사 이 재 규 대표이사 김 성 우 SUBMISSION We are submitting our brochure

More information

1. KT 올레스퀘어 미디어파사드 콘텐츠 개발.hwp

1. KT 올레스퀘어 미디어파사드 콘텐츠 개발.hwp Journal of Next-generation Convergence Information Services Technology Vol.4, No.1, June (2015), pp. 1-8 차세대컨버전스정보서비스기술논문지 KT 올레스퀘어 미디어파사드 콘텐츠 개발 Media Fasade Contents Development of KT Olleh Square 김동조

More information

Study on the Improvement of Management System through Analysis of golf semi- market: Focus on Physical Education Facility Act Ji-Myung Jung 1, Ju-Ho Park 2 *, & Youngdae Lee 3 1 Korea Institute of Sport

More information

Microsoft Word - KSR2012A021.doc

Microsoft Word - KSR2012A021.doc YWXY G ºG ºG t G G GGGGGGGGGrzyYWXYhWYXG Ÿƒ Ÿ ± k ¹Ÿˆ Review about the pantograph field test result adapted for HEMU-430X (1) ÕÕÛ äñ ã G Ki-Nam Kim, Tae-Hwan Ko * Abstract In this paper, explain differences

More information

Journal of Educational Innovation Research 2019, Vol. 29, No. 1, pp DOI: : * Research Subject

Journal of Educational Innovation Research 2019, Vol. 29, No. 1, pp DOI:   : * Research Subject Journal of Educational Innovation Research 2019, Vol. 29, No. 1, pp.91-116 DOI: http://dx.doi.org/10.21024/pnuedi.29.1.201903.91 : * Research Subject Trend Analysis on Educational Innovation with Network

More information

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월 지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., 2004 5 2009 12 KOSPI200.,. * 2009. 지능정보연구제 16 권제 1 호 2010 년 3 월 김선웅 안현철 社 1), 28 1, 2009, 4. 1. 지능정보연구제 16 권제 1 호 2010 년 3 월 Support

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Mar.; 25(3),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Mar.; 25(3), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2014 Mar.; 25(3), 304310. http://dx.doi.org/10.5515/kjkiees.2014.25.3.304 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Analysis

More information

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one

More information