SCPI.MMEMory.STORe.SNP.DATA

Object type

Method (Write Only)

Syntax

SCPI.MMEMory.STORe.SNP.DATA = File

Description

Saves the measurement data for the active channel (specified with the SCPI.DISPlay.WINDow(Ch).ACTivate command) into a file in the touchstone format.

You need to specify a file format and file type before saving a file. The extension differs depending on file types as shown in the following table:

<file type>

<extension>

When specifying one port

s1p

When specifying two ports

s2p

Variable

Parameter

File

Description

File name you want to use when saving file in the touchstone format

Range

254 characters or less

Examples

Dim SnpPorts(1) As Variant
SCPI.DISPlay.WINDow(1).ACTivate
SCPI.MMEMory.STORe.SNP.FORMat = "RI"
SnpPorts(0) = 1
SnpPorts(1) = 2
SCPI.MMEMory.STORe.SNP.TYPE.S2P = SnpPorts
SCPI.MMEMory.STORe.SNP.DATA = "SNP01.s2p"

Related objects

SCPI.DISPlay.WINDow(Ch).ACTivate

SCPI.MMEMory.STORe.SNP.FORMat

SCPI.MMEMory.STORe.SNP.TYPE.S1P

SCPI.MMEMory.STORe.SNP.TYPE.S2P

Equivalent key

After a file type is specified, a dialog box will appear.

Equivalent SCPI command

Syntax

:MMEMory:STORe:SNP[:DATA] <string>

Example of use

10 OUTPUT 717;"DISP:WIND1:ACT"
20 OUTPUT 717;":MMEM:STOR:SNP:FORM RI"
30 OUTPUT 717;":MMEM:STOR:SNP:TYPE:S2P 1,2"
40 OUTPUT 717;":MMEM:STOR:SNP ""SNP01.s2p"""