Skip to main content
A vessel’s annual budget is a number on a spreadsheet until you start spending it. Once spending starts, the question is no longer “what’s the budget” but “are we tracking, and if not, where is the variance coming from, and will it close out the year over plan?” Three numbers run a fleet’s finance team: The Vessel Financial Surveillance pipeline computes all three on a rolling basis, drills down to the cost categories driving the variance, and surfaces the fund-balance position so a Technical Superintendent can act on the operational levers without waiting for the month-end close.

Where the data comes from

Financial data is entirely ERP-internal. The pipeline reads transactions, normalises currency, applies the pro-rata profile per category, and produces variance / forecast / fund-balance views. No external data source is required.

The categories

Every vessel expense rolls up under one of these:
  • OPEX — operating expenditure (the largest bucket)
  • NB — newbuilding fund (capital reserve for newbuild contributions)
  • DD — drydock fund (reserve for upcoming drydocks)
  • PD — periodic drydock provision
Within OPEX, expenses are tagged by category: Stores, Lube Oil, Deck, Engine, Crew, Victualling, Repairs, Port Disbursements, Insurance, Survey, etc. The pipeline runs the same variance and forecast maths on every category — what’s interesting is which category is drifting, not the aggregate.

Pro-rata: the trick everyone gets wrong

A vessel’s annual budget is rarely spent at 112\frac{1}{12} per month. Drydocks land in a single month; surveys cluster around certificate cycles; lube-oil bunkering happens at port calls. Comparing month-to-date spend against 112\frac{1}{12} of the annual budget produces nonsense. The pipeline handles this with pro-rata adjustment — the budget allocation up to today’s date based on a category-aware time profile rather than calendar time: Bprorata(t)=Bannualfcategory(t)B_\text{prorata}(t) = B_\text{annual} \cdot f_\text{category}(t) where fcategory(t)f_\text{category}(t) is the cumulative fraction of the annual budget that’s expected to have been spent by time tt. Categories like Crew use f(t)=tTf(t) = \frac{t}{T} (linear); categories like Drydock use a step function around the planned drydock month. Variance is then computed against the pro-rata budget, not against the calendar fraction: Varianceprorata=ActualYTDBprorata(t)\text{Variance}_\text{prorata} = \text{Actual}_\text{YTD} - B_\text{prorata}(t) A vessel that’s “10% over annual budget” looks alarming until you realise its drydock landed in March and pro-rata accounting shows it’s actually within 2% of the expected curve. The implementation is the most complex code in the budget templates:
The reviewer doesn’t see the pro-rata calculation directly. They see one number: variance against the expected curve.

Year-end forecasting

Variance answers “where are we now”. The TSI’s question is “where will we be in December”. Forecast logic: ForecastYE=ActualYTD+B˙recent×Mremaining\text{Forecast}_\text{YE} = \text{Actual}_\text{YTD} + \dot{B}_\text{recent} \times M_\text{remaining} where B˙recent\dot{B}_\text{recent} is the burn rate over the last 3 months, and MremainingM_\text{remaining} is the months until budget year-end. Forecast verdict: Same logic on the under side: a vessel forecasting -15% under budget often means deferred maintenance that’s storing up future cost, not actual savings.

Cost-driver attribution

When a category is over budget, the analyzer ranks the underlying transactions:
The driver list is what makes the variance actionable. “Lube oil over by $16k” can be a budgeting error, a price spike, a one-off bunker, or systematic overconsumption. The driver list collapses that to “Singapore bunker drove most of it” — which routes to the fuel oil pipeline for price-vs-spec investigation, or to lube oil for a consumption check.

NB fund balance

The newbuilding fund is a separate ledger from OPEX. It accumulates owner contributions and pays out for newbuild commitments. The fund-status view tracks: A vessel with NB fund running negative is a cash issue, not a budget issue — and it’s usually visible weeks before it would show up in a month-end close.

Per-day OPEX

The daily-spend view answers “what does this vessel cost per operating day?”: Per-day OPEX=OPEXYTDOperating days YTD\text{Per-day OPEX} = \frac{\text{OPEX}_\text{YTD}}{\text{Operating days YTD}} Comparable across vessels of the same type. A vessel running 4,200/dayOPEXwherethefleetmedianforthatvesseltypeis4,200/day OPEX where the fleet median for that vessel type is 3,600/day is structurally more expensive — usually a sign of older equipment, higher repair burden, or longer port stays.

The five tables a reviewer reads

The Committed Cost Summary view assembles the headline as five AG-grid tables:
Spend in the current month vs the pro-rata monthly budget. The most-recent-data view.
Closed prior month for trend comparison. The “what just happened” view.
Fund balance with opening, receipts, expenses, closing.
Drydock reserve status — accumulating or drawn down — against planned drydock cost.
Periodic drydock provision tracking.
A reviewer who sees all five together can spot an OPEX overrun being absorbed by an underfunded DD reserve — a problem that wouldn’t be visible in any single view.

Worked example

MV POSUN, 2026 budget year, reviewed at end of April: Verdict: HIGH on the year-end forecast — projecting +12%, primarily driven by repairs (turbocharger overhaul cost ran higher than budgeted) and the Singapore bunker outlier. The pipeline:
  1. Routes the year-end forecast to the Technical Superintendent.
  2. Routes the DD funding gap to the owner / commercial side.
  3. Cross-references the Singapore bunker driver to fuel oil — was the bunker premium-priced or was the quantity higher than usual?
  4. Suggests a re-forecast for Q3 if the repair line continues at the current trajectory.

Variance signals

Different variance shapes mean different things: The pipeline classifies the variance shape and adds it to the verdict so a TSI knows whether they’re chasing an event or a trend.

When the pipeline escalates


Why it works as a pipeline

A monthly close is too late for variance to be actionable — the bunker has been delivered, the drydock has been booked, the spare has been ordered. The pipeline runs daily on the most recent data, applies the pro-rata curve, and produces a forecast that updates every time a transaction posts. The Technical Superintendent sees drift before it compounds.
The most valuable single number on a financial review is the forecast delta vs last review. A forecast that improved by 20kbetweenthisweekandlastisasignaltheoperationalteamisresponding;aforecastthatworsenedby20k between this week and last is a signal the operational team is responding; a forecast that worsened by 20k means the assumptions in last week’s plan were wrong.

References

Source templates

Budget-management suite — committed cost summary, budget vs expense with pro-rata, current and previous-year transactions, previous-year analysis, and the overall fund status & variance report.

Related: Procurement

Variance drivers are usually procurement events — same numbers, operational frame.

Related: Fuel oil

Bunker price + quantity drives a large share of OPEX variance.

Related: PMS

Repair line variance often traces back to overdue maintenance becoming reactive maintenance.