www.mooseframework.org
VoronoiICAux.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "AuxKernel.h"
14 
15 // Forward Declarations
16 
20 class VoronoiICAux : public AuxKernel
21 {
22 public:
24 
26 
27 protected:
28  virtual Real computeValue();
29 
31 
32  std::vector<unsigned int> _grain_ids;
33 };
This object provides the base capability for creating proper polycrystal ICs.
const PolycrystalUserObjectBase & _poly_ic_uo
Definition: VoronoiICAux.h:30
static InputParameters validParams()
Definition: VoronoiICAux.C:15
std::vector< unsigned int > _grain_ids
Definition: VoronoiICAux.h:32
virtual Real computeValue()
Definition: VoronoiICAux.C:31
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
VoronoiICAux(const InputParameters &parameters)
Definition: VoronoiICAux.C:22
Visualize the location of grain boundaries in a polycrystalline simulation.
Definition: VoronoiICAux.h:20