2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/plot.h"
|
|
|
|
|
|
2019-03-14 11:02:19 -05:00
|
|
|
#include <algorithm>
|
2018-10-09 14:25:13 -05:00
|
|
|
#include <fstream>
|
2018-10-30 22:30:45 -05:00
|
|
|
#include <sstream>
|
2018-10-09 14:25:13 -05:00
|
|
|
|
2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/cell.h"
|
2018-10-07 19:55:45 -05:00
|
|
|
#include "openmc/constants.h"
|
2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/file_utils.h"
|
2018-10-08 13:34:23 -05:00
|
|
|
#include "openmc/geometry.h"
|
2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/error.h"
|
|
|
|
|
#include "openmc/hdf5_interface.h"
|
2018-10-08 14:05:38 -05:00
|
|
|
#include "openmc/material.h"
|
2018-10-09 17:35:38 -05:00
|
|
|
#include "openmc/mesh.h"
|
2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/message_passing.h"
|
2018-10-09 21:19:41 -05:00
|
|
|
#include "openmc/output.h"
|
2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/particle.h"
|
2018-10-29 18:02:00 -05:00
|
|
|
#include "openmc/progress_bar.h"
|
2019-02-20 15:45:30 -06:00
|
|
|
#include "openmc/random_lcg.h"
|
|
|
|
|
#include "openmc/settings.h"
|
|
|
|
|
#include "openmc/string_utils.h"
|
2018-04-24 22:42:04 -05:00
|
|
|
|
|
|
|
|
namespace openmc {
|
|
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-11-08 15:14:01 -06:00
|
|
|
// Constants
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-11-02 23:08:51 -05:00
|
|
|
|
2018-11-08 15:14:01 -06:00
|
|
|
const RGBColor WHITE {255, 255, 255};
|
|
|
|
|
constexpr int PLOT_LEVEL_LOWEST {-1}; //!< lower bound on plot universe level
|
2019-03-07 18:09:20 -06:00
|
|
|
constexpr int NOT_FOUND {-1};
|
2019-03-11 10:14:17 -05:00
|
|
|
|
|
|
|
|
struct id_setter {
|
|
|
|
|
void operator()(const Particle& p, IdData& ids, int y, int x, int level) {
|
|
|
|
|
Cell* c = model::cells[p.coord_[level].cell].get();
|
|
|
|
|
ids(y,x,0) = c->id_;
|
|
|
|
|
if (c->type_ == FILL_UNIVERSE || p.material_ == MATERIAL_VOID) {
|
|
|
|
|
ids(y,x,1) = NOT_FOUND;
|
|
|
|
|
} else {
|
|
|
|
|
Material* m = model::materials[p.material_].get();
|
|
|
|
|
ids(y,x,1) = m->id_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct property_setter {
|
|
|
|
|
void operator()(const Particle& p, PropertyData& props, int y, int x, int level) {
|
|
|
|
|
Cell* c = model::cells[p.coord_[level].cell].get();
|
|
|
|
|
props(y,x,0) = (p.sqrtkT_ * p.sqrtkT_) * K_BOLTZMANN;
|
|
|
|
|
if (c->type_ == FILL_UNIVERSE || p.material_ == MATERIAL_VOID) {
|
|
|
|
|
props(y,x, 1) = NOT_FOUND;
|
|
|
|
|
} else {
|
|
|
|
|
Material* m = model::materials[p.material_].get();
|
|
|
|
|
props(y,x,1) = m->density_gpcc_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2018-11-08 15:14:01 -06:00
|
|
|
//==============================================================================
|
|
|
|
|
// Global variables
|
|
|
|
|
//==============================================================================
|
2018-10-13 20:09:53 -05:00
|
|
|
|
2018-11-08 15:14:01 -06:00
|
|
|
namespace model {
|
2018-10-13 20:09:53 -05:00
|
|
|
|
2018-10-29 10:18:02 -05:00
|
|
|
std::vector<Plot> plots;
|
2018-11-08 15:14:01 -06:00
|
|
|
std::unordered_map<int, int> plot_map;
|
2018-10-13 20:09:53 -05:00
|
|
|
|
2018-11-08 15:14:01 -06:00
|
|
|
} // namespace model
|
2018-10-08 14:05:38 -05:00
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-08 13:34:23 -05:00
|
|
|
// RUN_PLOT controls the logic for making one or many plots
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-12 17:10:06 -05:00
|
|
|
extern "C"
|
2018-10-26 11:04:38 -05:00
|
|
|
int openmc_plot_geometry()
|
|
|
|
|
{
|
2018-10-08 13:34:23 -05:00
|
|
|
int err;
|
2018-10-07 19:55:45 -05:00
|
|
|
|
2018-11-08 15:14:01 -06:00
|
|
|
for (auto pl : model::plots) {
|
2018-10-08 13:34:23 -05:00
|
|
|
std::stringstream ss;
|
2018-10-30 19:58:34 -05:00
|
|
|
ss << "Processing plot " << pl.id_ << ": "
|
|
|
|
|
<< pl.path_plot_ << "...";
|
2018-10-27 18:20:10 -05:00
|
|
|
write_message(ss.str(), 5);
|
|
|
|
|
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::slice == pl.type_) {
|
2018-10-27 18:20:10 -05:00
|
|
|
// create 2D image
|
|
|
|
|
create_ppm(pl);
|
2018-10-30 20:04:24 -05:00
|
|
|
} else if (PlotType::voxel == pl.type_) {
|
2018-10-27 18:20:10 -05:00
|
|
|
// create voxel file for 3D viewing
|
|
|
|
|
create_voxel(pl);
|
|
|
|
|
}
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-11 17:39:07 -05:00
|
|
|
|
2019-02-20 15:45:30 -06:00
|
|
|
void read_plots_xml()
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2019-02-20 15:45:30 -06:00
|
|
|
// Check if plots.xml exists
|
|
|
|
|
std::string filename = settings::path_input + "plots.xml";
|
|
|
|
|
if (!file_exists(filename)) {
|
|
|
|
|
fatal_error("Plots XML file '" + filename + "' does not exist!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
write_message("Reading plot XML file...", 5);
|
|
|
|
|
|
|
|
|
|
// Parse plots.xml file
|
|
|
|
|
pugi::xml_document doc;
|
|
|
|
|
doc.load_file(filename.c_str());
|
|
|
|
|
|
|
|
|
|
pugi::xml_node root = doc.document_element();
|
|
|
|
|
for (auto node : root.children("plot")) {
|
2018-10-30 21:29:35 -05:00
|
|
|
Plot pl(node);
|
2018-11-08 15:14:01 -06:00
|
|
|
model::plots.push_back(pl);
|
|
|
|
|
model::plot_map[pl.id_] = model::plots.size() - 1;
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-08 13:34:23 -05:00
|
|
|
// CREATE_PPM creates an image based on user input from a plots.xml <plot>
|
|
|
|
|
// specification in the portable pixmap format (PPM)
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-08 13:34:23 -05:00
|
|
|
|
2018-10-29 10:18:02 -05:00
|
|
|
void create_ppm(Plot pl)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-08 13:34:23 -05:00
|
|
|
|
2018-10-30 19:58:34 -05:00
|
|
|
size_t width = pl.pixels_[0];
|
|
|
|
|
size_t height = pl.pixels_[1];
|
2018-10-08 13:34:23 -05:00
|
|
|
|
2018-10-30 21:29:35 -05:00
|
|
|
double in_pixel = (pl.width_[0])/static_cast<double>(width);
|
|
|
|
|
double out_pixel = (pl.width_[1])/static_cast<double>(height);
|
2018-10-08 13:34:23 -05:00
|
|
|
|
2018-10-09 19:56:32 -05:00
|
|
|
ImageData data;
|
2018-10-30 11:13:03 -05:00
|
|
|
data.resize({width, height});
|
2018-10-08 13:34:23 -05:00
|
|
|
|
|
|
|
|
int in_i, out_i;
|
2019-03-01 14:46:21 -06:00
|
|
|
Position r;
|
2018-10-30 19:58:34 -05:00
|
|
|
switch(pl.basis_) {
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotBasis::xy :
|
2018-10-08 13:34:23 -05:00
|
|
|
in_i = 0;
|
|
|
|
|
out_i = 1;
|
2019-03-01 14:46:21 -06:00
|
|
|
r.x = pl.origin_[0] - pl.width_[0] / 2.;
|
|
|
|
|
r.y = pl.origin_[1] + pl.width_[1] / 2.;
|
|
|
|
|
r.z = pl.origin_[2];
|
2018-10-09 20:29:08 -05:00
|
|
|
break;
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotBasis::xz :
|
2018-10-08 13:34:23 -05:00
|
|
|
in_i = 0;
|
|
|
|
|
out_i = 2;
|
2019-03-01 14:46:21 -06:00
|
|
|
r.x = pl.origin_[0] - pl.width_[0] / 2.;
|
|
|
|
|
r.y = pl.origin_[1];
|
|
|
|
|
r.z = pl.origin_[2] + pl.width_[1] / 2.;
|
2018-10-09 20:29:08 -05:00
|
|
|
break;
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotBasis::yz :
|
2018-10-08 13:34:23 -05:00
|
|
|
in_i = 1;
|
|
|
|
|
out_i = 2;
|
2019-03-01 14:46:21 -06:00
|
|
|
r.x = pl.origin_[0];
|
|
|
|
|
r.y = pl.origin_[1] - pl.width_[0] / 2.;
|
|
|
|
|
r.z = pl.origin_[2] + pl.width_[1] / 2.;
|
2018-10-09 20:29:08 -05:00
|
|
|
break;
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
|
|
|
|
|
2019-03-15 14:04:35 -05:00
|
|
|
Direction u {0.7071, 0.7071, 0.0};
|
2018-10-30 10:47:18 -05:00
|
|
|
|
2019-03-14 11:02:19 -05:00
|
|
|
#pragma omp parallel
|
|
|
|
|
{
|
|
|
|
|
Particle p;
|
|
|
|
|
p.r() = r;
|
|
|
|
|
p.u() = u;
|
|
|
|
|
p.coord_[0].universe = model::root_universe;
|
|
|
|
|
|
|
|
|
|
#pragma omp for
|
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
|
p.r()[out_i] = r[out_i] - out_pixel * y;
|
|
|
|
|
for (int x = 0; x < width; x++) {
|
|
|
|
|
// local variables
|
|
|
|
|
RGBColor rgb;
|
|
|
|
|
int id;
|
|
|
|
|
p.r()[in_i] = r[in_i] + in_pixel * x;
|
|
|
|
|
position_rgb(p, pl, rgb, id);
|
|
|
|
|
data(x,y) = rgb;
|
|
|
|
|
}
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
|
|
|
|
}
|
2019-03-14 11:02:19 -05:00
|
|
|
|
2018-10-26 11:04:38 -05:00
|
|
|
// draw mesh lines if present
|
2018-10-30 19:58:34 -05:00
|
|
|
if (pl.index_meshlines_mesh_ >= 0) {draw_mesh_lines(pl, data);}
|
2018-10-09 19:56:32 -05:00
|
|
|
|
2018-10-26 11:04:38 -05:00
|
|
|
// write ppm data to file
|
2018-10-09 15:15:41 -05:00
|
|
|
output_ppm(pl, data);
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
|
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_id(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-27 18:20:10 -05:00
|
|
|
// Copy data into plots
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "id")) {
|
2018-10-30 19:58:34 -05:00
|
|
|
id_ = std::stoi(get_node_value(plot_node, "id"));
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
fatal_error("Must specify plot id in plots XML file.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check to make sure 'id' hasn't been used
|
2018-11-08 15:14:01 -06:00
|
|
|
if (model::plot_map.find(id_) != model::plot_map.end()) {
|
2018-10-10 17:16:55 -05:00
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Two or more plots use the same unique ID: " << id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg.str());
|
|
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_type(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-10 17:16:55 -05:00
|
|
|
// Copy plot type
|
|
|
|
|
// Default is slice
|
2018-10-30 20:04:24 -05:00
|
|
|
type_ = PlotType::slice;
|
2018-10-26 11:04:38 -05:00
|
|
|
// check type specified on plot node
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "type")) {
|
|
|
|
|
std::string type_str = get_node_value(plot_node, "type", true);
|
2018-10-26 11:04:38 -05:00
|
|
|
// set type using node value
|
2018-10-10 17:16:55 -05:00
|
|
|
if (type_str == "slice") {
|
2018-10-30 20:04:24 -05:00
|
|
|
type_ = PlotType::slice;
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
|
|
|
|
else if (type_str == "voxel") {
|
2018-10-30 20:04:24 -05:00
|
|
|
type_ = PlotType::voxel;
|
2018-10-31 09:05:44 -05:00
|
|
|
} else {
|
2018-10-26 11:04:38 -05:00
|
|
|
// if we're here, something is wrong
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Unsupported plot type '" << type_str
|
2018-10-30 19:58:34 -05:00
|
|
|
<< "' in plot " << id_;
|
2018-10-26 11:04:38 -05:00
|
|
|
fatal_error(err_msg.str());
|
2018-10-31 09:05:44 -05:00
|
|
|
}
|
2018-10-26 11:04:38 -05:00
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_output_path(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-10 17:16:55 -05:00
|
|
|
// Set output file path
|
|
|
|
|
std::stringstream filename;
|
|
|
|
|
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "filename")) {
|
|
|
|
|
filename << get_node_value(plot_node, "filename");
|
2018-11-02 22:35:47 -05:00
|
|
|
} else {
|
|
|
|
|
filename << "plot_" << id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
2018-10-29 15:06:27 -05:00
|
|
|
// add appropriate file extension to name
|
2018-10-30 19:58:34 -05:00
|
|
|
switch(type_) {
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotType::slice:
|
2018-10-29 15:06:27 -05:00
|
|
|
filename << ".ppm";
|
|
|
|
|
break;
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotType::voxel:
|
2018-10-29 15:06:27 -05:00
|
|
|
filename << ".h5";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 19:58:34 -05:00
|
|
|
path_plot_ = filename.str();
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-10 17:16:55 -05:00
|
|
|
// Copy plot pixel size
|
2018-10-30 21:29:35 -05:00
|
|
|
std::vector<int> pxls = get_node_array<int>(plot_node, "pixels");
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::slice == type_) {
|
2018-10-30 21:29:35 -05:00
|
|
|
if (pxls.size() == 2) {
|
2018-10-30 19:58:34 -05:00
|
|
|
pixels_[0] = pxls[0];
|
|
|
|
|
pixels_[1] = pxls[1];
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "<pixels> must be length 2 in slice plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg.str());
|
|
|
|
|
}
|
2018-10-30 20:04:24 -05:00
|
|
|
} else if (PlotType::voxel == type_) {
|
2018-10-30 21:29:35 -05:00
|
|
|
if (pxls.size() == 3) {
|
2018-10-30 19:58:34 -05:00
|
|
|
pixels_[0] = pxls[0];
|
|
|
|
|
pixels_[1] = pxls[1];
|
|
|
|
|
pixels_[2] = pxls[2];
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "<pixels> must be length 3 in voxel plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg.str());
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_bg_color(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-27 18:20:10 -05:00
|
|
|
// Copy plot background color
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "background")) {
|
2018-11-02 23:08:51 -05:00
|
|
|
std::vector<int> bg_rgb = get_node_array<int>(plot_node, "background");
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::voxel == type_) {
|
2018-11-08 12:59:10 -06:00
|
|
|
if (mpi::master) {
|
2018-10-10 17:16:55 -05:00
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Background color ignored in voxel plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
warning(err_msg.str());
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-30 21:29:35 -05:00
|
|
|
if (bg_rgb.size() == 3) {
|
2018-10-31 15:42:08 -05:00
|
|
|
not_found_ = bg_rgb;
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Bad background RGB in plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// default to a white background
|
2018-10-31 15:42:08 -05:00
|
|
|
not_found_ = WHITE;
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_basis(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-10 17:16:55 -05:00
|
|
|
// Copy plot basis
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::slice == type_) {
|
2018-10-10 17:16:55 -05:00
|
|
|
std::string pl_basis = "xy";
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "basis")) {
|
|
|
|
|
pl_basis = get_node_value(plot_node, "basis", true);
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
|
|
|
|
if ("xy" == pl_basis) {
|
2018-10-30 20:04:24 -05:00
|
|
|
basis_ = PlotBasis::xy;
|
2018-10-10 17:16:55 -05:00
|
|
|
} else if ("xz" == pl_basis) {
|
2018-10-30 20:04:24 -05:00
|
|
|
basis_ = PlotBasis::xz;
|
2018-10-10 17:16:55 -05:00
|
|
|
} else if ("yz" == pl_basis) {
|
2018-10-30 20:04:24 -05:00
|
|
|
basis_ = PlotBasis::yz;
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Unsupported plot basis '" << pl_basis
|
2018-10-30 19:58:34 -05:00
|
|
|
<< "' in plot " << id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-26 11:04:38 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_origin(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-10 17:16:55 -05:00
|
|
|
// Copy plotting origin
|
2019-03-01 14:46:21 -06:00
|
|
|
auto pl_origin = get_node_array<double>(plot_node, "origin");
|
2018-10-30 21:29:35 -05:00
|
|
|
if (pl_origin.size() == 3) {
|
2019-03-01 14:46:21 -06:00
|
|
|
origin_ = pl_origin;
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Origin must be length 3 in plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_width(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
|
|
|
|
// Copy plotting width
|
2018-10-30 21:29:35 -05:00
|
|
|
std::vector<double> pl_width = get_node_array<double>(plot_node, "width");
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::slice == type_) {
|
2018-10-30 21:29:35 -05:00
|
|
|
if (pl_width.size() == 2) {
|
2019-03-01 14:46:21 -06:00
|
|
|
width_.x = pl_width[0];
|
|
|
|
|
width_.y = pl_width[1];
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "<width> must be length 2 in slice plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-30 20:04:24 -05:00
|
|
|
} else if (PlotType::voxel == type_) {
|
2018-10-30 21:29:35 -05:00
|
|
|
if (pl_width.size() == 3) {
|
2018-10-29 10:35:22 -05:00
|
|
|
pl_width = get_node_array<double>(plot_node, "width");
|
2019-03-01 14:46:21 -06:00
|
|
|
width_ = pl_width;
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "<width> must be length 3 in voxel plot "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_universe(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-10 17:16:55 -05:00
|
|
|
// Copy plot universe level
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "level")) {
|
2018-10-30 19:58:34 -05:00
|
|
|
level_ = std::stoi(get_node_value(plot_node, "level"));
|
|
|
|
|
if (level_ < 0) {
|
2018-10-10 17:16:55 -05:00
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Bad universe level in plot " << id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2018-10-30 19:58:34 -05:00
|
|
|
level_ = PLOT_LEVEL_LOWEST;
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
2018-10-26 11:04:38 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_default_colors(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-10 17:16:55 -05:00
|
|
|
// Copy plot color type and initialize all colors randomly
|
|
|
|
|
std::string pl_color_by = "cell";
|
2018-10-29 10:35:22 -05:00
|
|
|
if (check_for_node(plot_node, "color_by")) {
|
|
|
|
|
pl_color_by = get_node_value(plot_node, "color_by", true);
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
|
|
|
|
if ("cell" == pl_color_by) {
|
2018-10-30 20:04:24 -05:00
|
|
|
color_by_ = PlotColorBy::cells;
|
2018-11-08 14:03:09 -06:00
|
|
|
colors_.resize(model::cells.size());
|
2018-10-10 17:16:55 -05:00
|
|
|
} else if("material" == pl_color_by) {
|
2018-10-30 20:04:24 -05:00
|
|
|
color_by_ = PlotColorBy::mats;
|
2018-11-08 14:03:09 -06:00
|
|
|
colors_.resize(model::materials.size());
|
2018-10-10 17:16:55 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Unsupported plot color type '" << pl_color_by
|
2018-10-30 19:58:34 -05:00
|
|
|
<< "' in plot " << id_;
|
2018-10-10 17:16:55 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-11-08 14:03:09 -06:00
|
|
|
|
|
|
|
|
for (auto& c : colors_) {
|
|
|
|
|
c = random_color();
|
|
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-10 17:16:55 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_user_colors(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-30 21:29:35 -05:00
|
|
|
if (!plot_node.select_nodes("color").empty() && PlotType::voxel == type_) {
|
2018-11-08 12:59:10 -06:00
|
|
|
if (mpi::master) {
|
2018-10-30 21:29:35 -05:00
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Color specifications ignored in voxel plot "
|
|
|
|
|
<< id_;
|
|
|
|
|
warning(err_msg);
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
2018-10-30 21:29:35 -05:00
|
|
|
}
|
2018-11-02 23:08:51 -05:00
|
|
|
|
2018-10-30 21:29:35 -05:00
|
|
|
for (auto cn : plot_node.children("color")) {
|
|
|
|
|
// Make sure 3 values are specified for RGB
|
|
|
|
|
std::vector<int> user_rgb = get_node_array<int>(cn, "rgb");
|
|
|
|
|
if (user_rgb.size() != 3) {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Bad RGB in plot " << id_;
|
|
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
// Ensure that there is an id for this color specification
|
|
|
|
|
int col_id;
|
|
|
|
|
if (check_for_node(cn, "id")) {
|
|
|
|
|
col_id = std::stoi(get_node_value(cn, "id"));
|
|
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Must specify id for color specification in plot "
|
|
|
|
|
<< id_;
|
|
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
// Add RGB
|
|
|
|
|
if (PlotColorBy::cells == color_by_) {
|
2018-11-08 13:21:37 -06:00
|
|
|
if (model::cell_map.find(col_id) != model::cell_map.end()) {
|
|
|
|
|
col_id = model::cell_map[col_id];
|
2018-10-31 15:42:08 -05:00
|
|
|
colors_[col_id] = user_rgb;
|
2018-10-30 21:29:35 -05:00
|
|
|
} else {
|
2018-10-10 18:00:57 -05:00
|
|
|
std::stringstream err_msg;
|
2018-10-30 21:29:35 -05:00
|
|
|
err_msg << "Could not find cell " << col_id
|
|
|
|
|
<< " specified in plot " << id_;
|
2018-10-10 18:00:57 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-30 21:29:35 -05:00
|
|
|
} else if (PlotColorBy::mats == color_by_) {
|
2018-11-08 14:03:09 -06:00
|
|
|
if (model::material_map.find(col_id) != model::material_map.end()) {
|
|
|
|
|
col_id = model::material_map[col_id];
|
2018-10-31 15:42:08 -05:00
|
|
|
colors_[col_id] = user_rgb;
|
2018-10-10 18:00:57 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 21:29:35 -05:00
|
|
|
err_msg << "Could not find material " << col_id
|
|
|
|
|
<< " specified in plot " << id_;
|
2018-10-10 18:00:57 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-30 21:29:35 -05:00
|
|
|
}
|
|
|
|
|
} // color node loop
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_meshlines(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
|
|
|
|
// Deal with meshlines
|
2018-10-30 21:29:35 -05:00
|
|
|
pugi::xpath_node_set mesh_line_nodes = plot_node.select_nodes("meshlines");
|
2018-10-10 18:00:57 -05:00
|
|
|
|
2018-10-30 21:29:35 -05:00
|
|
|
if (!mesh_line_nodes.empty()) {
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::voxel == type_) {
|
2018-10-10 18:00:57 -05:00
|
|
|
std::stringstream msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
msg << "Meshlines ignored in voxel plot " << id_;
|
2018-10-10 18:00:57 -05:00
|
|
|
warning(msg);
|
2018-10-10 17:16:55 -05:00
|
|
|
}
|
2018-10-10 18:00:57 -05:00
|
|
|
|
2018-10-30 21:29:35 -05:00
|
|
|
if (mesh_line_nodes.size() == 1) {
|
2018-10-10 18:00:57 -05:00
|
|
|
// Get first meshline node
|
2018-10-30 21:29:35 -05:00
|
|
|
pugi::xml_node meshlines_node = mesh_line_nodes[0].node();
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-10 18:00:57 -05:00
|
|
|
// Check mesh type
|
2018-10-11 17:39:07 -05:00
|
|
|
std::string meshtype;
|
|
|
|
|
if (check_for_node(meshlines_node, "meshtype")) {
|
|
|
|
|
meshtype = get_node_value(meshlines_node, "meshtype");
|
|
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Must specify a meshtype for meshlines specification in plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-11 17:39:07 -05:00
|
|
|
// Ensure that there is a linewidth for this meshlines specification
|
2018-10-10 18:00:57 -05:00
|
|
|
std::string meshline_width;
|
|
|
|
|
if (check_for_node(meshlines_node, "linewidth")) {
|
|
|
|
|
meshline_width = get_node_value(meshlines_node, "linewidth");
|
2018-10-30 19:58:34 -05:00
|
|
|
meshlines_width_ = std::stoi(meshline_width);
|
2018-10-10 18:00:57 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Must specify a linewidth for meshlines specification in plot " << id_;
|
2018-10-10 18:00:57 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check for color
|
|
|
|
|
if (check_for_node(meshlines_node, "color")) {
|
|
|
|
|
// Check and make sure 3 values are specified for RGB
|
2018-10-30 21:29:35 -05:00
|
|
|
std::vector<int> ml_rgb = get_node_array<int>(meshlines_node, "color");
|
|
|
|
|
if (ml_rgb.size() != 3) {
|
2018-10-10 18:00:57 -05:00
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Bad RGB for meshlines color in plot " << id_;
|
2018-10-10 18:00:57 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-11-02 22:33:09 -05:00
|
|
|
meshlines_color_ = ml_rgb;
|
2018-10-10 18:00:57 -05:00
|
|
|
}
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-11 17:39:07 -05:00
|
|
|
// Set mesh based on type
|
|
|
|
|
if ("ufs" == meshtype) {
|
|
|
|
|
if (settings::index_ufs_mesh < 0) {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "No UFS mesh for meshlines on plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
} else {
|
2018-10-30 19:58:34 -05:00
|
|
|
index_meshlines_mesh_ = settings::index_ufs_mesh;
|
2018-10-11 17:39:07 -05:00
|
|
|
}
|
|
|
|
|
} else if ("entropy" == meshtype) {
|
|
|
|
|
if (settings::index_entropy_mesh < 0) {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg <<"No entropy mesh for meshlines on plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
} else {
|
2018-10-30 19:58:34 -05:00
|
|
|
index_meshlines_mesh_ = settings::index_entropy_mesh;
|
2018-10-11 17:39:07 -05:00
|
|
|
}
|
|
|
|
|
} else if ("tally" == meshtype) {
|
|
|
|
|
// Ensure that there is a mesh id if the type is tally
|
|
|
|
|
int tally_mesh_id;
|
|
|
|
|
if (check_for_node(meshlines_node, "id")) {
|
2018-10-27 18:20:10 -05:00
|
|
|
tally_mesh_id = std::stoi(get_node_value(meshlines_node, "id"));
|
|
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Must specify a mesh id for meshlines tally "
|
2018-10-30 19:58:34 -05:00
|
|
|
<< "mesh specification in plot " << id_;
|
2018-10-27 18:20:10 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
// find the tally index
|
|
|
|
|
int idx;
|
|
|
|
|
int err = openmc_get_mesh_index(tally_mesh_id, &idx);
|
|
|
|
|
if (err != 0) {
|
2018-10-30 21:29:35 -05:00
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Could not find mesh " << tally_mesh_id
|
|
|
|
|
<< " specified in meshlines for plot " << id_;
|
|
|
|
|
fatal_error(err_msg);
|
2018-10-27 18:20:10 -05:00
|
|
|
}
|
2018-10-30 19:58:34 -05:00
|
|
|
index_meshlines_mesh_ = idx;
|
2018-10-11 17:39:07 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Invalid type for meshlines on plot " << id_ ;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Mutliple meshlines specified in plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
2018-10-11 15:26:09 -05:00
|
|
|
}
|
|
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-11 15:26:09 -05:00
|
|
|
|
2018-10-23 14:51:02 -05:00
|
|
|
void
|
2018-10-29 10:35:22 -05:00
|
|
|
Plot::set_mask(pugi::xml_node plot_node)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
|
|
|
|
// Deal with masks
|
2018-10-30 21:29:35 -05:00
|
|
|
pugi::xpath_node_set mask_nodes = plot_node.select_nodes("mask");
|
2018-11-02 23:08:51 -05:00
|
|
|
|
2018-10-30 21:29:35 -05:00
|
|
|
if (!mask_nodes.empty()) {
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotType::voxel == type_) {
|
2018-11-08 12:59:10 -06:00
|
|
|
if (mpi::master) {
|
2018-10-11 17:39:07 -05:00
|
|
|
std::stringstream wrn_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
wrn_msg << "Mask ignored in voxel plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
warning(wrn_msg);
|
|
|
|
|
}
|
2018-10-11 15:26:09 -05:00
|
|
|
}
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-30 21:29:35 -05:00
|
|
|
if (mask_nodes.size() == 1) {
|
2018-10-11 17:39:07 -05:00
|
|
|
// Get pointer to mask
|
2018-10-30 21:29:35 -05:00
|
|
|
pugi::xml_node mask_node = mask_nodes[0].node();
|
2018-10-11 17:39:07 -05:00
|
|
|
|
|
|
|
|
// Determine how many components there are and allocate
|
2018-11-02 23:08:51 -05:00
|
|
|
std::vector<int> iarray = get_node_array<int>(mask_node, "components");
|
2018-10-30 21:29:35 -05:00
|
|
|
if (iarray.size() == 0) {
|
2018-10-11 17:39:07 -05:00
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Missing <components> in mask of plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-11 15:26:09 -05:00
|
|
|
|
2018-10-12 10:46:21 -05:00
|
|
|
// First we need to change the user-specified identifiers to indices
|
2018-10-11 17:39:07 -05:00
|
|
|
// in the cell and material arrays
|
2018-10-30 21:50:55 -05:00
|
|
|
for (auto& col_id : iarray) {
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotColorBy::cells == color_by_) {
|
2018-11-08 13:21:37 -06:00
|
|
|
if (model::cell_map.find(col_id) != model::cell_map.end()) {
|
|
|
|
|
col_id = model::cell_map[col_id];
|
2018-10-11 17:39:07 -05:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Could not find cell " << col_id
|
2018-10-30 19:58:34 -05:00
|
|
|
<< " specified in the mask in plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-30 20:04:24 -05:00
|
|
|
} else if (PlotColorBy::mats == color_by_) {
|
2018-11-08 14:03:09 -06:00
|
|
|
if (model::material_map.find(col_id) != model::material_map.end()) {
|
|
|
|
|
col_id = model::material_map[col_id];
|
2018-10-11 17:39:07 -05:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
std::stringstream err_msg;
|
|
|
|
|
err_msg << "Could not find material " << col_id
|
2018-10-30 19:58:34 -05:00
|
|
|
<< " specified in the mask in plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-11 15:26:09 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-11 17:39:07 -05:00
|
|
|
// Alter colors based on mask information
|
2018-10-30 19:58:34 -05:00
|
|
|
for (int j = 0; j < colors_.size(); j++) {
|
2018-10-26 12:20:29 -05:00
|
|
|
if (std::find(iarray.begin(), iarray.end(), j) == iarray.end()) {
|
2018-10-11 17:39:07 -05:00
|
|
|
if (check_for_node(mask_node, "background")) {
|
|
|
|
|
std::vector<int> bg_rgb = get_node_array<int>(mask_node, "background");
|
2018-10-31 15:42:08 -05:00
|
|
|
colors_[j] = bg_rgb;
|
2018-10-11 17:39:07 -05:00
|
|
|
} else {
|
2018-10-31 15:42:08 -05:00
|
|
|
colors_[j] = WHITE;
|
2018-10-11 17:39:07 -05:00
|
|
|
}
|
2018-10-11 15:26:09 -05:00
|
|
|
}
|
|
|
|
|
}
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-11 17:39:07 -05:00
|
|
|
} else {
|
|
|
|
|
std::stringstream err_msg;
|
2018-10-30 19:58:34 -05:00
|
|
|
err_msg << "Mutliple masks specified in plot " << id_;
|
2018-10-11 17:39:07 -05:00
|
|
|
fatal_error(err_msg);
|
|
|
|
|
}
|
2018-10-11 15:26:09 -05:00
|
|
|
}
|
2018-10-23 14:51:02 -05:00
|
|
|
}
|
2018-10-26 11:04:38 -05:00
|
|
|
|
2019-02-26 11:10:19 -06:00
|
|
|
Plot::Plot(pugi::xml_node plot_node)
|
2019-03-12 11:39:04 -05:00
|
|
|
: index_meshlines_mesh_{-1}
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-29 10:35:22 -05:00
|
|
|
set_id(plot_node);
|
|
|
|
|
set_type(plot_node);
|
|
|
|
|
set_output_path(plot_node);
|
|
|
|
|
set_bg_color(plot_node);
|
|
|
|
|
set_basis(plot_node);
|
|
|
|
|
set_origin(plot_node);
|
|
|
|
|
set_width(plot_node);
|
|
|
|
|
set_universe(plot_node);
|
|
|
|
|
set_default_colors(plot_node);
|
|
|
|
|
set_user_colors(plot_node);
|
|
|
|
|
set_meshlines(plot_node);
|
|
|
|
|
set_mask(plot_node);
|
2018-10-29 09:33:24 -05:00
|
|
|
} // End Plot constructor
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2019-03-11 10:14:17 -05:00
|
|
|
template<class D, typename setter>
|
|
|
|
|
D PlotBase::generate_data() const {
|
|
|
|
|
|
|
|
|
|
size_t width = pixels_[0];
|
|
|
|
|
size_t height = pixels_[1];
|
|
|
|
|
|
|
|
|
|
// get pixel size
|
|
|
|
|
double in_pixel = (width_[0])/static_cast<double>(width);
|
|
|
|
|
double out_pixel = (width_[1])/static_cast<double>(height);
|
|
|
|
|
|
|
|
|
|
// size data array
|
|
|
|
|
D data({height, width, 2}, NOT_FOUND);
|
|
|
|
|
|
|
|
|
|
// setup basis indices and initial position centered on pixel
|
|
|
|
|
int in_i, out_i;
|
|
|
|
|
Position xyz = origin_;
|
|
|
|
|
switch(basis_) {
|
|
|
|
|
case PlotBasis::xy :
|
|
|
|
|
in_i = 0;
|
|
|
|
|
out_i = 1;
|
|
|
|
|
break;
|
|
|
|
|
case PlotBasis::xz :
|
|
|
|
|
in_i = 0;
|
|
|
|
|
out_i = 2;
|
|
|
|
|
break;
|
|
|
|
|
case PlotBasis::yz :
|
|
|
|
|
in_i = 1;
|
|
|
|
|
out_i = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// set initial position
|
|
|
|
|
xyz[in_i] = origin_[in_i] - width_[0] / 2. + in_pixel / 2.;
|
|
|
|
|
xyz[out_i] = origin_[out_i] + width_[1] / 2. - out_pixel / 2.;
|
|
|
|
|
|
|
|
|
|
// arbitrary direction
|
|
|
|
|
Direction dir = {0.5, 0.5, 0.5};
|
|
|
|
|
|
|
|
|
|
#pragma omp parallel
|
|
|
|
|
{
|
|
|
|
|
Particle p;
|
|
|
|
|
p.r() = xyz;
|
|
|
|
|
p.u() = dir;
|
|
|
|
|
p.coord_[0].universe = model::root_universe;
|
|
|
|
|
int level = level_;
|
|
|
|
|
int j{};
|
|
|
|
|
|
|
|
|
|
#pragma omp for
|
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
|
p.r()[out_i] = xyz[out_i] - out_pixel * y;
|
|
|
|
|
for (int x = 0; x < width; x++) {
|
|
|
|
|
p.r()[in_i] = xyz[in_i] + in_pixel * x;
|
|
|
|
|
p.n_coord_ = 1;
|
|
|
|
|
// local variables
|
|
|
|
|
bool found_cell = find_cell(&p, 0);
|
|
|
|
|
j = p.n_coord_ - 1;
|
|
|
|
|
if (level >=0) {j = level + 1;}
|
|
|
|
|
if (found_cell) {
|
|
|
|
|
setter()(p, data, y, x, j);
|
|
|
|
|
Cell* c = model::cells[p.coord_[j].cell].get();
|
|
|
|
|
}
|
|
|
|
|
} // inner for
|
|
|
|
|
} // outer for
|
|
|
|
|
} // omp parallel
|
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IdData PlotBase::get_id_map() const {
|
|
|
|
|
return generate_data<IdData, id_setter>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyData PlotBase::get_property_map() const {
|
|
|
|
|
return generate_data<PropertyData, property_setter>();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-08 14:05:38 -05:00
|
|
|
// POSITION_RGB computes the red/green/blue values for a given plot with the
|
|
|
|
|
// current particle's position
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-08 14:05:38 -05:00
|
|
|
|
2018-10-30 10:47:18 -05:00
|
|
|
|
2018-10-30 21:50:55 -05:00
|
|
|
void position_rgb(Particle p, Plot pl, RGBColor& rgb, int& id)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2019-02-27 08:23:43 -06:00
|
|
|
p.n_coord_ = 1;
|
2018-10-08 14:05:38 -05:00
|
|
|
|
2018-10-30 10:47:18 -05:00
|
|
|
bool found_cell = find_cell(&p, 0);
|
2018-10-08 14:05:38 -05:00
|
|
|
|
2019-02-27 08:23:43 -06:00
|
|
|
int j = p.n_coord_ - 1;
|
2018-10-08 14:05:38 -05:00
|
|
|
|
2018-10-30 10:47:18 -05:00
|
|
|
if (settings::check_overlaps) {check_cell_overlap(&p);}
|
2018-10-08 14:05:38 -05:00
|
|
|
|
|
|
|
|
// Set coordinate level if specified
|
2018-10-30 19:58:34 -05:00
|
|
|
if (pl.level_ >= 0) {j = pl.level_ + 1;}
|
2018-10-08 14:05:38 -05:00
|
|
|
|
|
|
|
|
if (!found_cell) {
|
|
|
|
|
// If no cell, revert to default color
|
2018-10-30 19:58:34 -05:00
|
|
|
rgb = pl.not_found_;
|
2019-03-07 18:09:20 -06:00
|
|
|
id = NOT_FOUND;
|
2018-10-08 14:05:38 -05:00
|
|
|
} else {
|
2018-10-30 20:04:24 -05:00
|
|
|
if (PlotColorBy::mats == pl.color_by_) {
|
2018-10-08 14:05:38 -05:00
|
|
|
// Assign color based on material
|
2019-02-27 08:23:43 -06:00
|
|
|
const auto& c = model::cells[p.coord_[j].cell];
|
2018-10-08 14:05:38 -05:00
|
|
|
if (c->type_ == FILL_UNIVERSE) {
|
|
|
|
|
// If we stopped on a middle universe level, treat as if not found
|
2018-10-30 19:58:34 -05:00
|
|
|
rgb = pl.not_found_;
|
2019-03-07 18:09:20 -06:00
|
|
|
id = NOT_FOUND;
|
2019-02-27 08:23:43 -06:00
|
|
|
} else if (p.material_ == MATERIAL_VOID) {
|
2018-10-08 14:05:38 -05:00
|
|
|
// By default, color void cells white
|
2018-10-29 09:47:49 -05:00
|
|
|
rgb = WHITE;
|
2019-03-07 18:09:20 -06:00
|
|
|
id = NOT_FOUND;
|
2018-10-08 14:05:38 -05:00
|
|
|
} else {
|
2019-02-27 08:23:43 -06:00
|
|
|
rgb = pl.colors_[p.material_];
|
|
|
|
|
id = model::materials[p.material_]->id_;
|
2018-10-08 14:05:38 -05:00
|
|
|
}
|
2018-10-30 20:04:24 -05:00
|
|
|
} else if (PlotColorBy::cells == pl.color_by_) {
|
2018-10-08 14:05:38 -05:00
|
|
|
// Assign color based on cell
|
2019-02-27 08:23:43 -06:00
|
|
|
rgb = pl.colors_[p.coord_[j].cell];
|
|
|
|
|
id = model::cells[p.coord_[j].cell]->id_;
|
2018-10-08 14:05:38 -05:00
|
|
|
}
|
|
|
|
|
} // endif found_cell
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-09 14:25:13 -05:00
|
|
|
// OUTPUT_PPM writes out a previously generated image to a PPM file
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-09 14:25:13 -05:00
|
|
|
|
2018-10-30 21:50:55 -05:00
|
|
|
void output_ppm(Plot pl, const ImageData& data)
|
2018-10-09 14:25:13 -05:00
|
|
|
{
|
|
|
|
|
// Open PPM file for writing
|
2018-10-30 19:58:34 -05:00
|
|
|
std::string fname = pl.path_plot_;
|
2018-10-09 15:15:41 -05:00
|
|
|
fname = strtrim(fname);
|
2018-10-09 16:14:21 -05:00
|
|
|
std::ofstream of;
|
2018-10-12 10:46:21 -05:00
|
|
|
|
2018-10-09 16:14:21 -05:00
|
|
|
of.open(fname);
|
2018-10-09 19:56:32 -05:00
|
|
|
|
2018-10-09 14:25:13 -05:00
|
|
|
// Write header
|
2018-10-30 20:13:36 -05:00
|
|
|
of << "P6" << "\n";
|
|
|
|
|
of << pl.pixels_[0] << " " << pl.pixels_[1] << "\n";
|
|
|
|
|
of << "255" << "\n";
|
2018-10-09 16:14:21 -05:00
|
|
|
of.close();
|
2018-10-09 14:25:13 -05:00
|
|
|
|
2018-10-09 16:14:21 -05:00
|
|
|
of.open(fname, std::ios::binary | std::ios::app);
|
2018-10-09 14:25:13 -05:00
|
|
|
// Write color for each pixel
|
2018-10-30 19:58:34 -05:00
|
|
|
for (int y = 0; y < pl.pixels_[1]; y++) {
|
|
|
|
|
for (int x = 0; x < pl.pixels_[0]; x++) {
|
2018-10-30 11:13:03 -05:00
|
|
|
RGBColor rgb = data(x,y);
|
2018-11-02 22:33:09 -05:00
|
|
|
of << rgb.red << rgb.green << rgb.blue;
|
2018-10-09 14:25:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
2018-11-02 22:33:09 -05:00
|
|
|
|
2018-10-09 14:25:13 -05:00
|
|
|
// Close file
|
2018-10-26 11:04:38 -05:00
|
|
|
// THIS IS HERE TO MATCH FORTRAN VERSION, NOT TECHNICALLY NECESSARY
|
2018-10-30 20:13:36 -05:00
|
|
|
of << "\n";
|
2018-10-09 14:25:13 -05:00
|
|
|
of.close();
|
|
|
|
|
}
|
2018-10-09 17:35:38 -05:00
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-09 17:35:38 -05:00
|
|
|
// DRAW_MESH_LINES draws mesh line boundaries on an image
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-09 17:35:38 -05:00
|
|
|
|
2018-10-30 21:50:55 -05:00
|
|
|
void draw_mesh_lines(Plot pl, ImageData& data)
|
2018-10-09 19:56:32 -05:00
|
|
|
{
|
2018-10-29 09:53:31 -05:00
|
|
|
RGBColor rgb;
|
2018-10-31 15:42:08 -05:00
|
|
|
rgb = pl.meshlines_color_;
|
2018-10-09 17:35:38 -05:00
|
|
|
|
|
|
|
|
int outer, inner;
|
2018-10-30 19:58:34 -05:00
|
|
|
switch(pl.basis_) {
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotBasis::xy :
|
2018-10-09 17:35:38 -05:00
|
|
|
outer = 0;
|
|
|
|
|
inner = 1;
|
|
|
|
|
break;
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotBasis::xz :
|
2018-10-09 17:35:38 -05:00
|
|
|
outer = 0;
|
|
|
|
|
inner = 2;
|
|
|
|
|
break;
|
2018-10-30 20:04:24 -05:00
|
|
|
case PlotBasis::yz :
|
2018-10-09 17:35:38 -05:00
|
|
|
outer = 1;
|
|
|
|
|
inner = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-01 14:46:21 -06:00
|
|
|
Position ll_plot {pl.origin_};
|
|
|
|
|
Position ur_plot {pl.origin_};
|
2018-10-09 17:35:38 -05:00
|
|
|
|
2019-03-01 14:46:21 -06:00
|
|
|
ll_plot[outer] -= pl.width_[0] / 2.;
|
|
|
|
|
ll_plot[inner] -= pl.width_[1] / 2.;
|
|
|
|
|
ur_plot[outer] += pl.width_[0] / 2.;
|
|
|
|
|
ur_plot[inner] += pl.width_[1] / 2.;
|
2018-11-02 23:08:51 -05:00
|
|
|
|
2019-03-01 14:46:21 -06:00
|
|
|
Position width = ur_plot - ll_plot;
|
2018-10-09 17:35:38 -05:00
|
|
|
|
2018-11-08 14:03:09 -06:00
|
|
|
auto& m = model::meshes[pl.index_meshlines_mesh_];
|
2018-10-09 17:35:38 -05:00
|
|
|
|
|
|
|
|
int ijk_ll[3], ijk_ur[3];
|
|
|
|
|
bool in_mesh;
|
2019-03-01 14:46:21 -06:00
|
|
|
m->get_indices(ll_plot, &(ijk_ll[0]), &in_mesh);
|
|
|
|
|
m->get_indices(ur_plot, &(ijk_ur[0]), &in_mesh);
|
2018-10-09 17:35:38 -05:00
|
|
|
|
2018-10-09 19:50:08 -05:00
|
|
|
// Fortran/C++ index correction
|
|
|
|
|
ijk_ur[0]++; ijk_ur[1]++; ijk_ur[2]++;
|
2018-10-09 19:56:32 -05:00
|
|
|
|
2019-03-01 14:46:21 -06:00
|
|
|
Position r_ll, r_ur;
|
2018-10-09 19:56:32 -05:00
|
|
|
// sweep through all meshbins on this plane and draw borders
|
2018-10-09 19:50:08 -05:00
|
|
|
for (int i = ijk_ll[outer]; i <= ijk_ur[outer]; i++) {
|
|
|
|
|
for (int j = ijk_ll[inner]; j <= ijk_ur[inner]; j++) {
|
2018-10-09 17:35:38 -05:00
|
|
|
// check if we're in the mesh for this ijk
|
|
|
|
|
if (i > 0 && i <= m->shape_[outer] && j >0 && j <= m->shape_[inner] ) {
|
2018-10-29 10:37:55 -05:00
|
|
|
int outrange[3], inrange[3];
|
2018-10-09 17:35:38 -05:00
|
|
|
// get xyz's of lower left and upper right of this mesh cell
|
2019-03-01 14:46:21 -06:00
|
|
|
r_ll[outer] = m->lower_left_[outer] + m->width_[outer] * (i - 1);
|
|
|
|
|
r_ll[inner] = m->lower_left_[inner] + m->width_[inner] * (j - 1);
|
|
|
|
|
r_ur[outer] = m->lower_left_[outer] + m->width_[outer] * i;
|
|
|
|
|
r_ur[inner] = m->lower_left_[inner] + m->width_[inner] * j;
|
2018-10-09 17:35:38 -05:00
|
|
|
|
|
|
|
|
// map the xyz ranges to pixel ranges
|
2019-03-01 14:46:21 -06:00
|
|
|
double frac = (r_ll[outer] - ll_plot[outer]) / width[outer];
|
2018-10-30 19:58:34 -05:00
|
|
|
outrange[0] = int(frac * double(pl.pixels_[0]));
|
2019-03-01 14:46:21 -06:00
|
|
|
frac = (r_ur[outer] - ll_plot[outer]) / width[outer];
|
2018-10-30 19:58:34 -05:00
|
|
|
outrange[1] = int(frac * double(pl.pixels_[0]));
|
2018-10-09 17:35:38 -05:00
|
|
|
|
2019-03-01 14:46:21 -06:00
|
|
|
frac = (r_ur[inner] - ll_plot[inner]) / width[inner];
|
2018-10-30 19:58:34 -05:00
|
|
|
inrange[0] = int((1. - frac) * (double)pl.pixels_[1]);
|
2019-03-01 14:46:21 -06:00
|
|
|
frac = (r_ll[inner] - ll_plot[inner]) / width[inner];
|
2018-10-30 19:58:34 -05:00
|
|
|
inrange[1] = int((1. - frac) * (double)pl.pixels_[1]);
|
2018-10-09 17:35:38 -05:00
|
|
|
|
|
|
|
|
// draw lines
|
2018-10-09 19:47:03 -05:00
|
|
|
for (int out_ = outrange[0]; out_ <= outrange[1]; out_++) {
|
2018-10-30 19:58:34 -05:00
|
|
|
for (int plus = 0; plus <= pl.meshlines_width_; plus++) {
|
2018-10-30 11:13:03 -05:00
|
|
|
data(out_, inrange[0] + plus) = rgb;
|
|
|
|
|
data(out_, inrange[1] + plus) = rgb;
|
|
|
|
|
data(out_, inrange[0] - plus) = rgb;
|
|
|
|
|
data(out_, inrange[1] - plus) = rgb;
|
2018-10-09 17:35:38 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-09 19:47:03 -05:00
|
|
|
for (int in_ = inrange[0]; in_ <= inrange[1]; in_++) {
|
2018-10-30 19:58:34 -05:00
|
|
|
for (int plus = 0; plus <= pl.meshlines_width_; plus++) {
|
2018-10-30 11:13:03 -05:00
|
|
|
data(outrange[0] + plus, in_) = rgb;
|
|
|
|
|
data(outrange[1] + plus, in_) = rgb;
|
|
|
|
|
data(outrange[0] - plus, in_) = rgb;
|
|
|
|
|
data(outrange[1] - plus, in_) = rgb;
|
2018-10-09 17:35:38 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // end if(in mesh)
|
|
|
|
|
}
|
|
|
|
|
} // end outer loops
|
2018-10-26 11:04:38 -05:00
|
|
|
} // end draw_mesh_lines
|
2018-10-09 19:56:32 -05:00
|
|
|
|
2018-10-29 10:01:52 -05:00
|
|
|
//==============================================================================
|
2018-10-09 21:19:41 -05:00
|
|
|
// CREATE_VOXEL outputs a binary file that can be input into silomesh for 3D
|
|
|
|
|
// geometry visualization. It works the same way as create_ppm by dragging a
|
2018-10-29 10:01:52 -05:00
|
|
|
// particle across the geometry for the specified number of voxels. The first 3
|
|
|
|
|
// int(4)'s in the binary are the number of x, y, and z voxels. The next 3
|
|
|
|
|
// real(8)'s are the widths of the voxels in the x, y, and z directions. The
|
|
|
|
|
// next 3 real(8)'s are the x, y, and z coordinates of the lower left
|
|
|
|
|
// point. Finally the binary is filled with entries of four int(4)'s each. Each
|
|
|
|
|
// 'row' in the binary contains four int(4)'s: 3 for x,y,z position and 1 for
|
|
|
|
|
// cell or material id. For 1 million voxels this produces a file of
|
|
|
|
|
// approximately 15MB.
|
|
|
|
|
// =============================================================================
|
2018-10-09 21:19:41 -05:00
|
|
|
|
2018-10-29 10:18:02 -05:00
|
|
|
void create_voxel(Plot pl)
|
2018-10-26 11:04:38 -05:00
|
|
|
{
|
2018-10-09 21:19:41 -05:00
|
|
|
|
|
|
|
|
// compute voxel widths in each direction
|
2018-10-30 22:02:53 -05:00
|
|
|
std::array<double, 3> vox;
|
2018-10-30 19:58:34 -05:00
|
|
|
vox[0] = pl.width_[0]/(double)pl.pixels_[0];
|
|
|
|
|
vox[1] = pl.width_[1]/(double)pl.pixels_[1];
|
|
|
|
|
vox[2] = pl.width_[2]/(double)pl.pixels_[2];
|
2018-10-09 21:19:41 -05:00
|
|
|
|
|
|
|
|
// initial particle position
|
2019-03-01 14:46:21 -06:00
|
|
|
Position ll = pl.origin_ - pl.width_ / 2.;
|
2018-10-09 21:19:41 -05:00
|
|
|
|
|
|
|
|
// allocate and initialize particle
|
2019-03-15 14:04:35 -05:00
|
|
|
Direction u {0.7071, 0.7071, 0.0};
|
2018-10-30 10:47:18 -05:00
|
|
|
Particle p;
|
2019-03-01 14:46:21 -06:00
|
|
|
p.r() = ll;
|
|
|
|
|
p.u() = u;
|
2019-02-27 08:23:43 -06:00
|
|
|
p.coord_[0].universe = model::root_universe;
|
2018-10-09 21:19:41 -05:00
|
|
|
|
|
|
|
|
// Open binary plot file for writing
|
|
|
|
|
std::ofstream of;
|
2018-10-30 19:58:34 -05:00
|
|
|
std::string fname = std::string(pl.path_plot_);
|
2018-10-09 21:19:41 -05:00
|
|
|
fname = strtrim(fname);
|
|
|
|
|
hid_t file_id = file_open(fname, 'w');
|
|
|
|
|
|
|
|
|
|
// write header info
|
2018-10-11 22:08:59 -05:00
|
|
|
write_attribute(file_id, "filetype", "voxel");
|
2018-10-09 21:19:41 -05:00
|
|
|
write_attribute(file_id, "version", VERSION_VOXEL);
|
|
|
|
|
write_attribute(file_id, "openmc_version", VERSION);
|
|
|
|
|
|
|
|
|
|
#ifdef GIT_SHA1
|
|
|
|
|
write_attribute(file_id, "git_sha1", GIT_SHA1);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Write current date and time
|
2018-10-11 22:08:59 -05:00
|
|
|
write_attribute(file_id, "date_and_time", time_stamp().c_str());
|
2018-10-09 21:19:41 -05:00
|
|
|
hsize_t three = 3;
|
2019-03-07 18:09:20 -06:00
|
|
|
write_attribute(file_id, "num_voxels", pl.pixels_);
|
2018-10-30 22:02:53 -05:00
|
|
|
write_attribute(file_id, "voxel_width", vox);
|
|
|
|
|
write_attribute(file_id, "lower_left", ll);
|
2018-10-09 21:19:41 -05:00
|
|
|
|
2018-10-09 22:10:38 -05:00
|
|
|
// Create dataset for voxel data -- note that the dimensions are reversed
|
|
|
|
|
// since we want the order in the file to be z, y, x
|
2018-10-09 21:19:41 -05:00
|
|
|
hsize_t dims[3];
|
2019-02-27 17:11:16 -06:00
|
|
|
dims[0] = pl.pixels_[2];
|
2018-10-30 19:58:34 -05:00
|
|
|
dims[1] = pl.pixels_[1];
|
2019-02-27 17:11:16 -06:00
|
|
|
dims[2] = pl.pixels_[0];
|
2018-10-09 21:19:41 -05:00
|
|
|
hid_t dspace, dset, memspace;
|
|
|
|
|
voxel_init(file_id, &(dims[0]), &dspace, &dset, &memspace);
|
2018-10-09 22:10:38 -05:00
|
|
|
|
|
|
|
|
// move to center of voxels
|
2019-03-01 14:46:21 -06:00
|
|
|
ll.x += vox[0] / 2.;
|
|
|
|
|
ll.y += vox[1] / 2.;
|
|
|
|
|
ll.z += vox[2] / 2.;
|
2018-10-09 21:19:41 -05:00
|
|
|
|
2019-02-27 17:11:16 -06:00
|
|
|
int data[pl.pixels_[1]][pl.pixels_[0]];
|
2018-10-09 22:24:59 -05:00
|
|
|
|
2018-10-29 18:02:00 -05:00
|
|
|
ProgressBar pb;
|
2018-10-30 10:47:18 -05:00
|
|
|
|
2018-10-29 09:47:49 -05:00
|
|
|
RGBColor rgb;
|
|
|
|
|
int id;
|
2019-02-27 17:11:16 -06:00
|
|
|
for (int z = 0; z < pl.pixels_[2]; z++) {
|
|
|
|
|
pb.set_value(100.*(double)z/(double)(pl.pixels_[2]-1));
|
2018-10-30 19:58:34 -05:00
|
|
|
for (int y = 0; y < pl.pixels_[1]; y++) {
|
2019-02-27 17:11:16 -06:00
|
|
|
for (int x = 0; x < pl.pixels_[0]; x++) {
|
2018-10-09 21:19:41 -05:00
|
|
|
// get voxel color
|
|
|
|
|
position_rgb(p, pl, rgb, id);
|
2018-10-09 22:10:38 -05:00
|
|
|
// write to plot data
|
2019-02-27 17:11:16 -06:00
|
|
|
data[y][x] = id;
|
|
|
|
|
// advance particle in x direction
|
2019-03-01 14:46:21 -06:00
|
|
|
p.r().x += vox[0];
|
2018-10-09 21:19:41 -05:00
|
|
|
}
|
|
|
|
|
// advance particle in y direction
|
2019-03-01 14:46:21 -06:00
|
|
|
p.r().y += vox[1];
|
|
|
|
|
p.r().x = ll[0];
|
2018-10-09 21:19:41 -05:00
|
|
|
}
|
2019-02-27 17:11:16 -06:00
|
|
|
// advance particle in z direction
|
2019-03-01 14:46:21 -06:00
|
|
|
p.r().z += vox[2];
|
|
|
|
|
p.r().y = ll[1];
|
|
|
|
|
p.r().x = ll[0];
|
2018-10-09 22:10:38 -05:00
|
|
|
// Write to HDF5 dataset
|
2019-02-27 17:11:16 -06:00
|
|
|
voxel_write_slice(z, dspace, dset, memspace, &(data[0]));
|
2018-10-09 21:19:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
voxel_finalize(dspace, dset, memspace);
|
|
|
|
|
file_close(file_id);
|
2018-10-09 22:24:59 -05:00
|
|
|
|
2018-10-09 21:19:41 -05:00
|
|
|
}
|
|
|
|
|
|
2018-04-24 22:42:04 -05:00
|
|
|
void
|
2018-10-26 11:04:38 -05:00
|
|
|
voxel_init(hid_t file_id, const hsize_t* dims,
|
|
|
|
|
hid_t* dspace, hid_t* dset, hid_t* memspace)
|
2018-04-24 22:42:04 -05:00
|
|
|
{
|
|
|
|
|
// Create dataspace/dataset for voxel data
|
|
|
|
|
*dspace = H5Screate_simple(3, dims, nullptr);
|
|
|
|
|
*dset = H5Dcreate(file_id, "data", H5T_NATIVE_INT, *dspace, H5P_DEFAULT,
|
|
|
|
|
H5P_DEFAULT, H5P_DEFAULT);
|
|
|
|
|
|
|
|
|
|
// Create dataspace for a slice of the voxel
|
|
|
|
|
hsize_t dims_slice[2] {dims[1], dims[2]};
|
|
|
|
|
*memspace = H5Screate_simple(2, dims_slice, nullptr);
|
|
|
|
|
|
|
|
|
|
// Select hyperslab in dataspace
|
|
|
|
|
hsize_t start[3] {0, 0, 0};
|
|
|
|
|
hsize_t count[3] {1, dims[1], dims[2]};
|
|
|
|
|
H5Sselect_hyperslab(*dspace, H5S_SELECT_SET, start, nullptr, count, nullptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
voxel_write_slice(int x, hid_t dspace, hid_t dset, hid_t memspace, void* buf)
|
|
|
|
|
{
|
2018-10-09 22:10:38 -05:00
|
|
|
hssize_t offset[3] {x, 0, 0};
|
2018-04-24 22:42:04 -05:00
|
|
|
H5Soffset_simple(dspace, offset);
|
|
|
|
|
H5Dwrite(dset, H5T_NATIVE_INT, memspace, dspace, H5P_DEFAULT, buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
voxel_finalize(hid_t dspace, hid_t dset, hid_t memspace)
|
|
|
|
|
{
|
|
|
|
|
H5Dclose(dset);
|
|
|
|
|
H5Sclose(dspace);
|
|
|
|
|
H5Sclose(memspace);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-02 22:07:51 -05:00
|
|
|
RGBColor random_color() {
|
2018-11-02 23:08:51 -05:00
|
|
|
return {int(prn()*255), int(prn()*255), int(prn()*255)};
|
2018-10-31 15:42:08 -05:00
|
|
|
}
|
|
|
|
|
|
2019-03-15 09:31:59 -05:00
|
|
|
extern "C" int openmc_id_map(const void* plot, int32_t* data_out)
|
|
|
|
|
{
|
2019-02-26 11:10:19 -06:00
|
|
|
|
2019-03-12 11:39:04 -05:00
|
|
|
auto plt = reinterpret_cast<const PlotBase*>(plot);
|
2019-03-08 09:23:33 -06:00
|
|
|
if (!plt) {
|
2019-03-07 18:09:20 -06:00
|
|
|
set_errmsg("Invalid slice pointer passed to openmc_id_map");
|
|
|
|
|
return OPENMC_E_INVALID_ARGUMENT;
|
|
|
|
|
}
|
2019-02-26 11:10:19 -06:00
|
|
|
|
2019-03-11 10:14:17 -05:00
|
|
|
auto ids = plt->get_id_map();
|
2019-02-26 11:10:19 -06:00
|
|
|
|
2019-03-07 18:09:20 -06:00
|
|
|
// write id data to array
|
2019-03-11 10:14:17 -05:00
|
|
|
std::copy(ids.begin(), ids.end(), data_out);
|
2019-02-26 11:10:19 -06:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-24 22:42:04 -05:00
|
|
|
} // namespace openmc
|