https://mooseframework.inl.gov
Loading...
Searching...
No Matches
EFAFaceNode.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
12class EFANode;
13
15{
16public:
17 EFAFaceNode(EFANode * node, double xi, double eta);
18 EFAFaceNode(const EFAFaceNode & other_face_node);
19
21
22private:
24 double _xi;
25 double _eta;
26
27public:
28 EFANode * getNode();
29 double getParametricCoordinates(unsigned int i);
30 void switchNode(EFANode * new_old, EFANode * old_node);
31};
Point eta
Point xi
double getParametricCoordinates(unsigned int i)
Definition EFAFaceNode.C:31
void switchNode(EFANode *new_old, EFANode *old_node)
Definition EFAFaceNode.C:45
double _eta
Definition EFAFaceNode.h:25
EFANode * getNode()
Definition EFAFaceNode.C:25
EFANode * _node
Definition EFAFaceNode.h:23