연락처

텍트로닉스 담당자와 실시간 상담 6:00am-4:30pm PST에 이용 가능

전화

전화 문의

9:00am-6:00PM KST에 이용 가능

다운로드

매뉴얼, 데이터 시트, 소프트웨어 등을 다운로드할 수 있습니다.

다운로드 유형
모델 또는 키워드

피드백

Remote Operation: How can I program a SourceMeter Instrument to Measure Resistance?

질문:

Remote Operation: How can I program a SourceMeter Instrument to Measure Resistance?

답변:

How can I program a SourceMeter Instrument to Measure Resistance?

The MANUAL resistance measuring mode of the Model 2400 allows the user to select a source of voltage or a source of current. If current is sourced then voltage is measured. If voltage is sourced then current is measured. The value of the source is also user defined. This mode allows very tight control over the resistance measurement.

Below are tables illustrating the SCPI command syntax and the VXI/PnP driver syntax for accomplishing a 4-wire resistance measurement by sourcing 5mA at a voltage compliance of 2 volts:

SCPI Command
Command Description

*RST

Reset Model 2400

:SENSE:FUNCTION 'RES'

Set to resistance function

:SENSE:RES:MODE MANUAL

Set mode of resistance to manual

:SENSE:RES:RANGE 200

Range to 200 ohms

:SOURCE:FUNCTION CURRENT

Source current

:SOURCE:CURRENT:RANGE 0.01

Range of current is 10mA

:SOURCE:CURRENT 0.005

Source 5mA

:SYSTEM:RSENSE ON

Turn on remote sense (four wire)

:SENSE:VOLT:PROT 2

Set voltage compliance to 2V

:FORMAT:ELEMENTS RES

Only return resistance for reading

:OUTPUT ON

Enable the output

:READ?

Trigger and get reading

custom code to read the data

Retrieve data

:OUTPUT OFF

Disable output

VXI/PnP Driver Command
Command Description

Ke24xx_init(GPIB0::24::INSTR, model, session)

Open a session to SourceMeter at address 24

Ke24xx_reset(session)

Reset the SourceMeter

Ke24xx_ConfigureSourceLevel(session, _

KE24XX_SOURCE_CURRENT_FUNCTION, _

sourceLevel, _

KE24XX_SOURCE_LEVEL_TRIGGERED)

Select Source I

Source 'sourceLevel' Amps

Source when triggered

Ke24xx_ConfigureSourceCompliance(session, _

KE24XX_SOURCE_CURRENT_FUNCTION, _

sourceCompliance)

Again, source current

voltage not to exceed souceCompliance volts

Ke24xx_ConfigureSourceMode(session, _

KE24XX_SOURCE_CURRENT_FUNCTION, _

KE24XX_SOURCE_FIXED_MODE, _

KE24XX_SOURCE_DC_SHAPE, _

sourceRange)

Again, source current

source a single value (fixed)

Shape parameter really only for 2430 Pulse mode, otherwise set to DC_SHAPE

Set the range to use to when sourcing the current

Ke24xx_ConfigureRESSense(session, _

KE24XX_200_OHMS_RANGE, _

speed, _

KE24XX_MANUAL_OHMS, _

VI_TRUE)

Use the 200 ohm range

speed = NPLC setting

Manual Ohms mode

offset compensation ON.

Ke24xx_EnableRemoteSensing(session, VI_TRUE)

turn on remote sense (four wire)

Ke24xx_SelectSenseFunc(session, VI_FALSE, VI_FALSE, VI_TRUE)

only return resistance for the reading (4th parameter)

Ke24xx_EnableSourceOutput(session, True)

Enable the output

Ke24xx_Read(session, KI24XX_READ_RESISTANCE, numReadings, reading)

Trigger and get reading. Value returned in last parameter

Ke24xx_EnableSourceOutput(session, False)

Disable output

Ke24xx_close (session)

close this session

 

 

 

 

 

 

 

 

 

 


이 FAQ는 다음에 적용 됩니다:

제품 시리즈: 2400 그래픽 시리즈 SMU

제품:

FAQ ID 69606

모든 FAQ 보기 »