Interoperability & Open Standards

Connect legacy plant data to any software or AI system

Novek frees engineering assets from flat drawings by exporting to open standards, industry-leading CAD suites, and modern AI context APIs.

Open Standard

DEXPI XML / ISO 15926

Export full piping topology, nozzle schedules, and instrument loops into vendor-neutral DEXPI XML conforming to ISO 15926.

Key Capabilities
  • Process line connectivity and inline components
  • Equipment classifications and nozzle coordinates
  • Instrument signal connections and control loops
  • Off-page connector references across drawing sheets
Plant CAD

Hexagon SmartPlant P&ID (SPPID)

Direct import-ready structures for SmartPlant P&ID, preserving drawing layout, tag hierarchies, and pipe specs.

Key Capabilities
  • Automated mapping to SPPID component catalogs
  • Preserves drawing spatial arrangement and orientation
  • Maintains instrument loop integrity in engineering database
  • Reduces manual redraw time by up to 90%
Plant CAD

AVEVA P&ID & Engineering

Export intelligent P&ID models compatible with AVEVA Plant Design and AVEVA Unified Engineering environments.

Key Capabilities
  • Seamless transfer into AVEVA engineering databases
  • Line list and equipment list synchronization
  • Consistent tag numbering and hierarchy preservation
  • Direct integration into AVEVA digital twin workflows
AI & Software

Novek Context API (REST & GraphQL)

Programmatically query plant topology, line relationships, and asset attributes to power AI agents and internal engineering tools.

Key Capabilities
  • Query upstream and downstream isolation valves
  • Retrieve full instrument safety loops and DCS interlocks
  • Vector context embeddings for agentic RAG and LLM workflows
  • Source pixel coordinates returned with every node
CAD Export

AutoCAD Plant 3D

Generate intelligent AutoCAD P&ID drawings with fully attributed dynamic blocks and connected line assets.

Key Capabilities
  • Converts raster lines to intelligent schematic lines (SLINE)
  • Maps detected symbols to standard DWG block libraries
  • Embedded project data tables and tag properties
  • Ready for 3D piping routing in Plant 3D
Data Lake

Enterprise Tabular & Parquet

Export audited master registers, line lists, and MTOs directly into enterprise data lakes, CSV, Excel, or Parquet.

Key Capabilities
  • Deterministic data extraction from the connected graph
  • Includes complete audit log and timestamped approvals
  • Column mappings customized to project specifications
  • Direct connection to Snowflake, BigQuery, and Databricks
Programmatic Context

Query Plant Topology with the Novek API

Give AI agents and automated engineering workflows direct graph access to your plant's connected model.

Request API Access
// Query connected isolation valves for E-102 via GraphQL
query GetIsolationValves {
  equipment(tag: "E-102") {
    tag
    type
    connectedLines {
      lineNumber
      isolationValves {
        tag
        type
        status
        sourceRef {
          drawing
          boundingBox
        }
      }
    }
  }
}