Merge pull request #2334 from pshriwise/umesh_sampling

Unstructured Mesh Sampling Updates
This commit is contained in:
Paul Romano 2023-02-16 07:24:13 -06:00 committed by GitHub
commit 61b30f5dcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 664 additions and 46 deletions

View file

@ -281,6 +281,9 @@ void read_settings_xml(pugi::xml_node root)
}
}
// Check for user meshes and allocate
read_meshes(root);
// Look for deprecated cross_sections.xml file in settings.xml
if (check_for_node(root, "cross_sections")) {
warning(
@ -566,9 +569,6 @@ void read_settings_xml(pugi::xml_node root)
}
}
// Read meshes
read_meshes(root);
// Shannon Entropy mesh
if (check_for_node(root, "entropy_mesh")) {
int temp = std::stoi(get_node_value(root, "entropy_mesh"));