Skip to content
Snippets Groups Projects
Commit c7a3b342 authored by Maxim Gonchar's avatar Maxim Gonchar
Browse files

chore: script, graph items

parent bdfc0010
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ def main(opts: Namespace) -> None:
"reactor": [0],
"detector": [0, 1],
"isotope": [0],
"period": [2],
"period": [1, 2],
}
storage["parameter_group.all"].savegraphs(
opts.graphs / "parameters",
......@@ -117,12 +117,16 @@ def main(opts: Namespace) -> None:
keep_direction=True,
show="all",
accept_index=accept_index,
filter={
"reactor": [0],
"detector": [0, 1],
"isotope": [0],
"period": [2],
},
filter=accept_index,
)
storage["parameters.sigma"].savegraphs(
opts.graphs / "parameters" / "sigma",
mindepth=mindepth,
maxdepth=maxdepth,
keep_direction=True,
show="all",
accept_index=accept_index,
filter=accept_index,
)
storage["nodes"].savegraphs(
opts.graphs,
......@@ -131,12 +135,7 @@ def main(opts: Namespace) -> None:
keep_direction=True,
show="all",
accept_index=accept_index,
filter={
"reactor": [0],
"detector": [0, 1],
"isotope": [0],
"period": [1],
},
filter=accept_index,
)
if opts.graph_from_node:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment