Microsoft Word - 5 王伟.doc

Size: px
Start display at page:

Download "Microsoft Word - 5 王伟.doc"

Transcription

1 ISSN CODEN JKYTA8 Journal of Frontiers of Computer Science and Technology /2011/05(11) Tel: DOI: /j.issn N-body * 王伟 1,2,3+, 曾栩鸿 1,2,3, 王福焕 1,2,3, 傅丽丽 1,2,3, 曾国荪 1. 同济大学计算机科学与技术系, 上海 国家高性能计算机工程技术中心同济分中心, 上海 ,2,3 3. 同济大学嵌入式系统与服务计算教育部重点实验室, 上海 Parallel Time-Space Processing Model Based Fast N-body Simulation * WANG Wei 1,2,3+, ZENG Xuhong 1,2,3, WANG Fuhuan 1,2,3, FU Lili 1,2,3, ZENG Guosun 1,2,3 1. Department of Computer Science and Engineering, Tongji University, Shanghai , China 2. Tongji Branch, National Engineering & Technology Center of High Performance, Shanghai , China 3. Key Laboratory of Embedded System and Service Computing, Ministry of Education, Tongji University, Shanghai , China + Corresponding author: willtongji@gmail.com WANG Wei, ZENG Xuhong, WANG Fuhuan, et al. Parallel time-space processing model based fast N-body simulation. Journal of Frontiers of Computer Science and Technology, 2011, 5(11): Abstract: With the development of graphic processing unit (GPU), the general processing with high performance can be achieved with low cost. The GPU based compute unified device architecture (CUDA) and open computing language (OpenCL) programming model provide adequate application programming interfaces (APIs) similar to C language, which can be utilized by programmer with the power of GPU parallel processing. This paper presents a novel parallel implementation algorithm of N-body gravitational simulation on GPU. The algorithm uses graphics *The National Natural Science Foundation of China under Grant No , ( ); the Joint Funds of NSFC and Microsoft Asia Research under Grant No (NSFC- ); the Doctoral Fund of Ministry of Education of China under Grant No ( ); the Program of Shanghai Subject Chief Scientist under Grant No. 10XD ( ); the Open Fund of State Key Laboratory of High- End Server & Storage Technology under Grant No. 2009HSSA06 (); the Program for Young Excellent Talents in Tongji University under Grant No , 2009KJ030 ( ). Received , Accepted

2 N-body 1007 hardware to accelerate computation, and is optimized to N-body computation based on parallel time-space processing model (PTPM) on GPUs. The paper also analyzes the current implementations of GPU, and gives a new method on implementing N-body algorithm on HD Radeon 5850 GPU of AMD. Experimental results show that this method achieves an acceleration of 400 times compared with CPU, and an acceleration up to 2-5 times compared with GPU. Key words: N-body; parallel computing; general purpose graphic processing unit (GPGPU); time-space model 图形处理器 (graphic processing unit, GPU) 的最新发展已经能够以低廉的成本提供高性能的通用计算 基于 GPU 的 CUDA (compute unified device architecture) 和 OpenCL (open computing language) 编程模型为程序员提供了充足的类似于 C 语言的应用程序接口 (application programming interface, API), 便于程序员发挥 GPU 的并行计算能力 采用图形硬件进行加速计算, 通过一种新的 GPU 处理模型 并行时间空间模型, 对现有 GPU 上的 N-body 实现进行了分析, 从而提出了一种新的 GPU 上快速仿真 N-body 问题的算法, 并在 AMD 的 HD Radeon 5850 上进行了实现 实验结果表明, 相对于 CPU 上的实现, 获得了 400 倍左右的加速 ; 相对于已有 GPU 上的实现, 也获得了 2 至 5 倍的加速 N-body; 并行计算 ; 通用图形处理器 (GPGPU); 时间空间模型 A TP301 1 N-body N, N-body PP(particle-particle), N 1 i,,,,, PP O(N 2 ), N,, N-body, BH (Barnes-Hut) [1] FMM(fast multiple method) [2] BH O(N lb N), FMM O(N) N-body,, GRAPE(gravity pipeline) GPU (graphic processing unit) GPU, GPU N-body PP BH, CPU, 400, GPU, N-body N-body N, [3], N-body,,, N-body,, 2.1 PP, PP N, x i v i, 1 i N, i j f ij f ij mm i j ij = G r r 2 r ij ij (1)

3 1008 Journal of Frontiers of Computer Science and Technology 2011, 5(11), m i m j i j ;, r ij =x j x i i j ; G,, i j i F i, N 1 m j r F = f = G m 1 1 r i ij i j N j N ij j i j i ij 3 (2) (2) PP, O(N 2 ) PP,,,,, [4] 2.2 BH PP, Treecode,,,,,, ( 4 );, Treecode BH [2] FMM [5] BH, N-body BH Barnes Hut 1986,, O(N lb N) 1%, BH (1) (2 ) ( ) (2) Box Box, Box, Box (3), Box, Box( ) l Box, D Box p 1 D < θ, θ, Box p p ;, 1 D θ, Box, force = G m mcm xcm x ycm y zcm z (3),, r r r, ( x, yz, ), m, ( xcm, ycm, zcm ) Box, m cm Box, r = cm + cm + cm ( x x) ( y y) ( z z), G 3 N-body, N-body,,,, (random access machine, RAM)

4 N-body 1009,,,,, SIMD(single instruction multiple data) PRAM(parallel random access machine) MIMD(multiple instruction multiple data) APRAM(asynchronize parallel random access machine) MIMD BSP(bulk synchronous parallel) LogP(latency, overhead, gap, processor) [6] PP, N-body,,, GPU N-body, ;, ;,, GPU, GPU N-body 4 N-body GPU,, BH N-body 4.1 GPU F i, f ij N N i j, i F i, Tile Tile p p, Tile 2p p 2 Tile p, p, Tile,, 1,, Tile Fig.1 Tile presentation 1 Tile thread block (OpenCL (open computing language), thread OpenCL work-item, block work-group), block p thread Tile Tile,, GPU, Tile p p Tile, thread, block,, 2 walk, walk,, walk Fig.2 Block-thread presentation 2 Block-thread, GPU (parallel time-space processing model, PTPM), GPU, GPU

5 1010 Journal of Frontiers of Computer Science and Technology 2011, 5(11) 4.2 PTPM GPU BH 3 Nyland [4], i-parallel block 2 thread-block, i, j, N i, N j, thread i walk i, GPU, i, Fig.3 Nyland s GPU execution plan (i-parallel) 3 Nyland GPU (i-parallel) Hamada [7] j-parallel N j N j /n block, block thread N j i, block, i GPU,,, block, GPU thread,,,, CPU, Hamada [8] w-parallel block walk i block 0, walk 0 i, block 0, j-parallel, 1/3 j i, block, 1/3, j-parallel block, 4.3,, jw-parallel j-parallel w-parallel w-parallel, block, block, block walk, block walk j-parallel, thread Tile, jw-parallel, thread Tile, GPU, GPU (jw-parallel), walk CPU, walk GPU GPU, GPU block, block walk block, block,, thread, block, GPU CPU, CPU (1),, 1 024, j-parallel (2) thread, thread Tile, (3), BH, walk 1, PP, PP (4) walk GPU, walk CPU, CPU GPU

6 N-body AMD Radeon HD 5850 GPU GPU, GPU GFLOPS (1 440, 725 MHz, ), N-body, GFLOPS, PP, , 20, flop GFLOPS OpenCL 1.0, AMD ATI Stream SDK V2.2 ATI Stream SDK V2.2, ATI CatalystTM, OpenCL AMD GPU, Intel Pentium GHz, Microsoft Windows XP 5.2 N-body GPU CPU, i-parallel j- parallel PP, w-parallel jw-parallel BH CPU GPU i-parallel j-parallel w-parallel CPU jw-parallel CPU, AMD, GPU FLOPS jw-parallel 5850 GPU 4 4, ( 4 096), GPU 300 GFLOPS, 431 GFLOPS( ) CPU, Fig.4 The performance of jw-parallel in different number of particles 4 jw-parallel, 1 024, 300, 408 ( ), CPU GPU 100, GPU jw-parallel i-parallel j-parallel w-parallel, 5, ( 4 096), GPU, Fig.5 The performance of jw-parallel, i-parallel, j-parallel and w-parallel in different number of particles 5 jw-parallel i-parallel j-parallel w-parallel, jw-parallel GPU 100,

7 1012 Journal of Frontiers of Computer Science and Technology 2011, 5(11) Table 1 Comparison of running time of CPU and GPU (jw-parallel) in different number of particles 1 CPU jw-parallel (100 )/s CPU > > GPU Table 2 Comparison of total time of various GPU plans in different number of particles 2 GPU (100 )/s i-parallel j-parallel w-parallel jw-parallel Table 3 Comparison of running time of various GPU plans in different number of particles 3 GPU (100 )/s i-parallel j-parallel w-parallel jw-parallel ,, jw-parallel, 3, jw-parallel 6 N-body AMD Radeon HD 5850 N-body (PP BH ) N-body, GPU PTPM, GPU N-body, GPU N-body, AMD HD Radeon 5850, CPU, 400 ; GPU, 2 5 References: [1] Barnes J, Hut P. A hierarchical O(nlogn) force-calculation algorithm[j]. Nature, 1986, 324: [2] Greengard L, Rokhlin V. A fast algorithm for particle simulations[j]. Journal of Computational Physics, 1987, 73(2): [3] Hagihara Y. Celestial mechanics[m]. Cambridge: MIT Press, [4] Nyland L, Harris M, Prins J. Fast N-body simulation with CUDA[J]. GPU Germs, 2007, 3: [5] Hamada T, Nitadori K, Benkrid K, et al. A novel multiple walk parallel algorithm for the Barnes-Hut treecode on GPUs towards cost effective, high performance N-body

8 N-body 1013 simulation[j]. Computer Science: Research and Development, 2009, 24(1/2): [6] Chen Guoliang. Parallel computing-structure, algorithm and programming[m]. Beijing: Higher Education Press, [7] Hamada T, Titaka I. The chamomile scheme: an optimized algorithm for N-body simulations on programmable graphics processing units[eb/ol]. ( )[ ]. [8] Hamada T, Yokota R, Nitadori K, et al. 42 TFLOPS hier- archical N-body simulations on GPUs with applications in both astrophysics and turbulence[c]//proceedings of the Conference on High Performance Computing Networking, Storage and Analysis (SC 09). New York, NY, USA: ACM, 2009: 附中文参考文献 : [6]. [M]. :, WANG Wei was born in He received his Ph.D. degree from Tongji University. Now he is a lecturer at Department of Computer Science and Technology, Tongji University. His research interests include parallel distributed computing, trustworthy computing and cloud computing, etc. (1979 ),,,,,, ZENG Xuhng was born in He is a master candidate at Tongji University. His research interests include parallel computing and cloud computing, etc. (1987 ),,,,, WANG Fuhuan was born in She is a master candidate at Tongji University. Her research interests include parallel computing and reconfigurable computing, etc. (1986 ),,,,, FU Lili was born in She is a master candidate at Tongji University. Her research interests include parallel computing and GPU programming, etc. (1986 ),,,,, GPU ZENG Guosun was born in He received his Ph.D. degree from Shanghai Jiaotong University. Now he is a professor and doctoral supervisor at Tongji University, and the senior member of IEEE and CCF. His research interests include parallel computing, trustworthy computing and cloud computing, etc. (1964 ),,,, IEEE CCF,, 863,,,

Microsoft Word - 3 王 伟.doc

Microsoft Word - 3 王  伟.doc ISSN 1673-9418 CODEN JKYTA8 E-mail: fcst@vip.163.com Journal of Frontiers of Computer Science and Technology http://www.ceaj.org 1673-9418/2012/06(02)-0118-07 Tel: +86-10-51616056 DOI: 10.3778/j.issn.1673-9418.2012.02.003

More information

,,.,, : 1),,,,, 2),,,,, 3),,,,,,,,,, [6].,,, ( ),, [9], : 1), 2),,,,, 3),,, 2.,, [10].,,,,,,,,, [11]. 2.1,, [12],, ;, ; Fig. 1 1 Granular hier

,,.,, : 1),,,,, 2),,,,, 3),,,,,,,,,, [6].,,, ( ),, [9], : 1), 2),,,,, 3),,, 2.,, [10].,,,,,,,,, [11]. 2.1,, [12],, ;, ; Fig. 1 1 Granular hier 36 7 Vol. 36, No. 7 2010 7 ACTA AUTOMATICA SINICA July, 2010 1, 2 1, 2, 3 1, 2,,,,,,, DOI,,, 10.3724/SP.J.1004.2010.00923 Distributed Simulation System Hierarchical Design Model Based on Quotient Space

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

Microsoft Word - 793-797 tb20150504赵宏宇s-高校教改纵横.doc

Microsoft Word - 793-797 tb20150504赵宏宇s-高校教改纵横.doc 微 生 物 学 通 报 Microbiology China tongbao@im.ac.cn Apr. 20, 2016, 43(4): 793 797 http://journals.im.ac.cn/wswxtbcn DOI: 10.13344/j.microbiol.china.150504 高 校 教 改 纵 横 生 物 工 程 专 业 发 酵 课 程 群 建 设 探 索 * 赵 宏 宇

More information

Fig. 1 1 The sketch for forced lead shear damper mm 45 mm 4 mm 200 mm 25 mm 2 mm mm Table 2 The energy dissip

Fig. 1 1 The sketch for forced lead shear damper mm 45 mm 4 mm 200 mm 25 mm 2 mm mm Table 2 The energy dissip * - 1 1 2 3 1. 100124 2. 100124 3. 210018 - ABAQUS - DOI 10. 13204 /j. gyjz201511033 EXPERIMENTAL STUDY AND THEORETICAL MODEL OF A NEW TYPE OF STEEL-LEAD DAMPING Shen Fei 1 Xue Suduo 1 Peng Lingyun 2 Ye

More information

F4

F4 DOI:10.3969/j.issn.1009-6868.2016.01.002 网 络 出 版 地 址 :http://www.cnki.net/kcms/detail/34.1228.tn.20151117.1506.006.html Challenges and Countermeasures of Network Space Security 周 延 森 /ZHOU Yansen 周 琳 娜

More information

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :,

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :, 3 1 Vol. 3. 1 2008 2 CAA I Transactions on Intelligent Systems Feb. 2008, (,210093) :.,; 3., 3. :; ; ; ; : TP391 :A :167324785 (2008) 0120001208 A system f or automatic generation of 3D building models

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 2016 年 第 25 卷 第 期 http://www.c-s-a.org.cn 计 算 机 系 统 应 用 1 基 于 节 点 融 合 分 层 法 的 电 网 并 行 拓 扑 分 析 王 惠 中 1,2, 赵 燕 魏 1,2, 詹 克 非 1, 朱 宏 毅 1 ( 兰 州 理 工 大 学 电 气 工 程 与 信 息 工 程 学 院, 兰 州 730050) 2 ( 甘 肃 省 工 业 过 程 先

More information

小论文草稿2_邓瀚

小论文草稿2_邓瀚 城 市 轨 道 交 通 列 车 运 行 控 制 系 统 仿 真 分 析 平 台 的 设 计 邓 瀚 1 赵 霞 1 张 琼 燕 2 刘 循 2 (1. 上 海 交 通 大 学 自 动 化 系, 系 统 控 制 与 信 息 处 理 教 育 部 重 点 实 验 室, 上 海,200240;2. 上 海 申 通 地 铁 股 份 有 限 公 司, 上 海,201103) 摘 要 文 章 设 计 了 一 种

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

Microsoft Word - A201210-60_1349949005.doc

Microsoft Word - A201210-60_1349949005.doc 5 10 15 20 25 一 种 针 对 在 线 旅 游 线 路 网 页 判 别 算 法 的 研 究 与 实 现 徐 显 炼, 郭 燕 慧 ( 北 京 邮 电 大 学 信 息 安 全 中 心, 北 京 100876) 摘 要 : 随 着 近 年 来 在 线 旅 游 业 的 快 速 发 展, 在 线 旅 游 搜 索 引 擎 己 经 成 为 当 前 搜 索 引 擎 发 展 的 一 个 热 门 方 向

More information

% GIS / / Fig. 1 Characteristics of flood disaster variation in suburbs of Shang

% GIS / / Fig. 1 Characteristics of flood disaster variation in suburbs of Shang 20 6 2011 12 JOURNAL OF NATURAL DISASTERS Vol. 20 No. 6 Dec. 2011 1004-4574 2011 06-0094 - 05 200062 1949-1990 1949 1977 0. 8 0. 03345 0. 01243 30 100 P426. 616 A Risk analysis of flood disaster in Shanghai

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

SVM OA 1 SVM MLP Tab 1 1 Drug feature data quantization table

SVM OA 1 SVM MLP Tab 1 1 Drug feature data quantization table 38 2 2010 4 Journal of Fuzhou University Natural Science Vol 38 No 2 Apr 2010 1000-2243 2010 02-0213 - 06 MLP SVM 1 1 2 1 350108 2 350108 MIP SVM OA MLP - SVM TP391 72 A Research of dialectical classification

More information

30 2008,2(1) 基 礎 上, 各 種 數 據 均 以 圖 形 化 方 式 表 達, 因 此 各 級 分 析 結 果 均 可 以 隨 時 檢 驗 另 外, 由 於 系 統 是 以 網 站 形 式 發 佈, 任 何 用 戶 均 可 通 過 網 絡 查 詢 瀏 覽 系 統 中 的 數 據, 因

30 2008,2(1) 基 礎 上, 各 種 數 據 均 以 圖 形 化 方 式 表 達, 因 此 各 級 分 析 結 果 均 可 以 隨 時 檢 驗 另 外, 由 於 系 統 是 以 網 站 形 式 發 佈, 任 何 用 戶 均 可 通 過 網 絡 查 詢 瀏 覽 系 統 中 的 數 據, 因 第 2 卷 第 1 期 澳 門 科 技 大 學 學 報 Vol.2 No.1 2008 年 6 月 30 日 Journal of Macau University of Science and Technology June 30, 2008 29 月 球 探 測 數 據 實 時 管 理 系 統 的 開 發 朱 紅 岷 **, 祝 夢 華, 劉 良 鋼 *, 許 敖 敖 ( 澳 門 科 技 大 學

More information

~ ~

~ ~ * 40 4 2016 7 Vol. 40 No. 4 July 2016 35 Population Research 2014 1 2016 2016 9101. 0 40 49. 6% 2017 ~ 2021 1719. 5 160 ~ 470 100872 Accumulated Couples and Extra Births under the Universal Tw o-child

More information

km km mm km m /s hpa 500 hpa E N 41 N 37 N 121

km km mm km m /s hpa 500 hpa E N 41 N 37 N 121 32 2 2014 4 Journal of Arid Meteorology Vol. 32 No. 2 Apr 2014. 08. 03 J. 2014 32 2256-262 LU Guirong WANG Wen YU Huaizhenget al. The Influence of Damrey Typhoon on 08. 03 Rainstorm Process in Rizhao of

More information

/MPa / kg m - 3 /MPa /MPa 2. 1E ~ 56 ANSYS 6 Hz (a) 一阶垂向弯曲 (b) 一阶侧向弯曲 (c) 一阶扭转 (d) 二阶侧向弯曲 (e) 二阶垂向弯曲 (f) 弯扭组合 2 6 Hz

/MPa / kg m - 3 /MPa /MPa 2. 1E ~ 56 ANSYS 6 Hz (a) 一阶垂向弯曲 (b) 一阶侧向弯曲 (c) 一阶扭转 (d) 二阶侧向弯曲 (e) 二阶垂向弯曲 (f) 弯扭组合 2 6 Hz 31 3 Vol. 31 No. 3 218 9 Journal of Shijiazhuang Tiedao University Natural Science Edition Sep. 218 1 1 2 1 2 1 1. 543 2. 543 U462. 3 217-2 - 16 A 295-373 218 3-63 - 6 1-4 5-7 8-11 1 11 11 398 mm 86 mm

More information

附3

附3 普 通 高 等 学 校 本 科 专 业 设 置 申 请 表 ( 备 案 专 业 适 用 ) 080910T 3-6 2 016 7 6 4884878 目 录 填 表 说 明 ⒈ ⒉ ⒊ ⒋ ⒌ 1. 普 通 高 等 学 校 增 设 本 科 专 业 基 本 情 况 表 080910T 3-6 1978 36 ( 1978) ( 2008) 2017 60 120 / S J ⒉ 学 校 基 本 情

More information

<4D6963726F736F667420576F7264202D20B9DCC0EDD6C6B6C8BBE3B1E0B5DAB6FEB8E5>

<4D6963726F736F667420576F7264202D20B9DCC0EDD6C6B6C8BBE3B1E0B5DAB6FEB8E5> 土 木 工 程 防 灾 国 家 重 点 实 验 室 ( 同 济 大 学 ) STATE KEY LABORATORY OF DISASTER REDUCTION IN CIVIL ENGINEERING, TONGJI UNIVERSITY 管 理 制 度 汇 编 土 木 工 程 防 灾 国 家 重 点 实 验 室 ( 同 济 大 学 ) 目 录 国 家 重 点 实 验 室 建 设 与 运 行 管

More information

. 1 4 Web PAD

. 1 4 Web PAD 20 1 2014 2 Open Education Research Vol. 20 No. 1 Feb. 2014 1 2 1. 100875 2. - 100875 G434 A 1007-2179 2013 06-0100 - 11 10 2013 2013 Microlecture Minicourse Microlesson Microlecture A Le Roy A. McGrew

More information

2015-5-1.indd

2015-5-1.indd 中 国 科 技 资 源 导 刊 ISSN 1674-1544 2015 年 9 月 第 47 卷 第 5 期 26-34 CHINA SCIENCE & TECHNOLOGY RESOURCES REVIEW ISSN 1674-1544 Vol.47 No.5 26-34, Sept. 2015 国 家 科 技 报 告 服 务 系 统 构 建 研 究 王 星 等 赵 捷 ( 中 国 科 学 技 术

More information

IT Data-intensive application,iscsi Middl

IT Data-intensive application,iscsi Middl 112-861 2-1-1 163 8677 1 24 2 E-mail: shiori@ogl.is.ocha.ac.jp, sane@cc.kogakuin.ac.jp, oguchi@computer.org IT Data-intensive application,iscsi iddleware for Load Distribution among Cloud Computing Resource

More information

Technical Acoustics Vol.27, No.4 Aug., 2008,,, (, ) :,,,,,, : ; ; : TB535;U : A : (2008) Noise and vibr

Technical Acoustics Vol.27, No.4 Aug., 2008,,, (, ) :,,,,,, : ; ; : TB535;U : A : (2008) Noise and vibr 8 8 Technical Acoustics Vol., No. Aug., 8,,, (, 8) :,,,,,, : ; ; : TB;U.+ 9 : A : -(8)--- Noise and vibration tests for fuel cell vehicel and noise sources identification SHEN Xiu-min, ZUO Shu-guang, CAI

More information

240 生 异 性 相 吸 的 异 性 效 应 [6] 虽 然, 心 理 学 基 础 研 [7-8] 究 已 经 证 实 存 在 异 性 相 吸 异 性 相 吸 是 否 存 在 于 名 字 认 知 识 别 尚 无 报 道 本 实 验 选 取 不 同 性 别 的 名 字 作 为 刺 激 材 料, 通

240 生 异 性 相 吸 的 异 性 效 应 [6] 虽 然, 心 理 学 基 础 研 [7-8] 究 已 经 证 实 存 在 异 性 相 吸 异 性 相 吸 是 否 存 在 于 名 字 认 知 识 别 尚 无 报 道 本 实 验 选 取 不 同 性 别 的 名 字 作 为 刺 激 材 料, 通 2011 年 Journal of Capital Medical University 4月 第2 期 Apr 2011 Vol 32 No 2 基础研究 doi: 10 3969 / j issn 1006-7795 2011 02 015 人脑识别不同性别名字反应时的差异研究 高迎霄 陈昭燃 * 张明霞 ( 首都医科大学神经生物系高级脑功能中心) 摘要 目的 探讨男女对不同性别名字认知加工速度是否存在差异

More information

第 1 期 常 壮 等 : 基 于 RS-485 总 线 的 舰 船 损 管 训 练 平 台 控 系 统 研 究 87 能 : 1) 损 管 基 本 理 论 的 学 习 帮 助 舰 员 熟 悉 舰 艇 舱 室 相 关 规 章 制 度 损 管 施 分 布 和 使 用 不 沉 性 文 件 等 ) 损 管

第 1 期 常 壮 等 : 基 于 RS-485 总 线 的 舰 船 损 管 训 练 平 台 控 系 统 研 究 87 能 : 1) 损 管 基 本 理 论 的 学 习 帮 助 舰 员 熟 悉 舰 艇 舱 室 相 关 规 章 制 度 损 管 施 分 布 和 使 用 不 沉 性 文 件 等 ) 损 管 第 6 卷 第 1 期 011 年 月 Chinese 中 国 Journal 舰 of船 Ship研 Research 究 Vol.6 No.1 Feb. 第 011 6 卷 doi: 10. 3969 / j. issn. 1673-3185. 011. 01. 017 基 于 RS-485 总 线 的 舰 船 损 管 训 练 平 台 控 系 统 研 究 常 壮 1 邱 金 水 刘 伯 运 1

More information

计 算 机 系 统 应 用 http://www.c-s-a.org.cn 2016 年 第 25 卷 第 1 期 的 编 程 语 言 Giotto [9] 编 写 控 制 程 序, 可 以 方 便 的 控 制 程 序 的 逻 辑 执 行 时 间, 从 而 使 得 任 务 时 间 的 依 赖 关 系

计 算 机 系 统 应 用 http://www.c-s-a.org.cn 2016 年 第 25 卷 第 1 期 的 编 程 语 言 Giotto [9] 编 写 控 制 程 序, 可 以 方 便 的 控 制 程 序 的 逻 辑 执 行 时 间, 从 而 使 得 任 务 时 间 的 依 赖 关 系 1 基 于 PRET 的 编 程 模 型 李 晓 飞, 陈 香 兰 ( 中 国 科 学 技 术 大 学 计 算 机 学 院, 合 肥 230039) 摘 要 : 时 间 可 预 测 性 在 信 息 物 理 系 统 设 计 领 域 正 变 得 越 来 越 重 要, 目 前 时 间 可 预 测 性 系 统 的 设 计 分 为 编 程 模 型 和 体 系 结 构 两 个 层 次, 编 程 模 型 的 研

More information

01-0982.doc

01-0982.doc 第 32 卷 第 7 期 岩 土 工 程 学 报 Vol.32 No.7 2010 年 7 月 Chinese Journal of Geotechnical Engineering July 2010 沿 海 碎 石 回 填 地 基 上 高 能 级 强 夯 系 列 试 验 对 比 研 究 年 廷 凯 1,2, 水 伟 厚 3, 李 鸿 江 4, 杨 庆 1,2, 王 玉 立 (1. 大 连 理 工

More information

物理学报 Acta Phys. Sin. Vol. 62, No. 14 (2013) 147802 叠 [4]. PET 设备最重要的部件就是探测器环, 探测 备重建图像具有减少数据插值的优势. 器环的性能直接影响 PET 的成像能力. 探头与探头 之间得到的符合直线叫做投影线. 所有的投影线在

物理学报 Acta Phys. Sin. Vol. 62, No. 14 (2013) 147802 叠 [4]. PET 设备最重要的部件就是探测器环, 探测 备重建图像具有减少数据插值的优势. 器环的性能直接影响 PET 的成像能力. 探头与探头 之间得到的符合直线叫做投影线. 所有的投影线在 数 据 插 值 对 正 电 子 发 射 断 层 成 像 设 备 的 图 像 重 建 影 响 的 研 究 * 杨 昆 刘 新 新 李 晓 苇 ( 河 北 大 学 物 理 学 院, 保 定 071000 ) ( 2013 年 1 月 30 日 收 到 ; 2013 年 4 月 9 日 收 到 修 改 稿 ) 正 电 子 发 射 断 层 扫 描 (positron emission computed tomography,

More information

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A 2012 10 31 10 Mechanical Science and Technology for Aerospace Engineering October Vol. 31 2012 No. 10 Web2. 0 400030 SaaS B /S Web2. 0 Web2. 0 TP315 A 1003-8728 2012 10-1638-06 Design and Implementation

More information

(science demonstration phase) 2 2 l = 30 b = 0 l = 59 b = 0 5 PACS 70 µm 160 µm SPIRE 250 µm 350 µm 500 µm Hi-GAL GPU 2 GPU 3 GPU GPU

(science demonstration phase) 2 2 l = 30 b = 0 l = 59 b = 0 5 PACS 70 µm 160 µm SPIRE 250 µm 350 µm 500 µm Hi-GAL GPU 2 GPU 3 GPU GPU 31 4 Vol. 31, No. 4 2013 11 PROGRESS IN ASTRONOMY Nov., 2013 doi: 10.3969/j.issn.1000-8349.2013.04.05 GPU 1,2 1 ( 1. 100012 2. 100049 ) (GPU) GPU GPU GPU GPU CUDA PyOpenCL GPU GPU GPU N37 P141.91 A 1 (graphics

More information

31 17 www. watergasheat. com km 2 17 km 15 km hm % mm Fig. 1 Technical route of p

31 17 www. watergasheat. com km 2 17 km 15 km hm % mm Fig. 1 Technical route of p 31 17 215 9 CHINA WATER & WASTEWATER Vol. 31 No. 17 Sep. 215 < > 232 SUSTAIN BMP SUSTAIN TU992 C 1-462 215 17-111 - 8 Planning and Design of Sponge City Case Study of Beijing Yongding River Ecological

More information

<4D6963726F736F667420576F7264202D20C8EDCDC1B5D8BBF9CDB2BBF9CAD4B2C9C6BDCCA8B5C4CACAD3C3D0D4B7D6CEF6>

<4D6963726F736F667420576F7264202D20C8EDCDC1B5D8BBF9CDB2BBF9CAD4B2C9C6BDCCA8B5C4CACAD3C3D0D4B7D6CEF6> 第 47 卷 第 2 期 西 安 建 筑 科 技 大 学 学 报 ( 自 然 科 学 版 ) Vol. 47 No.2 2015 年 4 月 J. Xi'an Univ. of Arch. & Tech. (Natural Science Edition) Apr. 2015 DOI:10.15986/j.1006-7930.2015.02.016 软 土 地 基 筒 基 试 采 平 台 的 适 用

More information

JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 5 Oct /35 TU3521 P315.

JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 5 Oct /35 TU3521 P315. 31 5 2011 10 JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 5 Oct. 2011 1000-1301 2011 05-0075 - 09 510405 1 /35 TU3521 P315. 8 A Earthquake simulation shaking table test and analysis

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 6 Dec

JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 6 Dec 31 6 2011 12 JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 6 Dec. 2011 1000-1301 2011 06-0159 - 08 1 1 1 1 2 1. 150080 2. 100124 1 2 3 P315. 93 TU 43 TU41 A Shaking table test

More information

Ansys /4 Ansys % 9 60% MU10 M m 1 Fig. Actual situation of measured building 1 Fig. 1 First floor plan of typical r

Ansys /4 Ansys % 9 60% MU10 M m 1 Fig. Actual situation of measured building 1 Fig. 1 First floor plan of typical r 0 5 011 10 JOURNAL OF NATURAL DISASTERS Vol. 0 No. 5 Oct. 011 1004-4574 011 05-0018 - 06 1 3 1. 41008. 41008 3. 410000 7 0. 10g 7 0. 15g 3. 1% 5% P64. 3 A Field test and numerical simulations of seismic

More information

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2 32 1 Vol. 32, No. 1 2014 2 PROGRESS IN ASTRONOMY Feb., 2014 doi: 10.3969/j.issn.1000-8349.2014.01.07 VLBI 1,2 1,2 (1. 200030 2. 200030) VLBI (Digital Baseband Convertor DBBC) CDAS (Chinese VLBI Data Acquisition

More information

<A448A4E5AAC0B77CBEC7B3F8B2C43132A8F7B2C434B4C15F E706466>

<A448A4E5AAC0B77CBEC7B3F8B2C43132A8F7B2C434B4C15F E706466> 105 12 4 319-340 1 2 2 3 1 2 3 6 NVDA NVDA 2015 2014 320 5 37 22 5 2014 3000 2016 3 313 2016 12% inclusive education screen reader 321 2 3 2015 self-learning semi-structured interview 2002 2011 2008 322

More information

Microsoft Word - ED-774.docx

Microsoft Word - ED-774.docx journal.newcenturyscience.com/index.php/gjanp Global Journal of Advanced Nursing Practice,214,Vol.1,No.1 The practicality of an improved method of intravenous infusion exhaust specialized in operating

More information

科 研 信 息 化 技 术 与 应 用,2015, 6 (1) of identity and the framework of identity management, this paper analyses the development trend of Identity Management

科 研 信 息 化 技 术 与 应 用,2015, 6 (1) of identity and the framework of identity management, this paper analyses the development trend of Identity Management 科 研 信 息 化 技 术 与 应 用 2015, 6(1): 41 49 应 用 / APPLICATION 身 份 管 理 发 展 趋 势 和 中 国 科 学 院 身 份 管 理 系 统 薛 聪 1,2, 向 继 1 1, 高 能 1. 中 国 科 学 院 信 息 工 程 研 究 所 信 息 安 全 国 家 重 点 实 验 室, 北 京 100093 2. 中 国 科 学 院 大 学, 北 京

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

14-1-人文封面

14-1-人文封面 107 14 157-70 1 1 2 2 2 2 1 2 imonsters Trend Micro Incorporated 2015 2012 35 2013 2 140 2014 Android 400 2012 10 2015 800 imonsters 58 imonsters All, Castellar, & Van Looy, 2016 Piaget 1962 Vygotsky 1978

More information

[1-3] (Smile) [4] 808 nm (CW) W 1 50% 1 W 1 W Fig.1 Thermal design of semiconductor laser vertical stack ; Ansys 20 bar ; bar 2 25 Fig

[1-3] (Smile) [4] 808 nm (CW) W 1 50% 1 W 1 W Fig.1 Thermal design of semiconductor laser vertical stack ; Ansys 20 bar ; bar 2 25 Fig 40 6 2011 6 Vol.40 No.6 Infrared and Laser Engineering Jun. 2011 808 nm 2000 W 1 1 1 1 2 2 2 2 2 12 (1. 710119 2. 710119) : bar 808 nm bar 100 W 808 nm 20 bar 2 000 W bar LIV bar 808 nm : : TN248.4 TN365

More information

4 115,,. : p { ( x ( t), y ( t) ) x R m, y R n, t = 1,2,, p} (1),, x ( t), y ( t),,: F : R m R n.,m, n, u.,, Sigmoid. :,f Sigmoid,f ( x) = ^y k ( t) =

4 115,,. : p { ( x ( t), y ( t) ) x R m, y R n, t = 1,2,, p} (1),, x ( t), y ( t),,: F : R m R n.,m, n, u.,, Sigmoid. :,f Sigmoid,f ( x) = ^y k ( t) = 2007 4 4 :100026788 (2007) 0420114206, (, 430074) :,,,,,,GIS.,,. : ; ; ; ; : TP391 ;P338 : A Development of Combinatorial Intelligentized Decision2Making Support System and Its Utilization in Runoff Forecasting

More information

<4D6963726F736F667420576F7264202D203631372D3632312032303133303430333030312DBACEC0F25FD0A3B6D4B8E55F2DB6FED0A32D2D2DC8A5B5F4CDBCD6D0B5C4BBD8B3B5B7FBBAC52E646F63>

<4D6963726F736F667420576F7264202D203631372D3632312032303133303430333030312DBACEC0F25FD0A3B6D4B8E55F2DB6FED0A32D2D2DC8A5B5F4CDBCD6D0B5C4BBD8B3B5B7FBBAC52E646F63> 第 4 卷 第 2 期 食 品 安 全 质 量 检 测 学 报 Vol. 4 No. 2 2013 年 4 月 Journal of Food Safety and Quality Apr., 2013 何 莉 *, 姜 笑 寒 ( 广 东 省 食 品 药 品 职 业 技 术 学 校, 广 州 510663) 摘 要 : 本 文 通 过 科 学 地 运 用 html5+jsp+sql 技 术, 建

More information

标题

标题 第 48 卷 第 6 期 2 1 6 年 6 月 哈 尔 滨 工 业 大 学 学 报 JOURNAL OF HARBIN INSTITUTE OF TECHNOLOGY Vol 48 No 6 Jun. 216 doi:1.11918 / j.issn.367 6234.216.6.1 大 跨 度 楼 盖 结 构 在 运 动 荷 载 下 的 振 动 性 能 杨 维 国 1, 马 伯 涛 2, 宋 毛

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

g 100mv /g 0. 5 ~ 5kHz 1 YSV8116 DASP 1 N 2. 2 [ M] { x } + [ C] { x } + [ K]{ x } = { f t } 1 M C K 3 M C K f t x t 1 [ H( ω )] = - ω 2

g 100mv /g 0. 5 ~ 5kHz 1 YSV8116 DASP 1 N 2. 2 [ M] { x } + [ C] { x } + [ K]{ x } = { f t } 1 M C K 3 M C K f t x t 1 [ H( ω )] = - ω 2 10 2016 10 No. 10 Modular Machine Tool & Automatic Manufacturing Technique Oct. 2016 1001-2265 2016 10-0012 - 05 DOI 10. 13462 /j. cnki. mmtamt. 2016. 10. 004 * 116024 MIMO TH166 TG502 A Dynamic Performance

More information

课程13-7.FIT)

课程13-7.FIT) 母 亲 给 出 的 答 案 有 个 孩 子 对 一 个 问 题 一 直 想 不 通 : 为 什 么 他 的 同 桌 想 考 第 一 一 下 子 就 考 了 第 一, 而 自 己 想 考 第 一 却 只 考 了 全 班 第 二 十 一 名? 回 家 后 他 问 道 : 妈 妈 我 是 不 是 比 别 人 笨? 我 觉 得 我 和 他 一 样 听 老 师 的 话, 一 样 认 真 地 做 作 业, 可

More information

43 14. 45 3 7 220 1 2 cm /s 2 1. 5 3 1 4 c d 1 /40 1 /4 1 /9 600 0. 129 6 7 1 /6 400 1 /256 000 1. 5 2 2 2. 1 /m /Hz /kn / kn m 6 6 0. 1 ~ 50 600 1 80

43 14. 45 3 7 220 1 2 cm /s 2 1. 5 3 1 4 c d 1 /40 1 /4 1 /9 600 0. 129 6 7 1 /6 400 1 /256 000 1. 5 2 2 2. 1 /m /Hz /kn / kn m 6 6 0. 1 ~ 50 600 1 80 43 14 2013 7 Building Structure Vol. 43 No. 14 Jul. 2013 * 1 1 1 2 3 3 3 2 2 1 100013 2 430022 3 200002 1 40 ETABS ABAQUS TU355 TU317 +. 1 A 1002-848X 2013 14-0044-04 Compairion study between the shaking

More information

1 引言

1 引言 P P 第 40 卷 Vol.40 第 7 期 No.7 计 算 机 工 程 Computer Engineering 014 年 7 月 July 014 开 发 研 究 与 工 程 应 用 文 章 编 号 :1000-348(014)07-081-05 文 献 标 识 码 :A 中 图 分 类 号 :TP391.41 摘 基 于 图 像 识 别 的 震 象 云 地 震 预 测 方 法 谢 庭,

More information

Your Paper's Title Starts Here: Please Center

Your Paper's Title Starts Here: Please Center International Conference on Advanced Information and Communication Technology for Education (ICAICTE 2014) Analysis about the influence of English Science News to the College English Study of College Students

More information

Gassama Abdoul Gadiri University of Science and Technology of China A dissertation for master degree Ordinal Probit Regression Model and Application in Credit Rating for Users of Credit Card Author :

More information

Microsoft Word - A201009-646.doc

Microsoft Word - A201009-646.doc # 中 国 网 络 游 戏 外 挂 问 题 现 状 分 析 * 兰 晓, 尹 杰 ( 中 国 传 媒 大 学 信 息 工 程 学 院 ) 摘 要 : 网 络 游 戏 外 挂 的 泛 滥 严 重 阻 碍 了 中 国 网 络 游 戏 产 业 的 正 常 发 展 本 文 给 出 了 网 络 游 戏 外 挂 的 定 义, 并 对 当 前 中 国 网 络 游 戏 存 在 的 安 全 问 题 进 行 了 分 析,

More information

Mnq 1 1 m ANSYS BEAM44 E0 E18 E0' Y Z E18' X Y Z ANSYS C64K C70C70H C /t /t /t /mm /mm /mm C64K

Mnq 1 1 m ANSYS BEAM44 E0 E18 E0' Y Z E18' X Y Z ANSYS C64K C70C70H C /t /t /t /mm /mm /mm C64K 25 4 Vol. 25 No. 4 2012 12 JOURNAL OF SHIJIAZHUANG TIEDAO UNIVERSITY NATURAL SCIENCE Dec. 2012 1 2 1 2 3 4 1 2 1. 050043 2. 050043 3. 3300134. 450052 ANSYS C80 C80 125 ac70 0 U24 A 2095-0373201204-0017-06

More information

698 39,., [6].,,,, : 1) ; 2) ,, 14,, [7].,,,,, : 1) :,. 2) :,,, 3) :,,,., [8].,. 1.,,,, ,,,. : 1) :,, 2) :,, 200, s, ) :,.

698 39,., [6].,,,, : 1) ; 2) ,, 14,, [7].,,,,, : 1) :,. 2) :,,, 3) :,,,., [8].,. 1.,,,, ,,,. : 1) :,, 2) :,, 200, s, ) :,. 39 6 Vol. 39, No. 6 2013 6 ACTA AUTOMATICA SINICA June, 2013 1, 2,,,. DOI,,,., 2013, 39(6): 697 702 10.3724/SP.J.1004.2013.00697 Present Situation and Development Tendency of Aerospace Control Techniques

More information

穨423.PDF

穨423.PDF Chinese Journal of Science Education 2002,, 423-439 2002, 10(4), 423-439 1 2 1 1 1 2 90 8 10 91 4 9 91 8 22 ) NII 1995 7 14, 1999 1997 (Cooperative Remotely Accessible Learning CORAL) 424 (Collaborative

More information

#4 ~ #5 12 m m m 1. 5 m # m mm m Z4 Z5

#4 ~ #5 12 m m m 1. 5 m # m mm m Z4 Z5 2011 6 6 153 JOURNAL OF RAILWAY ENGINEERING SOCIETY Jun 2011 NO. 6 Ser. 153 1006-2106 2011 06-0014 - 07 300142 ABAQUS 4. 287 mm 6. 651 mm U455. 43 A Analysis of Impact of Shield Tunneling on Displacement

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

实验室代码

实验室代码 实 验 室 编 号 上 次 评 估 日 期 XJDX0905 自 治 区 重 点 实 验 室 五 年 工 作 总 结 (2010 年 1 月 1 日 2014 年 12 月 31 日 ) 实 验 室 名 称 : 实 验 室 主 任 : 新 疆 多 语 种 信 息 技 术 重 点 实 验 室 吾 守 尔 斯 拉 木 依 托 单 位 名 称 : 新 疆 大 学 联 系 电 话 : 0991-8582762

More information

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 新 媒 体 环 境 下 公 务 员 在 线 培 训 模 式 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 潘 琳 数 字 媒 体 周 荣 庭 教 授 二 一 二 年 五 月 University of Science and Technology of China A dissertation for

More information

[1] Nielsen [2]. Richardson [3] Baldock [4] 0.22 mm 0.32 mm Richardson Zaki. [5-6] mm [7] 1 mm. [8] [9] 5 mm 50 mm [10] [11] [12] -- 40% 50%

[1] Nielsen [2]. Richardson [3] Baldock [4] 0.22 mm 0.32 mm Richardson Zaki. [5-6] mm [7] 1 mm. [8] [9] 5 mm 50 mm [10] [11] [12] -- 40% 50% 38 2 2016 4 -- 1,2, 100190, 100083 065007 -- 0.25 mm 2.0 mm d 10 = 0.044 mm 640 3 300. Richardson--Zaki,,, O359 A doi 10.6052/1000-0879-15-230 EXPERIMENTAL STUDY OF FLUID-SOLID TWO-PHASE FLOW IN A VERTICAL

More information

第 02 期 1 医 疗 信 息 现 状 20% EMR Electronic Medical Record HIS HIS [1-2] 40 2011 张 肖 等 : 基 于 大 数 据 的 医 疗 健 康 创 新 应 用 2 大 数 据 环 境 下 医 疗 数 据 特 征 分 析 PC [3]

第 02 期 1 医 疗 信 息 现 状 20% EMR Electronic Medical Record HIS HIS [1-2] 40 2011 张 肖 等 : 基 于 大 数 据 的 医 疗 健 康 创 新 应 用 2 大 数 据 环 境 下 医 疗 数 据 特 征 分 析 PC [3] 电 子 科 学 技 术 电 第 02 子 科 卷 学 第 技 02 术 期 Electronic 2015 年 Science 3 月 & Technology Electronic Science & Technology Vol.02 No.02 Mar.2015 年 基 于 大 数 据 的 医 疗 健 康 创 新 应 用 张 肖, 杨 锦 洲, 王 志 勇 ( 中 国 联 通 研 究 院, 北

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

为 止, 以 集 中 式 光 伏 发 电 系 统 为 主, 其 主 要 原 因 是 我 国 政 策 推 动 方 面 以 国 家 主 导 为 主, 这 种 自 上 而 下 的 政 策 和 运 行 方 式, 更 容 易 迅 速 推 动 集 中 式 光 伏 系 统 的 建 设 集 中 式 光 伏 发 电

为 止, 以 集 中 式 光 伏 发 电 系 统 为 主, 其 主 要 原 因 是 我 国 政 策 推 动 方 面 以 国 家 主 导 为 主, 这 种 自 上 而 下 的 政 策 和 运 行 方 式, 更 容 易 迅 速 推 动 集 中 式 光 伏 系 统 的 建 设 集 中 式 光 伏 发 电 The Distributed Renewable Energy and Smart Micro Grid System * 我 国 分 布 式 光 伏 发 电 的 现 状 与 展 望 1 王 文 静 2 王 斯 成 1 中 国 科 学 院 电 工 研 究 所 北 京 100190 2 国 家 发 展 和 改 革 委 员 会 能 源 研 究 所 北 京 100038 摘 要 文 章 论 述 了 分

More information

untitled

untitled JABEE ED JABEE (ED) 2007 JABEE JABEE EDJABEE JABEE (Plan) (Do) (Do) (Do) (Check) (Action) ED 1 20022003 (1) (e) 20042007 (1) (e) WA (1)(e) JABEE (1/3) JABEE 1. 2. (2/3) JABEE 3. (3/3) JABEE 4. 5. 6. 2007

More information

Microsoft Word - 103-4 記錄附件

Microsoft Word - 103-4 記錄附件 國 立 虎 尾 技 大 103 年 度 第 4 次 教 務 會 議 記 錄 附 件 中 華 民 國 104 年 6 月 16 日 受 文 者 : 國 立 虎 尾 技 大 發 文 日 期 : 中 華 民 國 104 年 5 月 28 日 發 文 字 號 : 臺 教 技 ( 二 ) 字 第 1040058590 號 速 別 : 最 速 件 密 等 及 解 密 條 件 或 保 密 期 限 : 附 件 :

More information

S9 2 S S S S S S

S9 2 S S S S S S 17 2 Journal of South China University of Technology Vol. 17 No. 2 2015 4 Social Science Edition Api. 2015 * 510640 TU981 A 1009-055X 201502-0106 - 11 HEMC Higher Education Mega Center 43. 3 18 ~ 20 35

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

132 包 装 工 程 2016 年 5 月 网 产 品 生 命 周 期 是 否 有 与 传 统 产 品 生 命 周 期 曲 线 相 关 的 类 似 趋 势 旨 在 抛 砖 引 玉, 引 起 大 家 对 相 关 问 题 的 重 视, 并 为 进 一 步 研 究 处 于 不 同 阶 段 的 互 联 网

132 包 装 工 程 2016 年 5 月 网 产 品 生 命 周 期 是 否 有 与 传 统 产 品 生 命 周 期 曲 线 相 关 的 类 似 趋 势 旨 在 抛 砖 引 玉, 引 起 大 家 对 相 关 问 题 的 重 视, 并 为 进 一 步 研 究 处 于 不 同 阶 段 的 互 联 网 第 37 卷 第 10 期 包 装 工 程 2016 年 5 月 PACKAGING ENGINEERING 131 传 统 产 品 生 命 周 期 曲 线 对 互 联 网 产 品 适 应 性 探 究 田 姣, 刘 吉 昆 ( 清 华 大 学, 北 京 100084) 摘 要 : 目 的 探 讨 传 统 产 品 生 命 周 期 曲 线 对 于 互 联 网 产 品 生 命 周 期 是 否 依 然 适

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

(Pattern Recognition) 1 1. CCD

(Pattern Recognition) 1 1. CCD ********************************* ********************************* (Pattern Recognition) 1 1. CCD 2. 3. 4. 1 ABSTRACT KeywordsMachine Vision, Real Time Inspection, Image Processing The purpose of this

More information

IT 36% Computer Science Teachers Association, CSTA K K-12 CSTA K-12 K-12 K-6 K6-9 K STEM STEM STEM

IT 36% Computer Science Teachers Association, CSTA K K-12 CSTA K-12 K-12 K-6 K6-9 K STEM STEM STEM 2017 4 357 GLOBAL EDUCATION Vol. 46 No4, 2017 K-12 2016 K-12 K-12 / 200062 / 200062 2015 8 2015 STEM STEM 1 Computer Science Association for Computing Machinery ACM Code Computer Science Teachers Association

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

66 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 Abstract This study aimed to analyze the implementing outcomes of ability grouping practice for freshman English at a u

66 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 Abstract This study aimed to analyze the implementing outcomes of ability grouping practice for freshman English at a u 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 0 年,(),-0 65 私 立 科 技 大 學 四 技 大 一 新 生 英 文 能 力 分 級 教 學 成 效 分 析 An Analysis of the Implementing Outcomes of Ability Grouping of Freshman English in a University of Technology 溫

More information

9 9 9-99 9 9 8 9 00 9 9 9 9 008 8 00 00 00 0 008 0 0 9 9 99 00 9 98

9 9 9-99 9 9 8 9 00 9 9 9 9 008 8 00 00 00 0 008 0 0 9 9 99 00 9 98 0 No. 0 JOURNAL OF HISTORIOGRAPHY Serial No. ( 南 京 大 学 历 史 系, 江 苏 南 京 009) 新 文 化 运 动 以 后, 中 国 的 文 史 学 术 界 大 致 分 为 南 北 两 大 系 统, 以 新 旧 为 重 要 分 野 其 中, 位 于 南 京 的 东 南 大 学 多 被 视 为 南 方 旧 学 的 重 镇 9 年 南 京 国 民 政

More information

m K K K K m Fig. 2 The plan layout of K K segment p

m K K K K m Fig. 2 The plan layout of K K segment p 410151 K7 + 914 - K7 + 984 12 5. 3 Midas DOI 10. 7617 /j. issn. 1000-8993. 2013. 09. 020 THE ANALYSIS OF THE DESIGN AND CONSTRUCTION SECURITY OF DEEP FOUNDATION IN PURUI TUNNEL OPEN-CUT SEGMENT Yang Ping

More information

标题

标题 DOI:0.3878 / j.cnki.jnuist.206.03.009 来 鹏 赵 茹 蕾 郭 利 珍 银 行 客 户 定 期 存 款 认 购 的 统 计 决 策 研 究 摘 要 当 今 银 行 之 间 的 竞 争 日 益 加 剧, 能 有 效 地 挖 掘 潜 在 客 户 并 为 之 提 供 差 异 化 服 务, 对 提 高 银 行 竞 争 力 尤 为 重 要. 用 决 策 树 算 法 对 可

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

a a a 1. 4 Izumi et al Izumi & Bigelow b

a a a 1. 4 Izumi et al Izumi & Bigelow b 26 2012 2 * 10 6 1996 2002 2006 1996 2007 2004 2004 60 4 30 1998 2006 2006-2007 1. 1 * ' 2010 2011 254 2000 2005a 1999 3 2000 2004 2008 1. 2 2004 2005a 1. 3 1 2 3 4 5 4 2000 2004 2005a 1. 4 Izumi et al.

More information

中文模板

中文模板 ISSN 1000-9825, CODEN RUXUEW E-mail jos@iscasaccn Journal of Software, Vol17, Supplement, November 2006, pp70 77 http//wwwjosorgcn 2006 by Journal of Software All rights reserved Tel/Fax +86-10-62562563

More information

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10.

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10. 22 4 2017 8 Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug. 2017 150080 GPS,,, : 27. 36 km, 2. 51, 110. 43, ; ; ; ; DOI: 10. 15938 /j. jhust. 2017. 04. 015 U469. 13 A 1007-2683

More information

,,, () 20 80,,,,, ;,, ;,, ;,,,,,,,,, [1 ], :,,,,2 2,,, () (),,,,:,,,,:,,,, :, [2 ] :,,,,,,, : AN NA,,,,,, ( ),:,,: ( F) = (A1 + A2 + A3 + An -

,,, () 20 80,,,,, ;,, ;,, ;,,,,,,,,, [1 ], :,,,,2 2,,, () (),,,,:,,,,:,,,, :, [2 ] :,,,,,,, : AN NA,,,,,, ( ),:,,: ( F) = (A1 + A2 + A3 + An - 23 5 2009 9 J OU RNAL OF CH IN ESE IN FORMA TION PROCESSIN G Vol. 23, No. 5 Sep., 2009 : 100320077 (2009) 0520009210, (,) :,, ;,,,, ;,, : ;; ;;; : TP391 : A A Semantic Construction Model bet ween Adjectives

More information

不同教學方法增進學生科學本質學習成效之比較與分析

不同教學方法增進學生科學本質學習成效之比較與分析 屏 東 教 育 大 學 學 報 - 人 文 社 會 類 第 三 十 八 期 2012 年 3 月 頁 205-234 北 宋 茶 俗 掠 影 以 蘇 軾 茶 詞 為 主 的 探 討 陳 金 英 摘 要 宋 代, 是 一 個 茶 風 熾 盛 的 朝 代, 而 代 表 宋 代 的 文 學 體 裁 宋 詞, 正 是 蘊 含 大 量 飲 茶 風 俗 的 重 要 文 獻 然 而 歷 來 研 究 宋 詞 或 研

More information

具有多个输入 特别是多个输出的 部门 或 单位 ( 称为 决策单元 Decision Making Unit 简称 DMU) 间的相对有效 8 性 C2R 模型是 DEA 的个模型 也是 DEA 的基础 和重要模型 假设有 n 个决策单元 DMUj( j = 1 2 3 n) 每个 DMU 有 m

具有多个输入 特别是多个输出的 部门 或 单位 ( 称为 决策单元 Decision Making Unit 简称 DMU) 间的相对有效 8 性 C2R 模型是 DEA 的个模型 也是 DEA 的基础 和重要模型 假设有 n 个决策单元 DMUj( j = 1 2 3 n) 每个 DMU 有 m 基于 DEA 模型的 我国政府社会管理职能绩效评价研究 以 30 个省 ( 直辖市 自治区 ) 为统计样本的实证分析 * 李超显 摘 要 政府社会管理职能绩效评价是政府管理中的一个重点和难点问题 本文采用数据包络分析模型对中 30 国 30 个省( 直辖市 自治区) 的政府社会管理职能绩效进行时空差异分析和实证评价 研究发现 个省( 直辖市 自治区) 的政府社会管理职能绩效具有空间差异性 雁行形态和区域梯度性

More information

中文模板

中文模板 软 件 学 报 doi: 10.13328/j.cnki.jos.004932 中 文 公 众 事 件 信 息 熵 计 算 方 法 靳 锐 +, 张 宏 莉, 张 玥, 王 星 ( 哈 尔 滨 工 业 大 学 计 算 机 科 学 与 技 术 学 院, 哈 尔 滨 150001) Calculation Method of Chinese Public Event Information Entropy

More information

380 研 究 论 文 发 酵 天 数 双 乙 酰 测 定 : 参 照 GB4927-4928-2001 标 准 发 酵 液 中 的 化 学 成 分 的 测 定 : 采 用 GC-8A 型 气 相 色 谱 测 定 1.5 离 子 注 入 方 法 [6] 把 待 处 理 的 菌 株 细 胞 均 匀 涂

380 研 究 论 文 发 酵 天 数 双 乙 酰 测 定 : 参 照 GB4927-4928-2001 标 准 发 酵 液 中 的 化 学 成 分 的 测 定 : 采 用 GC-8A 型 气 相 色 谱 测 定 1.5 离 子 注 入 方 法 [6] 把 待 处 理 的 菌 株 细 胞 均 匀 涂 中 国 细 胞 生 物 学 学 报 Chinese Journal of Cell Biology 2011, 33(4): 379-384 http://www.cjcb.org 全 小 麦 啤 酒 酵 母 菌 株 的 诱 变 育 种 及 应 用 研 究 袁 仲 1* 张 百 胜 1 张 慎 举 1 马 绮 云 2 陈 柯 羽 2 ( 1 商 丘 职 业 技 术 学 院 园 林 食 品 加 工 系,

More information

电力信息化2013年第1期.indb

电力信息化2013年第1期.indb 中图分类号 TP319 文献标志码 B 文章编号 1672-4844(213)1-87-6 摘要 SAP ERP 信息是很多大型企业的核心信息 是企业在进行容灾建设时主要关切的 信息 文章以双活方式运行的特点对 SAP ERP 信息进行了分析 推导出了 SAP ERP 信息以双活模式运行时操作响时间的计算公式 提出了影响操作响时间的主要因素是网 络时延 测试了 SAP ERP 产品以服务器双活模式运行的实际效果和以数据库双活

More information

2013_6_3.indd

2013_6_3.indd 中 国 科 技 资 源 导 刊 ISSN 1674-1544 2013 年 11 月 第 45 卷 第 6 期 95-99, 107 CHINA SCIENCE & TECHNOLOGY RESOURCES REVIEW ISSN 1674-1544 Vol.45 No.6 95-99, 107 Nov. 2013 构 建 基 于 大 数 据 的 智 能 高 校 信 息 化 管 理 服 务 系 统

More information

,, (18 ) , , % ,,; (3) ,a 100 %,b, 6 (, ),c , , , 2000 ; (4),2

,, (18 ) , , % ,,; (3) ,a 100 %,b, 6 (, ),c , , , 2000 ; (4),2 31 1 2007 1 Vol131, No11 January 2007 19 Population Research 1990 1990,, 2000, 1990,2000 0 9 ; 2000 0 9 1991 2000, 1990,1991,, 1990 1. 7 1. 8 : ; ;,:100872 1 30, 1980, 1990,, 1990,, 1990, 1990, 1. 8, 2000

More information

13-4-Cover-1

13-4-Cover-1 106 13 4 301-323 302 2009 2007 2009 2007 Dewey 1960 1970 1964 1967 303 1994 2008 2007 2008 2001 2003 2006 2007 2007 7 2013 2007 2009 2009 2007 2009 2012 Kendall 1990 Jacoby 1996 Sigmon 1996 1 2 3 20062000

More information

在 培 养 职 前 卓 越 化 学 教 师 的 院 校, 会 编 一 本 过 去 称 作 化 学 教 学 论 实 验, 现 在 拟 为 卓 越 化 学 教 师 教 育 实 验 教 学 研 究 的 教 材 各 院 校 对 这 门 课 程 所 给 的 学 时 不 太 一 样, 但 都 是 围 绕 实 验

在 培 养 职 前 卓 越 化 学 教 师 的 院 校, 会 编 一 本 过 去 称 作 化 学 教 学 论 实 验, 现 在 拟 为 卓 越 化 学 教 师 教 育 实 验 教 学 研 究 的 教 材 各 院 校 对 这 门 课 程 所 给 的 学 时 不 太 一 样, 但 都 是 围 绕 实 验 doi: 10.3866/pku.DXHX201607011 卓 越 化 学 教 师 教 育 实 验 教 学 研 究 课 程 探 微 * 杨 承 印 汪 蒙 蒙 赵 洋 ( 陕 西 师 范 大 学 化 学 化 工 学 院, 西 安 710119) 摘 要 : 在 对 实 验 操 作 进 行 编 码 的 基 础 上 对 高 中 化 学 课 程 标 准 中 有 关 实 验 进 行 统 计 分 析, 以

More information

Microsoft Word - 19王建华.doc

Microsoft Word - 19王建华.doc 2012 年 12 月 图 学 学 报 December 2012 第 33 卷 第 6 期 JOURNAL OF GRAPHICS Vol.33 No.6 工 程 图 学 计 算 机 辅 助 教 学 实 践 与 思 考 王 建 华, 郝 育 新, 刘 令 涛 ( 北 京 信 息 科 技 大 学 机 电 学 院, 北 京 100192) 摘 要 : 随 着 计 算 机 技 术 的 迅 猛 发 展 和

More information

TOPIC 专 题 45 1 加 快 农 业 大 数 据 发 展 的 现 实 意 义 农 业 大 数 据 运 用 大 数 据 的 理 论 技 术 和 方 法, 解 决 农 业 领 域 数 据 的 采 集 存 储 计 算 和 应 用 等 一 系 列 问 题, 大 数 据 技 术 是 保 障 国 家 粮

TOPIC 专 题 45 1 加 快 农 业 大 数 据 发 展 的 现 实 意 义 农 业 大 数 据 运 用 大 数 据 的 理 论 技 术 和 方 法, 解 决 农 业 领 域 数 据 的 采 集 存 储 计 算 和 应 用 等 一 系 列 问 题, 大 数 据 技 术 是 保 障 国 家 粮 44 山 东 省 农 业 大 数 据 发 展 刍 议 山 东 省 农 业 信 息 中 心, 山 东 济 南 250013 摘 要 关 键 词 doi: 10.11959/j.issn.2096-0271.2016005 Study on the agricultural big data development of Shandong province ZHENG Yong, MENG Lei, LI

More information

Microsoft Word - 2.v3n1.gjtm.docx

Microsoft Word - 2.v3n1.gjtm.docx Theory of carduonephric disharmony and irritable bowel syndrome Xia-min Lu 1, Min Lu 1 Nanjing University of Traditional Chinese Medicine, Nanjing, China Department of Digestive System, Jiangsu Integrated

More information

Microsoft Word - 121834.doc

Microsoft Word - 121834.doc 第 38 卷 第 18 期 Vol.38 No.18 计 算 机 工 程 Comuter Engineering 01 年 9 月 Setember 01 安 全 技 术 摘 基 于 网 页 DOM 树 比 对 的 SQL 注 入 漏 洞 检 测 张 晨, 汪 永 益, 王 雄, 施 凡 ( 电 子 工 程 学 院 网 络 工 程 系, 合 肥 30037) 要 : 针 对 传 统 SQL 注 入

More information

标题

标题 2016 年 5 月 西 南 民 族 大 学 学 报 ( 自 然 科 学 版 ) 第 423 卷 期 第 3 期 Journal 谢 of 琪 Southwest ꎬ 等 :C++ University 程 序 设 计 for 实 Nationalities( 验 教 学 微 课 Natural 的 设 计 Science 与 实 现 Edition) May 2016 Vol 42 No 3 doi:10

More information

Microsoft Word - A201004-1587.doc

Microsoft Word - A201004-1587.doc 1 基 于 μc/os-ii 的 嵌 入 式 电 子 潮 汐 预 报 仪 张 淑 娟, 李 海 森, 么 彬, 陈 宝 伟, 周 天 哈 尔 滨 工 程 大 学 水 声 技 术 国 防 科 技 重 点 实 验 室, 哈 尔 滨 (150001) E-mail: zhangshujuan@hrbeu.edu.cn 摘 要 : 本 文 涉 及 一 种 嵌 入 式 电 子 潮 汐 预 报 仪 的 开 发

More information

85% NCEP CFS 10 CFS CFS BP BP BP ~ 15 d CFS BP r - 1 r CFS 2. 1 CFS 10% 50% 3 d CFS Cli

85% NCEP CFS 10 CFS CFS BP BP BP ~ 15 d CFS BP r - 1 r CFS 2. 1 CFS 10% 50% 3 d CFS Cli 1 2 3 1. 310030 2. 100054 3. 116000 CFS BP doi 10. 13928 /j. cnki. wrahe. 2016. 04. 020 TV697. 1 A 1000-0860 2016 04-0088-05 Abandoned water risk ratio control-based reservoir pre-discharge control method

More information