• Title/Summary/Keyword: path length

Search Result 791, Processing Time 0.027 seconds

Optimized Path Finding Algorithm for Walking Convenience of the People with Reduced Mobility (교통약자의 이동편의를 위한 최적경로 탐색 기법)

  • Moon, Mikyeong;Lee, Youngmin;Yu, Kiyun;Kim, Jiyoung
    • Journal of the Korean Society of Surveying, Geodesy, Photogrammetry and Cartography
    • /
    • v.34 no.3
    • /
    • pp.273-282
    • /
    • 2016
  • There has been growing social interest recently in the movement rights of people with reduced mobility. However, it simply eliminates the temporary inconvenience of walking of people with reduced mobility because it focuses only on supply of institutional facilities. Therefore, we look forward to improving movement welfare by proposing an optimized path finding algorithm for people with reduced mobility that takes into consideration physical elements affecting their movement, such as slope, steps etc. We selected Walking barrier factor by analyzing previous studies and calculated the relative importance of Walking barrier factors using an Analytic Hierarchy Process(AHP). Next, through the fuzzy system, the Walking disturbance level of link, which integrates the weights of Walking barrier factors and the attributes of each link, is derived. Then, Walking path cost that takes into consideration the ‘length’ factors is calculated and an optimized path for people with reduced mobility is searched using Dijkstra’s Algorithm. Nineteen different paths were searched and we confirmed that the derived paths are meaningful in terms of improving the mobility of people with reduced mobility by conducting a field test. We look forward to improving movement welfare by providing a navigation service using the path finding algorithm proposed in this study.

A Strategy of the Link Saving Routing and Its Characteristics for QoS Aware Energy Saving(QAES) in IP Networks (IP Network에서 QoS Aware Energy Saving(QAES)을 위한 링크 절약 라우팅의 한 방법 및 특성)

  • Han, Chimoon;Kim, Sangchul
    • Journal of the Institute of Electronics and Information Engineers
    • /
    • v.51 no.5
    • /
    • pp.76-87
    • /
    • 2014
  • Today the energy consumption of ICT networks is about 10% of the worldwide power consumption and is predicted to increase remarkably in the near future. For this reason, this paper studies energy saving strategies assuring the network-level QoS. In the strategies, the energy consumption of NIC(network interface card) on both endpoint of links decreases by selecting links and making them sleep when the total traffic volume of the IP network is lower than a threshold. In this paper, we propose a heuristic routing algorithm based on so-called delegating/delegated routers, and evaluate its characteristics using computer simulation considering network-level QoS. The selection of sleep links is determined in terms of the number of traffic paths (called min_used path) or the amount of traffics(called min_used traffic) through those kinks. To our experiment, the min_used traffic method shows a little better energy saving but the increased path length compared to the min_used path method. Those two methods have better energy saving characteristics than the random method. This paper confirms that the delegating/delegated router-based routing algorithm results in energy saving effects and sustains network-level QoS in IP networks.

A Real-time Point-to-Point Shortest Path Search Algorithm Based on Traveling Time (주행시간 기반 실시간 점대점 최단경로 탐색 알고리즘)

  • Lee, Sang-Un
    • The Journal of the Institute of Internet, Broadcasting and Communication
    • /
    • v.12 no.4
    • /
    • pp.131-140
    • /
    • 2012
  • The shortest path search algorithm of navigation is generally based on Dijkstra algorithm and considers only the distance using the weight. Dijkstra algorithm based on the distance mainly ought to perform the 'number of nodes 1' and requires a lot of memory, for it is to start from the starting node and to decide the shortest path for all the nodes. Also, it searches only the same identical path in case of any bottleneck due to an accident nearby, since it is based only on the distance, and hence does not have a system that searches the detour road. In order to solve this problem, this paper considers only the travelling time per road (travelling speed * distance), without applying speed criteria (smoothness, slow speed, stagnation and accident control) or road class (express road, national road and provincial road). This provides an advantage of searching the detour, considering the reality that there are differences in time take for the car to travel on different roads with same distance, due to any accident, stagnation, or repair construction. The suggested algorithm proves that it can help us to reach the destination within the shortest time, making a detour from any congested road (outbreak) on providing an information on traveling time continuously(real-time) even though there is an accident in a particular road.

Query-based Answer Extraction using Korean Dependency Parsing (의존 구문 분석을 이용한 질의 기반 정답 추출)

  • Lee, Dokyoung;Kim, Mintae;Kim, Wooju
    • Journal of Intelligence and Information Systems
    • /
    • v.25 no.3
    • /
    • pp.161-177
    • /
    • 2019
  • In this paper, we study the performance improvement of the answer extraction in Question-Answering system by using sentence dependency parsing result. The Question-Answering (QA) system consists of query analysis, which is a method of analyzing the user's query, and answer extraction, which is a method to extract appropriate answers in the document. And various studies have been conducted on two methods. In order to improve the performance of answer extraction, it is necessary to accurately reflect the grammatical information of sentences. In Korean, because word order structure is free and omission of sentence components is frequent, dependency parsing is a good way to analyze Korean syntax. Therefore, in this study, we improved the performance of the answer extraction by adding the features generated by dependency parsing analysis to the inputs of the answer extraction model (Bidirectional LSTM-CRF). The process of generating the dependency graph embedding consists of the steps of generating the dependency graph from the dependency parsing result and learning the embedding of the graph. In this study, we compared the performance of the answer extraction model when inputting basic word features generated without the dependency parsing and the performance of the model when inputting the addition of the Eojeol tag feature and dependency graph embedding feature. Since dependency parsing is performed on a basic unit of an Eojeol, which is a component of sentences separated by a space, the tag information of the Eojeol can be obtained as a result of the dependency parsing. The Eojeol tag feature means the tag information of the Eojeol. The process of generating the dependency graph embedding consists of the steps of generating the dependency graph from the dependency parsing result and learning the embedding of the graph. From the dependency parsing result, a graph is generated from the Eojeol to the node, the dependency between the Eojeol to the edge, and the Eojeol tag to the node label. In this process, an undirected graph is generated or a directed graph is generated according to whether or not the dependency relation direction is considered. To obtain the embedding of the graph, we used Graph2Vec, which is a method of finding the embedding of the graph by the subgraphs constituting a graph. We can specify the maximum path length between nodes in the process of finding subgraphs of a graph. If the maximum path length between nodes is 1, graph embedding is generated only by direct dependency between Eojeol, and graph embedding is generated including indirect dependencies as the maximum path length between nodes becomes larger. In the experiment, the maximum path length between nodes is adjusted differently from 1 to 3 depending on whether direction of dependency is considered or not, and the performance of answer extraction is measured. Experimental results show that both Eojeol tag feature and dependency graph embedding feature improve the performance of answer extraction. In particular, considering the direction of the dependency relation and extracting the dependency graph generated with the maximum path length of 1 in the subgraph extraction process in Graph2Vec as the input of the model, the highest answer extraction performance was shown. As a result of these experiments, we concluded that it is better to take into account the direction of dependence and to consider only the direct connection rather than the indirect dependence between the words. The significance of this study is as follows. First, we improved the performance of answer extraction by adding features using dependency parsing results, taking into account the characteristics of Korean, which is free of word order structure and omission of sentence components. Second, we generated feature of dependency parsing result by learning - based graph embedding method without defining the pattern of dependency between Eojeol. Future research directions are as follows. In this study, the features generated as a result of the dependency parsing are applied only to the answer extraction model in order to grasp the meaning. However, in the future, if the performance is confirmed by applying the features to various natural language processing models such as sentiment analysis or name entity recognition, the validity of the features can be verified more accurately.

Growth Characteristics of Ultrahigh-density Microalgal Cultures

  • Richmond, Amos
    • Biotechnology and Bioprocess Engineering:BBE
    • /
    • v.8 no.6
    • /
    • pp.349-353
    • /
    • 2003
  • The physiological characteristics of cultures of very high cell mass (e.g. 10g cell mass/L), termed“ultrahigh cell density cultures”is reviewed. A close relationship was found between the length of the optical path (OP) in flat-plate reactors and the optimal cell density of the culture as well as its areal (g m$\^$-2/ day$\^$-1/) productivity. Cell-growth inhibition (GI) unfolds as culture density surpasses a certain threshold. If it is constantly relieved, a 1.0cm OP reactor could produce ca. 50% more than reactors with longer OP, e.g. 5 or 10cm. This unique effect, discovered by Hu et al. [3], is explained in terms of the relationships between the frequency of the light-dark cycle (L-D cycle), cells undergo in their travel between the light and dark volumes in the reactor, and the turnover time of the photosynthetic center (PC). In long OP reactors (5cm and above) the L-D cycle time may be orders of magnitude longer than the PC turnover time, resulting in a light regime in which the cells are exposed along the L-D cycle, to long, wasteful dark periods. In contrast, in reactors with an OP of ca. 1.0 cm, the L-D cycle frequency approaches the PC turnover time resulting in a significant reduction of the wasteful dark exposure time, thereby inducing a surge in photosynthetic efficiency. Presently, the major difficulty in mass cultivation of ultrahigh-density culture (UHDC) concerns cell growth inhibition in the culture, the exact nature of which is awaiting detailed investigation.

Characteristic of Fatigue Crack Behavior on the Mixed-Mode in Aluminum Alloy 5083-O

  • Kim, Gun-Ho;Cho, Kyu-Chun;Lee, Ho-Yeon;Won, Young-Jun
    • Journal of Advanced Marine Engineering and Technology
    • /
    • v.35 no.7
    • /
    • pp.899-906
    • /
    • 2011
  • Generally, load conditions of machine or structure in fatigue destruction is occurred not under single load conditions but under mixed load conditions. However, the experiment under mixing mode is insufficient because of no having test standard to the behavior of crack under mixing mode and variety of test methods, and many tests are required. In this paper measured crack direction path by created figure capture system when a experiment. Also, we studied by comparison the behavior of crack giving the change of stress ratio and inserting beach mark. Through the test under mixing mode, advancing path of crack is indicated that advancing inclined angle ${\Theta}$ (direction of specimen length) has increased depending on the increase of mixed mode impaction. It is indicated that according to the increase of mixed mode loading condition impaction under mixing mode, advancing speed of crack gets slow. Also, we found that inner crack(cross section of specimen) is progressed more rapidly than outer crack based on data through beach mark.

Comprehensive evaluation of structural geometrical nonlinear solution techniques Part I: Formulation and characteristics of the methods

  • Rezaiee-Pajand, M.;Ghalishooyan, M.;Salehi-Ahmadabad, M.
    • Structural Engineering and Mechanics
    • /
    • v.48 no.6
    • /
    • pp.849-878
    • /
    • 2013
  • This paper consists of two parts, which broadly examines solution techniques abilities for the structures with geometrical nonlinear behavior. In part I of the article, formulations of several well-known approaches will be presented. These solution strategies include different groups, such as: residual load minimization, normal plane, updated normal plane, cylindrical arc length, work control, residual displacement minimization, generalized displacement control, modified normal flow, and three-parameter ellipsoidal, hyperbolic, and polynomial schemes. For better understanding and easier application of the solution techniques, a consistent mathematical notation is employed in all formulations for correction and predictor steps. Moreover, other features of these approaches and their algorithms will be investigated. Common methods of determining the amount and sign of load factor increment in the predictor step and choosing the correct root in predictor and corrector step will be reviewed. The way that these features are determined is very important for tracing of the structural equilibrium path. In the second part of article, robustness and efficiency of the solution schemes will be comprehensively evaluated by performing numerical analyses.

A Novel Electrostatic Discharge (ESD) Protection Device by Current Feedback Using $0.18\;{\mu}m$ Process ($0.18\;{\mu}m$ 공정에서 전류 피드백을 이용한 새로운 구조의 정전기 보호 소자에 관한 연구)

  • Bae, Young-Seok;Lee, Jae-In;Jung, Eun-Sik;Sung, Man-Young
    • Proceedings of the Korean Institute of Electrical and Electronic Material Engineers Conference
    • /
    • 2009.06a
    • /
    • pp.3-4
    • /
    • 2009
  • As device process technology advances, effective channel length, the thickness of gate oxide, and supply voltage decreases. This paper describes a novel electrostatic discharge (ESD) protection device which has current feedback for high ESD immunity. A conventional Gate-Grounded NMOS (GGNMOS) transistor has only one ESD current path, which makes, the core circuit be in the safe region, so an GGNMOS transistor has low current immunity compared with our device which has current feedback path. To simulate our device, we use conventional $0.18\;{\mu}m$ technology parameters with a gate oxide thickness of $43\;{\AA}$ and power supply voltage of 1.8 V. Our simulation results indicate that the area of our ESD protection, device can be smaller than a GGNMOS transistor, and ESD immunity is better than a GGNMOS transistor.

  • PDF

Information obtainable from transmission measurements of carbohydrates in the range from 200 to 1700 nm using water, heavy water ($D_20$) or dimethylsulfoxide (DMSO) as solvents

  • Bernhard Tauscher;Robert B.Jordan;Peter Butz;Carola Merkel
    • Proceedings of the Korean Society of Near Infrared Spectroscopy Conference
    • /
    • 2001.06a
    • /
    • pp.1518-1518
    • /
    • 2001
  • In the area of the destruction-free NIR analysis of fruit and vegetables development has not yet progressed as far as in grain and similar products. One reason for that is, that in contrast to grains, in fruit and vegetables water appears as the outstanding main-component making up typically 80% by weight of the fruit. Of the M absorption spectrum of pure water the bands at 1450, 970 and 760 nm are the first, second and third overtones respectively of O-H stretch while those at 1940 and 1190 are combination bands involving O-H stretch and O-H bend. The choice of band for spectrometry is governed by considerations of sensitivity and selectivity. The overtone bands are satisfactory for use in moisture measurements from 0 to 4 % depending on path length. Measurements in fruits and vegetables at wavelength areas that are also important for the determination of carbohydrates (sucrose, glucose, fructose) often lead to total absorption in the presence of significant water even if short path lengths are possible. In this work model systems are used containing different carbohydrates in solvents like heavy water (D$_2$O) or dimethylsulfoxide (DMSO) that do not contain O-H functional groups.

  • PDF

A Study on the Mandibular Movements in the Patients with TMJ Lock Closed (악관절 폐구성 과두걸림 환자의 하악운동에 관한 연구)

  • Ji-Won Lee;Sung-Chang Chung
    • Journal of Oral Medicine and Pain
    • /
    • v.15 no.1
    • /
    • pp.79-89
    • /
    • 1991
  • The author examined the patterns and various ranges of mandibular movements in TMJ lock closed patients in the frontal, sagittal and horizontal plane and obtained the following results. 1. In the frontal trajectory, the mean amount of maximum mouth opening was 24.4mm and the opening paths were deviated to the affected side in 87.1% of the patients. The mean amount of maximum laterotrusion to the affected side was 10.4mm and that of non-affected side was 7.5mm. There was a significant difference between them(p<0.001). 2. In the sagittal trajectory, the mean amount of the maximum protrusion was 7.0mm, the mean amount of the maximal retrusion was 1.0mm 3. In the horizontal trajectory, the pattern of laterotrusion showed asymmetry: the mean length of non-affected side was smaller than that of the affected side. Protrusive path were deviated to the affected side in 64.5% of the patients, the mean degree of deviation was 16.4$^{\circ}$. The mandibular movements of TMJ lock-closed patients can be characterized by decreased range of mouth opening, protrusive movement, and laterotrusive movement to the non-affected side and also characterized by deviated opening and protrusive path to the affected side.

  • PDF