You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FuelEU Maritime Regulation - Key Extractions for Implementation
1. COMPLIANCE BALANCE FORMULA (Annex IV, Part A - p.26-27)
Core Formula
Compliance Balance [gCO2eq] = (GHGIEtarget - GHGIEactual) × [Σ(Mi × LCVi) + ΣEk]
Where:
- GHGIEtarget: GHG intensity limit for the reporting period (gCO2eq/MJ)
- GHGIEactual: Yearly average GHG intensity of energy used onboard (gCO2eq/MJ)
- Mi: Mass of fuel type i consumed (grams)
- LCVi: Lower calorific value of fuel i (MJ/g)
- Ek: Electricity from OPS at connection point k (MJ)
WtT CO2eq = E - (CfCO2 / LCV)
Where:
- E: Total GHG emissions from PoS (gCO2eq/MJ)
- Must achieve ≥70% GHG savings vs fossil comparator
- Cannot be from food/feed crops
RFNBOs/e-fuels (p.21-25)
WtT CO2eq = E - eu
Where:
- E: Total GHG from PoS (gCO2eq/MJ)
- eu: Emissions from fuel in use (combustion)
- Reward factor RWD = 2 (2025-2033)
- Must achieve ≥70% savings (E ≤ 28.2 gCO2eq/MJ)
Total Penalty = FuelEU Penalty × (1 + (n-1) × 0.10)
Where n = number of consecutive non-compliant reporting periods
Examples:
- Year 1 deficit: Penalty × 1.0
- Year 2 consecutive deficit: Penalty × 1.1
- Year 3 consecutive deficit: Penalty × 1.2
5. BANKING (Article 20, p.104-105)
Rules
Storage: Positive compliance balance can be banked
No expiration: Banked surplus valid indefinitely
Accumulative: Surpluses accumulate over years
Per ship: Banking is ship-specific
Voluntary: Company decides to bank or not
Process
Adjusted CB Year N = Initial CB Year N + Banked Surplus (N-1) - Aggravated ACS (N-1)
Where:
- Initial CB: Calculated per Annex IV Part A
- Banked Surplus: From previous periods
- Aggravated ACS: Borrowed amount × 1.1 (if borrowed previous year)
Timeline
By 31 March Year N+1: Adjusted CB calculated by verifier
1-30 April Year N+1: Flexibility mechanism period
By 30 June Year N+1: Banking must be registered in THETIS-MRV
Aggravated ACS Year N = 1.1 × ACS Year N
Deducted from: Adjusted CB Year N+1
Example Calculation
If energy consumed = 15,000 MJ in 2029:
Max ACS 2029 = 2% × 89.3368 × 15,000 = 26,801 gCO2eq
If borrowed 20,000 gCO2eq in 2029:
Repay in 2030: 20,000 × 1.1 = 22,000 gCO2eq
7. POOLING (Article 21, p.105-108)
Requirements (Article 21.1)
Positive sum: Σ(Adjusted CB of all ships) ≥ 0
No double pooling: Ship can only be in one pool per year
No borrowing + pooling: Cannot combine in same year
Valid DoC: All ships must have valid FuelEU Document of Compliance
Allocation Rules (Article 21.2)
For each ship in pool:
1. Deficit ships: CB_after ≥ CB_before (cannot exit worse)
2. Surplus ships: CB_after ≥ 0 (cannot exit negative)
3. Sum constraint: Σ(CB_after) ≥ 0
Greedy Allocation Algorithm (p.106-107)
1. Sort ships by Adjusted CB (descending)
2. While (total_deficit > 0 AND total_surplus > 0):
a. Take highest surplus ship
b. Take highest deficit ship
c. Transfer = min(surplus_available, deficit_needed)
d. surplus_ship.CB -= Transfer
e. deficit_ship.CB += Transfer
f. Validate constraints after each transfer
3. Return final CB_after for each ship
Year N : Reporting Period (ship operations)
31 Jan Year N+1 : FuelEU Report submitted to verifier
31 Mar Year N+1 : Adjusted CB calculated by verifier
1-30 Apr Year N+1: Flexibility mechanisms (banking/borrowing/pooling)
30 Apr Year N+1 : Pool allocations finalized
1 Jun Year N+1 : Penalties calculated by administering state
30 Jun Year N+1 : Document of Compliance (DoC) issued
States Flow
1. Initial CB calculated (Annex IV Part A)
2. Add: Previous Banked Surplus
3. Subtract: Aggravated ACS (if borrowed previous year)
4. = Adjusted CB
5. IF Adjusted CB < 0:
- Option A: Join pool (if available)
- Option B: Borrow (if eligible)
- Option C: Pay penalty
6. IF Adjusted CB > 0:
- Option A: Bank surplus
- Option B: Join pool (share with others)
- Option C: Don't bank (voluntary cancellation)
7. = Verified CB
8. IF Verified CB < 0:
- Calculate penalty
- Issue DoC after payment
9. IF Verified CB ≥ 0:
- Issue DoC immediately
Can audit any ship for previous 2 reporting periods
Can revise compliance balance if errors found
Retroactive pool invalidation possible
Pool Invalidation Conditions
Pool becomes INVALID if:
1. Error found in ship's Adjusted CB after audit
2. Corrected sum of Adjusted CB < 0
3. Pool requirement 1 violated retroactively
Outcome:
- Affected ship pays penalty for corrected deficit
- Other ships' allocations remain valid (frozen)
- New DoC issued for affected ship only
10. KEY CONSTANTS & PARAMETERS
Energy Conversion
- VLSFO LCV: 41,000 MJ/tonne (penalty calculation)
- Energy scope: Σ(Mi × LCVi) in MJ
// Check eligibility1.Adjusted_CB<0(hasdeficit)2.|Adjusted_CB|≤2%×GHGIEtarget×Energy3.DidNOTborrowpreviousyear4.Notinapoolthisyear// Calculate ACSACS=|Adjusted_CB|// Must equal deficit exactlyAggravated_ACS=ACS×1.1// For next year