惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
量子位
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
V
Visual Studio Blog
雷峰网
雷峰网
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Reverse-Engineered NYC Local Law 97. Here's What 40% of...
Tinashe Nedi · 2026-05-16 · via DEV Community

LL97 Penalties Aren’t What Most Calculators Show

The $268/Tonne Problem

NYC Local Law 97 is one of the most aggressive building performance standards in the United States. Buildings larger than 25,000 square feet can be fined $268 per metric tonne of CO₂e above their annual emissions limit.

After reviewing hundreds of LL97 estimates, I noticed the same issue repeatedly appearing in reports and calculators: the carbon math is often wrong.

Most tools use the EPA eGRID electricity emissions factor for NYISO (0.000371 tCO₂e/kWh).

LL97 does not use EPA eGRID values.

That difference alone can completely change a building’s projected penalties.


What LL97 Actually Uses

According to 1 RCNY §103-14 Table 1, the official LL97 emissions coefficients are:

Fuel Source LL97 Coefficient EPA eGRID (NYISO) Difference
Electricity 0.000288962 tCO₂e/kWh 0.000371 tCO₂e/kWh -22%
Natural Gas 0.00005311 tCO₂e/kBtu 0.0000531 tCO₂e/kBtu ≈0%
#2 Fuel Oil 0.00007421 tCO₂e/kBtu 0.0000749 tCO₂e/kBtu -1%

The biggest discrepancy is electricity. LL97’s electricity coefficient is roughly 22% lower than the EPA value most calculators rely on.


Why the Numbers Are Different

LL97 was written using New York City’s 2018 grid baseline.

EPA eGRID values are updated regularly to reflect the current generation mix. Since 2018, NYC’s electricity supply has shifted, with greater reliance on natural gas and fewer hydroelectric imports. As a result, EPA values now show higher emissions.

LL97 intentionally locked in the earlier baseline so building owners would not be penalized for grid changes outside of their control.


Real Example: 75,000 SF Office Building

Building Information

  • Annual electricity usage: 1,250,000 kWh
  • Annual natural gas usage: 8,500 therms
  • Building occupancy: Office (Group B)
  • Building size: 75,000 SF

2024–2029 LL97 Limit

0.00536 tCO₂e/sf

Enter fullscreen mode Exit fullscreen mode


Incorrect Calculation Using EPA eGRID

elec_co2 = 1_250_000 * 0.000371
gas_co2 = 850_000 * 0.00005311

total_co2 = elec_co2 + gas_co2  # 508.6 tCO₂e

intensity = total_co2 / 75_000  # 0.00678 tCO₂e/sf

limit = 0.00536

excess = (intensity - limit) * 75_000  # 106.5 tCO₂e

penalty = excess * 268  # $28,542/year

Enter fullscreen mode Exit fullscreen mode

Using EPA coefficients produces a projected penalty of:

$28,542 per year

Enter fullscreen mode Exit fullscreen mode


Correct Calculation Using Official LL97 Coefficients

elec_co2 = 1_250_000 * 0.000288962
gas_co2 = 850_000 * 0.00005311

total_co2 = elec_co2 + gas_co2  # 406.3 tCO₂e

intensity = total_co2 / 75_000  # 0.00542 tCO₂e/sf

limit = 0.00536

excess = (intensity - limit) * 75_000  # 4.5 tCO₂e

penalty = excess * 268  # $1,206/year

Enter fullscreen mode Exit fullscreen mode

Using the actual LL97 coefficients changes the result dramatically:

$1,206 per year

Enter fullscreen mode Exit fullscreen mode

That is a difference of more than:

$27,000 annually

Enter fullscreen mode Exit fullscreen mode

from the exact same building data.


The 2030 Compliance Cliff

LL97 has two major compliance periods:

  • 2024–2029
  • 2030–2034

The second period is where the law becomes significantly more aggressive, with emissions limits dropping by roughly 40–50% depending on occupancy type.

For this same office building:

Compliance Period Estimated Penalty
2024–2029 $1,206/year
2030–2034 $41,832/year

Many calculators fail to model this transition correctly.


Getting LL97 Calculations Right

1. Use Official LL97 Coefficients

LL97_COEFFICIENTS = {
    "electricity": 0.000288962,
    "natural_gas_kbtu": 0.00005311,
    "fuel_oil_2": 0.00007421,
    "fuel_oil_4": 0.00007753,
    "district_steam": 0.00004489
}

Enter fullscreen mode Exit fullscreen mode

These values come directly from 1 RCNY §103-14 Table 1.


2. Identify the Correct Occupancy Group

LL97 emissions limits are occupancy-specific.

An office building, multifamily property, hospital, hotel, or retail space will all have different allowable emissions intensities under Table 2.

Incorrect occupancy classification can invalidate the entire calculation.


3. Include DER (Distributed Energy Resource) Deductions

LL97 allows buildings to deduct qualifying renewable generation from their reported emissions.

For example:

der_deduction_tco2e = annual_solar_kwh * 0.000288962

Enter fullscreen mode Exit fullscreen mode

A 50 kW rooftop solar installation generating 65,000 kWh/year would reduce emissions by:

deduction = 65_000 * 0.000288962  # 18.8 tCO₂e/year

penalty_saved = 18.8 * 268  # $5,038/year

Enter fullscreen mode Exit fullscreen mode

Over 25 years, that becomes:

$125,950 in avoided LL97 penalties

Enter fullscreen mode Exit fullscreen mode

before even considering utility savings.


API Example

The Energy Audit Automation API handles LL97 calculations automatically using the correct coefficients and occupancy rules.

Request

curl -X POST https://energy-audit-api.p.rapidapi.com/audit/full \
  -H "X-RapidAPI-Key: YOUR_KEY" \
  -d '{
    "property_type": "office",
    "sq_ft": 75000,
    "annual_kwh": 1250000,
    "annual_therms": 8500,
    "city": "nyc",
    "grid_region": "NYISO"
  }'

Enter fullscreen mode Exit fullscreen mode

Response

{
  "ll97": {
    "emissions_limit_2024": 0.00536,
    "your_emissions": 0.00542,
    "excess_tco2e": 4.5,
    "penalty_2024_usd": 1206,
    "penalty_2030_usd": 41832,
    "compliant_now": false,
    "compliant_2030": false,
    "source": "1 RCNY §103-14 Table 1 & 2"
  }
}

Enter fullscreen mode Exit fullscreen mode


Red Flags in LL97 Proposals

Watch for these signs when reviewing vendor reports or compliance tools:

  • “EPA emission factor” referenced without LL97 citations
  • No source documentation for penalty calculations
  • Identical penalties shown for both 2024 and 2030 periods
  • No occupancy group classification included
  • No explanation of DER deductions or renewable offsets

Further Reading

  • 1 RCNY §103-14

    Official LL97 coefficients and emissions limits


Final Takeaway

A surprising number of LL97 estimates are based on the wrong carbon coefficients.

If a calculator or proposal does not explicitly reference 1 RCNY §103-14, there is a good chance the penalty estimate is inaccurate.

Under LL97, the difference between using EPA values and the actual legal coefficients can mean the difference between compliance and tens of thousands of dollars in annual penalties.