mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
21 lines
610 B
C++
21 lines
610 B
C++
#ifndef OPENMC_CMFD_SOLVER_H
|
|
#define OPENMC_CMFD_SOLVER_H
|
|
|
|
namespace openmc {
|
|
|
|
//==============================================================================
|
|
// Constants
|
|
//==============================================================================
|
|
|
|
// For non-accelerated regions on coarse mesh overlay
|
|
constexpr int CMFD_NOACCEL {-1};
|
|
|
|
//==============================================================================
|
|
// Non-member functions
|
|
//==============================================================================
|
|
|
|
void free_memory_cmfd();
|
|
|
|
} // namespace openmc
|
|
|
|
#endif // OPENMC_CMFD_SOLVER_H
|