CN102866881A - Implementation method for generalization and parallelization of data conversion of vector network analyzer - Google Patents

Implementation method for generalization and parallelization of data conversion of vector network analyzer Download PDF

Info

Publication number
CN102866881A
CN102866881A CN2012102520340A CN201210252034A CN102866881A CN 102866881 A CN102866881 A CN 102866881A CN 2012102520340 A CN2012102520340 A CN 2012102520340A CN 201210252034 A CN201210252034 A CN 201210252034A CN 102866881 A CN102866881 A CN 102866881A
Authority
CN
China
Prior art keywords
coordinate
data
function
coordinate system
virtual function
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN2012102520340A
Other languages
Chinese (zh)
Other versions
CN102866881B (en
Inventor
杨青
朱伟
赵苏宇
苏勇辉
韩晓东
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
CLP Kesiyi Technology Co Ltd
Original Assignee
CETC 41 Institute
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by CETC 41 Institute filed Critical CETC 41 Institute
Priority to CN201210252034.0A priority Critical patent/CN102866881B/en
Publication of CN102866881A publication Critical patent/CN102866881A/en
Application granted granted Critical
Publication of CN102866881B publication Critical patent/CN102866881B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Abstract

The invention relates to an implementation method for generalization and parallelization of data conversion of a vector network analyzer. By using a virtual function for processing coordinate conversion, the coordinate conversion has uniform processing steps in various graphic formats of the vector network analyzer; if a new graphic format is added, only a new graphic class and a coordinate conversion function thereof are required to be designed, and the integral structure of software is not required to be changed, so that generalization of operation is realized, human intervention for program control is reduced, and the maintainability and the compatibility of the software are greatly improved; the coordinate conversion and graphic drawing are processed in parallel by using multi-thread design; the multiple threads comprise a scanning thread and a drawing thread; and thus, the real-time property of the system is improved.

Description

The vague generalization of vector network analyzer data-switching and the implementation method of parallelization
Technical field
The present invention relates to the vector network analyzer field, relate in particular to the implementation method of vague generalization and the parallelization of vector network analyzer data-switching.
Background technology
Development along with science and technology, the hand-held vector network analyzer has become an important development direction of vector network analyzer, in the hand-held vector network analyzer, be subjected to the restriction of volume and power consumption, its computing velocity all can't be compared with large-scale desk-top vector network analyzer with memory headroom, so how to reduce the limitation of hardware to the impact of measuring accuracy and speed, make the maximizing performance of instrument at limited hardware resource, the problem that must consider when being exploitation hand-held vector network analyzer software in the machine.
The scheme of available data switch technology is as follows:
Design a mapping table, be used to specify the corresponding relation between graphical format and the coordinate conversion function; Then by current graphical format, the function of tabling look-up and obtaining being correlated with is converted to measurement data the logical coordinates point again; Call at last the graphic plotting function, the logical coordinates point is updated on the screen.
Its weak point has 2 points:
First, underaction, compatible low, although using mapping table to be better than, prior art uses the switch-case structure, but still belonging to a kind of program architecture of manual control process---it need to increase judges that statement selects correct coordinate conversion function, because the graphical format of vector network analyzer is very many, and may increase new graphical format at any time, the implementation method of the current techniques underaction that just seems, backward compatible low.
The second, real-time is low, and it is that order is carried out after coordinate conversion that trace is drawn, and has taken the time that data are processed.
Summary of the invention
In view of this, in order to improve software vector and complete machine real-time, the present invention improves the design of data conversion, and a kind of implementation method of vague generalization and parallelization of vector network analyzer data-switching is provided.
The present invention realizes like this, a kind of vague generalization of vector network analyzer data-switching and the implementation method of parallelization, adopt multithreading to carry out data processing and data demonstration, described multithreading comprises scanning thread and drawing thread, in the described scanning thread, transform coordinate by calling Virtual Function, make the coordinate transformation vague generalization of various graphics class, simultaneously, data after the coordinate transformation directly enter the drawing thread, reaching image shows, in described scanning thread, a coordinate conversion Virtual Function is set comes unified interface, make the conversion process vague generalization of the coordinate of data under multiple graphical format, in the figure base class, described Virtual Function is pure virtual function, is used for the IO interface of this function of definition, in the figure base class in the derivative concrete graphics class, characteristic according to figure realizes design accordingly to described Virtual Function, and described realization designs concrete vague generalization mode and is:
Implementation for the polar coordinate system figure is:
The polar coordinate system figure comprises Smith circle diagram and polar plot, and their coordinate conversion mode is identical, the corresponding X coordinate of the real part of the complex data that measurement data is corresponding, and the corresponding Y coordinate of imaginary part, so this function can be realized in polar coordinates figure class;
Implementation for the cartesian coordinate system figure is:
The cartesian coordinate system figure comprises the graphical formats such as logarithm amplitude, linear amplitude, phase place, standing-wave ratio (SWR), under these graphical formats, although the result of coordinate conversion is different, but can possess unified transfer process: at first the frequency values with analyzing spot is mapped to the X coordinate, measured value with analyzing spot is converted to a real number value again, at last this real number value is mapped to the Y coordinate;
It is different because of concrete graphical format to only have measured value to turn real number value in the said process, the present invention with extracting section identical in the cartesian coordinate system figure coordinate transfer process out, use the rank and file's function in the cartesian coordinate system graphics class to realize, Virtual Function is continued to adopt in different places, in cartesian coordinate system, the mode of rank and file's function that the Virtual Function of coordinate conversion can be by successively being decomposed into some cartesian coordinate system graphics class and the combination of a Virtual Function realizes.
In the scanning thread, use the pointer of a figure base class type, in fact this pointer points to current graphical format object, uses the coordinate conversion Virtual Function in this pointer invocation step 1, the raw data that data acquisition is obtained is converted to coordinate data, and it is write the critical section.
The drawing thread regularly reads the coordinate data of critical section, and carries out graphic plotting, and described coordinate data is presented on the screen by graphic plotting.
Further, the present invention is based on hardware platform is ARM920T CPU, and CPU frequency is 200MHz, has 32MB RAM and 32MB FLASH, and software platform is Windows CE4.2 operating system.
Further, graphic plotting in coordinate conversion in the described scanning thread and the described drawing thread is the interface function of graphics class, point to the object of current figure with the type pointer of a figure base class, come the calling interface function by this pointer, according to the character of Virtual Function, the concrete form of function will the graph style by the pointer indication determine in the program runtime.
Further, described scanning thread and drawing thread are two independently processing procedures, and the read-write operation of the coordinate points data that both share is all carried out in the critical section.
Further, described figure base class comprises its derivative polar coordinate system figure and cartesian coordinate system figure, described polar coordinate system figure comprises its derivative polar coordinates and Smith figure, and described cartesian coordinate system figure comprises its derivative logarithm amplitude profile, linear amplitude figure, phase graph, standing-wave ratio (SWR) figure.
The advantage of the vague generalization of vector network analyzer data-switching provided by the invention and the implementation method of parallelization is: process coordinate conversion by Virtual Function, coordinate conversion had unified treatment step under the multiple graphical format of vector network analyzer, if increase new graphical format, also only need new graphics class and the coordinate conversion Virtual Function thereof of design to get final product, needn't change the overall architecture of software, so that programmed control reduces human intervention, promote greatly the maintainable and compatible of software.
Be specifically designed to drafting trace and other mapping operations by creating a drawing thread, it no longer is that order is carried out that coordinate conversion and trace are drawn.The data processing time of complete machine will shorten, thereby has improved real-time.
By the critical section is set coordinate data is protected, because scanning thread and drawing thread all relate to coordinate data, the read-write operation of any coordinate data is all carried out in the critical section, has improved data security.
Description of drawings
Fig. 1 is the multi-thread design schematic diagram of the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization.
Fig. 2 is the general principle of operation figure of coordinate conversion of the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization.
Fig. 3 is the implementation schematic diagram of coordinate conversion Virtual Function under the cartesian coordinate system in the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization.
Fig. 4 is the graphics class structural drawing in the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization.
Fig. 5 is implementation method and the sweep time comparative analysis figure of prior art take millisecond as unit of vague generalization and the parallelization of vector network analyzer data-switching of the present invention.
Embodiment
In order to make purpose of the present invention, technical scheme and advantage clearer, below in conjunction with drawings and Examples, the present invention is further elaborated.Should be appreciated that specific embodiment described herein only in order to explain the present invention, is not intended to limit the present invention.
See also Fig. 1, Fig. 2 and Fig. 3, wherein Fig. 1 is the multi-thread design schematic diagram of the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization, Fig. 2 is the general principle of operation figure of coordinate conversion of the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization, and Fig. 3 is the implementation schematic diagram of coordinate conversion Virtual Function under the cartesian coordinate system in the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization.
It is ARM920T CPU that the vague generalization of described vector network analyzer data-switching and the implementation method of parallelization are based on hardware platform, and CPU frequency is 200MHz, has 32MB RAM and 32MBFLASH, and software platform is Windows CE4.2 operating system.
The vague generalization of described vector network analyzer data-switching and the implementation method of parallelization adopt multithreading to carry out the data processing and data show, described multithreading comprises scanning thread and drawing thread, in the described scanning thread, transform coordinate by calling Virtual Function, make the coordinate transformation vague generalization of various graphics class, simultaneously, the data after the coordinate transformation directly enter the drawing thread, reach image and show that its key step is as follows:
Step 1: in described scanning thread, a coordinate conversion Virtual Function is set comes unified interface, make the conversion process vague generalization of the coordinate of data under multiple graphical format, in the figure base class, described Virtual Function is pure virtual function, is used for the IO interface of this function of definition, in the figure base class in the derivative concrete graphics class, characteristic according to figure realizes design accordingly to described Virtual Function, and described realization designs concrete vague generalization mode and is:
Implementation for the polar coordinate system figure is:
The polar coordinate system figure comprises Smith circle diagram and polar plot, and their coordinate conversion mode is identical, the corresponding X coordinate of the real part of the complex data that measurement data is corresponding, and the corresponding Y coordinate of imaginary part, so this function can be realized in polar coordinates figure class;
Implementation for the cartesian coordinate system figure is:
The cartesian coordinate system figure comprises the graphical formats such as logarithm amplitude, linear amplitude, phase place, standing-wave ratio (SWR), under these graphical formats, although the result of coordinate conversion is different, but can possess unified transfer process: at first the frequency values with analyzing spot is mapped to the X coordinate, measured value with analyzing spot is converted to a real number value again, at last this real number value is mapped to the Y coordinate;
It is different because of concrete graphical format to only have measured value to turn real number value in the said process, the present invention with extracting section identical in the cartesian coordinate system figure coordinate transfer process out, use the rank and file's function in the cartesian coordinate system graphics class to realize, Virtual Function is continued to adopt in different places, in cartesian coordinate system, the mode of rank and file's function that the Virtual Function of coordinate conversion can be by successively being decomposed into some cartesian coordinate system graphics class and the combination of a Virtual Function realizes;
Step 2: in the scanning thread, use the pointer of a figure base class type, in fact this pointer points to current graphical format object, uses the coordinate conversion Virtual Function in this pointer invocation step 1, the raw data that data acquisition is obtained is converted to coordinate data, and it is write the critical section;
Step 3: the drawing thread regularly reads the coordinate data of critical section, and carries out graphic plotting, and described coordinate data is presented on the screen by graphic plotting.
Graphic plotting in coordinate conversion in the described scanning thread and the described drawing thread is the interface function of graphics class, point to the object of current figure with the type pointer of a figure base class, come the calling interface function by this pointer, character according to Virtual Function, the concrete form of function will the graph style by the pointer indication determine in the program runtime, described scanning thread and drawing thread are two independently processing procedures, and the read-write operation of the coordinate points data that both share is all carried out in the critical section.
See also Fig. 4, Fig. 4 is the graphics class structural drawing in the implementation method of the vague generalization of vector network analyzer data-switching of the present invention and parallelization.
Described figure base class comprises polar coordinate system figure and cartesian coordinate system figure, and described polar coordinate system figure comprises polar coordinates and Smith figure, and described cartesian coordinate system figure comprises logarithm amplitude profile, linear amplitude figure, phase graph, standing-wave ratio (SWR) figure.
See also Fig. 5, Fig. 5 is vague generalization and the implementation method of parallelization and the comparative analysis sweep time figure take millisecond as unit of prior art of vector network analyzer data-switching of the present invention.
In practical operation, draw in the correlation data to prior art and sweep time of the present invention, number of scan points is fewer, and the lifting of the real-time performance that the present invention brings is more remarkable, has improved the real-time of overall measurement.
In sum, process coordinate conversion by Virtual Function, coordinate conversion had unified treatment step under the multiple graphical format of vector network analyzer, if increase new graphical format, also only need new graphics class and the coordinate conversion Virtual Function thereof of design to get final product, needn't change the overall architecture of software, so that programmed control reduces human intervention, promote greatly the maintainable and compatible of software.
Be specifically designed to drafting trace and other mapping operations by creating a drawing thread, it no longer is that order is carried out that coordinate conversion and trace are drawn.The data processing time of complete machine will shorten, thereby has improved real-time.
By the critical section is set coordinate data is protected, because scanning thread and drawing thread all relate to coordinate data, the read-write operation of any coordinate data is all carried out in the critical section, has improved data security.
The above only is preferred embodiment of the present invention, not in order to limiting the present invention, all any modifications of doing within the spirit and principles in the present invention, is equal to and replaces and improvement etc., all should be included within protection scope of the present invention.

Claims (5)

1. the implementation method of the vague generalization of a vector network analyzer data-switching and parallelization, it is characterized in that, the present invention adopts multithreading to carry out the data processing and data show, described multithreading comprises scanning thread and drawing thread, in the described scanning thread, transform coordinate by calling Virtual Function, make the coordinate transformation vague generalization of various graphics class, simultaneously, the data after the coordinate transformation directly enter the drawing thread, reach image and show that its key step is as follows:
Step 1: in described scanning thread, a coordinate conversion Virtual Function is set comes unified interface, make the conversion process vague generalization of the coordinate of data under multiple graphical format, in the figure base class, described Virtual Function is pure virtual function, is used for the IO interface of this function of definition, in the derivative concrete graphics class of figure base class, characteristic according to figure realizes design accordingly to described Virtual Function, and the concrete vague generalization mode of described realization design is:
Implementation for the polar coordinate system figure is:
The polar coordinate system figure comprises Smith circle diagram and polar plot, and their coordinate conversion mode is identical, the corresponding X coordinate of the real part of the complex data that measurement data is corresponding, and the corresponding Y coordinate of imaginary part, so this function can be realized in polar coordinates figure class;
Implementation for the cartesian coordinate system figure is:
The cartesian coordinate system figure comprises the graphical formats such as logarithm amplitude, linear amplitude, phase place, standing-wave ratio (SWR), under these graphical formats, although the result of coordinate conversion is different, but can possess unified transfer process: at first the frequency values with analyzing spot is mapped to the X coordinate, measured value with analyzing spot is converted to a real number value again, at last this real number value is mapped to the Y coordinate;
It is different because of concrete graphical format to only have measured value to turn real number value in the said process, the present invention with extracting section identical in the cartesian coordinate system figure coordinate transfer process out, use the rank and file's function in the cartesian coordinate system graphics class to realize, Virtual Function is continued to adopt in different places, in cartesian coordinate system, the mode of rank and file's function that the Virtual Function of coordinate conversion can be by successively being decomposed into some cartesian coordinate system graphics class and the combination of a Virtual Function realizes;
Step 2: in the scanning thread, use the pointer of a figure base class type, in fact this pointer points to current graphical format object, uses the coordinate conversion Virtual Function in this pointer invocation step 1, the raw data that data acquisition is obtained is converted to coordinate data, and it is write the critical section;
Step 3: the drawing thread regularly reads the coordinate data of critical section, and carries out graphic plotting, and described coordinate data is presented on the screen by graphic plotting.
2. the implementation method of the vague generalization of vector network analyzer data-switching according to claim 1 and parallelization, it is characterized in that, the present invention is based on hardware platform is ARM920T CPU, CPU frequency is 200MHz, have 32MB RAM and 32MB FLASH, software platform is WindowsCE4.2 operating system.
3. the implementation method of the vague generalization of vector network analyzer data-switching according to claim 1 and parallelization, it is characterized in that, graphic plotting in coordinate conversion in the described scanning thread and the described drawing thread is the interface function of graphics class, point to the object of current figure with the type pointer of a figure base class, come the calling interface function by this pointer, according to the character of Virtual Function, the concrete form of function will the graph style by the pointer indication determine in the program runtime.
4. the implementation method of the vague generalization of vector network analyzer data-switching according to claim 1 and parallelization, it is characterized in that, described scanning thread and drawing thread are two independently processing procedures, and the read-write operation of the coordinate points data that both share is all carried out in the critical section.
5. the implementation method of the vague generalization of each described vector network analyzer data-switching and parallelization according to claim 1-4, it is characterized in that, figure base class in the described step 1 comprises its derivative polar coordinate system figure and cartesian coordinate system figure, described polar coordinate system figure comprises its derivative polar coordinates and Smith figure, and described cartesian coordinate system figure comprises its derivative logarithm amplitude profile, linear amplitude figure, phase graph, standing-wave ratio (SWR) figure.
CN201210252034.0A 2012-07-20 2012-07-20 The vague generalization of vector network analyzer data conversion and the implementation method of parallelization Active CN102866881B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201210252034.0A CN102866881B (en) 2012-07-20 2012-07-20 The vague generalization of vector network analyzer data conversion and the implementation method of parallelization

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201210252034.0A CN102866881B (en) 2012-07-20 2012-07-20 The vague generalization of vector network analyzer data conversion and the implementation method of parallelization

Publications (2)

Publication Number Publication Date
CN102866881A true CN102866881A (en) 2013-01-09
CN102866881B CN102866881B (en) 2015-11-25

Family

ID=47445763

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201210252034.0A Active CN102866881B (en) 2012-07-20 2012-07-20 The vague generalization of vector network analyzer data conversion and the implementation method of parallelization

Country Status (1)

Country Link
CN (1) CN102866881B (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104316764A (en) * 2014-09-25 2015-01-28 中国电子科技集团公司第四十一研究所 Spectrum analyzer control and measurement parallel processing method
CN108765608A (en) * 2018-04-13 2018-11-06 西安电子科技大学 A kind of student's routine attendance check control system and method, information data processing terminal

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110238383A1 (en) * 2010-03-23 2011-09-29 Metzger Donald W One-Port De-embedding Using Time Domain Substitution
CN102279376A (en) * 2011-06-20 2011-12-14 南京航空航天大学 Method for calibrating two-port vector network analyzer based on ten-error model

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110238383A1 (en) * 2010-03-23 2011-09-29 Metzger Donald W One-Port De-embedding Using Time Domain Substitution
CN102279376A (en) * 2011-06-20 2011-12-14 南京航空航天大学 Method for calibrating two-port vector network analyzer based on ten-error model

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
熊伟: "一款经济型矢量网络分析仪若干模块的设计与实现", 《中国优秀硕士学位论文全文数据库 工程科技Ⅱ辑 》, no. 12, 15 December 2009 (2009-12-15), pages 042 - 330 *
王云霞: "矢量网络分析仪的误差分析和处理", 《中国优秀硕士学位论文全文数据库 工程科技Ⅱ辑》, no. 02, 15 August 2007 (2007-08-15), pages 042 - 564 *

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104316764A (en) * 2014-09-25 2015-01-28 中国电子科技集团公司第四十一研究所 Spectrum analyzer control and measurement parallel processing method
CN104316764B (en) * 2014-09-25 2017-04-26 中国电子科技集团公司第四十一研究所 Spectrum analyzer control and measurement parallel processing method
CN108765608A (en) * 2018-04-13 2018-11-06 西安电子科技大学 A kind of student's routine attendance check control system and method, information data processing terminal

Also Published As

Publication number Publication date
CN102866881B (en) 2015-11-25

Similar Documents

Publication Publication Date Title
CN101943946B (en) Two-dimensional image force touch reproducing control method and system based on three-dimensional force sensor
CN101853071A (en) Gesture identification method and system based on visual sense
CN110378225A (en) The recognition methods of pointer instrument automatic reading and identification device
CN109978894A (en) A kind of lesion region mask method and system based on three-dimensional mammary gland color ultrasound
CN110781446A (en) Method for rapidly calculating average vorticity deviation of ocean mesoscale vortex Lagrange
EP4123594A2 (en) Object detection method and apparatus, computer-readable storage medium, and computer program product
KR20220034075A (en) Method and apparatus for training a font generation model, method and apparatus for establishing a font library, and device
CN102902657A (en) Method for accelerating FFT (Fast Fourier Transform) by using GPU (Graphic Processing Unit)
CN102866881A (en) Implementation method for generalization and parallelization of data conversion of vector network analyzer
CN104537713A (en) Novel three-dimensional reconstruction system
CN104102468A (en) Network analyzer formula editor and data graphic display method and device thereof
CN106599172A (en) Lossless fidelity visualization optimization method for mass data
CN110675470B (en) Contour line drawing method and device, computing equipment and readable storage medium
CN105005991A (en) Method for batch computing of displacements of atomic mass centers in high-resolution scanning transmission image
KR20090069110A (en) Method, apparatus, system and computer-readable recording medium for arithmetical operation based on image information
CN116432522A (en) Structured modeling method and device for wire model of electric power corridor
Luo et al. Accelerating Harris algorithm with GPU for corner detection
US20190371277A1 (en) Processing method for character stroke and related device
CN115329463A (en) Method and device for realizing vehicle network integrated simulation human-computer interface system
CN107330162A (en) For the mesh generation and information acquisition method of non-curved boundary two dimensional model
CN111381822B (en) Implementation method of rectangular tree diagram component
CN114740815A (en) Passenger car fault diagnosis method and device based on neural network and electronic equipment
Lu Handwritten capital letter recognition based on OpenCV
CN112926277A (en) Design method of miniaturized focal plane array test data acquisition and display system
CN104166039B (en) Based on visual permanent-magnetic synchronous motor stator current detecting system and method

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C14 Grant of patent or utility model
GR01 Patent grant
CP02 Change in the address of a patent holder

Address after: No. 726 Changzheng Road, Bengbu, Anhui Province

Patentee after: The 41st Institute of CETC

Address before: 266000 Qingdao economic and Technological Development Zone, Shandong Xiangjiang Road, No. 98

Patentee before: The 41st Institute of CETC

CP02 Change in the address of a patent holder
TR01 Transfer of patent right

Effective date of registration: 20190318

Address after: 266000 No. 98 Xiangjiang Road, Huangdao District, Qingdao City, Shandong Province

Patentee after: China Electronics Technology Instrument and Meter Co., Ltd.

Address before: No. 726 Changzheng Road, Bengbu, Anhui Province

Patentee before: The 41st Institute of CETC

TR01 Transfer of patent right
CP03 Change of name, title or address

Address after: 266555 No. 98 Xiangjiang Road, Huangdao District, Qingdao City, Shandong Province

Patentee after: CLP kesiyi Technology Co.,Ltd.

Address before: 266000 No. 98 Xiangjiang Road, Huangdao District, Qingdao City, Shandong Province

Patentee before: CHINA ELECTRONIC TECHNOLOGY INSTRUMENTS Co.,Ltd.

CP03 Change of name, title or address