select_part(...) - select_part(...) - 2026.1 日本語 - UG1781

Power Design Manager Python スクリプト ガイド (UG1781)

Document_ID
UG1781
Release_Date
2026-06-23
Version
2026.1 日本語

説明

パーツを選択し、必要に応じて製造プロセスを設定します。

構文

select_part(<part>, process='')

パラメーター

名前 説明
<part> XCVE1752-nsvg1369-2MP-e-s のように、Vivado パーツ (大文字と小文字を区別しない文字列)。
[process] 製造プロセスのばらつきの種類。大文字と小文字を区別しない [Typ]ica' または '[Max]imum' の値を受け入れます。

デフォルト: 現在のプロセス

# Select a new part for the current project
proj = open_project('my_design.pdm')
proj.select_part('xcvc1902-vsva2197-1lp-e-s')
# Select a part with a specific process
proj.select_part('xcvc1902-vsva2197-1lp-e-s', process='Maximum')
# The current process is retained if not specified
proj.select_part('xcve1752-nsvg1369-2mp-e-s')