7321 は、Newark Electronics などを通じて配布されている CRYDOM のモデル D1D07 と同じデバイスです。1 つのデータロガー デジタルポートが各リレーを制御します。
このリレーは通常、ノーマリーオープン状態で動作します。この状態では、デジタル ポートがハイに設定されている場合、リレーは閉じています。この状況での配線は次のとおりです。
データロガー端子 | リレーネジ端子 |
グランド | 4 |
デジタルポート (i.e., C1, C2,...) |
3 |
7321 は、ノーマリークローズ状態でも動作できます。この状態では、デジタル ポートがローに設定されていると、リレーは閉じます。この状況での配線は次のとおりです。
データロガー端子 | リレーネジ端子 |
5V | 3 |
デジタルポート (i.e., C1, C2,...) |
4 |
機能 | データロガーが 1 つまたは 2 つの DC デバイスを制御できるようにします。 |
チャンネル数 | 1 |
動作温度範囲 | -40° ~ +100°C |
動作電圧 | 1~100Vdc |
制御電圧 | 3.5~32Vdc |
制御電流 | 1.6 mA (@ 5 Vdc) |
定格電流/電圧 | 7 A (@ 100 Vdc) |
寸法 | 5.99 x 2.74 x 5.99 cm (2.36 x 1.08 x 2.36 in.) |
重量 | 108.86 g (0.24 lb) |
注意: 以下は代表的な互換性情報を示しています。互換性のある製品や互換性のない製品をすべて網羅したリストではありません。
製品 | 互換性 | 注意 |
---|---|---|
21X (リタイア) | ||
CR10 (リタイア) | ||
CR1000 (リタイア) | ||
CR10X (リタイア) | ||
CR200X (リタイア) | ||
CR206X (リタイア) | ||
CR211X (リタイア) | ||
CR216X (リタイア) | ||
CR23X (リタイア) | ||
CR295X (リタイア) | ||
CR3000 (リタイア) | ||
CR500 (リタイア) | The CR500 has only one digital port capable of providing control signal. | |
CR5000 (リタイア) | ||
CR510 (リタイア) | The CR510 has only one digital port capable of providing control signal. | |
CR800 (リタイア) | ||
CR850 (リタイア) | ||
CR9000 (リタイア) | ||
CR9000X (リタイア) |
7321に関するよくある質問の数: 2
The following relay devices can be used with the CR800 and the CR850:
The CR800 and the CR850 can also be used with a wide variety of third-party relay devices.
*Because the CR800 and the CR850 only have four digital ports, they do not have the ability to switch all six of the relays on the A6REL-12.
Either the PortSet() or the WriteIO() instruction can be used to open and close the 7321 relay. These instructions are commonly used in conjunction with an IfThen/EndIf construction.
In this first example, the program closes the relay at the top of a 60 second interval and then opens the relay after ten seconds:
BeginProg
Scan (1,Sec,0,0)
If IfTime (0,60,Sec) Then
PortSet(1,1)
ElseIf IfTime (10,60,Sec) Then
PortSet(1,0)
EndIf
NextScan
EndProg
In this second example, the WriteIO() instruction is used to close the 7321 relay based on the measured panel temperature:
Public PTemp
BeginProg
Scan (1,Sec,0,0)
PanelTemp (PTemp,_60Hz)
If PTemp > 25 Then
WriteIO (&B00000001,&B00000001)
Else
WriteIO (&B00000001,&B00000000)
EndIf
NextScan
EndProg
We've updated our privacy policy. 詳細はこちら
Update your cookie preferences. クッキーの設定を更新する