openmc.Plot

class openmc.Plot(plot_id=None, name='')[source]

Definition of a finite region of space to be plotted.

OpenMC is capable of generating two-dimensional slice plots and three-dimensional voxel plots. Colors that are used in plots can be given as RGB tuples, e.g. (255, 255, 255) would be white, or by a string indicating a valid SVG color.

Parameters:
  • plot_id (int) – Unique identifier for the plot
  • name (str) – Name of the plot
Variables:
  • id (int) – Unique identifier
  • name (str) – Name of the plot
  • width (Iterable of float) – Width of the plot in each basis direction
  • pixels (Iterable of int) – Number of pixels to use in each basis direction
  • origin (tuple or list of ndarray) – Origin (center) of the plot
  • filename – Path to write the plot to
  • color_by ({'cell', 'material'}) – Indicate whether the plot should be colored by cell or by material
  • type ({'slice', 'voxel'}) – The type of the plot
  • basis ({'xy', 'xz', 'yz'}) – The basis directions for the plot
  • background (Iterable of int or str) – Color of the background
  • mask_components (Iterable of openmc.Cell or openmc.Material) – The cells or materials to plot
  • mask_background (Iterable of int or str) – Color to apply to all cells/materials not listed in mask_components
  • colors (dict) – Dictionary indicating that certain cells/materials (keys) should be displayed with a particular color.
  • level (int) – Universe depth to plot at
  • meshlines (dict) – Dictionary defining type, id, linewidth and color of a regular mesh to be plotted on top of a plot
colorize(geometry, seed=1)[source]

Generate a color scheme for each domain in the plot.

This routine may be used to generate random, reproducible color schemes. The colors generated are based upon cell/material IDs in the geometry.

Parameters:
  • geometry (openmc.Geometry) – The geometry for which the plot is defined
  • seed (Integral) – The random number seed used to generate the color scheme
classmethod from_geometry(geometry, basis='xy', slice_coord=0.0)[source]

Return plot that encompasses a geometry.

Parameters:
  • geometry (openmc.Geometry) – The geometry the base the plot off of
  • basis ({'xy', 'xz', 'yz'}) – The basis directions for the plot
  • slice_coord (float) – The level at which the slice plot should be plotted. For example, if the basis is ‘xy’, this would indicate the z value used in the origin.
highlight_domains(geometry, domains, seed=1, alpha=0.5, background='gray')[source]

Use alpha compositing to highlight one or more domains in the plot.

This routine generates a color scheme and applies alpha compositing to make all domains except the highlighted ones appear partially transparent.

Parameters:
  • geometry (openmc.Geometry) – The geometry for which the plot is defined
  • domains (Iterable of openmc.Cell or openmc.Material) – A collection of the domain IDs to highlight in the plot
  • seed (int) – The random number seed used to generate the color scheme
  • alpha (float) – The value between 0 and 1 to apply in alpha compisiting
  • background (3-tuple of int or str) – The background color to apply in alpha compisiting
to_xml_element()[source]

Return XML representation of the plot

Returns:element – XML element containing plot data
Return type:xml.etree.ElementTree.Element