FMU

Context

The fmu.context block contains the FMU context in which this data object was produced.

Case

The fmu.case block contains information about the case from which this data object was exported.

Aggregation

The fmu.aggregation block contains information about an aggregation performed over an ensemble.

Realization

The fmu.realization block contains information about the realization this data object belongs to.

Ert

The fmu.ert block contains information about the current ert run.

Model

The fmu.model block contains information about the model used.

Workflow

The fmu.workflow block refers to specific subworkflows within the large FMU workflow being ran.

Iteration

The fmu.iteration block contains information about the iteration this data object belongs to.

pydantic model FMU[source]

The fmu block contains all attributes specific to FMU. The idea is that the FMU results data model can be applied to data from other sources - in which the fmu-specific stuff may not make sense or be applicable.

Fields:
field case: Case [Required]

The fmu.case block contains information about the case from which this data object was exported. See Case.

field model: Model [Required]

The fmu.model block contains information about the model used. See Model.

field context: Context [Required]

The fmu.context block contains the FMU context in which this data object was produced. See Context.

field iteration: Optional[Iteration] = None

The fmu.iteration block contains information about the iteration this data object belongs to. See Iteration.

field workflow: Optional[Workflow] = None

The fmu.workflow block refers to specific subworkflows within the large FMU workflow being ran. See Workflow.

field aggregation: Optional[Aggregation] = None

The fmu.aggregation block contains information about an aggregation performed over an ensemble. See Aggregation.

field realization: Optional[Realization] = None

The fmu.realization block contains information about the realization this data object belongs to. See Realization.

field ert: Optional[Ert] = None

The fmu.ert block contains information about the current ert run See Ert.