LCX_UserManual_en_08_1.pdf - 第198页
Remote control commands R&S ® LCX Series 198 User Manual 1 179.2260.02 ─ 08 DA T A:DELete <File Path> Removes a file from the specified directory . Setting parameters: <File Path> Example: See Section 1 1…

Remote control commands
R&S
®
LCX Series
197User Manual 1179.2260.02 ─ 08
Setting parameters:
<Storage Slot> Range: 1 to 10
Example: See Example "Performing open/short/load correction"
on page 191.
Usage: Setting only
Manual operation: See "Save Corrections" on page 85
11.7
DATA subsystem
The DATA subsystem contains the commands for managing files and data.
Example: Managing files
The example represents the remote control commands to manage files in directories.
**************************************************
// Request information on files
// and their contents:
// list of files in a directory,number of measurement
// points in a file, the saved readings.
// Remove a file
DATA:LIST?
DATA:POINts?
DATA:DATA? "/USB1A/LCX100/logging/log-20210221T123456.789.csv"
**************************************************
// Remove a file
DATA:DELete "/USB1A/LCX100/logging/log-20210221T123456.789.csv"
DATA:DATA?................................................................................................................. 197
DATA:DELete................................................................................................................ 198
DATA:LIST?...................................................................................................................198
DATA:POINts?...............................................................................................................198
DATA:DATA? <File Path>
Queries the contents of a file, e.g. the data of a logging file.
Query parameters:
<File Path>
Example: See Section 11.7, "DATA subsystem", on page 197.
Usage: Query only
DATA subsystem

Remote control commands
R&S
®
LCX Series
198User Manual 1179.2260.02 ─ 08
DATA:DELete <File Path>
Removes a file from the specified directory.
Setting parameters:
<File Path>
Example: See Section 11.7, "DATA subsystem", on page 197.
Usage: Setting only
Manual operation: See "Delete" on page 123
DATA:LIST?
Queries all files in a specified directory.
Example:
See Section 11.7, "DATA subsystem", on page 197.
Usage: Query only
Manual operation: See "Delete" on page 123
See "Recall Settings from file..." on page 143
DATA:POINts? <File Path>
Queries the number of measurement readings saved in a file.
Query parameters:
<File Path>
Example: See Section 11.7, "DATA subsystem", on page 197.
Usage: Query only
11.8 DIMeasure subsystem
Option: R&S LCX-K106
The DIMeasure subsystem contains the commands for configuring and executing
dynamic impedance measurements.
The dynamic impedance measurement parameter limits can vary depending on the fre-
quency, voltage and range setting of the test signal.
DIMeasure subsystem

Remote control commands
R&S
®
LCX Series
199User Manual 1179.2260.02 ─ 08
Example: Using the DIMeasure function
The example represents the remote control commands for setting up a dynamic impe-
dance measurement.
*************************************************
// Select the sweep parameter to be varied.
// Configure the corresponding sweep parameters.
// Select the sweep parameter to be varied,
DIMeasure:SWEep:PARameter VOLTage
// DIMeasure:SWEep:PARameter FREQuency
// DIMeasure:SWEep:PARameter VBIas
// DIMeasure:SWEep:PARameter IBIas
// Set the sweep range, the interval type and size
DIMeasure:SWEep:MINimum 0.01 // V
DIMeasure:SWEep:MAXimum 10 // V
// Define the step size within the sweep range
DIMeasure:INTerval:TYPE STEPsize
DIMeasure:INTerval:STEPsize 0.1 // V
*************************************************
// Define a number of measurement points within
// the sweep range
// DIMeasure:INTerval:TYPE STEPsize
// DIMeasure:INTerval:POINts
*************************************************
// Start the dynamic impedance measurement
DIMeasure:EXECute
// Execute sweep with settings & block until sweep completed or aborted
DIMeasure:EXECute;*OPC?
*************************************************
// Query the dynamic impedance measurment settings
DIMeasure:SWEep:PARameter?
// Response: "VOLtage"
DIMeasure:SWEep:MINimum?
// Response: 0.01 // 10 mV
DIMeasure:SWEep:MAXimum?
// Response: 10 // 10 V
DIMeasure:INTerval:TYPE?
// Response: "STEPsize"
DIMeasure:INTerval:STEPsize?
// Response: 0.1 // 100 mV
DIMeasure:EXECute?
// Response: 1 // running
DIMeasure subsystem