CN115622575A - Fuze simulator implementation method based on software radio - Google Patents

Fuze simulator implementation method based on software radio Download PDF

Info

Publication number
CN115622575A
CN115622575A CN202211219912.9A CN202211219912A CN115622575A CN 115622575 A CN115622575 A CN 115622575A CN 202211219912 A CN202211219912 A CN 202211219912A CN 115622575 A CN115622575 A CN 115622575A
Authority
CN
China
Prior art keywords
signal
fuze
module
radio
samp
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.)
Pending
Application number
CN202211219912.9A
Other languages
Chinese (zh)
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.)
Nanjing University of Science and Technology
Original Assignee
Nanjing University of Science and Technology
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 Nanjing University of Science and Technology filed Critical Nanjing University of Science and Technology
Priority to CN202211219912.9A priority Critical patent/CN115622575A/en
Publication of CN115622575A publication Critical patent/CN115622575A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04BTRANSMISSION
    • H04B1/00Details of transmission systems, not covered by a single one of groups H04B3/00 - H04B13/00; Details of transmission systems not characterised by the medium used for transmission
    • H04B1/0003Software-defined radio [SDR] systems, i.e. systems wherein components typically implemented in hardware, e.g. filters or modulators/demodulators, are implented using software, e.g. by involving an AD or DA conversion stage such that at least part of the signal processing is performed in the digital domain

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Monitoring And Testing Of Transmission In General (AREA)

Abstract

本发明公开了一种基于软件无线电的引信模拟器实现方法,本发明以USRP的X310系列作为通用软件无线电硬件平台,以GNU Radio为软件平台,通过UHD实现硬件驱动,通过创建OOT模块实现自定义信号处理功能;引信发射信号产生以及后续数字信号处理功能均在GNU Radio中实现,X310实现数字上/下变频以及ADC/DAC功能;该方法实现的引信模拟器可以产生不同体制、不同参数的发射信号以及实现不同体制引信的信号处理功能模拟。本发明基于软件无线电,将硬件作为无线电引信的基本平台,而将尽可能多的引信功能通过软件实现,解决不同体制下,不同频段的无线电引信的整合和互通能力。

Figure 202211219912

The invention discloses a fuze simulator implementation method based on software radio. The invention uses the X310 series of USRP as the general software radio hardware platform, uses GNU Radio as the software platform, realizes hardware driving through UHD, and realizes customization by creating an OOT module Signal processing function; fuze launch signal generation and subsequent digital signal processing functions are all implemented in GNU Radio, X310 realizes digital up/down conversion and ADC/DAC functions; the fuze simulator realized by this method can produce launches of different systems and parameters Signal and realize the signal processing function simulation of different system fuzes. The invention is based on software radio, uses hardware as the basic platform of the radio fuze, realizes as many fuze functions as possible through software, and solves the integration and intercommunication capabilities of radio fuzes of different frequency bands under different systems.

Figure 202211219912

Description

一种基于软件无线电的引信模拟器实现方法A Realization Method of Fuze Simulator Based on Software Radio

技术领域technical field

本发明涉及软件无线电技术,具体涉及一种基于软件无线电的引信模拟器实现方法。The invention relates to software radio technology, in particular to a method for realizing a fuze simulator based on software radio.

背景技术Background technique

传统无线电通信设备种类繁多,互换性差并且生产管理不变。There are many types of traditional radio communication equipment, poor interchangeability and unchanged production management.

软件无线电技术广泛应用于无线电通信领域,特点是将传统的硬件无线电通信设备只是作为无线电通信的基本平台,而许多的通信功能则是由软件来实现,具有很强的灵活性和较强的开放性。Software radio technology is widely used in the field of radio communication. The characteristic is that traditional hardware radio communication equipment is only used as the basic platform of radio communication, and many communication functions are realized by software, which has strong flexibility and strong openness. sex.

发明内容Contents of the invention

本发明的目的在于提供一种基于软件无线电的引信模拟器实现方法,以克服目前在软件无线电架构下引信模拟器实现空缺的问题。The purpose of the present invention is to provide a method for implementing a fuze simulator based on software radio, so as to overcome the problem of lack of fuze simulator implementation under the software radio architecture.

实现本发明目的的技术解决方案为:一种基于软件无线电的引信模拟器实现方法,包括以下步骤:The technical solution that realizes the object of the present invention is: a kind of fuze simulator realization method based on software defined radio, comprises the following steps:

GNU Radio和USRP软件无线电平台搭建:GNU Radio搭配USRP实现主机与射频空间的连接,修改主机IP地址并在终端输入uhd_find_devices,若显示设备信息表示连接成功,软件无线电平台搭建完毕;GNU Radio and USRP software radio platform construction: GNU Radio works with USRP to realize the connection between the host and the radio space, modify the host IP address and enter uhd_find_devices in the terminal, if the device information is displayed, the connection is successful, and the software radio platform is built;

信号处理模块创建:通过gr_modtool newmod[modulename],gr_modtool add[blockname]指令创建新模块;修改/include/modulename/blockname.h创建新建模块的modulename类;修改/lib/blockname_impl.h实现新建模块类的派生类的对象和成员函数声明;修改/lib/blockname_impl.cc实现成员函数定义以及信号处理功能;修改/grc/blockname.xml文件实现模块在GNU Radio下的可视化;新建build文件夹并在build文件夹下终端输入cmake../和make指令完成编译,sudo make install完成安装;Create a signal processing module: Create a new module through the gr_modtool newmod[modulename], gr_modtool add[blockname] instructions; modify /include/modulename/blockname.h to create the modulename class of the new module; modify /lib/blockname_impl.h to implement the new module class Object and member function declaration of derived class; modify /lib/blockname_impl.cc to implement member function definition and signal processing function; modify /grc/blockname.xml file to realize the visualization of the module under GNU Radio; create a new build folder and add it to the build file Clip the terminal and enter cmake../ and make commands to complete the compilation, and sudo make install to complete the installation;

产生引信模拟器发射数据:创建发射信号数据生成模块,引信模拟器用于控制发射信号的类型,包括线性调频、正弦调频、伪码调相、多普勒脉冲串以及各种复合体制,设置参数生成多种波形数据;同时选择是否模拟回波增幅效应,设置增幅阶数以及增幅速率;主机产生的数据传输到X310,经过FPGA实现数字上变频以及射频发射子板实现DAC处理后,通过天线发射,经目标反射后,接收天线接收到的回波信号经过射频接收子板ADC处理,传输到FPGA做数字下变频处理,再传输到主机做进一步的信号处理;Generate fuze simulator launch data: create a launch signal data generation module, the fuze simulator is used to control the type of launch signal, including linear frequency modulation, sinusoidal frequency modulation, pseudo-code phase modulation, Doppler burst and various composite systems, and set parameter generation A variety of waveform data; at the same time, choose whether to simulate the echo amplification effect, set the amplification order and the amplification rate; the data generated by the host is transmitted to the X310, and after the digital up-conversion by the FPGA and the DAC processing by the RF transmitter sub-board, it is transmitted through the antenna. After being reflected by the target, the echo signal received by the receiving antenna is processed by the ADC of the RF receiving sub-board, and then transmitted to the FPGA for digital down-conversion processing, and then transmitted to the host for further signal processing;

回波信号处理:针对不同体制引信的信号处理流程,FFT模块来测算线性调频体制的差频频率;相关处理模块对伪码体制以及脉冲体制做相关处理;包络提取模块提取多正弦调频体制的差频信号各次谐波包络实现定距;欠采样模块做时域欠采样处理提取回波多普勒频率;数据分路模块实现对数据的分路处理,将一组数据流分成多个数据流,实现多参数体制的距离与速度测算;测算模块通过差频频率得到距离信息,多普勒频率得到速度信息;回波增幅速率测算模块实现回波信号的包络提取以及增幅测算的功能;测算结果通过消息传递机制在终端显示。Echo signal processing: Aiming at the signal processing flow of different system fuzes, the FFT module measures the difference frequency of the linear frequency modulation system; the correlation processing module performs correlation processing on the pseudo code system and the pulse system; the envelope extraction module extracts the frequency of the multi-sine frequency modulation system The sub-harmonic envelope of the difference frequency signal realizes fixed distance; the under-sampling module performs time-domain under-sampling processing to extract the echo Doppler frequency; the data splitting module realizes splitting processing of data, and divides a set of data streams into multiple data streams flow to realize the distance and speed calculation of the multi-parameter system; the measurement module obtains the distance information through the difference frequency, and the Doppler frequency obtains the speed information; the echo increase rate calculation module realizes the envelope extraction of the echo signal and the function of the increase calculation; The calculation results are displayed on the terminal through the message passing mechanism.

与现有技术相比,本发明的有益效果为:GNU Radio和USRP软件无线电平台是一个以GNU Radio为软件架构,USRP为硬件平台,可以在多个操作系统运行的灵活高效软件无线电平台。本发明基于软件无线电,将硬件作为无线电引信的基本平台,而将尽可能多的引信功能通过软件实现,解决不同体制下,不同频段的无线电引信的整合和互通能力。具有更高的灵活性,可以增加新的软件模块来增加新的通信功能。Compared with the prior art, the beneficial effect of the present invention is that the GNU Radio and USRP software radio platforms are a flexible and efficient software radio platform that uses GNU Radio as the software architecture and USRP as the hardware platform, and can run on multiple operating systems. The invention is based on software radio, uses hardware as the basic platform of radio fuzes, realizes as many fuze functions as possible through software, and solves the integration and intercommunication capabilities of radio fuzes of different frequency bands under different systems. With higher flexibility, new software modules can be added to add new communication functions.

附图说明Description of drawings

图1为基于软件无线电的引信模拟器结构图。Figure 1 is a structural diagram of a fuze simulator based on software defined radio.

图2为USRP初始化终端显示图。Figure 2 is a display diagram of the USRP initialization terminal.

图3为GNU Radio自建模块文件目录。Figure 3 is the GNU Radio self-built module file directory.

图4为引信模拟器发射信号流图。Figure 4 is a flow diagram of the signal flow of the fuze simulator.

图5为引信模拟器发射信号波形图。Figure 5 is a waveform diagram of the signal emitted by the fuze simulator.

图6为引信模拟器测算结果、信号处理波形图与启动信号示意图。Fig. 6 is a schematic diagram of fuze simulator measurement results, signal processing waveform diagram and start signal.

具体实施方式detailed description

本发明提出一种基于软件无线电的引信模拟器实现方法,该方法基于软件无线电,将硬件作为无线电引信的基本平台,而将尽可能多的引信功能通过软件实现,解决不同体制下,不同频段的无线电引信的整合和互通能力。本发明以USRP(Universal SoftwareRadio Peripheral)的X310系列作为通用软件无线电硬件平台,以GNU Radio为软件平台,通过UHD(Universal Hardware Driver)实现硬件驱动,通过创建OOT(Out of TreeModule)模块实现自定义信号处理功能。引信发射信号产生以及后续数字信号处理功能均在GNU Radio中实现,X310实现数字上/下变频以及ADC/DAC功能。The present invention proposes a method for implementing a fuze simulator based on software radio. The method is based on software radio, uses hardware as the basic platform of radio fuze, and implements as many fuze functions as possible through software to solve the problems of different frequency bands under different systems. Integration and interoperability of radio fuzes. The present invention uses the X310 series of USRP (Universal SoftwareRadio Peripheral) as the general software radio hardware platform, uses GNU Radio as the software platform, realizes the hardware drive through UHD (Universal Hardware Driver), and realizes the self-defined signal by creating an OOT (Out of TreeModule) module Processing function. The fuze emission signal generation and subsequent digital signal processing functions are implemented in GNU Radio, and X310 realizes digital up/down conversion and ADC/DAC functions.

基于软件无线电的多种体制无线电引信模拟器实现方法,具体步骤如下:A method for implementing a multi-system radio fuze simulator based on software radio, the specific steps are as follows:

步骤1,搭建GNU Radio和USRP软件无线电平台。软件平台基于Ubuntu18.04系统,安装GNU Radio、UHD以及大量的依赖库。GNU Radio搭配USRP实现计算机与射频空间的连接,通过万兆网线将主机与USRP连接,修改主机IP地址并在终端输入uhd_find_devices,若显示设备信息表示连接成功,软件无线电平台搭建完毕。Step 1, build GNU Radio and USRP software radio platform. The software platform is based on the Ubuntu18.04 system, with GNU Radio, UHD and a large number of dependent libraries installed. GNU Radio works with USRP to realize the connection between the computer and the radio frequency space. Connect the host to the USRP through a 10G network cable, modify the host IP address and enter uhd_find_devices in the terminal. If the device information is displayed, the connection is successful, and the software radio platform is built.

步骤2,创建信号处理模块。GNU Radio中自带的信号处理模块无法满足引信高性能信号处理需求,需要创建高性能信号处理模块。通过gr_modtool newmod[modulename],gr_modtool add[blockname]指令创建新模块。修改/include/modulename/blockname.h完成新建模块类的声明;修改/lib/blockname_impl.h实现新建模块类的派生类的对象和成员函数声明;修改/lib/blockname_impl.cc实现函数定义以及信号处理功能;修改/grc/blockname.xml文件实现模块在GNU Radio下的可视化。新建build文件夹并在build文件夹下终端输入cmake../和make指令完成编译,sudo make install完成安装。Step 2, create a signal processing module. The signal processing module that comes with GNU Radio cannot meet the high-performance signal processing requirements of the fuze, and it is necessary to create a high-performance signal processing module. Create new modules with the gr_modtool newmod[modulename], gr_modtool add[blockname] directives. Modify /include/modulename/blockname.h to complete the declaration of the new module class; modify /lib/blockname_impl.h to realize the object and member function declaration of the derived class of the new module class; modify /lib/blockname_impl.cc to realize the function definition and signal processing Function; modify the /grc/blockname.xml file to realize the visualization of the module under GNU Radio. Create a new build folder and enter cmake../ and make commands in the terminal under the build folder to complete the compilation, and sudo make install to complete the installation.

步骤3,产生引信模拟器发射数据:创建发射信号数据生成模块,X310最大处理带宽为200MHz,主机产生的信号最大频率不能超过100MHz,该引信模拟器可以控制发射信号的类型,包括线性调频、正弦调频、伪码调相、多普勒脉冲串以及各种复合体制,可以设置任何合理参数生成多种波形数据。同时可以选择是否模拟回波增幅效应,设置增幅阶数以及增幅速率模拟不同回波增幅效果。主机产生的数据传输到X310,经过FPGA实现数字上变频以及射频发射子板实现DAC处理后,通过天线发射,经目标反射后,接收天线接收到的回波信号经过射频接收子板ADC处理,传输到FPGA做数字下变频处理,再传输到主机做进一步的信号处理。Step 3, generate the launch data of the fuze simulator: create a launch signal data generation module, the maximum processing bandwidth of the X310 is 200MHz, and the maximum frequency of the signal generated by the host cannot exceed 100MHz, the fuze simulator can control the type of launch signal, including chirp, sine Frequency modulation, pseudo-code phase modulation, Doppler burst and various composite systems, any reasonable parameters can be set to generate a variety of waveform data. At the same time, you can choose whether to simulate the echo amplification effect, set the amplification order and the amplification rate to simulate different echo amplification effects. The data generated by the host is transmitted to the X310. After the digital up-conversion is realized by the FPGA and the DAC processing is realized by the RF transmitting sub-board, it is transmitted through the antenna. After being reflected by the target, the echo signal received by the receiving antenna is processed by the ADC of the RF receiving sub-board and transmitted. To the FPGA for digital down-conversion processing, and then transmitted to the host for further signal processing.

步骤4,引信模拟器信号处理:基于软件无线电的引信模拟器的信号处理功能以及测算都是在主机完成。针对不同体制引信的信号处理流程,设计了FFT模块来测算线性调频体制的差频频率;相关处理模块对伪码体制以及脉冲体制做相关处理;包络提取模块提取多正弦调频体制的差频信号各次谐波包络实现定距;欠采样模块做时域欠采样处理提取回波多普勒频率;数据分路模块实现对数据的分路处理,将一组数据按照自定义的规则分为多路数据,实现多参数体制的距离与速度测算。测算模块通过差频频率得到距离信息,多普勒频率得到速度信息;回波增幅速率测算模块实现回波信号的包络提取以及增幅测算的功能。测算结果通过消息传递机制在终端显示。各阶段的信号处理的波形可以通过示波器模块观察,示波器模块包括时域图、频域图、瀑布图等。Step 4, signal processing of the fuze simulator: The signal processing function and calculation of the fuze simulator based on the software radio are all completed in the host computer. According to the signal processing flow of different system fuzes, the FFT module is designed to measure the difference frequency of the linear frequency modulation system; the correlation processing module performs correlation processing on the pseudo code system and the pulse system; the envelope extraction module extracts the difference frequency signal of the multi-sine frequency modulation system Each harmonic envelope realizes the fixed distance; the undersampling module performs time domain undersampling processing to extract the echo Doppler frequency; the data splitting module realizes splitting processing of data, and divides a set of data into multiple groups according to self-defined rules. Road data to realize the distance and speed calculation of the multi-parameter system. The measurement module obtains the distance information through the beat frequency, and the speed information through the Doppler frequency; the echo amplification rate measurement module realizes the functions of echo signal envelope extraction and amplitude measurement. The calculation results are displayed on the terminal through the message passing mechanism. The waveforms of signal processing at each stage can be observed through the oscilloscope module, which includes time domain diagrams, frequency domain diagrams, waterfall diagrams, etc.

进一步的,对于发射信号数据产生模块,设置采样率为samp_rate(不大于200MHz)。发射线性调频体制时,设置上扫频点数与下扫频点数分别为samp_up和samp_down,samp_down为0表示锯齿波调频,samp_up和samp_down相等表示为三角波调频,调制周期为samp_up/samp_down,调频带宽sweep_freq一般设置为samp_rate可以得到最小的距离分辨率,信号周期为ped,基于上面的参数可以生成自定义参数的线性调频发射信号。多正弦调频与线性调频原理类似,区别在于线性调频发射信号的频率是线性变化的,多参数调频按正弦调制变化,设置单周期采样点个数为samp_sin,则周期为samp_sin/samp_rate。伪码信号与脉冲串信号产生原理相同,设置vector类型参数send_samp和wait_samp分别表示幅度为1的数据对应的点数以及幅度为-1对应的点数,通过设置send_samp和wait_samp的值,就可以自定义任意的伪码信号和脉冲串信号。将产生调频信号的模块与产生伪码、脉冲的模块通过乘法器即可实现复合体制引信。Further, for the transmit signal data generation module, set the sampling rate to samp_rate (not greater than 200MHz). When transmitting the linear FM system, set the number of up-sweep frequency points and the number of down-sweep frequency points to samp_up and samp_down respectively, samp_down to 0 means sawtooth wave FM, samp_up and samp_down equal means triangular wave FM, the modulation cycle is samp_up/samp_down, and the FM bandwidth sweep_freq is general Set it to samp_rate to get the minimum distance resolution, and the signal period is ped. Based on the above parameters, a chirp transmission signal with custom parameters can be generated. The principle of multi-sine FM is similar to that of linear FM. The difference is that the frequency of the linear FM transmission signal changes linearly. Multi-parameter FM changes according to sinusoidal modulation. If the number of sampling points in a single cycle is set to samp_sin, the period is samp_sin/samp_rate. Pseudo-code signals are generated on the same principle as pulse train signals. Set the vector type parameters send_samp and wait_samp to represent the points corresponding to data with an amplitude of 1 and the points corresponding to data with an amplitude of -1 respectively. By setting the values of send_samp and wait_samp, you can customize any Pseudo code signal and burst signal. The compound system fuze can be realized by passing the module generating frequency modulation signal and the module generating pseudo code and pulse through the multiplier.

进一步的,主机生成的各种体制引信发射信号通过USRP转换为模拟射频信号经天线发射,这一过程由UHD::USRP Sink模块控制,接收端的射频信号可以通过UHD::USRPSource控制转换为低频信号到主机做处理,由于X310有随机延迟以及连接天线的电缆线长度的影响,需要在每次测算前作距离校正以及随机延时的测算来降低测距误差。X310是双发双收,将其中一个发射端口与接收端口直接通过馈线相连,并在软件端将发射信号与回波信号通过相关器测算延时,将延时信息传递给USRP Source模块,这样另一个接收端口在接收到回波信号后会减掉这个随机延时量,提高距离测算精度。由于实际试验目标速度无法太大,同时为了模拟真实目标场景,目标速度带来的多普勒效应在软件端实现,将回波信号通过FFT变换到频域,加上理论上的多普勒频率,再IFFT变换到时间域,经过软件端多普勒补偿后的回波信号可以模拟真实运动目标的回波信号,即可模拟运动目标的多普勒效应。FFT模块基于FFTW3库实现,用以测算差频频率与多普勒频率。相关器实现基于volk(Vector-Optmized Library of Kernels),快速实现两个输入流的点积运算,从而得到本地信号与回波信号之间的延时。包络提取模块基于包络检波原理,提取得到的包络分割成多段,分别测算每段的幅度均值,进而得到增幅速率。Further, the various system fuze transmission signals generated by the host are converted into analog radio frequency signals through the USRP and transmitted through the antenna. This process is controlled by the UHD::USRP Sink module, and the radio frequency signals at the receiving end can be converted into low-frequency signals through UHD::USRPSource control To the host for processing, due to the random delay of the X310 and the influence of the length of the cable connected to the antenna, it is necessary to perform distance correction and random delay calculation before each measurement to reduce the ranging error. The X310 is dual-transmitter and dual-receiver. Connect one of the transmitting ports to the receiving port directly through the feeder, and at the software side, the transmitting signal and the echo signal are measured and delayed by the correlator, and the delay information is passed to the USRP Source module. After receiving the echo signal, a receiving port will subtract this random delay amount to improve the accuracy of distance measurement. Since the actual test target speed cannot be too large, and at the same time, in order to simulate the real target scene, the Doppler effect brought by the target speed is realized on the software side, and the echo signal is transformed into the frequency domain through FFT, plus the theoretical Doppler frequency , and then IFFT into the time domain, the echo signal after Doppler compensation on the software side can simulate the echo signal of a real moving target, which can simulate the Doppler effect of a moving target. The FFT module is implemented based on the FFTW3 library to measure the difference frequency and Doppler frequency. The correlator implementation is based on volk (Vector-Optmized Library of Kernels), which quickly implements the dot product operation of two input streams, thereby obtaining the delay between the local signal and the echo signal. The envelope extraction module is based on the principle of envelope detection, and the extracted envelope is divided into multiple segments, and the average value of the amplitude of each segment is measured separately, and then the rate of increase is obtained.

进一步的,针对不同体制引信建立不同信号处理模型后,得到的测算结果还需要在终端打印,本发明采用消息传递机制,在模块中定义消息传递端口,并将需要传递的消息,如距离、速度、回波增幅速率定义为多态类型。多态类型(Polymorphic Types)被用作块与块之间传递的数据载体,常用作数据流的标签以及消息传递,多态类型数据可以为布尔型、整型、复数、字典等。块与块之间的数据流传递只能是上游块传递到下游,不能逆方向,但是块与块之间的消息传递没有这样的限制,任意两个块之间都能进行消息的传递,测算的结果通过消息传递机制便能很方便的在终端打印出来。本发明首次实现基于软件无线电的引信模拟器。Further, after establishing different signal processing models for different systems of fuzes, the obtained measurement results need to be printed on the terminal. The present invention adopts a message transmission mechanism, defines a message transmission port in the module, and sends the messages to be transmitted, such as distance, speed , Echo amplification rate is defined as polymorphic type. Polymorphic Types (Polymorphic Types) are used as data carriers passed between blocks, and are often used as labels for data streams and message delivery. Polymorphic Type data can be Boolean, integer, complex, dictionary, etc. The data flow transmission between blocks can only be transmitted from the upstream block to the downstream, and cannot be reversed, but there is no such restriction on the message transmission between the blocks, and the message transmission can be carried out between any two blocks. The result can be easily printed on the terminal through the message passing mechanism. The invention realizes the fuze simulator based on software radio for the first time.

为了使本申请的目的、技术方案及优点更加清楚明白,以下结合附图及实施例,对本申请进行进一步详细说明。应当理解,此处描述的具体实施例仅仅用以解释本申请,并不用于限定本申请。In order to make the purpose, technical solution and advantages of the present application clearer, the present application will be further described in detail below in conjunction with the accompanying drawings and embodiments. It should be understood that the specific embodiments described here are only used to explain the present application, and are not intended to limit the present application.

实施例Example

一种基于软件无线电的多种体制无线电引信模拟器实现方法,如图1,包括以下步骤:A method for realizing a multi-system radio fuze simulator based on software radio, as shown in Figure 1, includes the following steps:

步骤1,搭建GNU Radio和USRP软件无线电平台。GNU Radio和USRP结构图如图2,修改主机IP地址,使用万兆网线连接主机与USRP,终端输入uhd_find_devices后显示设备信息如图2。Step 1, build GNU Radio and USRP software radio platform. The structure diagram of GNU Radio and USRP is shown in Figure 2. Modify the host IP address, connect the host and USRP with a 10G network cable, and enter uhd_find_devices in the terminal to display device information as shown in Figure 2.

步骤2,通过gr_modtool创建信号处理模块,修改/include下的.h文件和/lib下的.h和.cc文件实现特定信号处理功能,修改/grc下.xml文件实现模块可视化。创建build文件夹并在build文件夹下终端输入cmake../和make指令完成编译,sudo make install完成安装。自定义模块文件目录如图3。Step 2: Create a signal processing module through gr_modtool, modify the .h file under /include and the .h and .cc files under /lib to implement specific signal processing functions, and modify the .xml file under /grc to realize module visualization. Create a build folder and enter cmake../ and make commands in the terminal under the build folder to complete the compilation, and sudo make install to complete the installation. The custom module file directory is shown in Figure 3.

步骤3,建立不同体制引信发射信号模型并创建流图。对于发射信号数据产生模块,设置采样率为samp_rate(不大于200MHz)。发射线性调频体制时,设置上扫频点数与下扫频点数分别为samp_up和samp_down,samp_down为0表示锯齿波调频,samp_up和samp_down相等表示为三角波调频,调制周期为samp_up/samp_down,调频带宽sweep_freq,周期为ped,基于上面的参数可以生成自定义参数的线性调频发射信号。多正弦调频与线性调频原理类似,区别在于线性调频发射信号的频率是线性变化的,多参数调频按正弦调制变化,设置单周期采样点个数为samp_sin,则周期为samp_sin/samp_rate。伪码信号与脉冲串信号产生原理相同,设置vector参数send_samp和wait_samp分别表示幅度为1的数据对应的点数以及幅度为-1对应的点数,通过设置send_samp和wait_samp的值,就可以自定义任意的伪码信号和脉冲串信号。将产生调频信号的模块与产生伪码、脉冲的模块通过乘法器即可实现复合体制引信。Step 3, establish the emission signal models of different system fuzes and create flow diagrams. For the transmit signal data generation module, set the sampling rate to samp_rate (not greater than 200MHz). When transmitting the linear FM system, set the number of up-sweep frequency points and the number of down-sweep frequency points to samp_up and samp_down respectively, samp_down to 0 means sawtooth wave FM, samp_up and samp_down equal means triangular wave FM, modulation period is samp_up/samp_down, FM bandwidth sweep_freq, The period is ped, and a chirp transmission signal with custom parameters can be generated based on the above parameters. The principle of multi-sine FM is similar to that of linear FM. The difference is that the frequency of the linear FM transmission signal changes linearly. Multi-parameter FM changes according to sinusoidal modulation. If the number of sampling points in a single cycle is set to samp_sin, the period is samp_sin/samp_rate. Pseudo-code signals are generated on the same principle as pulse train signals. Set the vector parameters send_samp and wait_samp to represent the points corresponding to data with an amplitude of 1 and the points corresponding to data with an amplitude of -1 respectively. By setting the values of send_samp and wait_samp, you can customize any Pseudocode signals and burst signals. The compound system fuze can be realized by passing the module generating frequency modulation signal and the module generating pseudo code and pulse through the multiplier.

引信模拟器发射端产生信号的流图如图4,引信模拟器发射信号波形如图5。The flow diagram of the signal generated by the transmitter of the fuze simulator is shown in Figure 4, and the waveform of the signal emitted by the fuze simulator is shown in Figure 5.

步骤4,控制引信模拟器射频信号的发射与接收,对下变频后的回波信号做软件端信号处理。主机生成的各种体制引信发射信号通过USRP转换为模拟射频信号经天线发射,这一过程由UHD::USRP Sink模块控制,这个模块是GNU Radio为我们创建好的无需修改,接收端端的射频信号可以通过UHD::USRP Source控制转换为低频信号到主机做处理,由于X310有随机延迟以及连接天线的电缆线长度的影响,需要在每次测算前作距离校正以及随机延时的测算。X310是双发双收,将其中一个发射端口与接收端口直接通过馈线相连,并在软件端将发射信号与回波信号通过相关器测算延时,将延时信息传递给USRP Source模块,这样另一个接收端口在接收到回波信号后会减掉这个随机延时量,提高距离测算精度。由于实际试验目标速度无法太大,同时为了模拟真实目标场景,目标速度带来的多普勒效应在软件端实现,将回波信号通过FFT变换到频域,加上理论上的多普勒频率,再IFFT变换到时间域,经过软件端多普勒补偿后的回波信号可以模拟真实运动目标的回波信号,即可模拟运动目标的多普勒效应。FFT模块基于FFTW3库实现,用以测算差频频率与多普勒频率。相关器实现基于volk(Vector-Optmized Library of Kernels),快速实现两个输入流的点积运算,从而得到本地信号与回波信号之间的延时。包络提取模块基于包络检波原理,提取得到的包络分割成多段,分别测算每段的幅度均值,进而得到增幅速率。Step 4, control the emission and reception of the radio frequency signal of the fuze simulator, and perform software-side signal processing on the down-converted echo signal. The various system fuze transmission signals generated by the host are converted into analog radio frequency signals by USRP and transmitted by the antenna. This process is controlled by the UHD::USRP Sink module. This module is created by GNU Radio for us and does not need to be modified. The radio frequency signal at the receiving end It can be converted into a low-frequency signal through UHD::USRP Source control and sent to the host for processing. Due to the random delay of the X310 and the influence of the length of the cable connecting the antenna, it is necessary to perform distance correction and random delay calculation before each measurement. The X310 is dual-transmitter and dual-receiver. Connect one of the transmitting ports to the receiving port directly through the feeder, and at the software side, the transmitting signal and the echo signal are measured and delayed by the correlator, and the delay information is passed to the USRP Source module. After receiving the echo signal, a receiving port will subtract this random delay amount to improve the accuracy of distance measurement. Since the actual test target speed cannot be too large, and at the same time, in order to simulate the real target scene, the Doppler effect brought by the target speed is realized on the software side, and the echo signal is transformed into the frequency domain through FFT, plus the theoretical Doppler frequency , and then IFFT into the time domain, the echo signal after Doppler compensation on the software side can simulate the echo signal of a real moving target, which can simulate the Doppler effect of a moving target. The FFT module is implemented based on the FFTW3 library to measure the difference frequency and Doppler frequency. The correlator implementation is based on volk (Vector-Optmized Library of Kernels), which quickly implements the dot product operation of two input streams, thereby obtaining the delay between the local signal and the echo signal. The envelope extraction module is based on the principle of envelope detection, and the extracted envelope is divided into multiple segments, and the average value of the amplitude of each segment is measured separately, and then the rate of increase is obtained.

为了验证本发明的有效性,进行如下实际场景实验。系统参数为:采样率为200MHz,中心频率为3.4GHz,目标板移动距离范围为0~20m,速度为200m/s。各体制信号连续发,间歇收,可以设置单位时间测算次数,如果测算时,终端不断地吐“O”,表示主机无法同步接收来自USRP的数据,不断吐“U”表示计算机无法提供大量的数据给USRP,可以适当降低信号周期以减少数据量来解决。各体制测算结果、信号处理波形图与启动信号如图6。测算结果与实际一致,符合设计要求。In order to verify the effectiveness of the present invention, the following actual scene experiment is carried out. The system parameters are: the sampling rate is 200MHz, the center frequency is 3.4GHz, the moving distance range of the target board is 0-20m, and the speed is 200m/s. The signals of each system are sent continuously and received intermittently, and the number of calculations per unit time can be set. If the terminal continuously spits out "O" during the calculation, it means that the host cannot receive data from the USRP synchronously. Continuous spit out "U" means that the computer cannot provide a large amount of data. For USRP, the signal cycle can be appropriately reduced to reduce the amount of data. The calculation results of each system, the signal processing waveform diagram and the start signal are shown in Figure 6. The calculation results are consistent with the actual and meet the design requirements.

以上实施例的各技术特征可以进行任意的组合,为使描述简洁,未对上述实施例中的各个技术特征所有可能的组合都进行描述,然而,只要这些技术特征的组合不存在矛盾,都应当认为是本说明书记载的范围。The technical features of the above embodiments can be combined arbitrarily. To make the description concise, all possible combinations of the technical features in the above embodiments are not described. However, as long as there is no contradiction in the combination of these technical features, they should be It is considered to be within the range described in this specification.

Claims (10)

1.一种基于软件无线电的引信模拟器实现方法,其特征在于,包括以下步骤:1. A method for implementing a fuze simulator based on software defined radio, comprising the following steps: GNU Radio和USRP软件无线电平台搭建:GNU Radio搭配USRP实现主机与射频空间的连接,修改主机IP地址并在终端输入uhd_find_devices,若显示设备信息表示连接成功,软件无线电平台搭建完毕;GNU Radio and USRP software radio platform construction: GNU Radio works with USRP to realize the connection between the host and the radio space, modify the host IP address and enter uhd_find_devices in the terminal, if the device information is displayed, the connection is successful, and the software radio platform is built; 信号处理模块创建:通过gr_modtool newmod[modulename],gr_modtool add[blockname]指令创建新模块;修改/include/modulename/blockname.h创建新建模块的modulename类;修改/lib/blockname_impl.h实现新建模块类的派生类的对象和成员函数声明;修改/lib/blockname_impl.cc实现成员函数定义以及信号处理功能;修改/grc/blockname.xml文件实现模块在GNU Radio下的可视化;新建build文件夹并在build文件夹下终端输入cmake../和make指令完成编译,sudo make install完成安装;Create a signal processing module: Create a new module through the gr_modtool newmod[modulename], gr_modtool add[blockname] instructions; modify /include/modulename/blockname.h to create the modulename class of the new module; modify /lib/blockname_impl.h to implement the new module class Object and member function declaration of derived class; modify /lib/blockname_impl.cc to implement member function definition and signal processing function; modify /grc/blockname.xml file to realize the visualization of the module under GNU Radio; create a new build folder and add it to the build file Clip the terminal and enter cmake../ and make commands to complete the compilation, and sudo make install to complete the installation; 产生引信模拟器发射数据:创建发射信号数据生成模块,引信模拟器用于控制发射信号的类型,包括线性调频、正弦调频、伪码调相、多普勒脉冲串以及各种复合体制,设置参数生成多种波形数据;同时选择是否模拟回波增幅效应,设置增幅阶数以及增幅速率;主机产生的数据传输到X310,经过FPGA实现数字上变频以及射频发射子板实现DAC处理后,通过天线发射,经目标反射后,接收天线接收到的回波信号经过射频接收子板ADC处理,传输到FPGA做数字下变频处理,再传输到主机做进一步的信号处理;Generate fuze simulator launch data: create a launch signal data generation module, the fuze simulator is used to control the type of launch signal, including linear frequency modulation, sinusoidal frequency modulation, pseudo-code phase modulation, Doppler burst and various composite systems, and set parameter generation A variety of waveform data; at the same time, choose whether to simulate the echo amplification effect, set the amplification order and the amplification rate; the data generated by the host is transmitted to the X310, and after the digital up-conversion by the FPGA and the DAC processing by the RF transmitter sub-board, it is transmitted through the antenna. After being reflected by the target, the echo signal received by the receiving antenna is processed by the ADC of the RF receiving sub-board, and then transmitted to the FPGA for digital down-conversion processing, and then transmitted to the host for further signal processing; 回波信号处理:针对不同体制引信的信号处理流程,FFT模块来测算线性调频体制的差频频率;相关处理模块对伪码体制以及脉冲体制做相关处理;包络提取模块提取多正弦调频体制的差频信号各次谐波包络实现定距;欠采样模块做时域欠采样处理提取回波多普勒频率;数据分路模块实现对数据的分路处理,将一组数据流分成多个数据流,实现多参数体制的距离与速度测算;测算模块通过差频频率得到距离信息,多普勒频率得到速度信息;回波增幅速率测算模块实现回波信号的包络提取以及增幅测算的功能;测算结果通过消息传递机制在终端显示。Echo signal processing: Aiming at the signal processing flow of different system fuzes, the FFT module measures the difference frequency of the linear frequency modulation system; the correlation processing module performs correlation processing on the pseudo code system and the pulse system; the envelope extraction module extracts the frequency of the multi-sine frequency modulation system The sub-harmonic envelope of the difference frequency signal realizes fixed distance; the under-sampling module performs time-domain under-sampling processing to extract the echo Doppler frequency; the data splitting module realizes splitting processing of data, and divides a set of data streams into multiple data streams flow to realize the distance and speed calculation of the multi-parameter system; the measurement module obtains the distance information through the difference frequency, and the Doppler frequency obtains the speed information; the echo increase rate calculation module realizes the envelope extraction of the echo signal and the function of the increase calculation; The calculation results are displayed on the terminal through the message passing mechanism. 2.根据权利要求1所述的基于软件无线电的引信模拟器实现方法,其特征在于,软件平台基于Ubuntu18.04,安装GNU Radio、UHD以及依赖库。2. the fuze simulator implementation method based on software defined radio according to claim 1, is characterized in that, software platform is based on Ubuntu18.04, installs GNU Radio, UHD and dependent library. 3.根据权利要求1所述的基于软件无线电的引信模拟器实现方法,其特征在于,对于发射信号数据生成模块,设置采样率为samp_rate;发射线性调频体制时,设置上扫频点数与下扫频点数分别为samp_up和samp_down,samp_down为0表示锯齿波调频,samp_up和samp_down相等表示为三角波调频,调制周期为samp_up/samp_down,调频带宽sweep_freq设置为samp_rate可以得到最小的距离分辨率,信号周期为ped,基于上面的参数可以生成自定义参数的线性调频发射信号;多正弦调频按正弦调制变化,设置单周期采样点个数为samp_sin,则周期为samp_sin/samp_rate;伪码信号与脉冲串信号产生原理相同,设置vector类型参数send_samp和wait_samp分别表示幅度为1的数据对应的点数以及幅度为-1对应的点数,通过设置send_samp和wait_samp的值,自定义任意的伪码信号和脉冲串信号;将产生调频信号的模块与产生伪码、脉冲的模块通过乘法器实现复合体制引信。3. the fuze simulator implementation method based on software radio according to claim 1, is characterized in that, for the emission signal data generating module, the sampling rate is set as samp_rate; during the emission chirp system, the upper sweep frequency points and the lower sweep are set The number of frequency points are samp_up and samp_down respectively, samp_down is 0 means sawtooth wave frequency modulation, samp_up and samp_down are equal means triangular wave frequency modulation, the modulation period is samp_up/samp_down, the frequency modulation bandwidth sweep_freq is set to samp_rate to get the minimum distance resolution, and the signal period is ped , based on the above parameters, a linear frequency modulation transmission signal with custom parameters can be generated; multi-sine frequency modulation changes according to sinusoidal modulation, and the number of sampling points in a single cycle is set to samp_sin, then the cycle is samp_sin/samp_rate; pseudo code signal and burst signal generation principle Similarly, set the vector type parameters send_samp and wait_samp to represent the points corresponding to the data with an amplitude of 1 and the points corresponding to the amplitude of -1 respectively. By setting the values of send_samp and wait_samp, you can customize any pseudocode signal and burst signal; it will generate The module for frequency modulation signal and the module for generating pseudocode and pulse realize the complex system fuze through the multiplier. 4.根据权利要求3所述的基于软件无线电的引信模拟器实现方法,其特征在于,采样率samp_rate不大于200MHz。4. The fuze simulator implementation method based on software radio according to claim 3, characterized in that, the sampling rate samp_rate is not greater than 200MHz. 5.根据权利要求1所述的基于软件无线电的引信模拟器实现方法,其特征在于,X310最大处理带宽为200MHz,主机产生的信号最大频率不超过100MHz。5. The method for implementing the fuze simulator based on software defined radio according to claim 1, wherein the maximum processing bandwidth of the X310 is 200MHz, and the maximum frequency of the signal generated by the host computer does not exceed 100MHz. 6.根据权利要求1所述的基于软件无线电的引信模拟器实现方法,其特征在于,各阶段的信号处理的波形通过示波器模块观察,示波器模块显示时域图、频域图、瀑布图。6. the fuze simulator implementation method based on software defined radio according to claim 1, is characterized in that, the waveform of the signal processing of each stage is observed by oscilloscope module, and oscilloscope module shows time domain diagram, frequency domain diagram, waterfall diagram. 7.根据权利要求1所述的基于软件无线电的引信模拟器实现方法,其特征在于,主机生成的各种体制引信发射信号通过USRP转换为模拟射频信号经天线发射;X310是双发双收,将其中一个发射端口与接收端口直接通过馈线相连,并在软件端将发射信号与回波信号通过相关器测算延时,将延时信息传递给USRP Source模块,另一个接收端口在接收到回波信号后会减掉这个随机延时量;将回波信号通过FFT变换到频域,加上理论上的多普勒频率,再IFFT变换到时间域,经过软件端多普勒补偿后的回波信号模拟真实运动目标的回波信号,即可模拟运动目标的多普勒效应;FFT模块基于FFTW3库实现,用以测算差频频率与多普勒频率;相关器基于volk,实现两个输入流的点积运算,从而得到本地信号与回波信号之间的延时;包络提取模块基于包络检波原理,提取得到的包络分割成多段,分别测算每段的幅度均值,进而得到增幅速率。7. the fuze simulator implementation method based on software radio according to claim 1, is characterized in that, the various system fuze emission signals that host computer generates are converted into analog radio frequency signal through antenna emission by USRP; Connect one of the transmitting ports to the receiving port directly through the feeder, and measure the delay of the transmitting signal and the echo signal through the correlator on the software side, and pass the delay information to the USRP Source module, and the other receiving port receives the echo After the signal, this random delay will be subtracted; the echo signal is transformed into the frequency domain by FFT, plus the theoretical Doppler frequency, and then transformed into the time domain by IFFT, and the echo after Doppler compensation on the software side The signal simulates the echo signal of a real moving target, which can simulate the Doppler effect of the moving target; the FFT module is implemented based on the FFTW3 library to measure the difference frequency and Doppler frequency; the correlator is based on volk to realize two input streams The dot product operation, so as to obtain the delay between the local signal and the echo signal; the envelope extraction module is based on the principle of envelope detection, the extracted envelope is divided into multiple segments, and the average value of each segment is measured separately, and then the rate of increase is obtained. . 8.根据权利要求7所述的基于软件无线电的引信模拟器实现方法,其特征在于,主机生成的各种体制引信发射信号通过USRP转换为模拟射频信号经天线发射,这一过程由UHD::USRP Sink模块控制,接收端的射频信号通过UHD::USRP Source控制转换为低频信号到主机做处理。8. The fuze simulator implementation method based on software radio according to claim 7, characterized in that, the various system fuze transmission signals generated by the host computer are converted into analog radio frequency signals by USRP and transmitted through the antenna, and this process is controlled by UHD:: Controlled by the USRP Sink module, the RF signal at the receiving end is converted into a low-frequency signal through UHD::USRP Source control and sent to the host for processing. 9.根据权利要求7所述的基于软件无线电的引信模拟器实现方法,其特征在于,针对不同体制引信建立不同信号处理模型后,得到的测算结果在终端打印,采用消息传递机制,在模块中定义消息传递端口,并将需要传递的消息定义为多态类型。9. The fuze simulator implementation method based on software radio according to claim 7, characterized in that, after different signal processing models are set up for different system fuzes, the measurement results obtained are printed at the terminal, and a message transmission mechanism is adopted, and in the module Define the message delivery port, and define the message to be delivered as a polymorphic type. 10.根据权利要求9所述的基于软件无线电的引信模拟器实现方法,其特征在于,需要传递的消息,包括距离、速度、回波增幅速率。10. The method for implementing a fuze simulator based on software defined radio according to claim 9, wherein the message to be transmitted includes distance, speed, and echo amplification rate.
CN202211219912.9A 2022-10-07 2022-10-07 Fuze simulator implementation method based on software radio Pending CN115622575A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202211219912.9A CN115622575A (en) 2022-10-07 2022-10-07 Fuze simulator implementation method based on software radio

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202211219912.9A CN115622575A (en) 2022-10-07 2022-10-07 Fuze simulator implementation method based on software radio

Publications (1)

Publication Number Publication Date
CN115622575A true CN115622575A (en) 2023-01-17

Family

ID=84860506

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202211219912.9A Pending CN115622575A (en) 2022-10-07 2022-10-07 Fuze simulator implementation method based on software radio

Country Status (1)

Country Link
CN (1) CN115622575A (en)

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103441807A (en) * 2013-08-20 2013-12-11 南昌大学 Software frequency spectrum analyzer based on GNU Radio and USRP
CN113311396A (en) * 2021-05-19 2021-08-27 南京理工大学 Interference and anti-interference digital simulation system based on millimeter wave fuse and construction method thereof
CN114421979A (en) * 2021-12-24 2022-04-29 合肥乾芯科技有限公司 Software defined Radio development system based on SOUP and GNU Radio

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103441807A (en) * 2013-08-20 2013-12-11 南昌大学 Software frequency spectrum analyzer based on GNU Radio and USRP
CN113311396A (en) * 2021-05-19 2021-08-27 南京理工大学 Interference and anti-interference digital simulation system based on millimeter wave fuse and construction method thereof
CN114421979A (en) * 2021-12-24 2022-04-29 合肥乾芯科技有限公司 Software defined Radio development system based on SOUP and GNU Radio

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
郭志刚;付毅;: "基于USRP的无线电收发系统研究", 电子质量, no. 11, 20 November 2016 (2016-11-20) *

Similar Documents

Publication Publication Date Title
CN102866389B (en) Double-channel radar echo simulator and method and system for generating double-channel radar echo signal
CN109001697B (en) Multi-target radar echo simulator
CN102435984B (en) Echo simulation device for Doppler radar and implementation method thereof
CN111505595A (en) Radar moving target simulation system
CN106371097A (en) Radar system
US7145504B1 (en) Arbitrary radar target synthesizer (arts)
CN105629207A (en) Radar signal processing system based on DRFM (Digital Radio-Frequency Memory) technology and dense target jamming generation method
CN107346017B (en) The intensive target simulation method of pulse compression radar based on frequency matching filtering
CN111289952A (en) Radar target echo simulation method and device
CN109581321A (en) A kind of more waveform signals of radar that can flexibly load parameter generate and apparatus for demonstrating
CN102590794A (en) Broadband coherent radar target simulator
CN103529433A (en) Linear frequency modulation radar target speed simulation method and echo signal simulation source
CN111507008B (en) Parameterization-based general radar model modeling method
US12000956B2 (en) Method for operating a testing device for testing a distance sensor operating with electromagnetic waves, and corresponding testing device
CN111596289A (en) Radar detection method and device
CN110646784A (en) DAC-based radar digital T/R component transmission waveform generation method
CN115622575A (en) Fuze simulator implementation method based on software radio
CN115685108A (en) Pulse pseudo code system fuze body target simulation system and method thereof
CN113281733A (en) ZYNQ-based radar speed and distance measuring system and method
CN201307162Y (en) Synchronous high-frequency ground wave radar target simulation signal source device
Orduyılmaz et al. Real-time pulse compression radar waveform generation and digital matched filtering
CN116381629A (en) Radar large-scale target simulation system and method based on real-time dynamic convolution
CN113687320B (en) Simulation method and device of radar echo, terminal equipment and storage medium
Birkenhauer et al. Radar target simulator based on instantaneous intra-chirp fmcw parameter estimation
Xiuwei et al. Radar echo simulation system with flexible configuration

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination