用户名: 密码: 验证码:
复杂目标电磁散射特性精确计算方法的并行化和实现
详细信息    本馆镜像全文|  推荐本文 |  |   获取CNKI官网全文
摘要
复杂目标电磁散射特性的快速分析与计算在雷达系统设计与雷达目标识别、目标隐身和反隐身、现代电子系统电磁兼容性分析等领域中有广泛应用。利用计算机进行精确电磁仿真具有相对高效、准确的特点。特别是多层快速多极子算法(MLFMA)在电磁领域的成功开发,极大地提高了电磁仿真能力。但是受到单台计算机资源的限制,串行MLFMA算法对电大尺寸散射体分析常常无能为力。随着计算机集群技术的发展和并行计算技术的成熟,采用并行MLFMA算法计算复杂目标电磁散射特性,可以有效扩展仿真规模,提高仿真效率。
     对于具有复杂边界的电磁问题,实现高性能并行MLFMA算法的关键是如何在处理器间平均分配计算资源(即各处理器负载均衡)、减少处理器间的数据交换,减少算法实现环节中所占用的内存和计算量。这些问题的解决对最终计算效率和计算能力有直接影响。为解决上述问题,本文将MLFMA算法的计算域分解为数据域和角谱域。针对数据域和角谱域的不同并行性能,提出一种更为高效的并行方案,给出具体实现手段并分析其数值性能。论文的主要创新点如下:
     提出了分布树的负载均衡算法。并行MLFMA的负载均衡性主要体现在数据域上对分布树的划分上。传统的划分方法通常是在分布树的最底层将组均分到每个计算节点,每个计算节点采用自底向上的方式构建分布树。这对于外形完全对称的目标来说,具有非常好的负载均衡性。然而,实际的目标都具有复杂的外形。为此,我们修正了分布树的分割方法,通过均分某一层(非最细层)的方式来构建分布树,从而达到负载均衡的目的。
     提出了对(反)插值过程进行块划分的角谱域并行算法。在角谱域上并行MLFMA算法,具有非常好的负载均衡性。但是由于(反)插值操作的存在,节点间的通信是无法避免的。角谱域分解的主要问题是如何减少节点间通信量,增加共享层的层数。对(反)插值矩阵采用条划分的方法,尽管能够将通信限制在左右相邻的节点间进行,但同时也限制了程序可并行节点数的规模。为解决这个问题,我们提出了基于块划分的并行计算方法。这种方法能够将通信限制在上下左右四个相邻节点间进行,扩大了可并行节点数的规模。与条划分相比,大大减少了每次的通信量。
     进行了不变项的并行优化计算。本文针对分布树、(反)插值矩阵、转移矩阵和近邻阻抗矩阵等数据结构在计算时间和计算空间上的特点,从缩减内存和计算量的角度出发,提出了相应的计算和存储方法。对(反)插值矩阵提出了先串行计算再并行分布的方法。针对转移矩阵,计算过程采用了压缩存储的并行计算方式,分布过程中采用非压缩的存储方式。相对于传统的“边对”划分方法,提出了按组对划分近邻阻抗矩阵,利用数据局部性原理实现近邻阻抗矩阵的填充及近场的叠加。
     提出了转移和(反)插值操作的通信拓扑结构。利用转移通信列表确定远亲组之间的通信关系,通过建立转移通信的发送队列和接收队列,一次性交换数据,提高转移通信的通信效率。根据(反)插值矩阵的特点,利用虚拟进程拓扑,建立了(反)插值操作的通信拓扑结构。通过调整行和列的通信次序,实现了与四周相邻节点间的通信。
     针对各种复杂目标,本文围绕并行算法的精度和效率进行了大量实验。实验结果验证了所提出并行MLFMA算法的可行性,能够有效提高并行效率。该算法能够实现未知量在千万量级的复杂目标电磁散射,并在实际工程中获得应用。
The fast analysis and calculation of electrically large complex electromagnetic scattering problems is widely used in the radar system design and radar target identification, the radar stealth and anti-stealth technology, and the modern electric systems’Electro Magnetic Compatibility (EMC) analysis. It is efficient and accurate for the electromagnetic simulation on the computer. Particularly, the successful development of the Multilevel Fast Multipole Algorithm (MLFMA) on electromagnetic fields immensely increases the ability of the electromagnetic simulation. Meanwhile, accurate solutions of the large scale electromagnetic scattering problems require discretisations with millions of unknowns, which cannot be solved easily by the sequential implementations of MLFMA running on a single processor. With the development of the computer cluster technology and the parallel computation technology, the parallelization of MLFMA for solving the electromagnetic scattering is an effective way to enlarge the simulation scale and improve the simulation efficiency.
     For electromagnetic scattering problems with the complicated boundary, the key of parallelizing MLFMA is distributing the computer resources equally, reducing data communication among processors, optimizing the space complexity and the computing complexity in every link of the software design, which will influence the parallel efficiency and the computing ability of the algorithm. In order to solve the above problems, the computing domain in MLFMA is divided into the data domain and the angular spectrum domain. Toward the different characteristics of two domains, a high-performance parallel MLFMA is proposed and implemented and the numerical performance of which is analyzed. The main innovation points of the thesis are as follows:
     The load balancing algorithm of the distributed tree is proposed. In the data domain, the load balancing of the parallel MLFMA is mainly embodied by the division of the distributed tree. For the traditional method, the boxes are usually partitioned equally at the finest level of the distributed tree among processors, and then the distributed tree is constructed with bottom-up. To the symmetrical object, this tree has a good load balancing, whereas to the complex objects in the real life which have an unsymmetrical shape, this method made the load balancing very badly. Therefore, a new division algorithm of the distributed tree is applied to improve the load balancing, which partitions some layers (non-final layer) equally to construct the distributed tree.
     The angular spectrum domain decomposition algorithm with the block method of the interpolation and anterpolation operation is proposed to reduce the data communication among processors. Generally, the load balancing at the angular spectrum domain is better than that at the data domain, but the communication of the interpolation and anterpolation operation between shared levels cannot be avoided. The key of the angular spectrum domain decomposition is to reduce the communications and increase the number of the shared levels. Although the traditional strip scheme can make the communications between the right and left processors, it can also restrict the workable processors. So the block method of the interpolation and anterpolation operation is adopted to reduce communication burden and enlarge the parallel scales, which makes the communications available among the adjacent processors.
     In the preprocess phase of the parallel-MLFMA, the correlative data structure which includes the interpolation (or anterpolation) matrix, the translation matrix, the near-neighbor impedance matrix and so on are considered for their computing complexities and storage requirements. The interpolation (or anterpolation) matrix is first computed in the sequential algorithm, and then distributed in the parallel algorithm. The translation matrix is stored using some compressed scheme during the computation process and uncompressed during the distribution process. The distribution of the near-neighbor impedance matrix is different from that of the far field, which is computed with the local priciple of data.
     The topology structures of communications for the translation operation and the interpolation and anterpolation operation are also established in order to improve the communication efficiency during its iterative process. During the communications of the translation operation, the outgoing queue and the recipient queue are set up to improve the communication efficiency, which can exchange data for one time among processors. According to the theory of the interpolation and anterpolation operation, this topology structure of communications is created by the Cartesian virtual topology. A clever communication order of columns and rows is designed to realize communications among the adjacent processors.
     Many experiments have been done on the efficiency, accuracy and capability of the parallel MLFMA with all kinds of complex objects. Experimental results manifest the significant performance improvement of the parallel-MLFMA. This high-performance parallel MLFMA has successfully computered scattering with over ten millions unknowns and has been applied in the practical engineering.
引文
[1] Song J M,Chew W C, Multilevel fast-multipole algorithm for solving combined field integral equations of electromagnetic scattering [J].Microwave and Optical Technology Letters, 1995, 10(1):14~19.
    [2] Gyure M E,Stalizer M A, A prescription for the multilevel helmholtz FMM [J].IEEE Computational Science and Engineering, 1998, 3:39~47.
    [3]姚海英.介质以及涂覆介质结构电磁散射特性的基础研究一积分方程法及其快速求解[D]。成都:电子科技大学博士论文, 2002。
    [4]路卫兵,复杂电磁问题的快速算法研究和软件实现[D]。南京:东南大学博士论文,2005。
    [5]樊振宏,电磁散射分析中的快速方法[D]。南京:南京理工大学博士论文, 2007。
    [6]丁大志,复杂电磁问题的快速分析和软件实现[D]。南京:南京理工大学博士论文, 2007。
    [7] Song J M,Lu C C,Chew W C, Lee S W,Fast Illinois Solver Code(FISC) [J].IEEE Antennas and Propagation Magazine, 1998, 40(3):27~34.
    [8] Song J M, Chew W C, The fast illinois solver code:requirements and scaling properties [J].IEEE Computational Science and Engineering, 1998, 3:19~23.
    [9] Greengard L,Huang J, Accelerating fast multipole method for the helmholtz equation at low frequencies [J].IEEE Computational Science and Engineering, 1998, 3:32~38.
    [10] Ralhola J, Experiments on iterative methods and the fast multipole method in electromagnetic scattering calculations [R]. Technical Report TR/PA/98/49, CERFACS, Toulouse, France, 1998.
    [11] Heldring A, Full-wave analysis of electrically large reflector antennas [D]. Deltt University, Netherlands, 2002.
    [12] Heldring A, Rius J M, Cardama A, Lightart L P, Analysis of reflector and horn antennas using multilevel fast multipole algorithm [C].European Conference on Computational Methods in Applied Sciences and Engineering, ECCOMAS 2000, Barcelona, 2000.
    [13] Donepudi K C,Jin J M, Chew W C, A higher order multilevel fast multipole algorithm for ccattering from mixed conducting / dielectric bodies [J].IEEE Transations Antennas andPropagation, 2003, 51(10):2814~2821.
    [14] Aygun K, Shanker B, Ergin A A,Michielssen E, A two-level plane wave time domain algorithm for fast analysis of EMC/EMI problems [J].IEEE Transations EMC, 2002, 44(2):152~164.
    [15] Rokhlin V., Diagonal forms of translation operators for the Helmholtz equation in three dimensions [R]. Appl. Comp. Harmon. Anal., 1993, 1: 82~93.
    [16] Chew W C, Jin J M, Michielssen E, Song J M, Fast and efficient algorithms in computational electromagnetics [M]. Artech House Publishers, 2001.
    [17] Eric J L L, Daniel I O, An efficient load balancing technique for parallel FMA in message passing environment [C]. Proceedings of Eighth SIAM Conference on Parallel Processing for Scientific Computing, 1997: 1~8.
    [18] Lu C C, Chew W C, Fast algorithm for solving Hybrid integral equations [J]. IEE Proceedings H, Microwaves, Antennas and Propagation, 1993, 140(6): 455~460.
    [19] Coifman R, Rokhlin V, Wandzura S, The fast multipole method for the wave equation:a pedestrian prescription [J].IEEE Antennas and Propagation Magazine. 1993, 35(3):7~12.
    [20] Hamilton L R, Stalzer M A, Turley R S, Scattering computation using the fast multipole method [C]. IEEE Antennas Propagation Symposium, 1993: 853~855.
    [21] Lu C C,Chew W C, A multilevel algorithm for solving a boundary integral equation of wave scattering [J].Microwave and Optical Technology Letters,1994, 7(10):466~470.
    [22] Song JM, Chew W C, Fast multipole method solution using parametric geometry [J].Microwave and Optical Technology LeRers, 1994, 7(16):760~765.
    [23] Song J M,Chew W C, Fast multipole method solution of three dimensional integral equation [C].IEEE Antennas Propagation Symposium, 1995: 1528~1531.
    [24] Song J M,Chew W C, Fast multipole method solution of combined field integral equation [C].Proc.Ann.Rec.ACES,Monterey, l 995: 629-636.
    [25] Lu C C,Chew W C, Fast far-field approximation for calculating the RCS of large objects [J].Microwave and Optical Technology Letters, 1995, 8(5):238~241.
    [26] Song J M, Cai C L,Chew W C, Multilevel fast multipole algorithm for electromagneticscattering by large complex objects [J]. IEEE Transactions on Antennas and Propagation, 1997, 45(10): 1488~1498.
    [27]胡俊,复杂目标矢量电磁散射的高效方法-快速多极子方法及其应用[D]。四川成都:电子科学技术大学博士论文。2000。
    [28]聂在平,胡俊,面向工程应用的电磁散射高效数值方法:实践与思考[J]。电波科学学报,2004, 19(z1):12~19。
    [29] Gong X D, Nie Z P, Wang H G, Hu J, Fast and accurate solution of 3-D vector electromagnetic scattering by FMM with higher order methods [J]. Chinese Journal of Elcetronics. 2003, 12(3):475~478.
    [30] Hu J, Hu J, Nie Z P, A 3-D ray-propagation multilevel fast multipole algorithm using an adaptive technique [C]. 2003 6th International Symposium on Antennas, Propagation and EM Theory (ISAPE'2003), Beijing, China, 2003: 504~507.
    [31] Hu J, Nie Z P, Lei L, Hu J, Gong X D, Zhao H P, Fast 3D EM scattering and radiation solvers based on MLFMA [J]. Journal of Systems Engineering and Electronics, 2008, 19(2):252~258.
    [32] Donepudi K C, Song J M, Jin J M, et al.., A novel implementation of multilevel fast multipole algorithm for higher order Galerkins method [J]. IEEE transaction on Antennas Propagation, 2000, 48(8):1192 ~1197.
    [33] Hu J, Nie Z P, Que X F, Meng Min, Fast computation of scattering from 3D complex structures by MLFMA [J]. Journal of Systems Engineering and Electronics, 2008, 19(5):872~877.
    [34] Chew W C, Cui T J, Song J M, A FAFFA-MLFMA algorithm for electromagnetic scattering [J]. IEEE Transations on Antennas and Propagation, 2002, 50(11):1641~1649.
    [35] Hu J, Nie Z P, Efficient solution of 3D vector electromagnetics cattering by CG-MLFMA with partly approximate iteration [C]. The International Workshop on Wave Propagation, Scattering and Emission in Complex Media, Shanghai, China, 2003: 433~439.
    [36]刘战合,武浙,周钧,高旭.多层快速多极子算法的改进措施[J].航空学报, 2008, 29(5): 1180~1185。
    [37]聂在平,胡俊,三维矢量电磁散射高效数值分析中新的迭代方法[J]。电波科学学报,1999,14:99~102。
    [38]姚海英,聂在平,一种改进单站RCS计算的方法[C]。99’全国天线理论电磁散射与逆散射学术会议文集,合肥, 1999: 81~84。
    [39] Carr M, Bleszynski M, Volakis J L, A near-field preconditioner and its performance in conjunction with the BiCGstab(ell) solver [J]. IEEE Antennas and Propagation Magazine, 2004, 46(2):23~30.
    [40] Song J M, Lu C C, Chew W C, and Lee S W, Fast Illinois Solver Code (FISC) [J]. IEEE Antennas and Propagation Magazine, 1998, 40(3): 27~34.
    [41] Velamparambil S, Chew W C and Song J M, 10 Million unknowns: is it that big?[J]. IEEE Antennas and Propagation Magazine, 2003, 45(2): 43~58.
    [42] Ergül O and Gürel L, Efficient parallelization of the multilevel fast multipole algorithm for the solution of large-scale scattering problems [J]. IEEE Transations Antennas and Propagation, 2008, 56(8): 2335~2345.
    [43] http://www.cem.bilkent.edu.tr/
    [44]胡俊,聂在平,王军等,三维电大尺寸目标电磁散射求解的多层快速多极子方法[J]。电波科学学报. 2004, 19(5):509~514。
    [45]董健,柴舜连,毛钧杰,大规模电磁计算问题在超级计算机上的并行求解[C]。2005高性能计算应用大会,2005: 329~338
    [46]周小阳,赵博,李建宇,朱建平,林海,崔铁军,基于ADS的复杂目标雷达回波模型库ADS-RTBS[J]。电子测量与仪器学报, 2009,增刊: 40~45。
    [47]潘小敏,盛新庆,电特大复杂目标电磁特性的高效精确并行计算[J]。电波科学学报, 2008, 23(5): 888~891。
    [48]潘小敏,计算电磁学中的并行技术及其应用[D]。北京:中国科学院研究生院(电子学研究所)博士论文。2006。
    [49]袁军,邱扬,刘其中,郭景丽和谢拥军,自适应多层快速多极子算法及其并行算法[J]。电波科学学报, 2008, 23(3):455~459。
    [50]卢光辉,孙世新,聂在平,陈翰,王浩刚,并行处理技术在电大尺寸复杂目标电磁散射中的应用[J]。电子学报,2003, 31(6): 882~885。
    [51] Ottusch J J, Stalzer M A, Visher J L, Wandzura S M, Scalable electromagnetic scattering calculations on the SGI Origin 2000 [C]. In: Proc. of the ACM/IEEE Supercompuing’99 Conference, Portland, Oregon, 1999: 1~12.
    [52] Velamparambil S, Chew W C, Analysis and performance of a distributed memory multilevel fast multipole algorithm [J]. IEEE Trans. Antennas Propagation, 2005, 53(8): 2719~2727.
    [53] Fostier J, Olyslager F, An asynchronous parallel multilevel fast multipole algorithm [C]. In: Proc. IEEE Int. Symposium Antennas Propagation , 2007: 3424~3427.
    [54] Gürel L and Ergül O, Fast and accurate Solutions of integral-equation formulations discretised with tens of millions of unknows [J]. Electronics Letters, 2007, 43(9):499~500.
    [55] Ergül O, Gürel L, Hierarchical parallelisation strategy for multilevel fast multipole algorithm in computational electromagnetics [J]. Electronics Letters, 2008, 44(1):3~5.
    [56] Ergül O, Gürel L, A Hierarchical Partitioning Strategy for an Efficient Parallelization of the Multilevel Fast Multipole Algorithm [J]. IEEE Transactions on Antennas and Propagation, 2009, 57(6):1740~1750.
    [57] Fostier J, Olyslager F, Scalability of the parallel MLFMA [C]. 2009 IEEE International Symposium on Antennas & Propagation & USNC/URSI National Radio Science Meeting, 2009: 1~4.
    [58] Lin Y, Hu J, Nie Z P, Chen Y P, A new form of parallel MLFMA: iterative PMLFMA [C]. IEEE Transations on Antennas and Propagation Society International Symposium, 2005, 3B: 200~203.
    [59]王浩刚,聂在平,王军,对三维多层快速多极子方法中不变项计算的优化[J]。电子学报, 2000, 28(9): 105~107。
    [60]陈晓昕,张红霞,倪维立,多层快速多极子算法的改进措施[J]。上海大学学报, 2006, 12(4): 342~346。
    [61] Harrington R F, Field Computation by Moment Method [M].New York:Macmillan,1968.
    [62] Wang J J H, Generalized Moment Methods in Electromagnetics [M]. Wiley, 1990.
    [63] Peterson A F, Ray S L, Mittra R, Computational Methods for Electromagnetics [M].New York: IEEE Press, 1998.
    [64] Rao S M, Wilton D R, Glisson A W, Electromagnetic Scattering by Surfaces of Arbitrary Shape [J]. IEEE Transations Antennas and Propagation, 1982, 30(3):409~419.
    [65]葛德彪,闫玉波.电磁波时域有限差分方法(第二版) [M]。西安:西安电子科技大学出版社, 2005。
    [66]王长清,祝西里.电磁场计算中的时域有限差分方法[M]。北京:北京大学出版社,1994。
    [67]高本庆.时域有限差分法[M]。北京:国防工业出版社, 1995。
    [68] Taflove A, Hagness S C, Computational Electrodynamics : the Finite-Difference Time-Domain Method [M].2nd ed.Norwood, MA"Artech House, 2000.
    [69] Sullivan D M, Electromagnetic Simulmion Using the FDTD Method [M].New York:IEEE Press, 2000.
    [70]金建铭.电磁场有限元方法[M]。西安:西安电子科技大学出版社,1998。
    [71]曾余庚,刘京生,张雪阳.边界元与有限元[M]。西安:西安电子科技大学出版社,1991。
    [72] Mautz J R, Harrington R F, H-field, E-field and combined-field solution for conducting bodies of revolution [J]. Archiv fuer Elektronik und Uebertragungstechnik, April, 1979, 32: 159~164.
    [73] Harrington R F, Field computation by Moment Methods [M] New York: Macmillan, 1968.
    [74] Yee K S, Numerical solution of initial boundary value problems involving Maxwell’s Equation in isotropic media [J]. IEEE Transations Antennas and Propagation, 1966, 37 (11):302~307.
    [75] Berenger J P, A perfectly matched layer for the absorption of electromagnetic waves [J]. Journal of Computational Physics, 1994, 114(2):185~200.
    [76] Zivanovic S S, Yee K S, Mei K K, A subgridding method for the time–domain finite-difference method to solve Maxwell’s equations [J]. IEEE Transactions on Microwave Theory and Techniques, 1991, 39(3): 471~479.
    [77] Yee K S, Chen J S, The finite-difference time-domain (FDTD) and the finite-volume time-domain (FVTD) methods in solving Maxwell's equations [J]. IEEE TransationsAntennas and Propagation, 1997, 45(3): 354 ~363.
    [78] Holland R, Finite difference solutions of Maxwell’s equations in generalized nonorthogonal coordinates [J]. IEEE Transactions on Nuclear Science, 1983, 30(6): 4589 ~4591.
    [79] Pennock S T, Ray S L, RCS modeling with the TSAR FDTD code [J]. IEEE Antennas and Propagation Society International Symposium Digest, 1992, 3: 1312 ~1315.
    [80] Furse C M, Mather S P, Gandhi O P, Improvements to the finite-difference time-domain method for calculating the radar cross section of a perfectly conducting target [J], IEEE Transactions on Microwave Theory and Techniques, 1990, 38(7): 919~927.
    [81] Canning F X, Solution of IML form of moment method problems in 5 iterations [J]. Radio Sci. 1995, 30(5): 1371~1384.
    [82] Canning F X, Rogovin K, Fast direct solution of standard Moment-Method matrices [J]. IEEE Antennas and Propagation Magazine, 1998, 40 (3): 15~26.
    [83] Wagner R L, Chew W C, A study of wavelets for the solution of electromagnetic integral equations [J]. IEEE Transations Antennas and Propagation, 1995, 43(8): 802~810.
    [84] Rokhlin V, Rapid solution of integral equations of classical potential theory [J]. Journal of Computational Physics, 1985, 60(2): 187~207.
    [85] Bleszynski E, Bleszynski M, Jaroszewicz T, Aim: Adaptive integral method for solving large-scale electromagnetic scattering problems [J]. Radio Science, 1996, 31(5): 1225~1251.
    [86] Jandhyala V, et al, A combined steepest descent-fast multipole algorithm for the analysis of three-dimensional scattering by rough surfaces [C]. IEEE Antennas and Propagation Society International Symposium, 1997: 2308~2311.
    [87] Wagner R L, Chew W C, A ray-propagation fast multipole algorithm [J]. Microwave and Optical Technology Letters, 1994, 7(10):435~438.
    [88] Lu C C, Chew W C, Fast for field approximation for calculating the RCS of large objects [J]. Microwave and Optical Technology Letters, 1995, 8(5): 238~241.
    [89] Reddy C J, et al, Fast RCS computation over a frequency band using Method of Moments in conjunction with Asymptotic Waveform Evaluation technique [J]. IEEE TransationsAntennas and Propagation, 1988, 46(8):1229~1233.
    [90] Song J S, Chew W C, Integral equation solution of Maxwell’s equations from zero frequency to microwave frequencies [J]. IEEE Transations Antennas and Propagation, 2000, 48(10):1635~1645
    [91] Song J M, Chew W C, Interpolation of translation matrix in MLFMA [J]. Microwave and Optical Technology Letters, 2001, 30(2): 109~114.
    [92] Song J M, Chew W C, Large scale computations using FISC [C]. IEEE Antennas and Propagation Society International Symposium, 2000: 1856~1859.
    [93] Song J M, Chew W C, Multilevel fast-multipole algorithm for solving combined field integral equations of electromagnetic scattering, Microwave and Optical Technology Letters, 1995, 10(1):14~18.
    [94] Bucci O M, Gennarelli C, and Savarese C, Optimal interpolation of radiated fields over a sphere [J]. IEEE Transations Antennas and Propagation, 1991, 39(11): 1633~1643.
    [95] Rudiger Jakob-Chien, Bradley K.Alpert, A Fast Spherical Filter with Uniform Resolution [J]. Journal of Computational Physics, 1997, 136(2):580~584.
    [96] Hariharan B, Aluru S, Shanker B, A scalable parallel fast multipole method for analysis of scattering from perfect electrically conducting surfaces [C]. Proceedings of the 2002 ACM/IEEE conference on Supercomputing, Los Alamitos, CA, USA, IEEE Computer Society Press, 2002: 1~17.

© 2004-2018 中国地质图书馆版权所有 京ICP备05064691号 京公网安备11010802017129号

地址:北京市海淀区学院路29号 邮编:100083

电话:办公室:(+86 10)66554848;文献借阅、咨询服务、科技查新:66554700