![Keithley 707B Скачать руководство пользователя страница 425](http://html.mh-extra.com/html/keithley/707b/707b_reference-manual_661685425.webp)
Section 7: Command reference
Models 707B and 708B Switching Matrix Reference Manual
7-172
707B-901-01 Rev. A / August 2010
Example
twoPole3 = slot[3].poles.two
print(twoPole3)
Query to see if Slot 3 supports two-pole
settings for the channels on the card.
Output if card supports two pole:
1.00000
Output if card does not support two pole:
nil
Also see
(on page 7-170)
slot[X].pseudocard
This attribute specifies the corresponding pseudocard to implement for the designated slot.
Type
TSP-Link accessible
Affected by
Where saved
Default value
Attribute (RW)
Yes
Not applicable
Nonvolatile
memory
0
Usage
pseudoCard = slot[X].pseudocard
slot[X].pseudocard = pseudoCard
pseudoCard
The pseudocards available for Models 707B and 708B are:
•
slot.PSEUDO_NONE
or
0
for no pseudocard selection
•
7072 for the Model 7072 8x12 Semiconductor Matrix Card
•
70721 for the Model 7072-HV 8x12 High-Voltage Semiconductor Matrix
Card
•
7173 for the Model 7173-50 8x12 High-Frequency 2-Pole 4x12 Matrix Card
•
7174 for the Model 7174A 8x12 Low-Current, High-Speed Matrix Card
X
Slot number (1 to 6)
Details
This attribute only exists for a slot if that slot has no card installed in it. Trying to use this attribute for a slot with
an installed card generates an error when writing and a
nil
response when reading.
After assigning a pseudocard, the valid commands and attributes based on that pseudocard now exist for that
slot. For example, the
slot[X].idn
attribute is valid.
Changing the pseudocard card assignment from a card to
slot.NONE
invalidates existing scan lists.
Example 1
myPseudoCard = slot[3].pseudocard
if myPseudoCard == 7072 then
print("Pseudo-7072 in Slot #3")
end
If Slot 3 is configured to have a 7072 pseudocard,
the following message is output:
Pseudo-7072 in Slot #3