查詢可編程電源的額定電流需結(jié)合設備標識、手冊參數(shù)、軟件界面及實際測試,以下是具體步驟和注意事項:
Iout
、Current
或 A
(單位:安培,如 5A
)。Vout
或 V
(如 24V
),需與電流參數(shù)結(jié)合確認功率(P = V × I
)。24V/5A
,表示額定電流為 5A(最大輸出電流)。Display
鍵選擇 Rated Current
)。Rated Current
(額定電流)Maximum Output Current
(最大輸出電流)Current Limit
(電流限制,可能與額定電流相關(guān))Model Rated Voltage Rated Current Max Power62012P 12V 10A 120W
12V/5A
24V/3A
5V/10A
Menu
鍵進入主菜單。System Settings
→ Output Specifications
。Rated Current
或 Current Limit
參數(shù)。Device Info
或 Output Settings
標簽頁中查看額定電流。10A
)SYSTem:INFO:CURRent?
(查詢系統(tǒng)額定電流)OUTPut[1|2|3]:CURRent:RATing?
(查詢指定通道額定電流)pythonimport pyvisarm = pyvisa.ResourceManager()source = rm.open_resource("TCPIP0::192.168.1.100::inst0::INSTR") # 替換為電源IPrated_current = source.query("OUTPut1:CURRent:RATing?") # 查詢通道1額定電流print(f"Rated Current: {rated_current.strip()}A")
OUTPut:CURRent:RATing:RESet
指令恢復默認值。SYSTem:REMote
指令啟用遠程控制。查詢方式 | 適用場景 | 關(guān)鍵指令/步驟 |
---|---|---|
設備銘牌 | 快速獲取基礎(chǔ)參數(shù) | 查看 Iout 或 Current 標注值 |
用戶手冊 | 詳細參數(shù)確認 | 搜索 Rated Current 或 Current Limit |
前面板菜單 | 無計算機連接時操作 | 進入 System Settings → Output Specifications |
廠商軟件 | 多設備集中管理 | 在 Device Info 標簽頁中查看參數(shù) |
SCPI指令 | 自動化測試系統(tǒng)集成 | OUTPut1:CURRent:RATing? |
負載測試 | 驗證電源實際性能 | 逐步增加負載至額定電流,觀察輸出穩(wěn)定性 |
建議: