• RE: High scan rate resistance measurement using Keithley 2010 multimeter ( I do have a 7002 too)

    How long of duration do you need the monitoring?  Think of it in terms of how many samples at your 10Hz reading rate.

    Any meter will have a finite reading buffer and so time to xfer data needs accounted for unless your data set can fit in the memory.  In 2010 data sheet and speed, those speeds are for finite number of readings into the buffer.  Then stop measuring and xfer the data to PC.

    The 7002 switch frame is obsolete as are the 7xxx cards used in it.  Unless you already have a suitable switch card, used market is only choice.

    Rather than interface the 2010 to a new switch, take a look at DAQ6510 with a 7710 switch card.  That card has fast switching and can support your desired scan rates of 5 channels.  The KickStart data logger app does good job on this if also needing some data logging software.
  • RE: Simultaneous measurement on 3 nanovoltmeters using trigger link

    The model 2361 trigger controller has been obsolete for long time already.

    On the trigger link connector on 2182A, it has only trigger in and trigger out lines.

    Assuming the three meters are on GPIB bus, try to set up for BUS triggering instead of External, and then issue the GET (group execute trigger) from the GPIB card.
  • RE: Control of blackplane relays with 3706A-S

    Is this front panel manual operation or sending commands?

    Manual operation would need you to define a channel pattern that includes the backplane relay and the channel relay.  Then open or close the pattern.

    If sending commands, the channel.close() and open will accept the relay number of your backplane relay as part of the channel list.

    In the wiring to the 37xx card, take note of the +ILK and -ILK pins (on each bank if using MUX card).  Those need shorted to permit backplane relay closure.

    When the 3706A model has the internal DMM, the backplanes are typically managed for you.  For example a channel configured for 4-wire ohms vs VDC measure function will close all necessary relays when dmm.close() on that configured channel.

    If you have 3706A-S, then it is just a switch controller.
  • RE: MeasureMultiple creates an array of undefined characters in 64-bit processor.

    Hello,
    Thank you for clarifying that.
    The 2602B has only the TSP command set, so no need to worry about that setting on the instrument.
    It is very odd that the instrument reports a TSP syntax error.

    In my C# environment, I set build to x64 platform target.  It is running fine for me.
    1. ​​​​​​​try
    2.             {
    3.                 //Instantiate driver class directly
    4.                 driver = new Ke26XXA();
    5.  
    6.                 VISAResource = availableResourcesListBox.SelectedItem.ToString();
    7.  
    8.                 string options = "QueryInstrStatus=True";
    9.                 driver.Initialize(VISAResource, true, true, options);
    10.  
    11.                 label1.Text = "Successful Driver Session";
    12.  
    13.  
    14.                 //driver.System.DirectIO.WriteString("reset()", true);
    15.  
    16.  
    17.  
    18.                 driver.Sweep.set_SourceChangesEnabled("A", true);
    19.                 driver.Sweep.set_MeasurementsEnabled("A", true);
    20.  
    21.                 string bufferName = "MyBuf";
    22.                 int bufSize = 11;
    23.  
    24.                 driver.Measurement.Buffer.Create("A", bufferName, bufSize);
    25.  
    26.                 driver.Sweep.Source.ConfigureVoltageLinearSweep("A", 0, 1, 11);
    27.                 driver.Sweep.Measure.ConfigureCurrentMeasurement("A", bufferName);
    28.  
    29.                 // Set the sweep count
    30.                 driver.Trigger.set_Count("A", bufSize);
    31.                 // Set the reading count (1 pt for each sweep value)
    32.                 driver.Measurement.set_Count("A", 1);
    33.                 // set other measurement related paramters
    34.                 driver.Measurement.set_NPLC("A", 1.0);
    35.                 driver.Measurement.set_Delay("A", 0.001);
    36.  
    37.                 driver.Source.set_OutputEnabled("A", true);
    38.  
    39.                 driver.Sweep.Initiate("A");
    40.                 driver.System.WaitForOperationComplete(10000);
    41.  
    42.                 double[] readings = driver.Measurement.Buffer.MeasureData.GetAllReadings(bufferName);
    43.  
    44.                 foreach (double reading in readings)
    45.                 {
    46.                     resultsListBox.Items.Add(reading.ToString("E"));
    47.                 }
    48.  
    49.                 driver.Source.set_OutputEnabled("A", false);
    50.  
    51.                 // close the driver
    52.                 driver.Close();
    53.  
    54.  
    55.             }
    56.             catch
    57.             {
    58.                 label1.Text = "Could not open driver session!!";
    59.             }

     
  • RE: [KXIC] Get error message from KXCI

    Is true.  At present the KXCI API has no means to read back the error detail.
    I have created an enhancement request about it.
  • RE: MeasureMultiple creates an array of undefined characters in 64-bit processor.

    Can you clarify what model number is the instrument?

    From your attached image, you are using IVI driver.  I believe the IVI driver wants the touch screen SMU models such as 2450 to be in SCPI command set.
    Your reported error about TSP Syntax tells me the instrument is in in TSP command set.  If this is touch screen model of SMU, that would be a problem.

    Do I have it correct?
  • RE: [KXIC] Get error message from KXCI

    Sounds like you are making very robust error handling in your application.

    Looks like, right now, the only way for you to know the error detail is to look at tail of the KXCILogifile.txt in the C:\S4200\sys\kxci
    In KXCI window, be sure to enable logging.
    Can your application somehow map that drive location and do some file IO?

    From the KXCI command set, you can interrogate the state of a bit in the status byte to know if an error has occurred.
    But not aware of any way to query the error detail on this API.

    Python sample for interrogating status byte:
    1. ​​​​​​​import time
    2. import pyvisa
    3. import socket
    4.  
    5.  
    6. def main():
    7.     rm = pyvisa.ResourceManager()
    8.     dev_address = "TCPIP0::192.168.1.43::1225::SOCKET"
    9.     my_4200A = rm.open_resource(dev_address)
    10.     my_4200A.read_termination = "\0"
    11.     my_4200A.write_termination = "\0"
    12.     my_4200A.timeout = 1000
    13.  
    14.     # No Error in *IDN?
    15.     print("Response to *IDN?: ", my_4200A.query("*IDN?"))
    16.     status = my_4200A.query("SP")
    17.  
    18.     # Check bit B1 of status byte for previous command error
    19.     if (int(status) & 0x02) != 0:  # Check bit B1 of SP response
    20.         print("Error Detected. Bit B1 value: ", (int(status) & 0x02))
    21.     else:
    22.         print("No Error Detected. Bit B1 value: ", (int(status) & 0x02))
    23.  
    24.     # Error in *IDN?
    25.     print("Response to *ID?: ", my_4200A.query("*ID?"))
    26.     status = my_4200A.query("SP")
    27.  
    28.     # Check bit B1 of status byte for previous command error.
    29.     if (int(status) & 0x02) != 0:  # Check bit B1 of SP response
    30.         print("Error Detected. Bit B1 value: ", (int(status) & 0x02))
    31.     else:
    32.         print("No Error Detected. Bit B1 value: ", (int(status) & 0x02))
    33.  
    34.     my_4200A.close()
    35.  
    36.  
    37. if __name__ == "__main__":
    38.     main()

     
  • RE: Triggered Sweep with 2182 and 2400 configured and controlled remotely

    You should not be needing to simulate front panel button pushes this way.

    Can you clarify:  do you have a digital triggering cable between the two instruments?  I'll put some code below that assumes you do.

    And you have two COM ports on your computer and have RS-232 to each instrument?

    Here are some SCPI commands to use 2400 as current source while 2182A does delta mode measurements.
    1. :syst:pres  2182 - System preset defaults.
    2. :trig:del 1 '2182 - 1sec delay.
    3. :sens:volt:delta on ‘ 2182 - Enable Delta.
    4. :syst:faz off ‘Disable Front Autozero to double Delta speed.
    5. :trig:sour ext ‘ 2182 - External triggering.
    6. :trac:poin 3 ‘ 2182 - Buffer size 3.
    7. :trac:feed:cont next ‘ 2182 - Enable buffer.
    8. *rst ‘ SM - RST defaults.
    9. :trig:sour tlin ‘ SM - Select trigger link.
    10. :trig:dir sour ' SM - Enable source bypass.
    11. :trig:outp sour  SM - Output trigger after source.
    12. :trig:coun 6  SM - Trig count 6.
    13. :sour:func curr  SM - Source current.
    14. :func volt  SM - Measure voltage
    15. :volt:nplc 0.01  SM - Fast measurements
    16. :sour:list:curr 10e-6, -10e-6,20e-6, -20e-6, 50e-6, -50e-6  SM - Current list values
    17. :outp on  SM - Turn output on.
    18. :sour:curr:mode list  SM - Enable list mode.
    19. :init  SM - Start sweep.
    20.  
  • RE: Device characterization tests with 4200A-SCS and Lakeshore probe station

    Short answer is yes.
    But a lot of details to manage including safety interlocks, common LO,  and over voltage protection for the 4200A from the 2657A.

    Is your Lakeshore capable of the HV and the current densities of the 50Amps?  Or you will have different probe station for the new high power IV tests.

    I suggest you get in contact with your local Keithley FAE for detailed discussion and configuration.
    Are you located in Nebraska?
  • RE: Keithley 6517A With Arduino

    Does C# run on Arduino?  Or is there also a Windows computer involved that is running C#?

    You 6517A can be command controlled over RS-232 or GPIB.

    I'd suggest the C# program will control the Arduino/16channel relay module to routing signal to the 6517A.
    Then C# can also obtain a reading from 6517A.

    Will the 6517A measure current or voltage or ?