Hi,
I didn't say that resource is used in all cases but the fpga draws power and all the configuration circuitry is on.
The main info that the power analyser wants is the toggle rate.
a simulation result(SAF) is best according to altera.
Alternatively use manual toggle rate(average). This is explained below(from an altera doc).
Try and play with toggle rate between 0 and 100. if you get funny results then may be the version you have is not well...
kaz
from altera doc:
Toggle percentage is the average percentage of logic toggling on each clock cycle. The toggle percentage ranges from 0 to 100%. Typically, the toggle percentage is 12.5%, which is the toggle percentage of a 16-bit counter. To ensure you do not underestimate the toggle percentage, you can use a higher toggle percentage. Most logic toggles infrequently, and therefore toggle rates of <50% are more realistic.
For example, a FF with its input tied to VCC has a toggle rate of 100% because its output is changing logic states on every clock cycle.
For a 4 bit counter, the first FF with least significant bit (LSB) output cout0 has a toggle rate of 100% because the signal toggles on every clock cycle. The toggle rate for the second FF with output cout1 is 50% since the signal only toggles on every two clock cycles.Consequently, the toggle rate for the third FF with output cout2 and fourth FF with output cout3 are 25% and 12.5%, respectively. Therefore, the average toggle percentage for a 4-bit counter is (100 + 50 + 25 + 12.5)/4 = 46.875%.