2018-10-09 14:25:13 -05:00
|
|
|
#include <fstream>
|
2018-10-09 15:15:41 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2018-10-09 14:25:13 -05:00
|
|
|
|
2018-08-20 14:40:32 -05:00
|
|
|
#include "openmc/plot.h"
|
2018-10-07 19:55:45 -05:00
|
|
|
#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"
|
2018-10-09 15:15:41 -05:00
|
|
|
#include "openmc/string_functions.h"
|
2018-04-24 22:42:04 -05:00
|
|
|
|
|
|
|
|
namespace openmc {
|
|
|
|
|
|
2018-10-07 19:55:45 -05:00
|
|
|
const int RED = 1;
|
|
|
|
|
const int GREEN = 2;
|
|
|
|
|
const int BLUE = 3;
|
|
|
|
|
|
2018-10-08 14:05:38 -05:00
|
|
|
const int WHITE[3] = {255, 255, 255};
|
|
|
|
|
const int NULLRGB[3] = {0, 0, 0};
|
|
|
|
|
|
2018-10-08 13:34:23 -05:00
|
|
|
//===============================================================================
|
|
|
|
|
// RUN_PLOT controls the logic for making one or many plots
|
|
|
|
|
//===============================================================================
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-08 13:34:23 -05:00
|
|
|
int openmc_plot_geometry() {
|
|
|
|
|
int err;
|
2018-10-07 19:55:45 -05:00
|
|
|
|
2018-10-09 14:03:42 -05:00
|
|
|
for (auto i : n_plots) {
|
2018-10-08 13:34:23 -05:00
|
|
|
ObjectPlot* pl = plots[i];
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-08 13:34:23 -05:00
|
|
|
std::stringstream ss;
|
2018-10-09 09:11:15 -05:00
|
|
|
ss << "Processing plot " << pl->id << ": "
|
|
|
|
|
<< pl->path_plot << "...";
|
2018-10-07 19:55:45 -05:00
|
|
|
write_message(ss.str(), 5);
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-09 13:59:10 -05:00
|
|
|
if (PLOT_TYPE::SLICE == pl->type) {
|
2018-10-07 19:55:45 -05:00
|
|
|
// create 2D image
|
2018-10-08 20:16:13 -05:00
|
|
|
// create_ppm(pl);
|
2018-10-07 19:55:45 -05:00
|
|
|
continue;
|
2018-10-09 13:59:10 -05:00
|
|
|
} else if (PLOT_TYPE::VOXEL == pl->type) {
|
2018-10-07 19:55:45 -05:00
|
|
|
// create voxel file for 3D viewing
|
|
|
|
|
// create_voxel(pl);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-08 13:34:23 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//===============================================================================
|
|
|
|
|
// CREATE_PPM creates an image based on user input from a plots.xml <plot>
|
|
|
|
|
// specification in the portable pixmap format (PPM)
|
|
|
|
|
//===============================================================================
|
|
|
|
|
|
|
|
|
|
void create_ppm(ObjectPlot* pl) {
|
|
|
|
|
|
2018-10-09 09:11:15 -05:00
|
|
|
int width = pl->pixels[0];
|
|
|
|
|
int height = pl->pixels[1];
|
2018-10-08 13:34:23 -05:00
|
|
|
|
2018-10-09 09:11:15 -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
|
|
|
|
|
|
|
|
std::vector< std::vector< std::vector<int>>> data;
|
2018-10-07 19:55:45 -05:00
|
|
|
|
2018-10-08 13:34:23 -05:00
|
|
|
data.resize(width);
|
2018-10-09 15:15:41 -05:00
|
|
|
for (auto & i : data) {
|
2018-10-08 13:34:23 -05:00
|
|
|
i.resize(height);
|
2018-10-09 15:15:41 -05:00
|
|
|
for (auto & j : i) {
|
2018-10-09 14:25:13 -05:00
|
|
|
j.resize(3);
|
|
|
|
|
}
|
2018-10-07 19:55:45 -05:00
|
|
|
}
|
2018-10-08 13:34:23 -05:00
|
|
|
|
|
|
|
|
int in_i, out_i;
|
|
|
|
|
double xyz[3];
|
2018-10-09 13:59:10 -05:00
|
|
|
if (PLOT_BASIS::XY == pl->basis) {
|
2018-10-08 13:34:23 -05:00
|
|
|
in_i = 0;
|
|
|
|
|
out_i = 1;
|
2018-10-09 09:11:15 -05:00
|
|
|
xyz[0] = pl->origin[0] - pl->width[0] / TWO;
|
|
|
|
|
xyz[1] = pl->origin[1] - pl->width[1] / TWO;
|
|
|
|
|
xyz[2] = pl->origin[2];
|
2018-10-09 13:59:10 -05:00
|
|
|
} else if (PLOT_BASIS::XZ == pl->basis) {
|
2018-10-08 13:34:23 -05:00
|
|
|
in_i = 0;
|
|
|
|
|
out_i = 2;
|
2018-10-09 09:11:15 -05:00
|
|
|
xyz[0] = pl->origin[0] - pl->width[0] / TWO;
|
|
|
|
|
xyz[1] = pl->origin[1];
|
|
|
|
|
xyz[2] = pl->origin[2] - pl->width[1] / TWO;
|
2018-10-09 13:59:10 -05:00
|
|
|
} else if (PLOT_BASIS::YZ == pl->basis) {
|
2018-10-08 13:34:23 -05:00
|
|
|
in_i = 1;
|
|
|
|
|
out_i = 2;
|
2018-10-09 09:11:15 -05:00
|
|
|
xyz[0] = pl->origin[0];
|
|
|
|
|
xyz[1] = pl->origin[1] - pl->width[0] / TWO;
|
|
|
|
|
xyz[2] = pl->origin[2] - pl->width[1] / TWO;
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double dir[3];
|
|
|
|
|
Particle *p = new Particle();
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
// local variables
|
|
|
|
|
int rgb[3];
|
|
|
|
|
int id;
|
2018-10-09 14:03:42 -05:00
|
|
|
for (int y = 0; y < height; y++) {
|
2018-10-08 13:34:23 -05:00
|
|
|
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++) {
|
2018-10-08 13:34:23 -05:00
|
|
|
p->coord[0].xyz[in_i] = xyz[in_i] + in_pixel*(x);
|
|
|
|
|
// position_rgb(p, pl, rgb, id);
|
2018-10-09 15:15:41 -05:00
|
|
|
data[x][y][0] = rgb[0];
|
|
|
|
|
data[x][y][1] = rgb[1];
|
|
|
|
|
data[x][y][2] = rgb[2];
|
2018-10-08 13:34:23 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-09 15:15:41 -05:00
|
|
|
output_ppm(pl, data);
|
2018-10-09 10:42:39 -05:00
|
|
|
|
2018-10-08 13:34:23 -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
|
|
|
|
|
//===============================================================================
|
|
|
|
|
|
|
|
|
|
void position_rgb(Particle* p, ObjectPlot* pl, int rgb[3], int &id) {
|
|
|
|
|
bool found_cell;
|
|
|
|
|
|
|
|
|
|
p->n_coord = 1;
|
|
|
|
|
|
|
|
|
|
found_cell = find_cell(p, 0);
|
|
|
|
|
|
|
|
|
|
int j = p->n_coord - 1;
|
|
|
|
|
|
|
|
|
|
if (settings::check_overlaps) { check_cell_overlap(p); }
|
|
|
|
|
|
|
|
|
|
// Set coordinate level if specified
|
2018-10-09 10:42:39 -05:00
|
|
|
if (pl->level >= 0) {j = pl->level + 1;}
|
2018-10-08 14:05:38 -05:00
|
|
|
|
|
|
|
|
Cell* c;
|
|
|
|
|
|
|
|
|
|
if (!found_cell) {
|
|
|
|
|
// If no cell, revert to default color
|
2018-10-09 10:42:39 -05:00
|
|
|
std::copy(pl->not_found.rgb,
|
|
|
|
|
pl->not_found.rgb + 3,
|
|
|
|
|
rgb);
|
2018-10-08 14:05:38 -05:00
|
|
|
id = -1;
|
|
|
|
|
} else {
|
2018-10-09 13:59:10 -05:00
|
|
|
if (PLOT_COLOR_BY::MATS == pl->color_by) {
|
2018-10-08 14:05:38 -05:00
|
|
|
// Assign color based on material
|
|
|
|
|
c = cells[p->coord[j].cell];
|
|
|
|
|
if (c->type_ == FILL_UNIVERSE) {
|
|
|
|
|
// If we stopped on a middle universe level, treat as if not found
|
2018-10-09 10:42:39 -05:00
|
|
|
std::copy(pl->not_found.rgb,
|
|
|
|
|
pl->not_found.rgb + 3,
|
|
|
|
|
rgb);
|
2018-10-08 14:05:38 -05:00
|
|
|
id = -1;
|
|
|
|
|
} else if (p->material == MATERIAL_VOID) {
|
|
|
|
|
// By default, color void cells white
|
|
|
|
|
std::copy(WHITE, WHITE+3, rgb);
|
|
|
|
|
id = -1;
|
|
|
|
|
} else {
|
2018-10-09 10:42:39 -05:00
|
|
|
std::copy(pl->colors[p->material - 1].rgb,
|
|
|
|
|
pl->colors[p->material - 1].rgb + 3,
|
2018-10-08 14:05:38 -05:00
|
|
|
rgb);
|
2018-10-09 10:42:39 -05:00
|
|
|
id = materials[p->material - 1]->id;
|
2018-10-08 14:05:38 -05:00
|
|
|
}
|
|
|
|
|
|
2018-10-09 13:59:10 -05:00
|
|
|
} else if (PLOT_COLOR_BY::CELLS == pl->color_by) {
|
2018-10-08 14:05:38 -05:00
|
|
|
// Assign color based on cell
|
2018-10-09 13:59:10 -05:00
|
|
|
std::copy(pl->colors[p->coord[j].cell].rgb,
|
|
|
|
|
pl->colors[p->coord[j].cell].rgb + 3,
|
2018-10-08 14:05:38 -05:00
|
|
|
rgb);
|
2018-10-09 13:59:10 -05:00
|
|
|
id = cells[p->coord[j].cell]->id_;
|
2018-10-08 14:05:38 -05:00
|
|
|
} else {
|
|
|
|
|
std::copy(NULLRGB, NULLRGB+3, rgb);
|
|
|
|
|
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 15:15:41 -05:00
|
|
|
void output_ppm(ObjectPlot* pl,
|
|
|
|
|
const std::vector< std::vector< std::vector<int> > > &data)
|
2018-10-09 14:25:13 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
// Open PPM file for writing
|
2018-10-09 15:15:41 -05:00
|
|
|
std::string fname = std::string(pl->path_plot);
|
|
|
|
|
fname = strtrim(fname);
|
|
|
|
|
std::ofstream of(fname);
|
2018-10-09 14:25:13 -05:00
|
|
|
|
|
|
|
|
// Write header
|
|
|
|
|
of << "P6" << std::endl;
|
|
|
|
|
of << pl->pixels[0] << " " << pl->pixels[1] << std::endl;
|
|
|
|
|
of << "255" << std::endl;
|
|
|
|
|
|
|
|
|
|
// Write color for each pixel
|
|
|
|
|
for (int y = 0; y < pl->pixels[1]; y++) {
|
|
|
|
|
for (int x = 0; x < pl->pixels[0]; x++) {
|
2018-10-09 15:15:41 -05:00
|
|
|
std::vector<int> rgb = data[x][y];
|
|
|
|
|
of << (char)rgb[0] << (char)rgb[1] << (char)rgb[2];
|
2018-10-09 14:25:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Close file
|
|
|
|
|
of.close();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-24 22:42:04 -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 - 1, 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
|