NEML2 1.4.0
Loading...
Searching...
No Matches
CrystalGeometry.h
1// Copyright 2023, 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/base/Registry.h"
28#include "neml2/models/Data.h"
29#include "neml2/tensors/BatchTensorBase.h"
30
31namespace neml2
32{
33class Vec;
34class R2;
35class SR2;
36class WR2;
37class MillerIndex;
38
39namespace crystallography
40{
41
47class CrystalGeometry : public Data
48{
49public:
52
54 CrystalGeometry(const OptionSet & options);
55
57 CrystalGeometry(const OptionSet & options, const R2 & cclass, const Vec & lattice_vectors);
58
60 Vec a1() const;
62 Vec a2() const;
64 Vec a3() const;
65
67 Vec b1() const;
69 Vec b2() const;
71 Vec b3() const;
72
74 TorchSize nslip() const;
76 TorchSize nslip_groups() const;
79
81 const Vec & cartesian_slip_directions() const { return _cartesian_slip_directions; };
83 const Vec & cartesian_slip_planes() const { return _cartesian_slip_planes; };
85 const Scalar & burgers() const { return _burgers; };
86
88 const R2 & A() const { return _A; };
90 const SR2 & M() const { return _M; };
92 const WR2 & W() const { return _W; };
93
95 const R2 & symmetry_operators() const { return _sym_ops; };
96
98 // The slice happens along the last batch axis
99 template <
100 class Derived,
101 typename = typename std::enable_if_t<std::is_base_of_v<BatchTensorBase<Derived>, Derived>>>
102 Derived slip_slice(const Derived & tensor, TorchSize grp) const;
103
104private:
106 CrystalGeometry(const OptionSet & options,
107 const R2 & cclass,
108 const Vec & lattice_vectors,
109 std::tuple<Vec, Vec, Scalar, std::vector<TorchSize>> slip_data);
110
112 static Vec make_reciprocal_lattice(const Vec & lattice_vectors);
113
115 static std::tuple<Vec, Vec, Scalar, std::vector<TorchSize>>
116 setup_schmid_tensors(const Vec & A,
117 const R2 & cls,
119 const MillerIndex & slip_planes);
120
122 static Vec miller_to_cartesian(const Vec & A, const MillerIndex & d);
123
124private:
126 const R2 & _sym_ops;
128 const Vec & _lattice_vectors;
130 const Vec & _reciprocal_lattice_vectors;
132 const MillerIndex & _slip_directions;
134 const MillerIndex & _slip_planes;
135
137 const Vec & _cartesian_slip_directions;
139 const Vec & _cartesian_slip_planes;
141 const Scalar & _burgers;
143 const std::vector<TorchSize> _slip_offsets;
144
146 const R2 & _A;
148 const SR2 & _M;
150 const WR2 & _W;
151};
152
153template <class Derived, typename>
156{
158 return tensor.batch_index({torch::indexing::Ellipsis,
159 torch::indexing::Slice(_slip_offsets[grp], _slip_offsets[grp + 1])});
160}
161
162} // namespace crystallography
163} // namespace neml2
The wrapper (decorator) for cross-referencing unresolved values at parse time.
Definition CrossRef.h:52
Definition Data.h:36
Represention of a crystal direction or plane a Miller Index.
Definition MillerIndex.h:38
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:59
A basic R2.
Definition R2.h:42
The (logical) symmetric second order tensor.
Definition SR2.h:46
The (logical) scalar.
Definition Scalar.h:38
The (logical) vector.
Definition Vec.h:42
A skew rank 2, represented as an axial vector.
Definition WR2.h:43
Defines the geometry of a crystal system This includes a basic definition of the crystal lattice,...
Definition CrystalGeometry.h:48
Vec b3() const
accessor for the third reciprocal lattice vector
Definition CrystalGeometry.cxx:118
const R2 & symmetry_operators() const
Accessor for the crystal class symmetry operators.
Definition CrystalGeometry.h:95
const R2 & A() const
Accessor for the full Schmid tensors.
Definition CrystalGeometry.h:88
const Vec & cartesian_slip_directions() const
Accessor for the slip directions.
Definition CrystalGeometry.h:81
const WR2 & W() const
Accessor for the skew-symmetric Schmid tensors.
Definition CrystalGeometry.h:92
Vec a1() const
accessor for the first lattice vector
Definition CrystalGeometry.cxx:88
const SR2 & M() const
Accessor for the symmetric Schmid tensors.
Definition CrystalGeometry.h:90
Derived slip_slice(const Derived &tensor, TorchSize grp) const
Slice a BatchTensor to provide only the batch associated with a slip system.
Definition CrystalGeometry.h:155
const Scalar & burgers() const
Accessor for the burgers vector.
Definition CrystalGeometry.h:85
const Vec & cartesian_slip_planes() const
Accessor for the slip planes.
Definition CrystalGeometry.h:83
CrystalGeometry(const OptionSet &options)
Setup from parameter set.
Definition CrystalGeometry.cxx:63
Vec a3() const
accessor for the third lattice vector
Definition CrystalGeometry.cxx:100
Vec b2() const
accessor for the second reciprocal lattice vector
Definition CrystalGeometry.cxx:112
TorchSize nslip_groups() const
Number of slip groups.
Definition CrystalGeometry.cxx:130
TorchSize nslip() const
Total number of slip systems.
Definition CrystalGeometry.cxx:124
static OptionSet expected_options()
Input options.
Definition CrystalGeometry.cxx:40
Vec a2() const
accessor for the second lattice vector
Definition CrystalGeometry.cxx:94
Vec b1() const
accessor for the first reciprocal lattice vector
Definition CrystalGeometry.cxx:106
TorchSize nslip_in_group(TorchSize i) const
Number of slip systems in a given group.
Definition CrystalGeometry.cxx:136
Definition CrossRef.cxx:32
void neml_assert_dbg(bool assertion, Args &&... args)
Definition error.h:85
int64_t TorchSize
Definition types.h:33