NEML2 1.4.0
Loading...
Searching...
No Matches
tensors.h
1// Copyright 2024, UChicago Argonne, LLC
2// All Rights Reserved
3// Software Name: NEML2 -- the New Engineering material Model Library, version 2
4// By: Argonne National Laboratory
5// OPEN SOURCE LICENSE (MIT)
6//
7// Permission is hereby granted, free of charge, to any person obtaining a copy
8// of this software and associated documentation files (the "Software"), to deal
9// in the Software without restriction, including without limitation the rights
10// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11// copies of the Software, and to permit persons to whom the Software is
12// furnished to do so, subject to the following conditions:
13//
14// The above copyright notice and this permission notice shall be included in
15// all copies or substantial portions of the Software.
16//
17// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23// THE SOFTWARE.
24
25#pragma once
26
27#include "neml2/tensors/Tensor.h"
28#include "neml2/tensors/Scalar.h"
29#include "neml2/tensors/Vec.h"
30#include "neml2/tensors/Rot.h"
31#include "neml2/tensors/R2.h"
32#include "neml2/tensors/SR2.h"
33#include "neml2/tensors/R3.h"
34#include "neml2/tensors/SFR3.h"
35#include "neml2/tensors/R4.h"
36#include "neml2/tensors/SSR4.h"
37#include "neml2/tensors/SFFR4.h"
38#include "neml2/tensors/R5.h"
39#include "neml2/tensors/SSFR5.h"
40#include "neml2/tensors/WR2.h"
41#include "neml2/tensors/Quaternion.h"
42#include "neml2/tensors/SWR4.h"
43#include "neml2/tensors/WSR4.h"
44#include "neml2/tensors/WWR4.h"
45#include "neml2/models/crystallography/MillerIndex.h"
46
47#include "neml2/tensors/macros.h"
48
49#include <iostream>
50
51namespace neml2
52{
53#define _tensor_type_enum(T) k##T
54
55// Enum for tensor type introspection
56enum class TensorType : int8_t
57{
58 FOR_ALL_TENSORBASE_COMMA(_tensor_type_enum),
60};
61
62template <typename T>
64{
66};
67
68// Specialize TensorEnum for all tensor types
69#define _tensor_type_enum_specialize(T) \
70 template <> \
71 struct TensorTypeEnum<T> \
72 { \
73 static constexpr TensorType value = TensorType::k##T; \
74 }
75FOR_ALL_TENSORBASE(_tensor_type_enum_specialize);
76
77// Stringify the tensor type enum
78std::ostream & operator<<(std::ostream & os, const TensorType & t);
79}
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:56
Definition CrossRef.cxx:30
TensorType
Definition tensors.h:57
std::ostream & operator<<(std::ostream &os, const EnumSelection &es)
Definition EnumSelection.cxx:31
Definition tensors.h:64
static constexpr TensorType value
Definition tensors.h:65