令和元年度 ( 第 19 回 ) 電子航法研究所研究発表会 5 1 Introduction The introduction of area navigation (RNAV) removed the need for aircraft to fly between ground-based ra

Size: px
Start display at page:

Download "令和元年度 ( 第 19 回 ) 電子航法研究所研究発表会 5 1 Introduction The introduction of area navigation (RNAV) removed the need for aircraft to fly between ground-based ra"

Transcription

1 5 1 Introduction The introduction of area navigation (RNAV) removed the need for aircraft to fly between ground-based radio navigation aids. As air traffic management (ATM) moves towards trajectorybased operations (TBO), flight route flexibility will further increase and the fixed network of Air Traffic Service (ATS) routes will be reduced. In Europe, Free Route Airspace (FRA) [1] exists where operators may plan routes between FRA entry and exit points, either direct or via intermediate points, without reference to fixed routes [2]. In the North Pacific oceanic area (fig. 1), there is a flexible track area in which the Japan Civil Aviation Bureau (JCAB) and Federal Aviation Authority (FAA) publish PACOTS (Pacific Organized Track System) tracks on 24-hour cycles which are computed according to forecast winds and tailored to specific aircraft types and city pairs, and operators may also plan User-Preferred Routes (UPR) between latitude/longitude waypoints. Aircraft operators can use this increasing routing flexibility to plan routes that are tailored more closely to their operations. For air transport, this typically means reducing operating cost by minimizing distance or time flown. For relatively short flights (say, three hours or less), in the absence of strong winds the fuel saving benefit of a minimum fuel route compared to a minimum time route is relatively small. However, as the distance from origin to destination increases, the benefit of routes that take account of winds aloft grows. Exploiting flexible routing fully requires creating windoptimal flight plans, but not all aircraft operators have such a capability, and we believe that demand for such a capability will grow. Commercial flight planning services exist, and so practical techniques to create wind-optimal routes have already been developed. However, there is little literature and they are likely to be considered as trade secrets. Building on research by Kyushu University, we have developed a program that can generate ideal wind-optimal trajectories [3] and used it in various investigations to demonstrate potential benefits of TBO [4, 5]. However, the program can take a long time to converge on the optimal trajectory, and it is difficult to include operational constraints. We propose a method based on shortest-path graph search as a practical means of generating nearoptimal trajectories that satisfy operational constraints [6], and apply it to optimal track generation in the North Pacific, which is one of our areas of research. 2 Ideal Trajectory Generation We have developed a Dynamic Programming (DP)-based optimal trajectory generator that iteratively searches for a trajectory that minimizes a cost function representing a trade-off between fuel burn and flight time [3]. From an initial trajectory (a Great Circle between specified initial and final points with specified altitudes and speeds), it constructs a grid of points around the trajectory in a search space of lateral profile (downrange, crossrange), vertical profile (altitude) and speed. The costs to move from the initial point to each of a set of candidate grid points in the next downrange step are computed using the EUROCONTROL Base of Aircraft Data (BADA) aircraft performance model and performance parameters and atmospheric data, and the point with the lowest cost is selected as the next point on the trajectory. This proceeds downrange until a new trajectory has been created between the terminal points, and its time/distance are compared with the initial trajectory. If the difference is sufficiently small, the created trajectory _ 本文.indd /05/24 14:47:43 83

2 Figure 1: North Pacific oceanic airspace (from [6]) is considered the optimal solution and the process terminates; otherwise the created trajectory is set as the new initial trajectory and the process iterates. This algorithm is useful for generating ideal optimal trajectories, but it is difficult to apply constraints such as the need to avoid certain airspaces or to follow a specified vertical or speed profile. We have attempted to modify the cost function to give a very high penalty if such a constraint is exceeded, but this can lead to trajectory anomalies such as lateral or vertical zig-zagging, and is hard to apply in general. Moreover, the optimization is computationally intensive, and the number of iterations required seems to be somewhat sensitive to atmospheric conditions (a sample of 147 flights from Tokyo to Honolulu on 12 different days with six aircraft types took between 1h45m and 19h24m per trajectory, with an average time of 9h9m on an Intel Xeon processor-based cluster). These drawbacks make the algorithm impractical for flight planning. 3 Shortest-Path Graph Search For flight planning purposes, searching a large parameter space is too time-consuming at present, so it is necessary to limit the search space and make simplifications. Although the resulting trajectories may not be strictly optimal, they may be sufficiently close that estimation errors due to uncertainties in weather, takeoff weight and departure time will be generally larger than the gap between a generated trajectory and the true optimum. Our idea is to represent possible lateral flight routes between departure and arrival points as a two-dimensional graph of vertices (nodes) and edges. This greatly reduces the lateral search space, can be easily made compatible with existing flight _ 本文.indd /05/24 14:47:43 84

3 planning and navigation systems (by using as vertices existing significant points or radio navigation aids, or latitude/longitude coordinates), and makes it easy to apply certain types of ATM restrictions; for example, route direction and altitude constraints along particular edges, and avoiding restricted-use airspaces or areas of forecast severe weather, turbulence or volcanic ash. These constraints could be dynamic. Finding an optimal route then involves computing the shortest path through the graph between origin and destination vertices using a standard graph-search algorithm, but using a cost function (fuel burn, flight time, or a combination thereof) as the metric in place of Euclidian distance. 4 Implementation and Results To test the feasibility of the concept, we applied it to a study of North Pacific oceanic flight operations. The North Pacific free route area (in which UPR is permitted) was represented as a mesh of east-west edges between a grid of vertices at intervals of 1º latitude and 5º longitude. This was connected to oceanic gateway points off the east coast of Japan and the west coast of North America. We made the following further simplifications. (1) Calculate the cruise phase only. Graph - Westbound Graph - Eastbound PACOTS - Westbound PACOTS - Eastbound QAR Figure 2: Minimum time tracks generated by our program (orange), PACOTS tracks (gray) and track of an aircraft executing DARP (purple). (2) Constant altitude. (3) Constant true airspeed or Mach number. These simplifications eliminate the vertical and speed dimensions from the search space. (The PACOTS tracks published daily by the United States Federal Aviation Authority and the Japan Civil Aviation Bureau are generated with similar simplifications.) As the search algorithm, we used Dijkstra's algorithm as it is easy to implement. For wind data, we used Global Spectral Model (GSM) numerical forecasts published by the Japan Meteorological Agency (JMA). Aircraft performance was calculated using BADA version 3. The program was implemented in python. Figure 2 shows published PACOTS tracks in the North Pacific flexible track area on a day in January 2017 (gray), corresponding minimum-time tracks computed by our program (orange) and the track of a Boeing aircraft flying from Honolulu to Tokyo that executed a Dynamic Re- Route Procedure (DARP), changing its flight plan en route to take advantage of more recent wind forecasts (purple, obtained from Quick Access Recorder (QAR) data). The minimum time tracks were computed using the same cruise flight level, aircraft type and weather forecast assumptions as _ 本文.indd /05/24 14:47:43 85

4 the corresponding PACOTS tracks. Eastbound tracks are shown by solid lines and westbound tracks by dashed lines. It should be noted that PACOTS tracks are adjusted to ensure separation with other tracks, and their degree of optimality depends on the order of generation, while our tracks were not so adjusted. Figure 2 shows good qualitative agreement between the tracks created by our graph search algorithm and PACOTS tracks. Our eastbound track corresponding to PACOTS Track 14 was well north of that track, but this could be due to the fact that PACOTS tracks are adjusted to ensure separation. Although our tracks from Honolulu to Tokyo were north of the PACOTS tracks, it is interesting to note that the DARP aircraft started following the PACOTS track, but then diverged from it and converged with our computed track west of 180º. We then applied the program in a JCAB study examining reorganization of the NOPAC fixed track system. Figure 3 compares flight plan routes of trans-pacific flights through the Fukuoka Flight Information Region (FIR) on 20 January 2018 (white) with computed minimum time tracks (red) using a search graph which combined a mesh in the North Pacific free route area with the NOPAC fixed ATS routes. Again, there was good qualitative agreement overall between the flight plan and computed optimal tracks, although the winds used for the calculated tracks were nowcast wind forecasts valid during the actual flight times (and therefore close to the winds actually encountered in flight) while flight plans were necessarily based on much less recent, and therefore less accurate, forecasts. Each optimal track took only a few minutes to compute (generally less than 10 minutes), one or two orders of magnitude faster than the DP-based optimizer. 5 Issues and Future Works In the tests described in the previous section, our graph search-generated tracks appeared qualitatively reasonable compared to existing flight plan generation systems and PACOTS despite its greatly Figure 3: Comparison between flight plan routes (white) and calculated minimum time routes (red). reduced search space. However, this did not show the optimality of the generated tracks, since the PACOTS track generation systems in the USA and Japan use similar simplifications. We plan to make a more quantitative analysis by comparing the tracks produced by our system with ideal tracks created by our DP-based optimizer. In the practical application of our track generator, we found that generating reasonable search graphs was more labor-intensive than anticipated. If there is a free route area defined by a mesh on a grid of points, as in the North Pacific, the mesh must be connected to existing route structures through gateway points, which must be connected to the origin and destination airports. Our program does not currently reference a database of ATS routes and navigation aids, so in support of the NOPAC restructuring study mentioned above, for each city pair investigated, we generated the route search graph by combining the flight planned routes of all flights during a one-year period in 2018 from the _ 本文.indd /05/24 14:47:44 86

5 origin airport to the free route entry gateway and from the free route exit gateway to the destination airport. This process could be automated and use a navigation database of ATS routes and significant points, but this is a research topic in itself and there might be complex operational factors involved in flight route planning through dense airspace, possibly requiring knowledge-based approaches in addition to purely numerical algorithms. Optimal trajectory generation in a free/flexible route environment raises issues with flight plan specification and processing. It is possible to specify a flight plan waypoint in terms of latitude and longitude coordinates, but the precision is limited to degrees and whole numbers of minutes, which may be inadequate for some purposes (e.g. planning routes with minimum lateral separation from ATS routes or airspaces). Numerical coordinate waypoints also have human factors issues of high potential for errors in data entry, interpretation and communication. Airspace designers can create significant points consisting of a five-character identifier (and ICAO region code) with an associated position with sub-arcsecond precision. Such named points typically have pronounceable names (e.g. SEALS, MELON, LAGER) for easier use in verbal air traffic control communication. The FAA has addressed some of these issues in its High Altitude Redesign (HAR) Routing initiative by creating a grid of points at intervals of 30' latitude and 2 longitude over the contiguous United States that are referenced by five-character identifiers (e.g. KD54W) [7], and we believe that an equivalent global system is desirable, although the HAR grid interval might not be the most appropriate in some FIRs. To generate more operationally realistic trajectories, we are considering adding a step climb function. This is conceptually easy to implement by extending the search graph to the vertical dimension, but to avoid excessive branching and search space inflation, we propose to permit only one step climb during the flight and to restrict the climb point to graph vertices (rather than at points along an edge). A more interesting extension from a research point of view would be to enable timebased control by specifying time constraints along a route. We plan to next apply the program to study a free route airspace concept covering Fukuoka FIR radarcontrolled airspace as well as oceanic, with possible extension to neighboring FIRs, as well as to continue using it to support North Pacific operations considerations by JCAB and the Informal Pacific ATC Coordinating Group (IPACG). 6 Conclusion This paper described our approach and initial efforts towards creating a practical optimal trajectory generation algorithm that can be used in flight planning to exploit the increased route freedom promised by TBO and FRA concepts. We proposed a graph search-based approach to drastically reduce the search space and to allow easier application of operational constraints compared to our DP-based optimizer. Qualitative proof-ofconcept tests and application to an airspace restructuring study have demonstrated its feasibility and value in research. Acknowledgements The authors would like to express gratitude to the Japan Civil Aviation Bureau for providing flight plan data, to the oceanic operations staffs at JCAB's Fukuoka ATM Center facility and the FAA's Oakland ARTCC facility for showing their PACOTS track generation systems and discussions on oceanic operations, to All Nippon Airways for providing Quick Access Recorder data and other information on DARP operation, and to Mr. Seiichi Nakahara for his software development work. We also acknowledge EUROCONTROL for BADA 3 model and data, and the Research Institute for Sustainable Humanosphere, Kyoto University for their archive of JMA GSM data. References [1] EUROCONTROL. Free Route Airspace _ 本文.indd /05/24 14:47:44 87

6 (retrieved April 2019). [2] M. Ferencová, S. Szabo, P. Szabó, FRABRA - Free Route Slovakia, in New Trends in Civil Aviation, Proc. NTCA 2017, Prague, Czech Republic, [2] Y. Miyazawa, N.K. Wickramasinghe, A. Harada, Y. Matsumoto, Dynamic Programming Application to Airliner Four-Dimensional Optimal Flight Trajectory, Proc. AIAA Guidance, Navigation and Control Conference, Boston, USA, [3] N.K. Wickramasinghe, S. Fukushima, H. Hirabayshi, Benefits Assessment on Time-Based Oceanic Arrivals to the Tokyo Metropolitan Area, Proc. ICAS 2016, Daejon, Korea, [4] N.K. Wickramasinghe, M. Brown, H. Hirabayashi, S. Nagaoka, Feasibility Study on Constrained Optimal Trajectory Application in the Japanese Airspace, Proc. AIAA Modeling and Simulation Technologies Conference, Texas, USA, [5] M. Brown, H. Hirabayashi, N.K. Wickramasinghe, A Shortest-Path Graph Search-Based Trajectory Optimiser for Wind-Optimal Trajectories, Proc. APISAT 2018, Chengdu, China, [6] Federal Aviation Authority. PORC chart. nav/digital_products/ifr/#hawaiipacific (retrieved April 2019). [7] Federal Aviation Authority. National Airspace Redesign: High Altitude Redesign. NRS Background. a_redesign/media/nrs_description- Rev_A.pdf (retrieved April 2019) _ 本文.indd /05/24 14:47:44 88

平成 30 年度 ( 第 18 回 ) 電子航法研究所研究発表会 Increasing demand for air travel has propelled research & development projects in a global scale to seek new solution

平成 30 年度 ( 第 18 回 ) 電子航法研究所研究発表会 Increasing demand for air travel has propelled research & development projects in a global scale to seek new solution Increasing demand for air travel has propelled research & development projects in a global scale to seek new solutions for enhancing the efficiency of the current air transportation system. Studies predict

More information

地質調査研究報告/Bulletin of the Geological Survey of Japan

地質調査研究報告/Bulletin of the Geological Survey of Japan Shigeru Suto, Takayuki Inomata, Hisashi Sasaki and Sakae Mukoyama (2007) Data base of the volcanic ash fall distribution map of Japan. Bull. Geol. Surv. Japan, vol. 58(9/10), p.261-321, 8 figs, 2 tables,

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

~ a 3 h NCEP ~ 24 3 ~ ~ 8 9 ~ km m ~ 500 m 500 ~ 800 m 800 ~ m a 200

~ a 3 h NCEP ~ 24 3 ~ ~ 8 9 ~ km m ~ 500 m 500 ~ 800 m 800 ~ m a 200 31 1 2013 3 Journal of Arid Meteorology Vol. 31 No. 1 March 2013. J. 2013 31 1 62-69. doi 10. 11755 /j. issn. 1006-7639 2013-01 - 0062 211101 2000 ~ 2010 3 h 2. 5 2. 5 NCEP 2 5 ~ 7 02 11 05 ~ 08 2 ~ 8

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

\\Lhh\07-02\黑白\内页黑白1-16.p

\\Lhh\07-02\黑白\内页黑白1-16.p Abstract: Urban Grid Management Mode (UGMM) is born against the background of the fast development of digital city. It is a set of urban management ideas, tools, organizations and flow, which is on the

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

More information

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes 上 海 外 国 语 大 学 硕 士 学 位 论 文 对 外 汉 语 初 中 级 副 词 情 境 教 学 研 究 与 实 践 院 系 : 国 际 文 化 交 流 学 院 学 科 专 业 : 汉 语 国 际 教 育 姓 名 : 顾 妍 指 导 教 师 : 缪 俊 2016 年 5 月 Shanghai International Studies University THE STUDY AND PRACTICE

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y * 35 4 2011 7 Vol. 35 No. 4 July 2011 3 Population Research 1950 ~ 1981 The Estimation Method and Its Application of Cohort Age - specific Fertility Rates Wang Gongzhou Hu Yaoling Abstract Based on the

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 88 2 The Research of head-hunting Industry. 8741605 87 Wu Po-Hui Yeh, Kuang S. head-hunting executive search Transaction cost Agency theory 1 This study attempts to investigate and analyze the Executive

More information

Chinese oil import policies and reforms 随 着 经 济 的 发 展, 目 前 中 国 石 油 消 费 总 量 已 经 跃 居 世 界 第 二 作 为 一 个 负 责 任 的 大 国, 中 国 正 在 积 极 推 进 能 源 进 口 多 元 化, 鼓 励 替 代

Chinese oil import policies and reforms 随 着 经 济 的 发 展, 目 前 中 国 石 油 消 费 总 量 已 经 跃 居 世 界 第 二 作 为 一 个 负 责 任 的 大 国, 中 国 正 在 积 极 推 进 能 源 进 口 多 元 化, 鼓 励 替 代 Chinese oil import policies and reforms SINOPEC EDRI 2014.8 Chinese oil import policies and reforms 随 着 经 济 的 发 展, 目 前 中 国 石 油 消 费 总 量 已 经 跃 居 世 界 第 二 作 为 一 个 负 责 任 的 大 国, 中 国 正 在 积 极 推 进 能 源 进 口 多 元 化,

More information

All Nippon Airways Co., Ltd. Financial Results of FY2001 ended March 31,2002 May 27, 2002

All Nippon Airways Co., Ltd. Financial Results of FY2001 ended March 31,2002 May 27, 2002 All Nippon Airways Co., Ltd. Financial Results of FY2001 ended March 31,2002 May 27, 2002 Results of FY2001 Consolidated Financial Summary Statements of Income 100 Million reference Results of FY2001 Balance

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 ( 文 學 所 ) 碩 士 論 文 論 文 題 目 ( 陳 千 武 小 說 活 著 回 來 及 其 相 關 事 例 研 究 ) 論 文 題 目 (Chen Chien Wu Return Alive And Some Research About It) 研 究 生 : 朱 妍 淩 指 導 教 授 : 林 葉 連 中 華 民 國 一 0 一 年 6 月 8 日 陳 千 武 小 說

More information

untitled

untitled 20 90 1998 2001 1 Abstract Under the environment of drastic competitive market, risk and uncertainty that the enterprise faces are greater and greater, the profit ability of enterprise assets rises and

More information

Microsoft Word - bxyj2007_01_zongdi225.doc

Microsoft Word - bxyj2007_01_zongdi225.doc 以 科 学 发 展 观 为 统 领 深 入 贯 彻 落 实 国 务 院 23 号 文 件 全 面 提 高 保 险 业 服 务 社 会 主 义 和 谐 社 会 的 能 力 吴 定 富 ( 中 国 保 险 监 督 管 理 委 员 会, 北 京 100032) [ 摘 要 ]2006 年, 我 国 保 险 业 社 会 地 位 稳 步 提 高, 国 际 影 响 力 不 断 扩 大, 发 展 环 境 日 益

More information

Knowledge and its Place in Nature by Hilary Kornblith

Knowledge and its Place in Nature by Hilary Kornblith Deduction by Daniel Bonevac Chapter 7 Quantified Natural Deduction Quantified Natural Deduction As with truth trees, natural deduction in Q depends on the addition of some new rules to handle the quantifiers.

More information

Microsoft PowerPoint - ryz_030708_pwo.ppt

Microsoft PowerPoint - ryz_030708_pwo.ppt Long Term Recovery of Seven PWO Crystals Ren-yuan Zhu California Institute of Technology CMS ECAL Week, CERN Introduction 20 endcap and 5 barrel PWO crystals went through (1) thermal annealing at 200 o

More information

1

1 Activity- based Cost Management: A New Mode of Medical cost Management () 1 Activity - based Cost Management A New Mode of Medical cost Management Abstract With the development of medical market, the defects

More information

Microsoft Word - 01李惠玲ok.doc

Microsoft Word - 01李惠玲ok.doc 康 寧 學 報 11:1-20(2009) 1 數 位 學 習 於 護 理 技 術 課 程 之 運 用 與 評 值 * 李 惠 玲 ** 高 清 華 *** 呂 莉 婷 摘 要 背 景 : 網 路 科 技 在 教 育 的 使 用 已 成 為 一 種 有 利 的 教 學 輔 助 工 具 網 路 教 學 的 特 性, 在 使 學 習 可 不 分 時 間 與 空 間 不 同 進 度 把 握 即 時 性 資

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

謝 辭 當 初 只 是 不 願 意 沒 日 沒 夜 的 耗 費 青 春 在 辦 公 室 加 班, 抱 著 想 要 轉 換 一 下 心 情 及 爭 一 口 氣 的 態 度 而 報 考 的 研 究 所, 沒 想 到 卻 一 試 即 中, 很 感 謝 校 給 我 一 個 在 術 殿 堂 精 進 的 機 會

謝 辭 當 初 只 是 不 願 意 沒 日 沒 夜 的 耗 費 青 春 在 辦 公 室 加 班, 抱 著 想 要 轉 換 一 下 心 情 及 爭 一 口 氣 的 態 度 而 報 考 的 研 究 所, 沒 想 到 卻 一 試 即 中, 很 感 謝 校 給 我 一 個 在 術 殿 堂 精 進 的 機 會 社 會 科 院 行 管 理 碩 士 程 碩 士 論 文 指 導 教 授 江 明 修 博 士 論 文 題 目 : 警 察 派 出 所 勤 務 規 劃 之 問 題 與 改 善 方 向 研 究 A Research on Improving Duty Planning in Police Stations 研 究 生 : 張 智 翔 撰 號 :99921079 組 別 : 一 般 行 組 中 華 民 101

More information

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2 35 2 2012 2 GEOMATICS & SPATIAL INFORMATION TECHNOLOGY Vol. 35 No. 2 Feb. 2012 1 2 3 4 1. 450008 2. 450005 3. 450008 4. 572000 20 J 101 20 ARMA TU196 B 1672-5867 2012 02-0213 - 04 Application of Time Series

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

Microsoft PowerPoint ARIS_Platform_en.ppt

Microsoft PowerPoint ARIS_Platform_en.ppt ARIS Platform www.ixon.com.tw ARIS ARIS Architecture of Integrated Information System Prof. Dr. Dr. h.c. mult. August-Wilhelm Scheer ARIS () 2 IDS Scheer AG International Presence >> Partners and subsidiaries

More information

2008 Nankai Business Review 61

2008 Nankai Business Review 61 150 5 * 71272026 60 2008 Nankai Business Review 61 / 62 Nankai Business Review 63 64 Nankai Business Review 65 66 Nankai Business Review 67 68 Nankai Business Review 69 Mechanism of Luxury Brands Formation

More information

BIBLID 0254-4466(2001)19:1 pp. 249-276 19 1 90 6 ** * ** 88 I 2000 8 249 250 19 1 251 1873-1929 1900 1 1902 1 35 1900 1960 7-12 252 19 1 2 3 2 1900 1902 3 2000 129-197 253 4 5 6 4 1902 1962 103 5 Joseph

More information

: ;,, 0 0, 60, 0 80,, 76 78, (Deregulation),,,, (Open Sky), (ACI),006.%.8%,.7% 008,, 000, ( ), ( )0, / 6, ; 8, ;, ; 7, ; 06, 6, 006 0, ( ) 0,.%; 0 60,

: ;,, 0 0, 60, 0 80,, 76 78, (Deregulation),,,, (Open Sky), (ACI),006.%.8%,.7% 008,, 000, ( ), ( )0, / 6, ; 8, ;, ; 7, ; 06, 6, 006 0, ( ) 0,.%; 0 60, 7 0 0 8 WORLD REGIONAL STUDIES Vol. 7, No. Jun., 0 0 8 : 007(008)000088,,, (., 000;., 000) :,,, :,,, ( ) :,,,, : F6 : A,, ( ),, GDP (00 ), 000, 000 ~006.%, GDP.6%, ( ), [8] [] [0, ] [] [67] [8], [] [],,

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

学 校 编 码 :10384 分 类 号 密 级 学 号 :X2007155130 UDC 厦 门 怡 福 养 生 健 康 管 理 有 限 公 司 创 业 计 划 王 韬 指 导 教 师 姓 名 : 郭 霖 教 授 厦 门 大 学 硕 士 学 位 论 文 厦 门 怡 福 养 生 健 康 管 理 有 限 公 司 创 业 计 划 A Business Plan for Xiamen Eve Health

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

68 2012 11 the requirements of load - bearing rescue and turning of the large fire engine can be served as an outdoor safety area. 5 The second floor

68 2012 11 the requirements of load - bearing rescue and turning of the large fire engine can be served as an outdoor safety area. 5 The second floor 2012 11 11 170 JOURNAL OF RAILWAY ENGINEERING SOCIETY Nov 2012 NO. 11 Ser. 170 1006-2106 2012 11-0067 - 06 1 2 ( 1. 苏 州 设 计 研 究 院 股 份 有 限 公 司, 江 苏 苏 州 215021; 2. 苏 州 市 消 防 支 队, 江 苏 苏 州 215021) 1 2 3 4

More information

国土技術政策総合研究所 プロジェクト研究報告

国土技術政策総合研究所 プロジェクト研究報告 315 2006 6 YSK-N-115 i Technical Note of NILIM No. 315 June 2006 YSK-N-115 The characteristic of aircraft type about world airlines Natsuko SENDA * Tomoki ISHIKURA** Yoshihisa SUGIMURA** Masaki ISHII***

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 i Examinations have long been adopting for the selection of the public officials and become an essential tradition in our country. For centuries, the examination system, incorporated with fairness, has

More information

Microsoft Word - 第四組心得.doc

Microsoft Word - 第四組心得.doc 徐 婉 真 這 四 天 的 綠 島 人 權 體 驗 營 令 我 印 象 深 刻, 尤 其 第 三 天 晚 上 吳 豪 人 教 授 的 那 堂 課, 他 讓 我 聽 到 不 同 於 以 往 的 正 義 之 聲 轉 型 正 義, 透 過 他 幽 默 熱 情 的 語 調 激 起 了 我 對 政 治 的 興 趣, 願 意 在 未 來 多 關 心 社 會 多 了 解 政 治 第 一 天 抵 達 綠 島 不 久,

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

m m m ~ mm

m m m ~ mm 2011 10 10 157 JOURNAL OF RAILWAY ENGINEERING SOCIETY Oct 2011 NO. 10 Ser. 157 1006-2106 2011 10-0007 - 0124-05 710043 6 TBM TBM U455. 43 A Structural Calculation and Analysis of Transfer Node of Three

More information

PowerPoint Presentation

PowerPoint Presentation Decision analysis 量化決策分析方法專論 2011/5/26 1 Problem formulation- states of nature In the decision analysis, decision alternatives are referred to as chance events. The possible outcomes for a chance event

More information

廣州舊城區的保護和發展

廣州舊城區的保護和發展 黄 爲 爲 爲 爲 塲 爲 茘 爲 爲 爲 爲 産 统 装 爲 爲 爲 爲 爲 爲 爲 茘 衞 産 爲 塲 爲 爲 爲 爲 爲 滙 爲 滙 爲 爲 爲 爲 爲麽麽 强 迹 啓 啓 産 産 [1] [2] [3] [4] 20 [5] 2000 [6] [7], 20 [8] http://www.gz.gov.cn2002.7.14 [9] 2000.4 [10] [11] 20 2001.1.29

More information

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B Introduction to Genetics Darrh Bullock University of Kentucky The Model Trait = Genetics + Environment Genetics Additive Predictable effects that get passed from generation to generation Non-Additive Primarily

More information

% % % % % % ~

% % % % % % ~ 1001-5558 2015 03-0021-16 2010 C91 A 2014 5 2010 N. W. Journal of Ethnology 2015 3 86 2015.No.3 Total No.86 2010 2010 2181.58 882.99 40.47% 1298.59 59.53% 2013 2232.78 847.29 37.95% 1385.49 62.05% 1990

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

%

% 38 1 2014 1 Vol. 38No. 1 January 2014 51 Population Research 2010 2010 2010 65 100028 Changing Lineal Families with Three Generations An Analysis of the 2010 Census Data Wang Yuesheng Abstract In contemporary

More information

~ ~ ~

~ ~ ~ 33 4 2014 467 478 Studies in the History of Natural Sciences Vol. 33 No. 4 2014 030006 20 20 N092 O6-092 A 1000-1224 2014 04-0467-12 200 13 Roger Bacon 1214 ~ 1292 14 Berthold Schwarz 20 Luther Carrington

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Explore the impact of emotional factors couples do not

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

IPCC CO (IPCC2006) 1 : = ( 1) 1 (kj/kg) (kgc/gj) (tc/t)

IPCC CO (IPCC2006) 1 : = ( 1) 1 (kj/kg) (kgc/gj) (tc/t) 2011 5 5 (278 ) China Industrial Economics May 2011 No.5 1 12 (1. 100005; 2. 066004) [ ] : ; ; : ; ; [ ] ; ; ; [ ]F290 [ ]A [ ]1006-480X(2011)05-0047-11 2008 CO 2 ( ) (2009) (GDP) (Binhocker et al. 2008)

More information

35 2 2011 3 Vol. 35 No. 2 March 2011 83 Population Research * 2 100872 Birth Interval between First and Second Child and Its Policy Implications Liu Shuang Zou Mingru Abstract Using data of international

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

論 文 摘 要 本 文 乃 係 兩 岸 稅 務 爭 訟 制 度 之 研 究, 蓋 稅 務 爭 訟 在 行 訴 訟 中 一 直 占 有 相 當 高 的 比 例, 惟 其 勝 訴 率 一 直 偏 低, 民 87 年 10 月 28 日 行 訴 訟 法 經 幅 修 正 後, 審 級 部 分 由 一 級 一

論 文 摘 要 本 文 乃 係 兩 岸 稅 務 爭 訟 制 度 之 研 究, 蓋 稅 務 爭 訟 在 行 訴 訟 中 一 直 占 有 相 當 高 的 比 例, 惟 其 勝 訴 率 一 直 偏 低, 民 87 年 10 月 28 日 行 訴 訟 法 經 幅 修 正 後, 審 級 部 分 由 一 級 一 法 院 碩 士 在 職 專 班 碩 士 論 文 指 導 教 授 : 王 文 杰 博 士 兩 岸 稅 務 爭 訟 制 度 之 比 較 研 究 A comparative study on the system of cross-straits tax litigation 研 究 生 : 羅 希 寧 中 華 民 一 0 一 年 七 月 論 文 摘 要 本 文 乃 係 兩 岸 稅 務 爭 訟 制 度 之

More information

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi U17 10220 UDC624 Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candidate:Chen Hao Tutor: Xue Jinghong

More information

has become a rarity. In other words, the water resources that supply the needs in Taiwan depend crucially on the reservoirs built at least more than t

has become a rarity. In other words, the water resources that supply the needs in Taiwan depend crucially on the reservoirs built at least more than t 臺 灣 水 利 第 64 卷 第 1 期 民 國 105 年 3 月 出 版 Taiwan Water Conservancy Vol. 64, No. 1, March 2016 論 台 灣 水 資 源 開 發 的 必 要 性 The Essentiality of Water Resource Development in Taiwan * 虞 國 興 GWO-HSING YU 淡 江 大 學

More information

三 各 國 實 施 概 況 ICAO Annex 1 雖 明 列 2008 年 3 月 5 日 前 國 際 航 線 飛 機 直 昇 機 駕 駛 員 飛 航 管 制 員 及 航 空 通 信 人 員, 使 用 無 線 電 溝 通 英 語 之 專 業 能 力 應 符 合 規 定, 基 於 部 份 國 家

三 各 國 實 施 概 況 ICAO Annex 1 雖 明 列 2008 年 3 月 5 日 前 國 際 航 線 飛 機 直 昇 機 駕 駛 員 飛 航 管 制 員 及 航 空 通 信 人 員, 使 用 無 線 電 溝 通 英 語 之 專 業 能 力 應 符 合 規 定, 基 於 部 份 國 家 我 國 航 空 英 語 檢 定 作 業 之 檢 討 與 未 來 發 展 明 小 薰 一 航 空 英 語 檢 定 實 施 背 景 1998 年 國 際 民 航 組 織 (International Civil Aviation Organization, 以 下 簡 稱 ICAO) 鑒 於 幾 次 重 大 飛 安 事 故 皆 起 因 於 飛 航 駕 駛 員 與 管 制 員 語 言 溝 通 不 良 所

More information

致 谢 开 始 这 篇 致 谢 的 时 候, 以 为 这 是 最 轻 松 最 愉 快 的 部 分, 而 此 时 心 头 却 充 满 了 沉 甸 甸 的 回 忆 和 感 恩, 一 时 间 竟 无 从 下 笔 虽 然 这 远 不 是 一 篇 完 美 的 论 文, 但 完 成 这 篇 论 文 要 感 谢

致 谢 开 始 这 篇 致 谢 的 时 候, 以 为 这 是 最 轻 松 最 愉 快 的 部 分, 而 此 时 心 头 却 充 满 了 沉 甸 甸 的 回 忆 和 感 恩, 一 时 间 竟 无 从 下 笔 虽 然 这 远 不 是 一 篇 完 美 的 论 文, 但 完 成 这 篇 论 文 要 感 谢 中 国 科 学 技 术 大 学 博 士 学 位 论 文 论 文 课 题 : 一 个 新 型 简 易 电 子 直 线 加 速 器 的 关 键 技 术 研 究 学 生 姓 名 : 导 师 姓 名 : 单 位 名 称 : 专 业 名 称 : 研 究 方 向 : 完 成 时 间 : 谢 家 麟 院 士 王 相 綦 教 授 国 家 同 步 辐 射 实 验 室 核 技 术 及 应 用 加 速 器 物 理 2006

More information

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873>

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873> 中 正 漢 學 研 究 2012 年 第 一 期 ( 總 第 十 九 期 ) 2012 年 6 月 頁 111~134 國 立 中 正 大 學 中 國 文 學 系 111 從 哀 傷 到 哀 而 不 傷 : 陳 子 昂 與 張 九 齡 的 感 遇 詩 對 比 研 究 * 丁 涵 摘 要 在 中 國 古 典 文 學 語 境 中, 一 個 主 題 的 奠 立 往 往 需 要 歷 時 彌 久, 而 這 本

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前 东 北 大 学 中 荷 生 物 医 学 与 信 息 工 程 学 院 2016 年 度 生 物 医 学 与 信 息 工 程 论 坛 会 议 时 间 2016 年 6 月 8 日, 星 期 三,9:30 至 16:00 会 议 地 址 会 议 网 址 主 办 单 位 东 北 大 学 浑 南 校 区 沈 阳 市 浑 南 区 创 新 路 195 号 生 命 科 学 大 楼 B 座 619 报 告 厅 http://www.bmie.neu.edu.cn

More information

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流 第 20 卷 第 3 期 2014 年 6 月 ( 自 然 科 学 版 ) JOURNAL OF SHANGHAI UNIVERSITY (NATURAL SCIENCE) Vol. 20 No. 3 June 2014 DOI: 10.3969/j.issn.1007-2861.2013.07.031 基 于 FLUENT 测 轨 道 交 通 隧 道 中 电 波 折 射 率 结 构 常 数 张 永

More information

D A

D A 2015 4 D822.333 A 0452 8832 2015 4 0014-12 14 The Second ASEAN Regional Forum: The ASEAN Regional Forum, A Concept Paper, in ASEAN Regional Forum Documents Series 1994-2006, ASEAN Secretariat, Jakarta,

More information

南華大學數位論文

南華大學數位論文 南華大學 碩士論文 中華民國九十五年六月十四日 Elfin Excel I II III ABSTRACT Since Ming Hwa Yuan Taiwanese Opera Company started to cooperate with the Chinese orchestra, the problem of how the participation of Chinese music

More information

Microsoft Word - 上傳電子檔.doc

Microsoft Word - 上傳電子檔.doc 創 新 設 計 研 究 所 碩 士 學 位 論 文 臺 北 聯 營 公 車 站 立 輔 助 設 備 最 適 設 置 高 度 研 究 In Search of the Appropriate Height for the Standing Support Equipments on the City Bus at Taipei 研 究 生 : 賴 振 永 指 導 教 授 : 黃 啟 梧 中 華 民 國

More information

<4D6963726F736F667420576F7264202D2031322D312DC2B2B4C2AB47A16DC5AAAED1B0F3B5AAB0DDA144A7B5B867A16EB2A4B1B4A277A548AED1A4A4BEC7A5CDB0DDC344ACB0A8D2>

<4D6963726F736F667420576F7264202D2031322D312DC2B2B4C2AB47A16DC5AAAED1B0F3B5AAB0DDA144A7B5B867A16EB2A4B1B4A277A548AED1A4A4BEC7A5CDB0DDC344ACB0A8D2> 弘 光 人 文 社 會 學 報 第 12 期 簡 朝 亮 讀 書 堂 答 問. 孝 經 略 探 以 書 中 學 生 問 題 為 例 趙 詠 寬 彰 化 師 範 大 學 國 文 學 系 博 士 班 研 究 生 摘 要 孝 經 是 十 三 經 中 字 數 最 少 的 經 典, 然 實 踐 性 高, 受 歷 來 帝 王 重 視 但 在 清 末 民 初, 傳 統 思 維 受 到 挑 戰, 被 視 為 維 護

More information

Construction of Chinese pediatric standard database A Dissertation Submitted for the Master s Degree Candidate:linan Adviser:Prof. Han Xinmin Nanjing

Construction of Chinese pediatric standard database A Dissertation Submitted for the Master s Degree Candidate:linan Adviser:Prof. Han Xinmin Nanjing 密 级 : 公 开 学 号 :20081209 硕 士 学 位 论 文 中 医 儿 科 标 准 数 据 库 建 设 研 究 研 究 生 李 楠 指 导 教 师 学 科 专 业 所 在 学 院 毕 业 时 间 韩 新 民 教 授 中 医 儿 科 学 第 一 临 床 医 学 院 2011 年 06 月 Construction of Chinese pediatric standard database

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh SWOT 5 Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower threshold. All of these lead to aggravate drastically

More information

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466>

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466> A A A A A i A A A A A A A ii Introduction to the Chinese Editions of Great Ideas Penguin s Great Ideas series began publication in 2004. A somewhat smaller list is published in the USA and a related, even

More information

92

92 * ** ** 9 92 % 80.0 70.0 60.0 50.0 40.0 30.0 20.0 0.0 0.0 % 60.0 50.0 40.0 30.0 20.0 0.0 0.0 990 2000 200 2002 2003 2004 2005 2006 2007 2008 2009 200 978 979 980 98 982 983 984 985 986 987 988 989 990

More information

Microsoft Word - HC20138_2010.doc

Microsoft Word - HC20138_2010.doc Page: 1 of 7 Date: April 26, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

http / /yxxy. cbpt. cnki. net / % % %

http / /yxxy. cbpt. cnki. net / % % % 2017 3 Mar. 2017 5 2 Chongqing Higher Education Research Vol. 5 No. 2 DOI 10. 15998 /j. cnki. issn1673-8012. 2017. 02. 006 230039 2011 2015 2016 G649. 21 A 1673-8012 2017 02-0037-11 2017-01-03 2015zdjy024

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

mm 400 mm 15 mm EOF mm/10a Fig. 1 Distributions

mm 400 mm 15 mm EOF mm/10a Fig. 1 Distributions 7 2 2011 3 ADVANCES IN CLIMATE CHANGE RESEARCH Vol. 7 No. 2 March 2011 1673-1719 (2011) 02-0097-07 1961 2007 77 5 5 6 2 3 8 11 1980 1980 1990 2015 8 11 P426.6 A 7.86% 4 50 0.35 5 6 19 7 8 9 1 1906 2005

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

Microsoft Word - A200810-897.doc

Microsoft Word - A200810-897.doc 基 于 胜 任 特 征 模 型 的 结 构 化 面 试 信 度 和 效 度 验 证 张 玮 北 京 邮 电 大 学 经 济 管 理 学 院, 北 京 (100876) E-mail: weeo1984@sina.com 摘 要 : 提 高 结 构 化 面 试 信 度 和 效 度 是 面 试 技 术 研 究 的 核 心 内 容 近 年 来 国 内 有 少 数 学 者 探 讨 过 基 于 胜 任 特 征

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 1 基 于 协 同 过 滤 的 高 考 志 愿 推 荐 系 统 徐 兰 静, 李 珊, 严 钊 ( 南 京 航 空 航 天 大 学 经 济 与 管 理 学 院, 南 京 211100) 摘 要 : 近 年 来 信 息 过 载 问 题 的 出 现 使 得 个 性 化 推 荐 技 术 应 运 而 生, 其 中 协 同 过 滤 推 荐 技 术 通 过 在 用 户 和 信 息 之 间 建 立 联 系, 被

More information

1 引言

1 引言 中 国 经 济 改 革 研 究 基 金 会 委 托 课 题 能 力 密 集 型 合 作 医 疗 制 度 的 自 动 运 行 机 制 中 国 农 村 基 本 医 疗 保 障 制 度 的 现 状 与 发 展 的 研 究 课 题 主 持 人 程 漱 兰 中 国 人 民 大 学 农 业 与 农 村 发 展 学 院 课 题 组 2004 年 4 月 2005 年 4 月 1 课 题 组 成 员 名 单 主 持

More information

Fig. 1 Frame calculation model 1 mm Table 1 Joints displacement mm

Fig. 1 Frame calculation model 1 mm Table 1 Joints displacement mm 33 2 2011 4 ol. 33 No. 2 Apr. 2011 1002-8412 2011 02-0104-08 1 1 1 2 361003 3. 361009 3 1. 361005 2. GB50023-2009 TU746. 3 A Study on Single-span RC Frame Reinforced with Steel Truss System Yuan Xing-ren

More information

文档 9

文档 9 : : :2001 5 10 :2001 6 10 : < > :Rudimental Studies on A Classified and Annotated Bibliography of Books on Calligraphy and Painting : : :K2904.6 Yu Shaosong A classified and Annotated Bibliography of Books

More information

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1>

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1> ϲ ฯ र ቑ ጯ 高雄師大學報 2015, 38, 63-93 高雄港港史館歷史變遷之研究 李文環 1 楊晴惠 2 摘 要 古老的建築物往往承載許多回憶 也能追溯某些歷史發展的軌跡 位於高雄市蓬 萊路三號 現為高雄港港史館的紅磚式建築 在高雄港三號碼頭作業區旁的一片倉庫 群中 格外搶眼 這棟建築建成於西元 1917 年 至今已將近百年 不僅躲過二戰戰 火無情轟炸 並保存至今 十分可貴 本文透過歷史考證

More information

4 : ,,,, 2000,, [3 ] [4 ] 1995, [5 ] [6 11 ],,,, 2, : (1) 21,,,, (2), 5, 2000, [12 ] (3),, (4),,,, (5),,, , 86,, 60 86,,,, 17 ( 1)

4 : ,,,, 2000,, [3 ] [4 ] 1995, [5 ] [6 11 ],,,, 2, : (1) 21,,,, (2), 5, 2000, [12 ] (3),, (4),,,, (5),,, , 86,, 60 86,,,, 17 ( 1) 22 4 2003 7 GEO GRAPHICAL RESEARCH Vol. 22, No. 4 J uly, 2003 1, Philip James 2, 3 (11, 200062 ; 21 (University of Salford), Salford, GM, U K; 31, 200062) :,,, 4 7 5,, : ; ; : K92815 ; C91218 ; F06113

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 以 系 統 動 力 學 建 構 美 食 餐 廳 異 國 麵 坊 之 管 理 飛 行 模 擬 器 研 究 生 : 簡 蓮 因 撰 指 導 教 授 : 楊 碩 英 博 士 中 華 民 國 九 十 七 年 七 月 致 謝 詞 寫 作 論 文 的 過 程 是 一 段 充 滿 艱 辛 與 淚 水 感 動 與 窩 心 的 歷 程, 感 謝 這 一

More information

Microsoft Word - 24217010311110028谢雯雯.doc

Microsoft Word - 24217010311110028谢雯雯.doc HUAZHONG AGRICULTURAL UNIVERSITY 硕 士 学 位 论 文 MASTER S DEGREE DISSERTATION 80 后 女 硕 士 生 择 偶 现 状 以 武 汉 市 七 所 高 校 为 例 POST-80S FEMALE POSTGRADUATE MATE SELECTION STATUS STUDY TAKE WUHAN SEVEN UNIVERSITIES

More information

國 立 新 竹 教 育 大 學 音 樂 學 系 音 樂 教 學 碩 士 班 學 位 論 文 新 瓦 屋 客 家 花 鼓 之 研 究 A Research on Hsin-Wa-Wu Hakka Flower-Drum 研 究 生 : 陳 怡 妃 指 導 教 授 : 明 立 國 中 華 民 國 九 十 八 年 三 月 本 論 文 獲 行 政 院 文 化 建 設 委 員 會 文 化 資 產 總 管 理

More information

中 文 摘 要 一 个 蛋 白 质 去 折 叠 可 视 化 系 统 的 设 计 与 实 现 中 文 摘 要 蛋 白 质 的 生 物 功 能 由 其 三 维 结 构 所 决 定, 而 蛋 白 质 通 过 特 定 的 折 叠 机 制 行 成 稳 定 的 空 间 结 构 当 前 生 物 科 学 领 域 一

中 文 摘 要 一 个 蛋 白 质 去 折 叠 可 视 化 系 统 的 设 计 与 实 现 中 文 摘 要 蛋 白 质 的 生 物 功 能 由 其 三 维 结 构 所 决 定, 而 蛋 白 质 通 过 特 定 的 折 叠 机 制 行 成 稳 定 的 空 间 结 构 当 前 生 物 科 学 领 域 一 硕 士 专 业 学 位 论 文 (2009 届 ) 一 个 蛋 白 质 去 折 叠 可 视 化 系 统 的 设 计 与 实 现 The Design and Implementation of A Protein Unfolding Visualization System 研 究 生 姓 名 陈 宇 指 导 教 师 姓 名 吕 强 ( 教 授 ) 专 业 学 位 名 称 研 究 方 向 论 文 提

More information

附件1:

附件1: 附 件 1: 全 国 优 秀 教 育 硕 士 专 业 学 位 论 文 推 荐 表 单 位 名 称 : 西 南 大 学 论 文 题 目 填 表 日 期 :2014 年 4 月 30 日 数 学 小 组 合 作 学 习 的 课 堂 管 理 攻 硕 期 间 及 获 得 硕 士 学 位 后 一 年 内 获 得 与 硕 士 学 位 论 文 有 关 的 成 果 作 者 姓 名 论 文 答 辩 日 期 学 科 专

More information

我国原奶及乳制品安全生产和质量安全管理研究

我国原奶及乳制品安全生产和质量安全管理研究 密 级 论 文 编 号 中 国 农 业 科 学 院 硕 士 学 位 论 文 我 国 原 奶 及 乳 制 品 质 量 安 全 管 理 研 究 Study on Quality and Safety Management of Raw Milk and Dairy Products in China 申 请 人 : 段 成 立 指 导 教 师 : 叶 志 华 研 究 员 张 蕙 杰 研 究 员 申 请

More information

C doc

C doc No. C2004010 2004-7 No. C2004010 2004 7 16 1 No. C2004010 2004 7 16 2000 1990 1990 2000 ( ),, 2 / 2000 1990 1990 2000 ( ),, (1952-) 100871 It is not Appropriate to Remove the Birth Spacing Policy Now,

More information

闲 旅 游 现 已 成 为 城 市 居 民 日 常 生 活 的 重 要 部 分 袁 它 的 出 现 标 志 着 现 代 社 会 文 明 的 进 步 遥 据 国 外 学 者 预 测 袁 2015 年 左 右 袁 发 达 国 家 将 陆 续 进 入 野 休 闲 时 代 冶 袁 发 展 中 国 家 也 将

闲 旅 游 现 已 成 为 城 市 居 民 日 常 生 活 的 重 要 部 分 袁 它 的 出 现 标 志 着 现 代 社 会 文 明 的 进 步 遥 据 国 外 学 者 预 测 袁 2015 年 左 右 袁 发 达 国 家 将 陆 续 进 入 野 休 闲 时 代 冶 袁 发 展 中 国 家 也 将 第 29 卷 第 5 期 2014 年 10 月 四 川 理 工 学 院 学 报 渊 社 会 科 学 版 冤 Journal of Sichuan University of Science & Engineering 渊 Social Sciences Edition 冤 Vol.29 No.5 Oct.2014 微 旅 游 研 究 综 述 赵 红 莉 渊 武 夷 学 院 旅 游 学 院 袁 福

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

More information

9 * B0-0 * 16ZD097 10 2018 5 3 11 117 2011 349 120 121 123 46 38-39 12 2018 5 23 92 939 536 2009 98 1844 13 1 25 926-927 3 304 305-306 1 23 95 14 2018 5 25 926-927 122 1 1 self-ownership 15 22 119 a b

More information

5 1 linear 5 circular 2 6 2003 10 3000 2 400 ~ 500 4500 7 2013 3500 400 ~ 500 8 3 1900 1. 2 9 1 65

5 1 linear 5 circular 2 6 2003 10 3000 2 400 ~ 500 4500 7 2013 3500 400 ~ 500 8 3 1900 1. 2 9 1 65 2014 2 43 EXAMINATIONS RESEARCH No. 2 2014 General No. 43 李 迅 辉 随 着 新 课 程 改 革 的 不 断 深 入, 教 学 理 念 逐 步 更 新, 学 生 的 英 语 水 平 也 在 逐 渐 提 高, 但 沿 用 多 年 的 高 考 英 语 书 面 表 达 的 评 分 标 准 并 没 有 与 时 俱 进, 已 经 不 能 完 全 适 应

More information