Generate a Report with get_fanouts
This script shows how to use the get_fanouts constraint to generate different reports with the report_timing command.
set file_path "./tests"
set ena0_ffs [ get_fanouts [get_ports ena[0]] ]
foreach ena0_ff $ena0_ffs {
report_timing -from $ena0_ff -setup -npaths 10 \
-file ${file_path}/${ena0_ff}_path.rpt
}