Skip to content

Commit

Permalink
Add NOHYST, CART, RADIAL
Browse files Browse the repository at this point in the history
  • Loading branch information
moyner committed Jul 31, 2024
1 parent 6ade85a commit f81c3fe
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/InputParser/keywords/runspec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:DISGAS})
data["DISGAS"] = true
end

function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:NOHYST})
data["NOHYST"] = true
end

function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:CART})
data["CART"] = true
end

function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:RADIAL})
parser_message(cfg, outer_data, "RADIAL", PARSER_JUTULDARCY_MISSING_SUPPORT)
data["RADIAL"] = true
end

function parse_keyword!(data, outer_data, units, cfg, f, v::Union{Val{:STONE1}, Val{:STONE2}, Val{:BAKER1}, Val{:BAKER2}})
k = unpack_val(v)
parser_message(cfg, outer_data, "$k", PARSER_JUTULDARCY_MISSING_SUPPORT)
Expand Down

0 comments on commit f81c3fe

Please sign in to comment.