Hardware
startup_valuation.hardware
¶
Hardware and deep tech valuation methods.
Chapter 11: Industry-Specific Valuation Frameworks — Hardware
Classes¶
Functions¶
trl_adjusted_valuation(market_size, market_share, margin, multiple, trl_discount)
¶
Calculate TRL-adjusted valuation.
Formula: Valuation = Market Size × Market Share × Margin × Multiple × (1 - TRL Discount)
TRL discount: TRL 1-5: 70-95%, TRL 6-7: 40-60%, TRL 8-9: 10-30%
Example
result = trl_adjusted_valuation(10_000_000_000, 0.05, 0.40, 15, 0.80) result.value / 1_000_000_000 0.6
Source code in src/startup_valuation/hardware.py
gross_margin_hardware(asp, cogs)
¶
Calculate hardware gross margin.
Formula: Gross Margin = (ASP - COGS) / ASP
Source code in src/startup_valuation/hardware.py
break_even_volume(fixed_costs, asp, variable_cost)
¶
Calculate break-even volume.
Formula: Break-Even Volume = Fixed Costs / (ASP - Variable Cost per Unit)
Source code in src/startup_valuation/hardware.py
probability_weighted_dcf(probabilities, values)
¶
Calculate probability-weighted DCF.
Formula: E[V] = Σ pᵢ × Vᵢ
Example
result = probability_weighted_dcf([0.30, 0.40, 0.30], [60_000_000_000, 10_000_000_000, 0]) result.value / 1_000_000_000 22.0