mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 21:25:36 -04:00
address PR comments
This commit is contained in:
parent
f0e1110e01
commit
061156e79a
35 changed files with 110 additions and 114 deletions
|
|
@ -29,8 +29,7 @@ namespace data {
|
|||
}
|
||||
|
||||
MgxsInterface::MgxsInterface(const std::string& path_cross_sections,
|
||||
const vector<std::string> xs_to_read,
|
||||
const vector<std::vector<double>> xs_temps)
|
||||
const vector<std::string> xs_to_read, const vector<vector<double>> xs_temps)
|
||||
{
|
||||
read_header(path_cross_sections);
|
||||
set_nuclides_and_temperatures(xs_to_read, xs_temps);
|
||||
|
|
@ -38,7 +37,7 @@ MgxsInterface::MgxsInterface(const std::string& path_cross_sections,
|
|||
}
|
||||
|
||||
void MgxsInterface::set_nuclides_and_temperatures(
|
||||
vector<std::string> xs_to_read, vector<std::vector<double>> xs_temps)
|
||||
vector<std::string> xs_to_read, vector<vector<double>> xs_temps)
|
||||
{
|
||||
// Check to remove all duplicates
|
||||
xs_to_read_ = xs_to_read;
|
||||
|
|
@ -148,9 +147,9 @@ void MgxsInterface::create_macro_xs()
|
|||
|
||||
//==============================================================================
|
||||
|
||||
vector<std::vector<double>> MgxsInterface::get_mat_kTs()
|
||||
vector<vector<double>> MgxsInterface::get_mat_kTs()
|
||||
{
|
||||
vector<std::vector<double>> kTs(model::materials.size());
|
||||
vector<vector<double>> kTs(model::materials.size());
|
||||
|
||||
for (const auto& cell : model::cells) {
|
||||
// Skip non-material cells
|
||||
|
|
@ -246,8 +245,8 @@ void put_mgxs_header_data_to_globals()
|
|||
void set_mg_interface_nuclides_and_temps()
|
||||
{
|
||||
// Get temperatures from global data
|
||||
vector<std::vector<double>> nuc_temps(data::nuclide_map.size());
|
||||
vector<std::vector<double>> dummy;
|
||||
vector<vector<double>> nuc_temps(data::nuclide_map.size());
|
||||
vector<vector<double>> dummy;
|
||||
get_temperatures(nuc_temps, dummy);
|
||||
|
||||
// Build vector of nuclide names which are to be read
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue