Sustainability Scoring Methodology
The mathematical, dimensional, and operational foundations of the VERDANT software sustainability intelligence engine.
1. Methodological Position
VERDANT produces an estimated comparative sustainability index, not a direct certified lifecycle carbon audit unless empirical telemetry and regional emissions models are supplied.
The primary objective is consistent, deterministic decision support: identifying resource-efficiency weaknesses, preventing idle overprovisioning, and prioritizing engineering optimizations.
2. The Six Architectural Dimensions
Overall Score $S = \sum (D_i \times W_i)$ where weights sum strictly to $1.00$ ($100\%$).
Energy Efficiency
Weight: 25% (0.25)Evaluates operational kilowatt-hour draw, workload duty cycle, and power proportionality.
S_energy = 0.35 × S_runtime + 0.35 × S_proportionality + 0.30 × S_consumptionCompute Efficiency
Weight: 20% (0.20)Assesses virtual CPU core allocation rightsizing and utilization sweet spots (45%–75%).
S_compute = 0.40 × S_utilization_sweetspot + 0.35 × S_rightsizing + 0.25 × S_elasticityMemory Efficiency
Weight: 15% (0.15)Measures working set density, memory leak prevention safeguards, and runtime heap hygiene.
S_memory = 0.40 × S_ram_utilization + 0.35 × S_density + 0.25 × S_heap_hygieneNetwork Efficiency
Weight: 15% (0.15)Measures HTTP response compactness, Brotli/Gzip wire compression, and edge CDN cache leverage.
S_network = 0.40 × S_payload_size + 0.35 × S_cdn_hit_ratio + 0.25 × S_wire_compressionStorage Efficiency
Weight: 10% (0.10)Evaluates dataset growth velocity, composite index coverage, and data lifecycle TTL rules.
S_storage = 0.35 × S_growth_rate + 0.40 × S_indexing + 0.25 × S_retention_ttlCarbon Efficiency
Weight: 15% (0.15)Models regional electricity grid emissions factor (gCO2e/kWh), data center PUE, and clean energy.
S_carbon = 0.45 × S_grid_intensity + 0.25 × S_datacenter_pue + 0.30 × S_renewable_match3. Normalization & Clamping Logic
Every metric is converted into a normalized $0–100$ scale using explicit upper and lower domain thresholds:
score = clamp(100 × (upper - val) / (upper - lower), 0, 100)score = clamp(100 × (val - lower) / (upper - lower), 0, 100)4. Score Rating Classification
Software demonstrates world-class resource stewardship with minimal carbon and compute waste.
Strong sustainability characteristics with high efficiency across primary resource dimensions.
Balanced baseline performance with notable opportunities for architectural and data optimization.
Significant resource overhead, overprovisioning, or uncompressed network payloads detected.
Severe operational inefficiencies, heavy idle draw, or highly carbon-intensive infrastructure.
5. Assumptions & Limitations
- Self-Reported Telemetry: In self-assessment modes, accuracy depends on the fidelity of input operational figures.
- Grid Mix Dynamics: Regional electricity grid emissions vary hour-by-hour; VERDANT utilizes standardized annual regional intensity averages unless real-time marginal emissions feeds are connected.
- Hardware Embodied Emissions: Scope 3 supply-chain manufacturing emissions for server hardware are outside the MVP scope and modeled through PUE amortizations.
- Methodology Versioning: All historical assessment records preserve their respective methodology version tag (e.g.
v1.0) to ensure backwards reproducibility.