-
Notifications
You must be signed in to change notification settings - Fork 0
/
glossaries.tex
155 lines (154 loc) · 3.71 KB
/
glossaries.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
%%% Write your own glossary entries here
% The general structure is:
% \newglossaryentry{identifier}
% {
% name={name}, % Mandatory, what gets printed
% description={description of the entry}, % Mandatory, description that appears in the glossary index
% plural={plural-name}, % Optional, in case the plural is more complex
% sort={alphanumeric entry}, % Optional, how should the entry be sorted
% symbol={\ensuremath{associated symbol}}, % Optional, prints the symbol of the entry with \glssymbol{identifier}
% }
% Some examples
\newglossaryentry{test}
{
name={test},
description={This is a test entry for glossaries}
}
\newglossaryentry{timestepval}
{
name={\ensuremath{x_t}},
description={Value of variable $x$ at time step \ensuremath{t}}
}
\newglossaryentry{creepstrainrate}
{
name={\ensuremath{\dot{\epsilon}^{cr}}},
description={Creep strain rate}
}
\newglossaryentry{primarycreepstrainrate}
{
name={\ensuremath{\dot{\epsilon}_{pr}}},
description={Primary creep strain rate}
}
\newglossaryentry{secondarycreepstrainrate}
{
name={\ensuremath{\dot{\epsilon}_{sd}}},
description={Secondary creep strain rate}
}
\newglossaryentry{initialstrain}
{
name={\ensuremath{\epsilon_{0}}},
description={Strain after initial load}
}
\newglossaryentry{thermalstrain}
{
name={\ensuremath{\epsilon^{th}}},
description={Thermal strain component}
}
\newglossaryentry{plasticstrain}
{
name={\ensuremath{\epsilon^{pl}}},
description={Plastic strain component}
}
\newglossaryentry{inelasticstrain}
{
name={\ensuremath{\epsilon^{in}}},
description={Inelastic strain component}
}
\newglossaryentry{elasticstrain}
{
name={\ensuremath{\epsilon^{el}}},
description={Elastic strain component}
}
\newglossaryentry{totalstrain}
{
name={\ensuremath{\epsilon^{tot}}},
description={Total strain}
}
%TODO check that the tilde gets printed correctly! The package unicode-math is the culprit. It has been turned off
\newglossaryentry{stressdevia}
{
name={\ensuremath{\tilde{\sigma}}},
description={Deviatoric stress component. Mises criterion}
}
\newglossaryentry{primarycreep}
{
name={\ensuremath{\epsilon_{pr}}},
description={Primary creep strain}
}
\newglossaryentry{secondarycreep}
{
name={\ensuremath{\epsilon_{sc}}},
description={Secondary creep strain}
}
\newglossaryentry{totalcreep}
{
name={\ensuremath{\epsilon^{cr}\, / \, \epsilon^{vp}}},
description={Creep/viscoplastic strain},
text={\ensuremath{\epsilon^{cr}}}
}
\newglossaryentry{thermalexpan}
{
name={\ensuremath{\alpha}},
description={Thermal expansion coefficient}
}
\newglossaryentry{density}
{
name={\ensuremath{\rho}},
description={Density}
}
\newglossaryentry{young}
{
name={\ensuremath{E}},
description={Young modulus}
}
\newglossaryentry{poisson}
{
name={\ensuremath{\nu}},
description={Poisson's coefficient}
}
\newglossaryentry{thermalcond}
{
name={\ensuremath{\lambda}},
description={Thermal conductivity coefficient}
}
\newglossaryentry{gasconstant}
{
name={\ensuremath{\mathfrak{R}}},
description={Universal gas constant}
}
\newglossaryentry{temperature}
{
name={\ensuremath{T}},
description={Temperature}
}
\newglossaryentry{timestep}
{
name={\ensuremath{t_n}},
description={Time-step \ensuremath{n}}
}
\newglossaryentry{heatcoefficient}
{
name={\ensuremath{c_{p}}},
description={Heat coefficient at constant pressure}
}
\newglossaryentry{activationenergy}
{
name={\ensuremath{E_{ac}\, / \, Q\, / \, G}},
description={Activation energy for self-difussion, Gibbs free energy},
text={\ensuremath{E_{ac}}},
}
\newglossaryentry{yieldstress}
{
name={\ensuremath{\sigma_{Y}}},
description={Yield stress}
}
\newglossaryentry{shearmodulus}
{
name={\ensuremath{G}},
description={Shear modulus}
}
\newglossaryentry{decaytime}
{
name={\ensuremath{t_d}},
description={Exponential decay time}
}