mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Second round of comments. volume method is now implemented from Mesh instead of UnstructuredMesh
This commit is contained in:
parent
7c40badfbc
commit
bd60956d20
8 changed files with 60 additions and 44 deletions
|
|
@ -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") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue