Second round of comments. volume method is now implemented from Mesh instead of UnstructuredMesh

This commit is contained in:
NybergWISC 2022-08-10 14:42:57 -05:00 committed by Patrick Shriwise
parent 7c40badfbc
commit bd60956d20
8 changed files with 60 additions and 44 deletions

View file

@ -95,7 +95,7 @@ IndependentSource::IndependentSource(pugi::xml_node node)
} else if (type == "spherical") {
space_ = UPtrSpace {new SphericalIndependent(node_space)};
} else if (type =="mesh"){
space_ = UPtrSpace {new MeshIndependent(node_space)};
space_ = UPtrSpace {new MeshSpatial(node_space)};
} else if (type == "box") {
space_ = UPtrSpace {new SpatialBox(node_space)};
} else if (type == "fission") {