Tags

Tag Tag Input Facies State tag

This module allows simulations to be tagged with a string.

file:src/Components/Tag.jl
@compose module Tag
using ..Common
using HDF5

@kwdef struct Input <: AbstractInput
    tag::String = "untagged run"
end

function write_header(input::AbstractInput, output::AbstractOutput)
    set_attribute(output, "tag", input.tag)
end
end