OpenMC/src/plot.cpp

1024 lines
30 KiB
C++
Raw Normal View History

2018-10-09 14:25:13 -05:00
#include <fstream>
#include "openmc/plot.h"
#include "openmc/constants.h"
#include "openmc/settings.h"
#include "openmc/error.h"
2018-10-08 13:34:23 -05:00
#include "openmc/particle.h"
#include "openmc/geometry.h"
2018-10-08 14:05:38 -05:00
#include "openmc/cell.h"
#include "openmc/material.h"
#include "openmc/string_functions.h"
2018-10-09 17:35:38 -05:00
#include "openmc/mesh.h"
2018-10-09 21:19:41 -05:00
#include "openmc/output.h"
#include "openmc/hdf5_interface.h"
#include "openmc/random_lcg.h"
2018-10-12 16:16:38 -05:00
#include "openmc/output.h"
2018-10-29 18:02:00 -05:00
#include "openmc/progress_bar.h"
namespace openmc {
//==============================================================================
// Global variables
//==============================================================================
int PLOT_LEVEL_LOWEST = -1;
std::map<int, int> plot_map;
int n_plots;
std::vector<Plot> plots;
2018-10-29 09:47:49 -05:00
const RGBColor WHITE = {255, 255, 255};
const RGBColor NULLRGB = {0, 0, 0};
2018-10-08 14:05:38 -05:00
//==============================================================================
2018-10-08 13:34:23 -05:00
// RUN_PLOT controls the logic for making one or many plots
//==============================================================================
extern "C"
int openmc_plot_geometry()
{
2018-10-08 13:34:23 -05:00
int err;
for (auto pl : plots) {
2018-10-08 13:34:23 -05:00
std::stringstream ss;
ss << "Processing plot " << pl.id << ": "
<< pl.path_plot << "...";
write_message(ss.str(), 5);
if (plot_type::slice == pl.type) {
// create 2D image
create_ppm(pl);
} else if (plot_type::voxel == pl.type) {
// create voxel file for 3D viewing
create_voxel(pl);
}
2018-10-08 13:34:23 -05:00
}
return 0;
}
void
read_plots(pugi::xml_node* plots_node)
{
std::vector<pugi::xml_node> plot_nodes;
plot_nodes = get_child_nodes(*plots_node, "plot");
n_plots = plot_nodes.size();
2018-10-29 10:29:41 -05:00
for (int i = 0; i < plot_nodes.size(); i++) {
Plot pl(plot_nodes[i]);
plots.push_back(pl);
plot_map[pl.id] = i;
}
}
//==============================================================================
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-08 13:34:23 -05:00
void create_ppm(Plot pl)
{
2018-10-08 13:34:23 -05:00
size_t width = pl.pixels[0];
size_t height = pl.pixels[1];
2018-10-08 13:34:23 -05:00
double in_pixel = (pl.width[0])/double(width);
double out_pixel = (pl.width[1])/double(height);
2018-10-08 13:34:23 -05:00
ImageData data;
data.resize({width, height});
2018-10-08 13:34:23 -05:00
int in_i, out_i;
double xyz[3];
switch(pl.basis) {
case plot_basis::xy :
2018-10-08 13:34:23 -05:00
in_i = 0;
out_i = 1;
2018-10-30 10:51:38 -05:00
xyz[0] = pl.origin[0] - pl.width[0] / 2.;
xyz[1] = pl.origin[1] + pl.width[1] / 2.;
xyz[2] = pl.origin[2];
break;
case plot_basis::xz :
2018-10-08 13:34:23 -05:00
in_i = 0;
out_i = 2;
2018-10-30 10:51:38 -05:00
xyz[0] = pl.origin[0] - pl.width[0] / 2.;
xyz[1] = pl.origin[1];
2018-10-30 10:51:38 -05:00
xyz[2] = pl.origin[2] + pl.width[1] / 2.;
break;
case plot_basis::yz :
2018-10-08 13:34:23 -05:00
in_i = 1;
out_i = 2;
xyz[0] = pl.origin[0];
2018-10-30 10:51:38 -05:00
xyz[1] = pl.origin[1] - pl.width[0] / 2.;
xyz[2] = pl.origin[2] + pl.width[1] / 2.;
break;
2018-10-08 13:34:23 -05:00
}
2018-10-30 10:51:38 -05:00
double dir[3] = {0.5, 0.5, 0.5};
2018-10-29 15:28:26 -05:00
#pragma omp parallel
{
Particle p;
p.initialize();
std::copy(xyz, xyz+3, p.coord[0].xyz);
std::copy(dir, dir+3, p.coord[0].uvw);
p.coord[0].universe = openmc_root_universe;
2018-10-08 13:34:23 -05:00
#pragma omp for
2018-10-09 14:03:42 -05:00
for (int y = 0; y < height; y++) {
p.coord[0].xyz[out_i] = xyz[out_i] - out_pixel * y;
2018-10-09 14:03:42 -05:00
for (int x = 0; x < width; x++) {
// local variables
RGBColor rgb;
int id;
p.coord[0].xyz[in_i] = xyz[in_i] + in_pixel * x;
position_rgb(p, pl, rgb, id);
data(x,y)[RED] = rgb[RED];
data(x,y)[GREEN] = rgb[GREEN];
data(x,y)[BLUE] = rgb[BLUE];
2018-10-08 13:34:23 -05:00
}
}
2018-10-29 15:28:26 -05:00
}
// draw mesh lines if present
if (pl.index_meshlines_mesh >= 0) {draw_mesh_lines(pl, data);}
// write ppm data to file
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)
{
// Copy data into plots
2018-10-29 10:35:22 -05:00
if (check_for_node(plot_node, "id")) {
id = std::stoi(get_node_value(plot_node, "id"));
} else {
fatal_error("Must specify plot id in plots XML file.");
}
// Check to make sure 'id' hasn't been used
if (plot_map.find(id) != plot_map.end()) {
std::stringstream err_msg;
err_msg << "Two or more plots use the same unique ID: " << id;
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)
{
// Copy plot type
// Default is slice
type = plot_type::slice;
// 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);
// set type using node value
if (type_str == "slice") {
type = plot_type::slice;
return;
}
else if (type_str == "voxel") {
type = plot_type::voxel;
return;
}
// if we're here, something is wrong
std::stringstream err_msg;
err_msg << "Unsupported plot type '" << type_str
<< "' in plot " << id;
fatal_error(err_msg.str());
}
2018-10-23 14:51:02 -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)
{
// Set output file path
std::stringstream filename;
filename << "plot_" << id;
2018-10-29 10:35:22 -05:00
if (check_for_node(plot_node, "filename")) {
filename << get_node_value(plot_node, "filename");
}
2018-10-29 15:06:27 -05:00
// add appropriate file extension to name
switch(type) {
case plot_type::slice:
filename << ".ppm";
break;
case plot_type::voxel:
filename << ".h5";
break;
}
path_plot = filename.str();
// Copy plot pixel size
std::vector<int> pxls;
if (plot_type::slice == type) {
2018-10-29 10:35:22 -05:00
if (node_word_count(plot_node, "pixels") == 2) {
pxls = get_node_array<int>(plot_node, "pixels");
pixels[0] = pxls[0];
pixels[1] = pxls[1];
} else {
std::stringstream err_msg;
err_msg << "<pixels> must be length 2 in slice plot "
<< id;
fatal_error(err_msg.str());
}
} else if (plot_type::voxel == type) {
2018-10-29 10:35:22 -05:00
if (node_word_count(plot_node, "pixels") == 3) {
pxls = get_node_array<int>(plot_node, "pixels");
pixels[0] = pxls[0];
pixels[1] = pxls[1];
pixels[2] = pxls[2];
} else {
std::stringstream err_msg;
err_msg << "<pixels> must be length 3 in voxel plot "
<< id;
fatal_error(err_msg.str());
}
}
2018-10-23 14:51:02 -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)
{
// Copy plot background color
std::vector<int> bg_rgb;
2018-10-29 10:35:22 -05:00
if (check_for_node(plot_node, "background")) {
if (plot_type::voxel == type) {
if (openmc_master) {
std::stringstream err_msg;
err_msg << "Background color ignored in voxel plot "
<< id;
warning(err_msg.str());
}
}
2018-10-29 10:35:22 -05:00
if (node_word_count(plot_node, "background") == 3) {
bg_rgb = get_node_array<int>(plot_node, "background");
2018-10-29 09:47:49 -05:00
not_found[RED] = bg_rgb[RED];
not_found[GREEN] = bg_rgb[GREEN];
not_found[BLUE] = bg_rgb[BLUE];
} else {
std::stringstream err_msg;
err_msg << "Bad background RGB in plot "
<< id;
fatal_error(err_msg);
}
} else {
// default to a white background
2018-10-29 09:47:49 -05:00
not_found[RED] = 255;
not_found[GREEN] = 255;
not_found[BLUE] = 255;
}
2018-10-23 14:51:02 -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)
{
// Copy plot basis
if (plot_type::slice == type) {
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);
}
if ("xy" == pl_basis) {
basis = plot_basis::xy;
} else if ("xz" == pl_basis) {
basis = plot_basis::xz;
} else if ("yz" == pl_basis) {
basis = plot_basis::yz;
} else {
std::stringstream err_msg;
err_msg << "Unsupported plot basis '" << pl_basis
<< "' in plot " << id;
fatal_error(err_msg);
}
}
}
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)
{
// Copy plotting origin
std::vector<double> pl_origin;
2018-10-29 10:35:22 -05:00
if (node_word_count(plot_node, "origin") == 3) {
pl_origin = get_node_array<double>(plot_node, "origin");
origin[0] = pl_origin[0];
origin[1] = pl_origin[1];
origin[2] = pl_origin[2];
} else {
std::stringstream err_msg;
err_msg << "Origin must be length 3 in plot "
<< id;
fatal_error(err_msg);
}
2018-10-23 14:51:02 -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)
{
// Copy plotting width
std::vector<double> pl_width;
if (plot_type::slice == type) {
2018-10-29 10:35:22 -05:00
if (node_word_count(plot_node, "width") == 2) {
pl_width = get_node_array<double>(plot_node, "width");
width[0] = pl_width[0];
width[1] = pl_width[1];
} else {
std::stringstream err_msg;
err_msg << "<width> must be length 2 in slice plot "
<< id;
fatal_error(err_msg);
}
} else if (plot_type::voxel == type) {
2018-10-29 10:35:22 -05:00
if (node_word_count(plot_node, "width") == 3) {
pl_width = get_node_array<double>(plot_node, "width");
width[0] = pl_width[0];
width[1] = pl_width[1];
width[2] = pl_width[2];
} else {
std::stringstream err_msg;
err_msg << "<width> must be length 3 in voxel plot "
<< id;
fatal_error(err_msg);
}
}
2018-10-23 14:51:02 -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)
{
// Copy plot universe level
2018-10-29 10:35:22 -05:00
if (check_for_node(plot_node, "level")) {
level = std::stoi(get_node_value(plot_node, "level"));
if (level < 0) {
std::stringstream err_msg;
err_msg << "Bad universe level in plot " << id ;
fatal_error(err_msg);
}
} else {
level = PLOT_LEVEL_LOWEST;
}
}
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)
{
// 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);
}
if ("cell" == pl_color_by) {
color_by = plot_color_by::cells;
2018-10-29 09:47:49 -05:00
colors.resize(n_cells);
2018-10-29 10:29:41 -05:00
for (int i = 0; i < n_cells; i++) {
2018-10-29 09:47:49 -05:00
colors[i][RED] = int(prn()*255);
colors[i][GREEN] = int(prn()*255);
colors[i][BLUE] = int(prn()*255);
}
} else if("material" == pl_color_by) {
color_by = plot_color_by::mats;
2018-10-29 09:47:49 -05:00
colors.resize(n_materials);
2018-10-29 10:29:41 -05:00
for (int i = 0; i < materials.size(); i++) {
2018-10-29 09:47:49 -05:00
colors[i][RED] = int(prn()*255);
colors[i][GREEN] = int(prn()*255);
colors[i][BLUE] = int(prn()*255);
}
} else {
std::stringstream err_msg;
err_msg << "Unsupported plot color type '" << pl_color_by
<< "' in plot " << id;
fatal_error(err_msg);
}
2018-10-23 14:51:02 -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)
{
// Get the number of <color> nodes and get a list of them
std::vector<pugi::xml_node> color_nodes;
2018-10-29 10:35:22 -05:00
color_nodes = get_child_nodes(plot_node, "color");
// Copy user-specified colors
if (color_nodes.size() != 0) {
if (plot_type::voxel == type) {
if (openmc_master) {
std::stringstream err_msg;
err_msg << "Color specifications ignored in voxel plot "
<< id;
warning(err_msg);
}
}
2018-10-29 10:29:41 -05:00
for (auto cn : color_nodes) {
2018-10-10 18:00:57 -05:00
// Check and make sure 3 values are specified for RGB
if (node_word_count(cn, "rgb") != 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 (plot_color_by::cells == color_by) {
2018-10-10 18:00:57 -05:00
std::vector<int> cell_rgb;
if (cell_map.find(col_id) != cell_map.end()) {
col_id = cell_map[col_id];
cell_rgb = get_node_array<int>(cn, "rgb");
2018-10-29 09:47:49 -05:00
colors[col_id][RED] = cell_rgb[RED];
colors[col_id][GREEN] = cell_rgb[GREEN];
colors[col_id][BLUE] = cell_rgb[BLUE];
2018-10-10 18:00:57 -05:00
} else {
std::stringstream err_msg;
err_msg << "Could not find cell " << col_id
<< " specified in plot " << id;
fatal_error(err_msg);
}
} else if (plot_color_by::mats == color_by) {
2018-10-10 18:00:57 -05:00
std::vector<int> mat_rgb;
if (material_map.find(col_id) != material_map.end()) {
col_id = material_map[col_id];
mat_rgb = get_node_array<int>(cn, "rgb");
2018-10-29 09:47:49 -05:00
colors[col_id][RED] = mat_rgb[RED];
colors[col_id][GREEN] = mat_rgb[GREEN];
colors[col_id][BLUE] = mat_rgb[BLUE];
2018-10-10 18:00:57 -05:00
} else {
std::stringstream err_msg;
err_msg << "Could not find material " << col_id
<< " specified in plot " << id;
2018-10-10 18:00:57 -05:00
fatal_error(err_msg);
}
}
} // color node loop
}
2018-10-23 14:51:02 -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)
{
// Deal with meshlines
2018-10-10 18:00:57 -05:00
std::vector<pugi::xml_node> mesh_line_nodes;
2018-10-29 10:35:22 -05:00
mesh_line_nodes = get_child_nodes(plot_node, "meshlines");
2018-10-10 18:00:57 -05:00
int n_meshlines = mesh_line_nodes.size();
if (n_meshlines != 0) {
if (plot_type::voxel == type) {
2018-10-10 18:00:57 -05:00
std::stringstream msg;
msg << "Meshlines ignored in voxel plot " << id;
warning(msg);
}
2018-10-10 18:00:57 -05:00
if (1 == n_meshlines) {
2018-10-10 18:00:57 -05:00
// Get first meshline node
pugi::xml_node meshlines_node = mesh_line_nodes[0];
2018-10-10 18:00:57 -05:00
// Check mesh type
std::string meshtype;
if (check_for_node(meshlines_node, "meshtype")) {
meshtype = get_node_value(meshlines_node, "meshtype");
} else {
std::stringstream err_msg;
err_msg << "Must specify a meshtype for meshlines specification in plot " << id;
fatal_error(err_msg);
}
// 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");
meshlines_width = std::stoi(meshline_width);
2018-10-10 18:00:57 -05:00
} else {
std::stringstream err_msg;
err_msg << "Must specify a linewidth for meshlines specification in plot " << id;
fatal_error(err_msg);
}
// Check for color
std::vector<int> ml_rgb;
if (check_for_node(meshlines_node, "color")) {
// Check and make sure 3 values are specified for RGB
if (node_word_count(meshlines_node, "color") != 3) {
std::stringstream err_msg;
err_msg << "Bad RGB for meshlines color in plot " << id;
fatal_error(err_msg);
}
ml_rgb = get_node_array<int>(meshlines_node, "color");
2018-10-29 09:47:49 -05:00
meshlines_color[0] = ml_rgb[0];
meshlines_color[1] = ml_rgb[1];
meshlines_color[2] = ml_rgb[2];
2018-10-10 18:00:57 -05:00
} else {
2018-10-29 09:47:49 -05:00
meshlines_color[0] = 0;
meshlines_color[1] = 0;
meshlines_color[2] = 0;
2018-10-10 18:00:57 -05:00
}
// Set mesh based on type
if ("ufs" == meshtype) {
if (settings::index_ufs_mesh < 0) {
std::stringstream err_msg;
err_msg << "No UFS mesh for meshlines on plot " << id;
fatal_error(err_msg);
} else {
index_meshlines_mesh = settings::index_ufs_mesh;
}
} else if ("cmfd" == meshtype) {
if (!settings::cmfd_run) {
std::stringstream err_msg;
err_msg << "Need CMFD run to plot CMFD mesh for meshlines on plot " << id;
fatal_error(err_msg);
} else {
index_meshlines_mesh = settings::index_cmfd_mesh;
}
} else if ("entropy" == meshtype) {
if (settings::index_entropy_mesh < 0) {
std::stringstream err_msg;
err_msg <<"No entropy mesh for meshlines on plot " << id;
fatal_error(err_msg);
} else {
index_meshlines_mesh = settings::index_entropy_mesh;
}
} 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")) {
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 "
<< "mesh specification in plot " << id;
fatal_error(err_msg);
}
// find the tally index
int idx;
int err = openmc_get_mesh_index(tally_mesh_id, &idx);
if (err != 0) {
std::stringstream err_msg;
err_msg << "Could not find mesh " << tally_mesh_id
<< " specified in meshlines for plot " << id;
fatal_error(err_msg);
}
index_meshlines_mesh = idx;
} else {
std::stringstream err_msg;
err_msg << "Invalid type for meshlines on plot " << id ;
fatal_error(err_msg);
}
} else {
std::stringstream err_msg;
err_msg << "Mutliple meshlines specified in plot " << id;
fatal_error(err_msg);
}
}
2018-10-23 14:51:02 -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)
{
// Deal with masks
std::vector<pugi::xml_node> mask_nodes;
2018-10-29 10:35:22 -05:00
mask_nodes = get_child_nodes(plot_node, "mask");
int n_masks = mask_nodes.size();
if (n_masks > 0) {
if (plot_type::voxel == type) {
if (openmc_master) {
std::stringstream wrn_msg;
wrn_msg << "Mask ignored in voxel plot " << id;
warning(wrn_msg);
}
}
if (1 == n_masks) {
// Get pointer to mask
pugi::xml_node mask_node = mask_nodes[0];
// Determine how many components there are and allocate
int n_comp;
n_comp = node_word_count(mask_node, "components");
if (0 == n_comp) {
std::stringstream err_msg;
err_msg << "Missing <components> in mask of plot " << id;
fatal_error(err_msg);
}
std::vector<int> iarray = get_node_array<int>(mask_node, "components");
// First we need to change the user-specified identifiers to indices
// in the cell and material arrays
int col_id;
for (int j = 0; j < iarray.size(); j++) {
col_id = iarray[j];
if (plot_color_by::cells == color_by) {
if (cell_map.find(col_id) != cell_map.end()) {
iarray[j] = cell_map[col_id];
}
else {
std::stringstream err_msg;
err_msg << "Could not find cell " << col_id
<< " specified in the mask in plot " << id;
fatal_error(err_msg);
}
} else if (plot_color_by::mats == color_by) {
if (material_map.find(col_id) != material_map.end()) {
iarray[j] = material_map[col_id];
}
else {
std::stringstream err_msg;
err_msg << "Could not find material " << col_id
<< " specified in the mask in plot " << id;
fatal_error(err_msg);
}
}
}
// Alter colors based on mask information
2018-10-29 10:29:41 -05:00
for (int j = 0; j < colors.size(); j++) {
if (std::find(iarray.begin(), iarray.end(), j) == iarray.end()) {
if (check_for_node(mask_node, "background")) {
std::vector<int> bg_rgb = get_node_array<int>(mask_node, "background");
2018-10-29 09:47:49 -05:00
colors[j][RED] = bg_rgb[RED];
colors[j][GREEN] = bg_rgb[GREEN];
colors[j][BLUE] = bg_rgb[BLUE];
} else {
2018-10-29 09:47:49 -05:00
colors[j][RED] = 255;
colors[j][GREEN] = 255;
colors[j][BLUE] = 255;
}
}
}
} else {
std::stringstream err_msg;
err_msg << "Mutliple masks specified in plot " << id;
fatal_error(err_msg);
}
}
2018-10-23 14:51:02 -05:00
}
Plot::Plot(pugi::xml_node plot_node):
index_meshlines_mesh(-1)
{
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);
} // End Plot constructor
//==============================================================================
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-08 14:05:38 -05:00
void position_rgb(Particle p, Plot pl, RGBColor &rgb, int &id)
{
p.n_coord = 1;
2018-10-08 14:05:38 -05:00
bool found_cell = find_cell(&p, 0);
2018-10-08 14:05:38 -05:00
int j = p.n_coord - 1;
2018-10-08 14:05:38 -05:00
if (settings::check_overlaps) {check_cell_overlap(&p);}
2018-10-08 14:05:38 -05:00
// Set coordinate level if specified
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
rgb = pl.not_found;
2018-10-08 14:05:38 -05:00
id = -1;
} else {
if (plot_color_by::mats == pl.color_by) {
2018-10-08 14:05:38 -05:00
// Assign color based on material
Cell* c = 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
rgb = pl.not_found;
2018-10-08 14:05:38 -05:00
id = -1;
} 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;
2018-10-08 14:05:38 -05:00
id = -1;
} else {
rgb = pl.colors[p.material - 1];
id = materials[p.material - 1]->id_;
2018-10-08 14:05:38 -05:00
}
} else if (plot_color_by::cells == pl.color_by) {
2018-10-08 14:05:38 -05:00
// Assign color based on cell
rgb = pl.colors[p.coord[j].cell];
id = cells[p.coord[j].cell]->id_;
2018-10-08 14:05:38 -05:00
} else {
2018-10-29 09:47:49 -05:00
rgb = NULLRGB;
2018-10-08 14:05:38 -05:00
id = -1;
}
} // endif found_cell
}
//==============================================================================
2018-10-09 14:25:13 -05:00
// OUTPUT_PPM writes out a previously generated image to a PPM file
//==============================================================================
2018-10-09 14:25:13 -05:00
void output_ppm(Plot pl, const ImageData &data)
2018-10-09 14:25:13 -05:00
{
// Open PPM file for writing
std::string fname = pl.path_plot;
fname = strtrim(fname);
std::ofstream of;
of.open(fname);
2018-10-09 14:25:13 -05:00
// Write header
of << "P6" << std::endl;
of << pl.pixels[0] << " " << pl.pixels[1] << std::endl;
2018-10-09 14:25:13 -05:00
of << "255" << std::endl;
of.close();
2018-10-09 14:25:13 -05:00
of.open(fname, std::ios::binary | std::ios::app);
2018-10-09 14:25:13 -05:00
// Write color for each pixel
for (int y = 0; y < pl.pixels[1]; y++) {
for (int x = 0; x < pl.pixels[0]; x++) {
RGBColor rgb = data(x,y);
2018-10-09 20:35:58 -05:00
of.write((char*)&rgb[RED], 1);
of.write((char*)&rgb[GREEN], 1);
of.write((char*)&rgb[BLUE], 1);
2018-10-09 14:25:13 -05:00
}
}
// Close file
// THIS IS HERE TO MATCH FORTRAN VERSION, NOT TECHNICALLY NECESSARY
of << std::endl;
2018-10-09 14:25:13 -05:00
of.close();
}
2018-10-09 17:35:38 -05:00
//==============================================================================
2018-10-09 17:35:38 -05:00
// DRAW_MESH_LINES draws mesh line boundaries on an image
//==============================================================================
2018-10-09 17:35:38 -05:00
void draw_mesh_lines(Plot pl, ImageData &data)
{
RGBColor rgb;
rgb[RED] = pl.meshlines_color[RED];
rgb[GREEN] = pl.meshlines_color[GREEN];
rgb[BLUE] = pl.meshlines_color[BLUE];
2018-10-09 17:35:38 -05:00
int outer, inner;
switch(pl.basis) {
case plot_basis::xy :
2018-10-09 17:35:38 -05:00
outer = 0;
inner = 1;
break;
case plot_basis::xz :
2018-10-09 17:35:38 -05:00
outer = 0;
inner = 2;
break;
case plot_basis::yz :
2018-10-09 17:35:38 -05:00
outer = 1;
inner = 2;
break;
}
double xyz_ll_plot[3], xyz_ur_plot[3];
std::copy((double*)&pl.origin, (double*)&pl.origin + 3, xyz_ll_plot);
std::copy((double*)&pl.origin, (double*)&pl.origin + 3, xyz_ur_plot);
2018-10-09 17:35:38 -05:00
2018-10-30 10:51:38 -05:00
xyz_ll_plot[outer] = pl.origin[outer] - pl.width[0] / 2.;
xyz_ll_plot[inner] = pl.origin[inner] - pl.width[1] / 2.;
xyz_ur_plot[outer] = pl.origin[outer] + pl.width[0] / 2.;
xyz_ur_plot[inner] = pl.origin[inner] + pl.width[1] / 2.;
2018-10-09 17:35:38 -05:00
int width[3];
width[0] = xyz_ur_plot[0] - xyz_ll_plot[0];
width[1] = xyz_ur_plot[1] - xyz_ll_plot[1];
width[2] = xyz_ur_plot[2] - xyz_ll_plot[2];
auto &m = meshes[pl.index_meshlines_mesh];
2018-10-09 17:35:38 -05:00
int ijk_ll[3], ijk_ur[3];
bool in_mesh;
m->get_indices(Position(xyz_ll_plot), &(ijk_ll[0]), &in_mesh);
m->get_indices(Position(xyz_ur_plot), &(ijk_ur[0]), &in_mesh);
2018-10-09 19:50:08 -05:00
// Fortran/C++ index correction
ijk_ur[0]++; ijk_ur[1]++; ijk_ur[2]++;
2018-10-09 17:35:38 -05:00
double xyz_ll[3], xyz_ur[3];
// 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
xyz_ll[outer] = m->lower_left_[outer] + m->width_[outer] * (i - 1);
xyz_ll[inner] = m->lower_left_[inner] + m->width_[inner] * (j - 1);
xyz_ur[outer] = m->lower_left_[outer] + m->width_[outer] * i;
xyz_ur[inner] = m->lower_left_[inner] + m->width_[inner] * j;
// map the xyz ranges to pixel ranges
2018-10-29 10:37:55 -05:00
double frac = (xyz_ll[outer] - xyz_ll_plot[outer]) / width[outer];
outrange[0] = int(frac * double(pl.pixels[0]));
2018-10-09 17:35:38 -05:00
frac = (xyz_ur[outer] - xyz_ll_plot[outer]) / width[outer];
outrange[1] = int(frac * double(pl.pixels[0]));
2018-10-09 17:35:38 -05:00
frac = (xyz_ur[inner] - xyz_ll_plot[inner]) / width[inner];
2018-10-30 10:51:38 -05:00
inrange[0] = int((1. - frac) * (double)pl.pixels[1]);
2018-10-09 17:35:38 -05:00
frac = (xyz_ll[inner] - xyz_ll_plot[inner]) / width[inner];
2018-10-30 10:51:38 -05:00
inrange[1] = int((1. - frac) * (double)pl.pixels[1]);
2018-10-09 17:35:38 -05:00
// draw lines
for (int out_ = outrange[0]; out_ <= outrange[1]; out_++) {
for (int plus = 0; plus <= pl.meshlines_width; plus++) {
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
}
}
for (int in_ = inrange[0]; in_ <= inrange[1]; in_++) {
for (int plus = 0; plus <= pl.meshlines_width; plus++) {
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
} // end draw_mesh_lines
//==============================================================================
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
// 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
void create_voxel(Plot pl)
{
2018-10-09 21:19:41 -05:00
// compute voxel widths in each direction
double vox[3];
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
double ll[3];
2018-10-30 10:51:38 -05:00
ll[0] = pl.origin[0] - pl.width[0] / 2.;
ll[1] = pl.origin[1] - pl.width[1] / 2.;
ll[2] = pl.origin[2] - pl.width[2] / 2.;
2018-10-09 21:19:41 -05:00
// allocate and initialize particle
2018-10-30 10:51:38 -05:00
double dir[3] = {0.5, 0.5, 0.5};
Particle p;
p.initialize();
std::copy(ll, ll + 3, p.coord[0].xyz);
std::copy(dir, dir + 3, p.coord[0].uvw);
p.coord[0].universe = openmc_root_universe;
2018-10-09 21:19:41 -05:00
// Open binary plot file for writing
std::ofstream of;
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
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
write_attribute(file_id, "date_and_time", time_stamp().c_str());
2018-10-09 21:19:41 -05:00
hsize_t three = 3;
write_attr_int(file_id, 1, &three, "num_voxels", pl.pixels);
2018-10-09 21:19:41 -05:00
write_attr_double(file_id, 1, &three, "voxel_width", vox);
write_attr_double(file_id, 1, &three, "lower_left", ll);
// 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];
dims[0] = pl.pixels[0];
dims[1] = pl.pixels[1];
dims[2] = pl.pixels[2];
2018-10-09 21:19:41 -05:00
hid_t dspace, dset, memspace;
voxel_init(file_id, &(dims[0]), &dspace, &dset, &memspace);
// move to center of voxels
2018-10-30 10:51:38 -05:00
ll[0] = ll[0] + vox[0] / 2.;
ll[1] = ll[1] + vox[1] / 2.;
ll[2] = ll[2] + vox[2] / 2.;
2018-10-09 21:19:41 -05:00
int data[pl.pixels[1]][pl.pixels[2]];
2018-10-29 18:02:00 -05:00
ProgressBar pb;
2018-10-29 09:47:49 -05:00
RGBColor rgb;
int id;
for (int x = 0; x < pl.pixels[0]; x++) {
// TODO: progress bar here
2018-10-29 18:02:00 -05:00
pb.set_value(((double)x/(double)pl.pixels[0])*100);
for (int y = 0; y < pl.pixels[1]; y++) {
2018-10-29 10:29:41 -05:00
for (int z = 0; z < pl.pixels[2]; z++) {
2018-10-09 21:19:41 -05:00
// get voxel color
position_rgb(p, pl, rgb, id);
// write to plot data
data[y][z] = id;
2018-10-09 21:19:41 -05:00
// advance particle in z direction
p.coord[0].xyz[2] = p.coord[0].xyz[2] + vox[2];
2018-10-09 21:19:41 -05:00
}
// advance particle in y direction
p.coord[0].xyz[1] = p.coord[0].xyz[1] + vox[1];
p.coord[0].xyz[2] = ll[2];
2018-10-09 21:19:41 -05:00
}
// advance particle in x direction
p.coord[0].xyz[0] = p.coord[0].xyz[0] + vox[0];
p.coord[0].xyz[1] = ll[1];
p.coord[0].xyz[2] = ll[2];
// Write to HDF5 dataset
voxel_write_slice(x, 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 21:19:41 -05:00
}
void
voxel_init(hid_t file_id, const hsize_t* dims,
hid_t* dspace, hid_t* dset, hid_t* memspace)
{
// 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)
{
hssize_t offset[3] {x, 0, 0};
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);
}
} // namespace openmc