www.mooseframework.org
DiscreteNucleationData.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 "GeneralPostprocessor.h"
14 
19 {
20 public:
22 
24 
25  virtual void execute() override{};
26  virtual void initialize() override{};
27 
28  virtual Real getValue() const override;
29 
30 protected:
33 
36 
38  enum class ValueType
39  {
40  COUNT,
41  UPDATE,
42  RATE,
43  INSERTIONS,
44  DELETIONS
45  } _value_type;
46 };
virtual void initialize() override
virtual Real getValue() const override
static InputParameters validParams()
std::vector< NucleusLocation > NucleusList
Every MPI task should keep a full list of nuclei (in case they cross domains with their finite radii)...
ValueType
Type of value to report back.
DiscreteNucleationData(const InputParameters &parameters)
This UserObject manages the insertion and expiration of nuclei in the simulation domain it manages a ...
Output diagnostic data on a DiscreteNucleationInserter.
virtual void execute() override
const DiscreteNucleationInserterBase::NucleusList & _nucleus_list
list of nuclei maintained bu the inserter object
enum DiscreteNucleationData::ValueType _value_type
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
const DiscreteNucleationInserterBase & _inserter
UserObject that manages nucleus insertin and deletion.