:MMEMory:LOAD:CORRection:USERrange
Description
Allows to load the previously saved user-range calibration from the device when connected to a Bode 500 device or from the local file system when measuring with Bode 100.
Important
In case of Bode 100 devices the parameter must represent a valid file format and must have '.mcalx' file extension.
If no path information is provided the calibration file will be loaded from the default directory C:\ProgramData\OMICRON_Lab\BodeAnalyzer\Scpi\Calibration
.
For Bode 500 only a valid file name is required (NO file path information allowed, extension not required).
Syntax | Parameter |
---|---|
:MMEMory:LOAD:CORRection:USERrange |
<string > |
Parameters | accepted format | allowed suffixes | possible Errors | description |
---|---|---|---|---|
<string > |
string value | none |
Illegal parameter value , File name not found --256 |
The calibration file name. |
Sample usage
Initialize a S21 measurement
and load a previously saved file from the file system.
var visaSession = new TcpipSocket(VISA_RESOURCENAME); visaSession.RawIO.Write(":CALC:PAR:DEF S21\n"); // wait for the action to finish visaSession.RawIO.Write("*OPC?\n"); visaSession.RawIO.ReadString(); visaSession.RawIO.Write($":MMEM:LOAD:CORR:USER 's21calibration.mcalx'\n"); // wait for the action to finish visaSession.RawIO.Write("*OPC?\n"); visaSession.RawIO.ReadString();
visaSession.write(':CALC:PAR:DEF S21\n') # wait for the action to finish visaSession.query('*OPC?\n') visaSession.write(':MMEM:LOAD:CORR:USER "s21calibration.mcalx"\n') # wait for the action to finish visaSession.query('*OPC?\n')
Related commands
:MMEMory:LOAD:CORRection:FULLrange