Skip to main content

Pydantic schemas for building Ionworks pipeline configurations

Project description

Ionworks Schema

Pydantic schemas for building Ionworks pipeline configurations.

Overview

Ionworks Schema (ionworks_schema) provides the schema for constructing Ionworks pipeline configurations. Use these classes to define pipelines (data fits, calculations, entries, validations) in Python with validation, then export JSON to submit via the Ionworks API. Pipeline concepts, objectives, and workflows are described in the Pipeline documentation and in the Ionworks documentation.

Pipelines are executed by submitting configurations to the Ionworks API. Use the ionworks-api Python client to create and run jobs: pip install ionworks-api.

Installation

pip install ionworks_schema

Quick start

Build a pipeline configuration with schema classes, export to JSON, and submit with the Ionworks API client:

from ionworks_schema import (
    Pipeline,
    DataFit,
    MSMRHalfCell,
    Parameter,
)
import json

# Define a parameter to fit (name, initial_value, bounds)
parameter = Parameter(
    name="Positive electrode capacity [A.h]",
    initial_value=1.0,
    bounds=(0.5, 2.0),
)

# Objective: MSMR half-cell fit; data can be "db:<measurement_id>" for uploaded data
objective = MSMRHalfCell(
    data_input="db:your-measurement-id",
    options={"model": {"electrode": "positive"}},
)

data_fit = DataFit(
    objectives={"ocp": objective},
    parameters={"Positive electrode capacity [A.h]": parameter},
)

pipeline = Pipeline(elements={"fit": data_fit})

# Export to JSON for API submission
config = pipeline.to_config()
with open("pipeline_config.json", "w") as f:
    json.dump(config, f, indent=2)

# Submit via ionworks-api (requires credentials and project ID — see ionworks-api README)
# from ionworks import Ionworks
# client = Ionworks()
# job = client.pipeline.create(config)
# client.pipeline.wait_for_completion(job.id, timeout=600)

Schema classes and pipeline elements

Schema classes mirror the pipeline configuration format consumed by the Ionworks pipeline and API. Runtime behavior and options are documented in the Pipeline user guide and in the ionworkspipeline package (e.g. parsers, data_fits, objectives).

A pipeline is a top-level Pipeline with a dictionary of named elements. Each element has an element_type: entry, data_fit, calculation, or validation.

Role Schema class Description
Top-level Pipeline Pipeline configuration with named elements.
Entry DirectEntry Supply fixed parameter values (no fitting or calculation).
Data fit DataFit, ArrayDataFit Fit model parameters to data; contain objectives and parameters.
Calculation ionworks_schema.calculations Run calculations (e.g. OCP, diffusivity, geometry). See submodule for available classes.
Objectives MSMRHalfCell, MSMRFullCell, CurrentDriven, CycleAgeing, CalendarAgeing, EIS, Pulse, Resistance, ElectrodeBalancing, OCPHalfCell, and others Used inside DataFit.objectives to define what to fit. Import from ionworks_schema or ionworks_schema.objectives.
Parameters Parameter name, initial_value, bounds (and optional prior, etc.). Used in DataFit.parameters; dict key is the parameter name.
Library Material, Library Built-in material library for initial parameter values.

Material library

Access built-in materials with validated parameter values for use as initial values or entries:

from ionworks_schema import Material, Library

# List available materials
materials = Library.list_materials()

# Get a specific material (e.g. NMC - Verbrugge 2017)
material = Material.from_library("NMC - Verbrugge 2017")
print(material.parameter_values)

Parameter names and interpretation are described in the Pipeline documentation.

Resources

Note

This package provides configuration schemas only. To run pipelines, export JSON with pipeline.to_config() and submit it via the Ionworks API using the ionworks-api client.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ionworks_schema-0.1.1.tar.gz (559.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ionworks_schema-0.1.1-py3-none-any.whl (47.1 kB view details)

Uploaded Python 3

File details

Details for the file ionworks_schema-0.1.1.tar.gz.

File metadata

  • Download URL: ionworks_schema-0.1.1.tar.gz
  • Upload date:
  • Size: 559.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ionworks_schema-0.1.1.tar.gz
Algorithm Hash digest
SHA256 1ed72934b33ada9365cafaeffef2c79ff9ef408dd3e0ebd44021f4083b166bce
MD5 b0161c8f9dd8cbd679de4c634205b21a
BLAKE2b-256 c26efa8180d8b2c5d6fd8d5d0e18aae74fdc6d4c02643dfd5f56e55cb88aca28

See more details on using hashes here.

Provenance

The following attestation bundles were made for ionworks_schema-0.1.1.tar.gz:

Publisher: publish.yml on ionworks/ionworks-schema

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ionworks_schema-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ionworks_schema-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 50036df1aad34bd52520c5dc18ccce38d730cf19abd197bef607b1f3c8e336f0
MD5 322c5a78e11af34e3b2d221047e0ed96
BLAKE2b-256 2ea153d51cc084409c1f696657a32528a904eaf1f941e8a0b47884e893314c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for ionworks_schema-0.1.1-py3-none-any.whl:

Publisher: publish.yml on ionworks/ionworks-schema

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page