core.solver.EconomicsModel
core.solver.EconomicsModel()Calculates Total Cost of Ownership (TCO) including Capex and Opex.
Combines hardware costs, energy consumption, and maintenance into a single financial model for the fleet.
Literature Source: 1. Barroso et al. (2018), “The Datacenter as a Computer: An Introduction to the Design of Warehouse-Scale Machines.” 2. Patterson (2004), “Latent Bugs in Common-Case Software.” (TCO Foundations) 3. Meta (2024), “Sustainable AI Infrastructure at Meta Scale.”
Methods
| Name | Description |
|---|---|
| solve | Calculates the TCO for a fleet over a specified duration. |
solve
core.solver.EconomicsModel.solve(
fleet,
duration_days,
kwh_price=None,
datacenter=None,
grid=None,
)Calculates the TCO for a fleet over a specified duration.
Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| fleet | Fleet | The hardware cluster configuration. | required |
| duration_days | float | Operation duration in days. | required |
| kwh_price | float | Price of electricity per kWh. | None |
| datacenter | Datacenter | A specific datacenter profile. | None |
| grid | GridProfile | A specific grid profile. | None |
Returns
| Name | Type | Description |
|---|---|---|
| Dict[str, Any] | Financial metrics including CapEx, OpEx, and total TCO. |