VLSI homework 10, ECOMMS homework 3

This commit is contained in:
2024-11-11 09:22:09 -05:00
parent faa05b88f9
commit 660744cf30
11 changed files with 171 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
alpha = 0.1 # Activity factor
C_avg = 450E-12 # Average switching capacitance [F / mm^2]
A = 70 # Chip area [mm^2]
f = 450E+6 # Clock frequency [Hz]
V_DD = 0.9 # Supply voltage [V]
C_sw = C_avg * A # Total switching capacitance [F]
f_sw = alpha * f # Switching frequency [Hz]
P_sw = C_sw * V_DD**2 * f_sw # Dynamic power [W]
print(f"Dynamic Power: {P_sw}")