Applied Computing wants to give oil and gas operators an AI model for the entire plant

Most industrial AI stories follow a familiar pattern: a point solution that optimises one thing — a pump, a pipeline, a maintenance schedule. Applied Computing is betting that's the wrong level of abstraction. The London-based startup wants to build a foundation AI model for the entire oil, gas, and

Share
Editorial illustration: A sprawling industrial refinery or processing plant photographed from above at dusk, its intricate n — MonstarX

```html

Applied Computing wants to give oil and gas operators an AI model for the entire plant

Most industrial AI stories follow a familiar pattern: a point solution that optimises one thing — a pump, a pipeline, a maintenance schedule. Applied Computing is betting that's the wrong level of abstraction. The London-based startup wants to build a foundation AI model for the entire oil, gas, and petrochemical plant — and a fresh $20 million Series A suggests serious capital is starting to agree. For developers and founders tracking where AI is actually landing in heavy industry, this is a signal worth unpacking.

Applied Computing wants to give oil and gas operators an AI model for the entire plant — not a dashboard, not a narrow anomaly detector, but a unified model that ingests sensor streams, engineering documentation, and process physics simultaneously. That ambition puts it in a different category from most industrial software, and the implications stretch well beyond the North Sea.

What Happened

Applied Computing, founded in 2023 and headquartered in London, raised a $20 million Series A led by engineering giant KBR, with Databricks Ventures also participating. The round is notable not just for its size but for who wrote the cheque — KBR is one of the world's largest engineering and government services firms, with deep roots in petrochemical plant design and operations. This isn't speculative venture capital; it's an industry incumbent placing a strategic bet.

The core problem Applied Computing is attacking is data fragmentation at scale. A single oil, gas, or petrochemical facility can carry thousands of sensors measuring temperature, pressure, velocity, viscosity, and dozens of other variables simultaneously. Operators already collect most of this data. The problem, according to co-founder and CEO Callum Adamson, is that facilities currently make operating decisions using less than 8% of the data available to them. The rest sits in silos — sensor readings disconnected from engineering documentation, process chemistry models that never talk to real-time operational data.

The solution Applied Computing is building is a foundation model trained on the specific physics, chemistry, and operational patterns of oil, gas, refining, and petrochemical systems. Think of it as a domain-specific large model — not a general-purpose LLM retrofitted with an industry prompt, but a model whose architecture and training data are built around the thermodynamics, fluid dynamics, and reaction kinetics that govern how these plants actually behave.

Databricks Ventures' participation is also worth noting. Databricks has been aggressively positioning its data lakehouse platform as the infrastructure layer for enterprise AI. Their involvement signals that Applied Computing's approach — fusing structured sensor data with unstructured engineering documentation — aligns with where serious enterprise AI data pipelines are heading.

Why It Matters for Asia

Asia is not a passive observer in the oil, gas, and petrochemical story. The region hosts some of the world's largest refining and petrochemical complexes — from Reliance's Jamnagar refinery in India (the world's largest by capacity) to the massive petrochemical hubs in Jurong Island in Singapore, Map Ta Phut in Thailand, and the expanding downstream clusters in Malaysia and Indonesia. Southeast Asia alone accounts for a significant share of global refining capacity, and that capacity is growing as regional energy demand continues to climb.

These facilities face the exact fragmentation problem Applied Computing describes. Many of them run on legacy distributed control systems (DCS) and SCADA infrastructure that was never designed with AI-readiness in mind. Data lives in proprietary historian databases — OSIsoft PI being the most common — and getting that data into a form that a modern AI model can use requires non-trivial engineering work. The gap between "we collect a lot of data" and "we make decisions with that data" is arguably wider in Asia's older facilities than anywhere else.

From an Asia tech perspective, the investment thesis here also matters. KBR leading this round means an engineering contractor — the kind of firm that designs, builds, and operates these plants — is directly funding the AI layer. That's a procurement signal. It suggests that engineering contractors in Asia, many of which are KBR partners or competitors, will face pressure to offer similar AI capabilities to their clients. Startups and developers in Singapore, Kuala Lumpur, or Mumbai who are building industrial AI tooling should watch this closely.

There's also a talent dynamic worth flagging. Asia produces a substantial share of the world's chemical engineers and process engineers. As foundation models for process industries mature, the engineers who understand both the domain and the AI tooling will be extraordinarily valuable. That intersection — process domain knowledge plus AI engineering — is where the real leverage sits, and Asian universities are well-positioned to produce it.

What This Means for Developers

If you're a developer building in the industrial AI or energy tech space, Applied Computing's approach surfaces a few architectural ideas worth thinking through carefully.

Domain-specific foundation models are the real moat. General-purpose LLMs struggle with the precision that process engineering demands. When a model needs to reason about the interaction between a heat exchanger's fouling rate and downstream column performance, it needs to have internalised the underlying thermodynamic relationships — not just pattern-matched on text about them. Applied Computing's bet is that training a model on the specific physics of these systems produces qualitatively better reasoning than prompt-engineering a general model. If that bet pays off, it establishes a data and training moat that's genuinely hard to replicate.

Sensor data + unstructured documentation is the hard fusion problem. Most industrial AI projects fail not at the model level but at the data pipeline level. Combining time-series sensor streams (high frequency, structured, numeric) with engineering documentation (PDFs, P&IDs, equipment datasheets — unstructured, heterogeneous) requires careful data architecture. Developers working on similar problems should think hard about their embedding strategy for the unstructured layer and how they're handling temporal alignment between sensor events and the documentation that describes them.

The integration layer is where projects get stuck. Even with a great model, getting data out of a plant's historian and into a modern AI pipeline is painful. OSIsoft PI, Honeywell PHD, and similar systems have APIs, but they're not designed for high-throughput ML workloads. Developers building in this space will spend a disproportionate amount of time on connectors — the plumbing between legacy OT systems and modern data infrastructure. Any platform that abstracts that layer cleanly has a genuine advantage.

Physics-informed AI is gaining traction. Applied Computing's approach implicitly leans on physics-informed machine learning — the idea that you constrain your model's outputs to be consistent with known physical laws. This is a meaningful departure from pure data-driven approaches, and it's particularly important in safety-critical industries where a model that predicts physically impossible states is worse than useless. Developers building in regulated or safety-critical domains should be exploring physics-informed neural networks (PINNs) and hybrid model architectures.

Here's a simple example of the kind of constraint logic that matters in these systems:

# A naive model might predict a reactor outlet temperature
# that violates energy balance. A physics-informed approach
# adds a penalty term to enforce conservation.

def physics_loss(predicted_outlet_temp, inlet_temp, flow_rate, heat_duty, Cp):
# Energy balance: Q = m_dot * Cp * delta_T
expected_delta_T = heat_duty / (flow_rate * Cp)
expected_outlet = inlet_temp + expected_delta_T
return (predicted_outlet_temp - expected_outlet) ** 2

# This penalty is added to the standard data loss during training.
# The model learns to respect thermodynamic constraints, not just fit data.

That constraint logic is trivial to write. The hard part is knowing which physical laws apply to which parts of your process graph — and that's exactly the domain knowledge that a foundation model trained on petrochemical systems is supposed to encode.

For developers on MonstarX building industrial or IoT-adjacent applications, this architecture pattern — fusing time-series sensor data with domain documentation and enforcing physical constraints at the model level — is increasingly the template for serious industrial AI work, not just in energy but in manufacturing, water treatment, and logistics.

Key Takeaways

  • Applied Computing raised a $20M Series A led by KBR, with Databricks Ventures participating, to build a foundation AI model for oil, gas, and petrochemical operations.
  • The core problem is data utilisation, not data collection. Facilities use less than 8% of available sensor data for operating decisions — the gap is in fusion and analysis speed, not instrumentation.
  • Asia is a primary market for this technology. The region's large, often legacy-infrastructure refining and petrochemical complexes face exactly the fragmentation problem Applied Computing targets.
  • Domain-specific foundation models beat retrofitted general LLMs in safety-critical process industries — the physics has to be baked into the model, not bolted on via prompts.
  • The data pipeline and integration layer remains the hardest engineering problem in industrial AI — more projects fail there than at the model layer.
  • Physics-informed ML architectures are becoming standard for any AI system operating in domains governed by conservation laws and physical constraints.
  • KBR's strategic lead investment is a procurement signal — engineering contractors across Asia will face pressure to embed similar AI capabilities into their service offerings.

The deeper pattern here isn't really about oil and gas. It's about what happens when an industry that has been instrumented for decades finally gets a model architecture capable of reasoning across all that instrumentation at once. Energy is the first domain where this is becoming commercially real at scale — but the same logic applies to any complex physical system where humans have been collecting data far faster than they've been able to act on it. The question for developers and founders in Asia isn't whether this pattern comes to your industry. It's whether you'll be the one who builds it there first.

```