https://mooseframework.inl.gov
Loading...
Searching...
No Matches
EBSDReaderPointDataAux.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
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"
13#include "EBSDReader.h"
14
15// Forward Declarations
16
22{
23public:
25
27
28protected:
29 virtual Real computeValue();
30 virtual void precalculateValue();
31
33
36
38 MooseSharedPointer<EBSDPointDataFunctor> _val;
39
41 Real _value;
42};
Mix-in class that adds so called access functors to select a field from an EBSDPointData or EBSDPoint...
This kernel makes data from the EBSDReader GeneralUserObject available as AuxVariables.
const EBSDReader & _ebsd_reader
MooseSharedPointer< EBSDPointDataFunctor > _val
Accessor functor to fetch the selected data field form the EBSD data point.
static InputParameters validParams()
MooseEnum _data_name
MooseEnum that stores the type of data this AuxKernel extracts.
Real _value
precalculated element value
A GeneralUserObject that reads an EBSD file and stores the centroid data in a data structure which in...
Definition EBSDReader.h:32
const InputParameters & parameters() const