Skip to content

Commit

Permalink
Remove the dictionary values scalar and vector for data name keys in …
Browse files Browse the repository at this point in the history
…Micro Manager config files
  • Loading branch information
IshaanDesai committed Jan 22, 2025
1 parent e6fe75e commit 3aa5360
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"participant_name": "Micro-Manager",
"config_file_name": "../precice-config.xml",
"macro_mesh_name": "macro-mesh",
"write_data_names": {"k_00": "scalar", "k_01": "scalar", "k_10": "scalar", "k_11": "scalar", "porosity": "scalar"},
"read_data_names": {"concentration": "scalar"}
"write_data_names": ["k_00", "k_01", "k_10", "k_11", "porosity"],
"read_data_names": ["concentration"]
},
"simulation_params": {
"micro_dt": 0.01,
Expand All @@ -23,6 +23,6 @@
}
},
"diagnostics": {
"data_from_micro_sims": {"grain_size": "scalar"}
"data_from_micro_sims": ["grain_size"]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"participant_name": "Micro-Manager",
"config_file_name": "../precice-config.xml",
"macro_mesh_name": "macro-mesh",
"write_data_names": {"k_00": "scalar", "k_01": "scalar", "k_10": "scalar", "k_11": "scalar", "porosity": "scalar"},
"read_data_names": {"concentration": "scalar"}
"write_data_names": ["k_00", "k_01", "k_10", "k_11", "porosity"],
"read_data_names": ["concentration"]
},
"simulation_params": {
"micro_dt": 0.01,
Expand All @@ -23,6 +23,6 @@
}
},
"diagnostics": {
"data_from_micro_sims": {"grain_size": "scalar"}
"data_from_micro_sims": ["grain_size"]
}
}

0 comments on commit 3aa5360

Please sign in to comment.