Initial version of ThermalScattering class

This commit is contained in:
Paul Romano 2018-08-14 22:21:41 -05:00
parent 1d872dcaa3
commit 5f3022989c
7 changed files with 468 additions and 10 deletions

View file

@ -1,5 +1,6 @@
#include "settings.h"
#include "constants.h"
#include "error.h"
#include "openmc.h"
#include "string_utils.h"
@ -20,6 +21,12 @@ std::string path_multipole;
std::string path_output;
std::string path_source;
int temperature_method {TEMPERATURE_NEAREST};
bool temperature_multipole {false};
double temperature_tolerance {10.0};
double temperature_default {293.6};
std::array<double, 2> temperature_range {0.0, 0.0};
//==============================================================================
// Functions
//==============================================================================
@ -67,4 +74,4 @@ void read_settings(pugi::xml_node* root)
}
}
} // namespace openmc
} // namespace openmc